Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1 | //===- MemorySSA.cpp - Memory SSA Builder ---------------------------------===// |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 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 | // |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the MemorySSA class. |
| 11 | // |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Daniel Berlin | 554dcd8 | 2017-04-11 20:06:36 +0000 | [diff] [blame] | 14 | #include "llvm/Analysis/MemorySSA.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMapInfo.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseSet.h" |
| 18 | #include "llvm/ADT/DepthFirstIterator.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/Hashing.h" |
| 20 | #include "llvm/ADT/None.h" |
| 21 | #include "llvm/ADT/Optional.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/STLExtras.h" |
| 23 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallVector.h" |
| 25 | #include "llvm/ADT/iterator.h" |
| 26 | #include "llvm/ADT/iterator_range.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/AliasAnalysis.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 28 | #include "llvm/Analysis/IteratedDominanceFrontier.h" |
| 29 | #include "llvm/Analysis/MemoryLocation.h" |
Nico Weber | 432a388 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 30 | #include "llvm/Config/llvm-config.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 31 | #include "llvm/IR/AssemblyAnnotationWriter.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 32 | #include "llvm/IR/BasicBlock.h" |
| 33 | #include "llvm/IR/CallSite.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 34 | #include "llvm/IR/Dominators.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 35 | #include "llvm/IR/Function.h" |
| 36 | #include "llvm/IR/Instruction.h" |
| 37 | #include "llvm/IR/Instructions.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 38 | #include "llvm/IR/IntrinsicInst.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 39 | #include "llvm/IR/Intrinsics.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 40 | #include "llvm/IR/LLVMContext.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 41 | #include "llvm/IR/PassManager.h" |
| 42 | #include "llvm/IR/Use.h" |
| 43 | #include "llvm/Pass.h" |
| 44 | #include "llvm/Support/AtomicOrdering.h" |
| 45 | #include "llvm/Support/Casting.h" |
| 46 | #include "llvm/Support/CommandLine.h" |
| 47 | #include "llvm/Support/Compiler.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 49 | #include "llvm/Support/ErrorHandling.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 50 | #include "llvm/Support/FormattedStream.h" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 51 | #include "llvm/Support/raw_ostream.h" |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 52 | #include <algorithm> |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 53 | #include <cassert> |
| 54 | #include <iterator> |
| 55 | #include <memory> |
| 56 | #include <utility> |
| 57 | |
| 58 | using namespace llvm; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 59 | |
| 60 | #define DEBUG_TYPE "memoryssa" |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 61 | |
Geoff Berry | efb0dd1 | 2016-06-14 21:19:40 +0000 | [diff] [blame] | 62 | INITIALIZE_PASS_BEGIN(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false, |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 63 | true) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 64 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
| 65 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) |
Geoff Berry | efb0dd1 | 2016-06-14 21:19:40 +0000 | [diff] [blame] | 66 | INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false, |
| 67 | true) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 68 | |
Chad Rosier | 232e29e | 2016-07-06 21:20:47 +0000 | [diff] [blame] | 69 | INITIALIZE_PASS_BEGIN(MemorySSAPrinterLegacyPass, "print-memoryssa", |
| 70 | "Memory SSA Printer", false, false) |
| 71 | INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass) |
| 72 | INITIALIZE_PASS_END(MemorySSAPrinterLegacyPass, "print-memoryssa", |
| 73 | "Memory SSA Printer", false, false) |
| 74 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 75 | static cl::opt<unsigned> MaxCheckLimit( |
| 76 | "memssa-check-limit", cl::Hidden, cl::init(100), |
| 77 | cl::desc("The maximum number of stores/phis MemorySSA" |
| 78 | "will consider trying to walk past (default = 100)")); |
| 79 | |
Alina Sbirlea | cc2e8cc | 2018-08-15 17:34:55 +0000 | [diff] [blame] | 80 | // Always verify MemorySSA if expensive checking is enabled. |
| 81 | #ifdef EXPENSIVE_CHECKS |
| 82 | bool llvm::VerifyMemorySSA = true; |
| 83 | #else |
| 84 | bool llvm::VerifyMemorySSA = false; |
| 85 | #endif |
| 86 | static cl::opt<bool, true> |
| 87 | VerifyMemorySSAX("verify-memoryssa", cl::location(VerifyMemorySSA), |
| 88 | cl::Hidden, cl::desc("Enable verification of MemorySSA.")); |
Chad Rosier | 232e29e | 2016-07-06 21:20:47 +0000 | [diff] [blame] | 89 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 90 | namespace llvm { |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 91 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 92 | /// An assembly annotator class to print Memory SSA information in |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 93 | /// comments. |
| 94 | class MemorySSAAnnotatedWriter : public AssemblyAnnotationWriter { |
| 95 | friend class MemorySSA; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 96 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 97 | const MemorySSA *MSSA; |
| 98 | |
| 99 | public: |
| 100 | MemorySSAAnnotatedWriter(const MemorySSA *M) : MSSA(M) {} |
| 101 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 102 | void emitBasicBlockStartAnnot(const BasicBlock *BB, |
| 103 | formatted_raw_ostream &OS) override { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 104 | if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) |
| 105 | OS << "; " << *MA << "\n"; |
| 106 | } |
| 107 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 108 | void emitInstructionAnnot(const Instruction *I, |
| 109 | formatted_raw_ostream &OS) override { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 110 | if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) |
| 111 | OS << "; " << *MA << "\n"; |
| 112 | } |
| 113 | }; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 114 | |
| 115 | } // end namespace llvm |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 116 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 117 | namespace { |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 118 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 119 | /// Our current alias analysis API differentiates heavily between calls and |
| 120 | /// non-calls, and functions called on one usually assert on the other. |
| 121 | /// This class encapsulates the distinction to simplify other code that wants |
| 122 | /// "Memory affecting instructions and related data" to use as a key. |
| 123 | /// For example, this class is used as a densemap key in the use optimizer. |
| 124 | class MemoryLocOrCall { |
| 125 | public: |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 126 | bool IsCall = false; |
| 127 | |
| 128 | MemoryLocOrCall() = default; |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 129 | MemoryLocOrCall(MemoryUseOrDef *MUD) |
| 130 | : MemoryLocOrCall(MUD->getMemoryInst()) {} |
Sebastian Pop | 5068d7a | 2016-10-13 03:23:33 +0000 | [diff] [blame] | 131 | MemoryLocOrCall(const MemoryUseOrDef *MUD) |
| 132 | : MemoryLocOrCall(MUD->getMemoryInst()) {} |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 133 | |
| 134 | MemoryLocOrCall(Instruction *Inst) { |
| 135 | if (ImmutableCallSite(Inst)) { |
| 136 | IsCall = true; |
| 137 | CS = ImmutableCallSite(Inst); |
| 138 | } else { |
| 139 | IsCall = false; |
| 140 | // There is no such thing as a memorylocation for a fence inst, and it is |
| 141 | // unique in that regard. |
| 142 | if (!isa<FenceInst>(Inst)) |
| 143 | Loc = MemoryLocation::get(Inst); |
| 144 | } |
| 145 | } |
| 146 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 147 | explicit MemoryLocOrCall(const MemoryLocation &Loc) : Loc(Loc) {} |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 148 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 149 | ImmutableCallSite getCS() const { |
| 150 | assert(IsCall); |
| 151 | return CS; |
| 152 | } |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 153 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 154 | MemoryLocation getLoc() const { |
| 155 | assert(!IsCall); |
| 156 | return Loc; |
| 157 | } |
| 158 | |
| 159 | bool operator==(const MemoryLocOrCall &Other) const { |
| 160 | if (IsCall != Other.IsCall) |
| 161 | return false; |
| 162 | |
George Burgess IV | 3588fd4 | 2018-03-29 00:54:39 +0000 | [diff] [blame] | 163 | if (!IsCall) |
| 164 | return Loc == Other.Loc; |
| 165 | |
| 166 | if (CS.getCalledValue() != Other.CS.getCalledValue()) |
| 167 | return false; |
| 168 | |
George Burgess IV | af0b06f | 2018-03-29 03:12:03 +0000 | [diff] [blame] | 169 | return CS.arg_size() == Other.CS.arg_size() && |
| 170 | std::equal(CS.arg_begin(), CS.arg_end(), Other.CS.arg_begin()); |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | private: |
Daniel Berlin | f536113 | 2016-10-22 04:15:41 +0000 | [diff] [blame] | 174 | union { |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 175 | ImmutableCallSite CS; |
| 176 | MemoryLocation Loc; |
Daniel Berlin | f536113 | 2016-10-22 04:15:41 +0000 | [diff] [blame] | 177 | }; |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 178 | }; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 179 | |
| 180 | } // end anonymous namespace |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 181 | |
| 182 | namespace llvm { |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 183 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 184 | template <> struct DenseMapInfo<MemoryLocOrCall> { |
| 185 | static inline MemoryLocOrCall getEmptyKey() { |
| 186 | return MemoryLocOrCall(DenseMapInfo<MemoryLocation>::getEmptyKey()); |
| 187 | } |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 188 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 189 | static inline MemoryLocOrCall getTombstoneKey() { |
| 190 | return MemoryLocOrCall(DenseMapInfo<MemoryLocation>::getTombstoneKey()); |
| 191 | } |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 192 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 193 | static unsigned getHashValue(const MemoryLocOrCall &MLOC) { |
George Burgess IV | 3588fd4 | 2018-03-29 00:54:39 +0000 | [diff] [blame] | 194 | if (!MLOC.IsCall) |
| 195 | return hash_combine( |
| 196 | MLOC.IsCall, |
| 197 | DenseMapInfo<MemoryLocation>::getHashValue(MLOC.getLoc())); |
| 198 | |
| 199 | hash_code hash = |
| 200 | hash_combine(MLOC.IsCall, DenseMapInfo<const Value *>::getHashValue( |
| 201 | MLOC.getCS().getCalledValue())); |
| 202 | |
| 203 | for (const Value *Arg : MLOC.getCS().args()) |
| 204 | hash = hash_combine(hash, DenseMapInfo<const Value *>::getHashValue(Arg)); |
| 205 | return hash; |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 206 | } |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 207 | |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 208 | static bool isEqual(const MemoryLocOrCall &LHS, const MemoryLocOrCall &RHS) { |
| 209 | return LHS == RHS; |
| 210 | } |
| 211 | }; |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 212 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 213 | } // end namespace llvm |
| 214 | |
George Burgess IV | 82e355c | 2016-08-03 19:39:54 +0000 | [diff] [blame] | 215 | /// This does one-way checks to see if Use could theoretically be hoisted above |
| 216 | /// MayClobber. This will not check the other way around. |
| 217 | /// |
| 218 | /// This assumes that, for the purposes of MemorySSA, Use comes directly after |
| 219 | /// MayClobber, with no potentially clobbering operations in between them. |
| 220 | /// (Where potentially clobbering ops are memory barriers, aliased stores, etc.) |
Alina Sbirlea | ca741a8 | 2017-12-22 19:54:03 +0000 | [diff] [blame] | 221 | static bool areLoadsReorderable(const LoadInst *Use, |
| 222 | const LoadInst *MayClobber) { |
George Burgess IV | 82e355c | 2016-08-03 19:39:54 +0000 | [diff] [blame] | 223 | bool VolatileUse = Use->isVolatile(); |
| 224 | bool VolatileClobber = MayClobber->isVolatile(); |
| 225 | // Volatile operations may never be reordered with other volatile operations. |
| 226 | if (VolatileUse && VolatileClobber) |
Alina Sbirlea | ca741a8 | 2017-12-22 19:54:03 +0000 | [diff] [blame] | 227 | return false; |
| 228 | // Otherwise, volatile doesn't matter here. From the language reference: |
| 229 | // 'optimizers may change the order of volatile operations relative to |
| 230 | // non-volatile operations.'" |
George Burgess IV | 82e355c | 2016-08-03 19:39:54 +0000 | [diff] [blame] | 231 | |
| 232 | // If a load is seq_cst, it cannot be moved above other loads. If its ordering |
| 233 | // is weaker, it can be moved above other loads. We just need to be sure that |
| 234 | // MayClobber isn't an acquire load, because loads can't be moved above |
| 235 | // acquire loads. |
| 236 | // |
| 237 | // Note that this explicitly *does* allow the free reordering of monotonic (or |
| 238 | // weaker) loads of the same address. |
| 239 | bool SeqCstUse = Use->getOrdering() == AtomicOrdering::SequentiallyConsistent; |
| 240 | bool MayClobberIsAcquire = isAtLeastOrStrongerThan(MayClobber->getOrdering(), |
| 241 | AtomicOrdering::Acquire); |
Alina Sbirlea | ca741a8 | 2017-12-22 19:54:03 +0000 | [diff] [blame] | 242 | return !(SeqCstUse || MayClobberIsAcquire); |
George Burgess IV | 82e355c | 2016-08-03 19:39:54 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 245 | namespace { |
| 246 | |
| 247 | struct ClobberAlias { |
| 248 | bool IsClobber; |
| 249 | Optional<AliasResult> AR; |
| 250 | }; |
| 251 | |
| 252 | } // end anonymous namespace |
| 253 | |
| 254 | // Return a pair of {IsClobber (bool), AR (AliasResult)}. It relies on AR being |
| 255 | // ignored if IsClobber = false. |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 256 | static ClobberAlias instructionClobbersQuery(const MemoryDef *MD, |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 257 | const MemoryLocation &UseLoc, |
| 258 | const Instruction *UseInst, |
| 259 | AliasAnalysis &AA) { |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 260 | Instruction *DefInst = MD->getMemoryInst(); |
| 261 | assert(DefInst && "Defining instruction not actually an instruction"); |
Daniel Berlin | 74603a6 | 2017-04-10 18:46:00 +0000 | [diff] [blame] | 262 | ImmutableCallSite UseCS(UseInst); |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 263 | Optional<AliasResult> AR; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 264 | |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 265 | if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(DefInst)) { |
| 266 | // These intrinsics will show up as affecting memory, but they are just |
George Burgess IV | ff08c80 | 2018-08-10 05:14:43 +0000 | [diff] [blame] | 267 | // markers, mostly. |
| 268 | // |
| 269 | // FIXME: We probably don't actually want MemorySSA to model these at all |
| 270 | // (including creating MemoryAccesses for them): we just end up inventing |
| 271 | // clobbers where they don't really exist at all. Please see D43269 for |
| 272 | // context. |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 273 | switch (II->getIntrinsicID()) { |
| 274 | case Intrinsic::lifetime_start: |
Daniel Berlin | 74603a6 | 2017-04-10 18:46:00 +0000 | [diff] [blame] | 275 | if (UseCS) |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 276 | return {false, NoAlias}; |
| 277 | AR = AA.alias(MemoryLocation(II->getArgOperand(1)), UseLoc); |
George Burgess IV | ff08c80 | 2018-08-10 05:14:43 +0000 | [diff] [blame] | 278 | return {AR != NoAlias, AR}; |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 279 | case Intrinsic::lifetime_end: |
| 280 | case Intrinsic::invariant_start: |
| 281 | case Intrinsic::invariant_end: |
| 282 | case Intrinsic::assume: |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 283 | return {false, NoAlias}; |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 284 | default: |
| 285 | break; |
| 286 | } |
| 287 | } |
| 288 | |
Hans Wennborg | 70e22d1 | 2017-11-21 18:00:01 +0000 | [diff] [blame] | 289 | if (UseCS) { |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 290 | ModRefInfo I = AA.getModRefInfo(DefInst, UseCS); |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 291 | AR = isMustSet(I) ? MustAlias : MayAlias; |
| 292 | return {isModOrRefSet(I), AR}; |
Hans Wennborg | 70e22d1 | 2017-11-21 18:00:01 +0000 | [diff] [blame] | 293 | } |
George Burgess IV | 82e355c | 2016-08-03 19:39:54 +0000 | [diff] [blame] | 294 | |
Alina Sbirlea | ca741a8 | 2017-12-22 19:54:03 +0000 | [diff] [blame] | 295 | if (auto *DefLoad = dyn_cast<LoadInst>(DefInst)) |
| 296 | if (auto *UseLoad = dyn_cast<LoadInst>(UseInst)) |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 297 | return {!areLoadsReorderable(UseLoad, DefLoad), MayAlias}; |
George Burgess IV | 82e355c | 2016-08-03 19:39:54 +0000 | [diff] [blame] | 298 | |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 299 | ModRefInfo I = AA.getModRefInfo(DefInst, UseLoc); |
| 300 | AR = isMustSet(I) ? MustAlias : MayAlias; |
| 301 | return {isModSet(I), AR}; |
Daniel Berlin | dff31de | 2016-08-02 21:57:52 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 304 | static ClobberAlias instructionClobbersQuery(MemoryDef *MD, |
| 305 | const MemoryUseOrDef *MU, |
| 306 | const MemoryLocOrCall &UseMLOC, |
| 307 | AliasAnalysis &AA) { |
Sebastian Pop | 5068d7a | 2016-10-13 03:23:33 +0000 | [diff] [blame] | 308 | // FIXME: This is a temporary hack to allow a single instructionClobbersQuery |
| 309 | // to exist while MemoryLocOrCall is pushed through places. |
| 310 | if (UseMLOC.IsCall) |
| 311 | return instructionClobbersQuery(MD, MemoryLocation(), MU->getMemoryInst(), |
| 312 | AA); |
| 313 | return instructionClobbersQuery(MD, UseMLOC.getLoc(), MU->getMemoryInst(), |
| 314 | AA); |
| 315 | } |
| 316 | |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 317 | // Return true when MD may alias MU, return false otherwise. |
Daniel Berlin | dcb004f | 2017-03-02 23:06:46 +0000 | [diff] [blame] | 318 | bool MemorySSAUtil::defClobbersUseOrDef(MemoryDef *MD, const MemoryUseOrDef *MU, |
| 319 | AliasAnalysis &AA) { |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 320 | return instructionClobbersQuery(MD, MU, MemoryLocOrCall(MU), AA).IsClobber; |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 321 | } |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 322 | |
| 323 | namespace { |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 324 | |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 325 | struct UpwardsMemoryQuery { |
| 326 | // True if our original query started off as a call |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 327 | bool IsCall = false; |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 328 | // The pointer location we started the query with. This will be empty if |
| 329 | // IsCall is true. |
| 330 | MemoryLocation StartingLoc; |
| 331 | // This is the instruction we were querying about. |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 332 | const Instruction *Inst = nullptr; |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 333 | // The MemoryAccess we actually got called with, used to test local domination |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 334 | const MemoryAccess *OriginalAccess = nullptr; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 335 | Optional<AliasResult> AR = MayAlias; |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 336 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 337 | UpwardsMemoryQuery() = default; |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 338 | |
| 339 | UpwardsMemoryQuery(const Instruction *Inst, const MemoryAccess *Access) |
| 340 | : IsCall(ImmutableCallSite(Inst)), Inst(Inst), OriginalAccess(Access) { |
| 341 | if (!IsCall) |
| 342 | StartingLoc = MemoryLocation::get(Inst); |
| 343 | } |
| 344 | }; |
| 345 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 346 | } // end anonymous namespace |
| 347 | |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 348 | static bool lifetimeEndsAt(MemoryDef *MD, const MemoryLocation &Loc, |
| 349 | AliasAnalysis &AA) { |
| 350 | Instruction *Inst = MD->getMemoryInst(); |
| 351 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) { |
| 352 | switch (II->getIntrinsicID()) { |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 353 | case Intrinsic::lifetime_end: |
| 354 | return AA.isMustAlias(MemoryLocation(II->getArgOperand(1)), Loc); |
| 355 | default: |
| 356 | return false; |
| 357 | } |
| 358 | } |
| 359 | return false; |
| 360 | } |
| 361 | |
| 362 | static bool isUseTriviallyOptimizableToLiveOnEntry(AliasAnalysis &AA, |
| 363 | const Instruction *I) { |
| 364 | // If the memory can't be changed, then loads of the memory can't be |
| 365 | // clobbered. |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 366 | return isa<LoadInst>(I) && (I->getMetadata(LLVMContext::MD_invariant_load) || |
Hal Finkel | a9d67cf | 2017-04-09 12:57:50 +0000 | [diff] [blame] | 367 | AA.pointsToConstantMemory(cast<LoadInst>(I)-> |
| 368 | getPointerOperand())); |
Sebastian Pop | 5ba9f24 | 2016-10-13 01:39:10 +0000 | [diff] [blame] | 369 | } |
| 370 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 371 | /// Verifies that `Start` is clobbered by `ClobberAt`, and that nothing |
| 372 | /// inbetween `Start` and `ClobberAt` can clobbers `Start`. |
| 373 | /// |
| 374 | /// This is meant to be as simple and self-contained as possible. Because it |
| 375 | /// uses no cache, etc., it can be relatively expensive. |
| 376 | /// |
| 377 | /// \param Start The MemoryAccess that we want to walk from. |
| 378 | /// \param ClobberAt A clobber for Start. |
| 379 | /// \param StartLoc The MemoryLocation for Start. |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 380 | /// \param MSSA The MemorySSA instance that Start and ClobberAt belong to. |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 381 | /// \param Query The UpwardsMemoryQuery we used for our search. |
| 382 | /// \param AA The AliasAnalysis we used for our search. |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 383 | static void |
| 384 | checkClobberSanity(const MemoryAccess *Start, MemoryAccess *ClobberAt, |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 385 | const MemoryLocation &StartLoc, const MemorySSA &MSSA, |
| 386 | const UpwardsMemoryQuery &Query, AliasAnalysis &AA) { |
| 387 | assert(MSSA.dominates(ClobberAt, Start) && "Clobber doesn't dominate start?"); |
| 388 | |
| 389 | if (MSSA.isLiveOnEntryDef(Start)) { |
| 390 | assert(MSSA.isLiveOnEntryDef(ClobberAt) && |
| 391 | "liveOnEntry must clobber itself"); |
| 392 | return; |
| 393 | } |
| 394 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 395 | bool FoundClobber = false; |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 396 | DenseSet<ConstMemoryAccessPair> VisitedPhis; |
| 397 | SmallVector<ConstMemoryAccessPair, 8> Worklist; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 398 | Worklist.emplace_back(Start, StartLoc); |
| 399 | // Walk all paths from Start to ClobberAt, while looking for clobbers. If one |
| 400 | // is found, complain. |
| 401 | while (!Worklist.empty()) { |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 402 | auto MAP = Worklist.pop_back_val(); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 403 | // All we care about is that nothing from Start to ClobberAt clobbers Start. |
| 404 | // We learn nothing from revisiting nodes. |
| 405 | if (!VisitedPhis.insert(MAP).second) |
| 406 | continue; |
| 407 | |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 408 | for (const auto *MA : def_chain(MAP.first)) { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 409 | if (MA == ClobberAt) { |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 410 | if (const auto *MD = dyn_cast<MemoryDef>(MA)) { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 411 | // instructionClobbersQuery isn't essentially free, so don't use `|=`, |
| 412 | // since it won't let us short-circuit. |
| 413 | // |
| 414 | // Also, note that this can't be hoisted out of the `Worklist` loop, |
| 415 | // since MD may only act as a clobber for 1 of N MemoryLocations. |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 416 | FoundClobber = FoundClobber || MSSA.isLiveOnEntryDef(MD); |
| 417 | if (!FoundClobber) { |
| 418 | ClobberAlias CA = |
| 419 | instructionClobbersQuery(MD, MAP.second, Query.Inst, AA); |
| 420 | if (CA.IsClobber) { |
| 421 | FoundClobber = true; |
| 422 | // Not used: CA.AR; |
| 423 | } |
| 424 | } |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 425 | } |
| 426 | break; |
| 427 | } |
| 428 | |
| 429 | // We should never hit liveOnEntry, unless it's the clobber. |
| 430 | assert(!MSSA.isLiveOnEntryDef(MA) && "Hit liveOnEntry before clobber?"); |
| 431 | |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 432 | if (const auto *MD = dyn_cast<MemoryDef>(MA)) { |
Alina Sbirlea | 5bce4d5 | 2018-08-29 22:38:51 +0000 | [diff] [blame^] | 433 | // If Start is a Def, skip self. |
| 434 | if (MD == Start) |
| 435 | continue; |
| 436 | |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 437 | assert(!instructionClobbersQuery(MD, MAP.second, Query.Inst, AA) |
| 438 | .IsClobber && |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 439 | "Found clobber before reaching ClobberAt!"); |
| 440 | continue; |
| 441 | } |
| 442 | |
Alina Sbirlea | 5bce4d5 | 2018-08-29 22:38:51 +0000 | [diff] [blame^] | 443 | if (const auto *MU = dyn_cast<MemoryUse>(MA)) { |
| 444 | assert (MU == Start && |
| 445 | "Can only find use in def chain if Start is a use"); |
| 446 | continue; |
| 447 | } |
| 448 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 449 | assert(isa<MemoryPhi>(MA)); |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 450 | Worklist.append( |
| 451 | upward_defs_begin({const_cast<MemoryAccess *>(MA), MAP.second}), |
| 452 | upward_defs_end()); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | |
| 456 | // If ClobberAt is a MemoryPhi, we can assume something above it acted as a |
| 457 | // clobber. Otherwise, `ClobberAt` should've acted as a clobber at some point. |
| 458 | assert((isa<MemoryPhi>(ClobberAt) || FoundClobber) && |
| 459 | "ClobberAt never acted as a clobber"); |
| 460 | } |
| 461 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 462 | namespace { |
| 463 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 464 | /// Our algorithm for walking (and trying to optimize) clobbers, all wrapped up |
| 465 | /// in one class. |
| 466 | class ClobberWalker { |
| 467 | /// Save a few bytes by using unsigned instead of size_t. |
| 468 | using ListIndex = unsigned; |
| 469 | |
| 470 | /// Represents a span of contiguous MemoryDefs, potentially ending in a |
| 471 | /// MemoryPhi. |
| 472 | struct DefPath { |
| 473 | MemoryLocation Loc; |
| 474 | // Note that, because we always walk in reverse, Last will always dominate |
| 475 | // First. Also note that First and Last are inclusive. |
| 476 | MemoryAccess *First; |
| 477 | MemoryAccess *Last; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 478 | Optional<ListIndex> Previous; |
| 479 | |
| 480 | DefPath(const MemoryLocation &Loc, MemoryAccess *First, MemoryAccess *Last, |
| 481 | Optional<ListIndex> Previous) |
| 482 | : Loc(Loc), First(First), Last(Last), Previous(Previous) {} |
| 483 | |
| 484 | DefPath(const MemoryLocation &Loc, MemoryAccess *Init, |
| 485 | Optional<ListIndex> Previous) |
| 486 | : DefPath(Loc, Init, Init, Previous) {} |
| 487 | }; |
| 488 | |
| 489 | const MemorySSA &MSSA; |
| 490 | AliasAnalysis &AA; |
| 491 | DominatorTree &DT; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 492 | UpwardsMemoryQuery *Query; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 493 | |
| 494 | // Phi optimization bookkeeping |
| 495 | SmallVector<DefPath, 32> Paths; |
| 496 | DenseSet<ConstMemoryAccessPair> VisitedPhis; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 497 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 498 | /// Find the nearest def or phi that `From` can legally be optimized to. |
Daniel Berlin | d042031 | 2017-04-01 09:01:12 +0000 | [diff] [blame] | 499 | const MemoryAccess *getWalkTarget(const MemoryPhi *From) const { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 500 | assert(From->getNumOperands() && "Phi with no operands?"); |
| 501 | |
| 502 | BasicBlock *BB = From->getBlock(); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 503 | MemoryAccess *Result = MSSA.getLiveOnEntryDef(); |
| 504 | DomTreeNode *Node = DT.getNode(BB); |
| 505 | while ((Node = Node->getIDom())) { |
Daniel Berlin | 7500c56 | 2017-04-01 08:59:45 +0000 | [diff] [blame] | 506 | auto *Defs = MSSA.getBlockDefs(Node->getBlock()); |
| 507 | if (Defs) |
Daniel Berlin | d042031 | 2017-04-01 09:01:12 +0000 | [diff] [blame] | 508 | return &*Defs->rbegin(); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 509 | } |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 510 | return Result; |
| 511 | } |
| 512 | |
| 513 | /// Result of calling walkToPhiOrClobber. |
| 514 | struct UpwardsWalkResult { |
| 515 | /// The "Result" of the walk. Either a clobber, the last thing we walked, or |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 516 | /// both. Include alias info when clobber found. |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 517 | MemoryAccess *Result; |
| 518 | bool IsKnownClobber; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 519 | Optional<AliasResult> AR; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 520 | }; |
| 521 | |
| 522 | /// Walk to the next Phi or Clobber in the def chain starting at Desc.Last. |
| 523 | /// This will update Desc.Last as it walks. It will (optionally) also stop at |
| 524 | /// StopAt. |
| 525 | /// |
| 526 | /// This does not test for whether StopAt is a clobber |
Daniel Berlin | d042031 | 2017-04-01 09:01:12 +0000 | [diff] [blame] | 527 | UpwardsWalkResult |
| 528 | walkToPhiOrClobber(DefPath &Desc, |
| 529 | const MemoryAccess *StopAt = nullptr) const { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 530 | assert(!isa<MemoryUse>(Desc.Last) && "Uses don't exist in my world"); |
| 531 | |
| 532 | for (MemoryAccess *Current : def_chain(Desc.Last)) { |
| 533 | Desc.Last = Current; |
| 534 | if (Current == StopAt) |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 535 | return {Current, false, MayAlias}; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 536 | |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 537 | if (auto *MD = dyn_cast<MemoryDef>(Current)) { |
| 538 | if (MSSA.isLiveOnEntryDef(MD)) |
| 539 | return {MD, true, MustAlias}; |
| 540 | ClobberAlias CA = |
| 541 | instructionClobbersQuery(MD, Desc.Loc, Query->Inst, AA); |
| 542 | if (CA.IsClobber) |
| 543 | return {MD, true, CA.AR}; |
| 544 | } |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | assert(isa<MemoryPhi>(Desc.Last) && |
| 548 | "Ended at a non-clobber that's not a phi?"); |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 549 | return {Desc.Last, false, MayAlias}; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | void addSearches(MemoryPhi *Phi, SmallVectorImpl<ListIndex> &PausedSearches, |
| 553 | ListIndex PriorNode) { |
| 554 | auto UpwardDefs = make_range(upward_defs_begin({Phi, Paths[PriorNode].Loc}), |
| 555 | upward_defs_end()); |
| 556 | for (const MemoryAccessPair &P : UpwardDefs) { |
| 557 | PausedSearches.push_back(Paths.size()); |
| 558 | Paths.emplace_back(P.second, P.first, PriorNode); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | /// Represents a search that terminated after finding a clobber. This clobber |
| 563 | /// may or may not be present in the path of defs from LastNode..SearchStart, |
| 564 | /// since it may have been retrieved from cache. |
| 565 | struct TerminatedPath { |
| 566 | MemoryAccess *Clobber; |
| 567 | ListIndex LastNode; |
| 568 | }; |
| 569 | |
| 570 | /// Get an access that keeps us from optimizing to the given phi. |
| 571 | /// |
| 572 | /// PausedSearches is an array of indices into the Paths array. Its incoming |
| 573 | /// value is the indices of searches that stopped at the last phi optimization |
| 574 | /// target. It's left in an unspecified state. |
| 575 | /// |
| 576 | /// If this returns None, NewPaused is a vector of searches that terminated |
| 577 | /// at StopWhere. Otherwise, NewPaused is left in an unspecified state. |
George Burgess IV | 14633b5 | 2016-08-03 01:22:19 +0000 | [diff] [blame] | 578 | Optional<TerminatedPath> |
Daniel Berlin | d042031 | 2017-04-01 09:01:12 +0000 | [diff] [blame] | 579 | getBlockingAccess(const MemoryAccess *StopWhere, |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 580 | SmallVectorImpl<ListIndex> &PausedSearches, |
| 581 | SmallVectorImpl<ListIndex> &NewPaused, |
| 582 | SmallVectorImpl<TerminatedPath> &Terminated) { |
| 583 | assert(!PausedSearches.empty() && "No searches to continue?"); |
| 584 | |
| 585 | // BFS vs DFS really doesn't make a difference here, so just do a DFS with |
| 586 | // PausedSearches as our stack. |
| 587 | while (!PausedSearches.empty()) { |
| 588 | ListIndex PathIndex = PausedSearches.pop_back_val(); |
| 589 | DefPath &Node = Paths[PathIndex]; |
| 590 | |
| 591 | // If we've already visited this path with this MemoryLocation, we don't |
| 592 | // need to do so again. |
| 593 | // |
| 594 | // NOTE: That we just drop these paths on the ground makes caching |
| 595 | // behavior sporadic. e.g. given a diamond: |
| 596 | // A |
| 597 | // B C |
| 598 | // D |
| 599 | // |
| 600 | // ...If we walk D, B, A, C, we'll only cache the result of phi |
| 601 | // optimization for A, B, and D; C will be skipped because it dies here. |
| 602 | // This arguably isn't the worst thing ever, since: |
| 603 | // - We generally query things in a top-down order, so if we got below D |
| 604 | // without needing cache entries for {C, MemLoc}, then chances are |
| 605 | // that those cache entries would end up ultimately unused. |
| 606 | // - We still cache things for A, so C only needs to walk up a bit. |
| 607 | // If this behavior becomes problematic, we can fix without a ton of extra |
| 608 | // work. |
| 609 | if (!VisitedPhis.insert({Node.Last, Node.Loc}).second) |
| 610 | continue; |
| 611 | |
| 612 | UpwardsWalkResult Res = walkToPhiOrClobber(Node, /*StopAt=*/StopWhere); |
| 613 | if (Res.IsKnownClobber) { |
Daniel Berlin | d7a7ae0 | 2017-04-05 19:01:58 +0000 | [diff] [blame] | 614 | assert(Res.Result != StopWhere); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 615 | // If this wasn't a cache hit, we hit a clobber when walking. That's a |
| 616 | // failure. |
George Burgess IV | 14633b5 | 2016-08-03 01:22:19 +0000 | [diff] [blame] | 617 | TerminatedPath Term{Res.Result, PathIndex}; |
Daniel Berlin | d7a7ae0 | 2017-04-05 19:01:58 +0000 | [diff] [blame] | 618 | if (!MSSA.dominates(Res.Result, StopWhere)) |
George Burgess IV | 14633b5 | 2016-08-03 01:22:19 +0000 | [diff] [blame] | 619 | return Term; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 620 | |
| 621 | // Otherwise, it's a valid thing to potentially optimize to. |
George Burgess IV | 14633b5 | 2016-08-03 01:22:19 +0000 | [diff] [blame] | 622 | Terminated.push_back(Term); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 623 | continue; |
| 624 | } |
| 625 | |
| 626 | if (Res.Result == StopWhere) { |
| 627 | // We've hit our target. Save this path off for if we want to continue |
| 628 | // walking. |
| 629 | NewPaused.push_back(PathIndex); |
| 630 | continue; |
| 631 | } |
| 632 | |
| 633 | assert(!MSSA.isLiveOnEntryDef(Res.Result) && "liveOnEntry is a clobber"); |
| 634 | addSearches(cast<MemoryPhi>(Res.Result), PausedSearches, PathIndex); |
| 635 | } |
| 636 | |
| 637 | return None; |
| 638 | } |
| 639 | |
| 640 | template <typename T, typename Walker> |
| 641 | struct generic_def_path_iterator |
| 642 | : public iterator_facade_base<generic_def_path_iterator<T, Walker>, |
| 643 | std::forward_iterator_tag, T *> { |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 644 | generic_def_path_iterator() = default; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 645 | generic_def_path_iterator(Walker *W, ListIndex N) : W(W), N(N) {} |
| 646 | |
| 647 | T &operator*() const { return curNode(); } |
| 648 | |
| 649 | generic_def_path_iterator &operator++() { |
| 650 | N = curNode().Previous; |
| 651 | return *this; |
| 652 | } |
| 653 | |
| 654 | bool operator==(const generic_def_path_iterator &O) const { |
| 655 | if (N.hasValue() != O.N.hasValue()) |
| 656 | return false; |
| 657 | return !N.hasValue() || *N == *O.N; |
| 658 | } |
| 659 | |
| 660 | private: |
| 661 | T &curNode() const { return W->Paths[*N]; } |
| 662 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 663 | Walker *W = nullptr; |
| 664 | Optional<ListIndex> N = None; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 665 | }; |
| 666 | |
| 667 | using def_path_iterator = generic_def_path_iterator<DefPath, ClobberWalker>; |
| 668 | using const_def_path_iterator = |
| 669 | generic_def_path_iterator<const DefPath, const ClobberWalker>; |
| 670 | |
| 671 | iterator_range<def_path_iterator> def_path(ListIndex From) { |
| 672 | return make_range(def_path_iterator(this, From), def_path_iterator()); |
| 673 | } |
| 674 | |
| 675 | iterator_range<const_def_path_iterator> const_def_path(ListIndex From) const { |
| 676 | return make_range(const_def_path_iterator(this, From), |
| 677 | const_def_path_iterator()); |
| 678 | } |
| 679 | |
| 680 | struct OptznResult { |
| 681 | /// The path that contains our result. |
| 682 | TerminatedPath PrimaryClobber; |
| 683 | /// The paths that we can legally cache back from, but that aren't |
| 684 | /// necessarily the result of the Phi optimization. |
| 685 | SmallVector<TerminatedPath, 4> OtherClobbers; |
| 686 | }; |
| 687 | |
| 688 | ListIndex defPathIndex(const DefPath &N) const { |
| 689 | // The assert looks nicer if we don't need to do &N |
| 690 | const DefPath *NP = &N; |
| 691 | assert(!Paths.empty() && NP >= &Paths.front() && NP <= &Paths.back() && |
| 692 | "Out of bounds DefPath!"); |
| 693 | return NP - &Paths.front(); |
| 694 | } |
| 695 | |
| 696 | /// Try to optimize a phi as best as we can. Returns a SmallVector of Paths |
| 697 | /// that act as legal clobbers. Note that this won't return *all* clobbers. |
| 698 | /// |
| 699 | /// Phi optimization algorithm tl;dr: |
| 700 | /// - Find the earliest def/phi, A, we can optimize to |
| 701 | /// - Find if all paths from the starting memory access ultimately reach A |
| 702 | /// - If not, optimization isn't possible. |
| 703 | /// - Otherwise, walk from A to another clobber or phi, A'. |
| 704 | /// - If A' is a def, we're done. |
| 705 | /// - If A' is a phi, try to optimize it. |
| 706 | /// |
| 707 | /// A path is a series of {MemoryAccess, MemoryLocation} pairs. A path |
| 708 | /// terminates when a MemoryAccess that clobbers said MemoryLocation is found. |
| 709 | OptznResult tryOptimizePhi(MemoryPhi *Phi, MemoryAccess *Start, |
| 710 | const MemoryLocation &Loc) { |
| 711 | assert(Paths.empty() && VisitedPhis.empty() && |
| 712 | "Reset the optimization state."); |
| 713 | |
| 714 | Paths.emplace_back(Loc, Start, Phi, None); |
| 715 | // Stores how many "valid" optimization nodes we had prior to calling |
| 716 | // addSearches/getBlockingAccess. Necessary for caching if we had a blocker. |
| 717 | auto PriorPathsSize = Paths.size(); |
| 718 | |
| 719 | SmallVector<ListIndex, 16> PausedSearches; |
| 720 | SmallVector<ListIndex, 8> NewPaused; |
| 721 | SmallVector<TerminatedPath, 4> TerminatedPaths; |
| 722 | |
| 723 | addSearches(Phi, PausedSearches, 0); |
| 724 | |
| 725 | // Moves the TerminatedPath with the "most dominated" Clobber to the end of |
| 726 | // Paths. |
| 727 | auto MoveDominatedPathToEnd = [&](SmallVectorImpl<TerminatedPath> &Paths) { |
| 728 | assert(!Paths.empty() && "Need a path to move"); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 729 | auto Dom = Paths.begin(); |
| 730 | for (auto I = std::next(Dom), E = Paths.end(); I != E; ++I) |
| 731 | if (!MSSA.dominates(I->Clobber, Dom->Clobber)) |
| 732 | Dom = I; |
| 733 | auto Last = Paths.end() - 1; |
| 734 | if (Last != Dom) |
| 735 | std::iter_swap(Last, Dom); |
| 736 | }; |
| 737 | |
| 738 | MemoryPhi *Current = Phi; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 739 | while (true) { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 740 | assert(!MSSA.isLiveOnEntryDef(Current) && |
| 741 | "liveOnEntry wasn't treated as a clobber?"); |
| 742 | |
Daniel Berlin | d042031 | 2017-04-01 09:01:12 +0000 | [diff] [blame] | 743 | const auto *Target = getWalkTarget(Current); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 744 | // If a TerminatedPath doesn't dominate Target, then it wasn't a legal |
| 745 | // optimization for the prior phi. |
| 746 | assert(all_of(TerminatedPaths, [&](const TerminatedPath &P) { |
| 747 | return MSSA.dominates(P.Clobber, Target); |
| 748 | })); |
| 749 | |
| 750 | // FIXME: This is broken, because the Blocker may be reported to be |
| 751 | // liveOnEntry, and we'll happily wait for that to disappear (read: never) |
George Burgess IV | 7f414b9 | 2016-08-22 23:40:01 +0000 | [diff] [blame] | 752 | // For the moment, this is fine, since we do nothing with blocker info. |
George Burgess IV | 14633b5 | 2016-08-03 01:22:19 +0000 | [diff] [blame] | 753 | if (Optional<TerminatedPath> Blocker = getBlockingAccess( |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 754 | Target, PausedSearches, NewPaused, TerminatedPaths)) { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 755 | |
| 756 | // Find the node we started at. We can't search based on N->Last, since |
| 757 | // we may have gone around a loop with a different MemoryLocation. |
George Burgess IV | 14633b5 | 2016-08-03 01:22:19 +0000 | [diff] [blame] | 758 | auto Iter = find_if(def_path(Blocker->LastNode), [&](const DefPath &N) { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 759 | return defPathIndex(N) < PriorPathsSize; |
| 760 | }); |
| 761 | assert(Iter != def_path_iterator()); |
| 762 | |
| 763 | DefPath &CurNode = *Iter; |
| 764 | assert(CurNode.Last == Current); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 765 | |
| 766 | // Two things: |
| 767 | // A. We can't reliably cache all of NewPaused back. Consider a case |
| 768 | // where we have two paths in NewPaused; one of which can't optimize |
| 769 | // above this phi, whereas the other can. If we cache the second path |
| 770 | // back, we'll end up with suboptimal cache entries. We can handle |
| 771 | // cases like this a bit better when we either try to find all |
| 772 | // clobbers that block phi optimization, or when our cache starts |
| 773 | // supporting unfinished searches. |
| 774 | // B. We can't reliably cache TerminatedPaths back here without doing |
| 775 | // extra checks; consider a case like: |
| 776 | // T |
| 777 | // / \ |
| 778 | // D C |
| 779 | // \ / |
| 780 | // S |
| 781 | // Where T is our target, C is a node with a clobber on it, D is a |
| 782 | // diamond (with a clobber *only* on the left or right node, N), and |
| 783 | // S is our start. Say we walk to D, through the node opposite N |
| 784 | // (read: ignoring the clobber), and see a cache entry in the top |
| 785 | // node of D. That cache entry gets put into TerminatedPaths. We then |
| 786 | // walk up to C (N is later in our worklist), find the clobber, and |
| 787 | // quit. If we append TerminatedPaths to OtherClobbers, we'll cache |
| 788 | // the bottom part of D to the cached clobber, ignoring the clobber |
| 789 | // in N. Again, this problem goes away if we start tracking all |
| 790 | // blockers for a given phi optimization. |
| 791 | TerminatedPath Result{CurNode.Last, defPathIndex(CurNode)}; |
| 792 | return {Result, {}}; |
| 793 | } |
| 794 | |
| 795 | // If there's nothing left to search, then all paths led to valid clobbers |
| 796 | // that we got from our cache; pick the nearest to the start, and allow |
| 797 | // the rest to be cached back. |
| 798 | if (NewPaused.empty()) { |
| 799 | MoveDominatedPathToEnd(TerminatedPaths); |
| 800 | TerminatedPath Result = TerminatedPaths.pop_back_val(); |
| 801 | return {Result, std::move(TerminatedPaths)}; |
| 802 | } |
| 803 | |
| 804 | MemoryAccess *DefChainEnd = nullptr; |
| 805 | SmallVector<TerminatedPath, 4> Clobbers; |
| 806 | for (ListIndex Paused : NewPaused) { |
| 807 | UpwardsWalkResult WR = walkToPhiOrClobber(Paths[Paused]); |
| 808 | if (WR.IsKnownClobber) |
| 809 | Clobbers.push_back({WR.Result, Paused}); |
| 810 | else |
| 811 | // Micro-opt: If we hit the end of the chain, save it. |
| 812 | DefChainEnd = WR.Result; |
| 813 | } |
| 814 | |
| 815 | if (!TerminatedPaths.empty()) { |
| 816 | // If we couldn't find the dominating phi/liveOnEntry in the above loop, |
| 817 | // do it now. |
| 818 | if (!DefChainEnd) |
Daniel Berlin | d042031 | 2017-04-01 09:01:12 +0000 | [diff] [blame] | 819 | for (auto *MA : def_chain(const_cast<MemoryAccess *>(Target))) |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 820 | DefChainEnd = MA; |
| 821 | |
| 822 | // If any of the terminated paths don't dominate the phi we'll try to |
| 823 | // optimize, we need to figure out what they are and quit. |
| 824 | const BasicBlock *ChainBB = DefChainEnd->getBlock(); |
| 825 | for (const TerminatedPath &TP : TerminatedPaths) { |
| 826 | // Because we know that DefChainEnd is as "high" as we can go, we |
| 827 | // don't need local dominance checks; BB dominance is sufficient. |
| 828 | if (DT.dominates(ChainBB, TP.Clobber->getBlock())) |
| 829 | Clobbers.push_back(TP); |
| 830 | } |
| 831 | } |
| 832 | |
| 833 | // If we have clobbers in the def chain, find the one closest to Current |
| 834 | // and quit. |
| 835 | if (!Clobbers.empty()) { |
| 836 | MoveDominatedPathToEnd(Clobbers); |
| 837 | TerminatedPath Result = Clobbers.pop_back_val(); |
| 838 | return {Result, std::move(Clobbers)}; |
| 839 | } |
| 840 | |
| 841 | assert(all_of(NewPaused, |
| 842 | [&](ListIndex I) { return Paths[I].Last == DefChainEnd; })); |
| 843 | |
| 844 | // Because liveOnEntry is a clobber, this must be a phi. |
| 845 | auto *DefChainPhi = cast<MemoryPhi>(DefChainEnd); |
| 846 | |
| 847 | PriorPathsSize = Paths.size(); |
| 848 | PausedSearches.clear(); |
| 849 | for (ListIndex I : NewPaused) |
| 850 | addSearches(DefChainPhi, PausedSearches, I); |
| 851 | NewPaused.clear(); |
| 852 | |
| 853 | Current = DefChainPhi; |
| 854 | } |
| 855 | } |
| 856 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 857 | void verifyOptResult(const OptznResult &R) const { |
| 858 | assert(all_of(R.OtherClobbers, [&](const TerminatedPath &P) { |
| 859 | return MSSA.dominates(P.Clobber, R.PrimaryClobber.Clobber); |
| 860 | })); |
| 861 | } |
| 862 | |
| 863 | void resetPhiOptznState() { |
| 864 | Paths.clear(); |
| 865 | VisitedPhis.clear(); |
| 866 | } |
| 867 | |
| 868 | public: |
Daniel Berlin | d7a7ae0 | 2017-04-05 19:01:58 +0000 | [diff] [blame] | 869 | ClobberWalker(const MemorySSA &MSSA, AliasAnalysis &AA, DominatorTree &DT) |
| 870 | : MSSA(MSSA), AA(AA), DT(DT) {} |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 871 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 872 | /// Finds the nearest clobber for the given query, optimizing phis if |
| 873 | /// possible. |
Daniel Berlin | d7a7ae0 | 2017-04-05 19:01:58 +0000 | [diff] [blame] | 874 | MemoryAccess *findClobber(MemoryAccess *Start, UpwardsMemoryQuery &Q) { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 875 | Query = &Q; |
| 876 | |
| 877 | MemoryAccess *Current = Start; |
| 878 | // This walker pretends uses don't exist. If we're handed one, silently grab |
| 879 | // its def. (This has the nice side-effect of ensuring we never cache uses) |
| 880 | if (auto *MU = dyn_cast<MemoryUse>(Start)) |
| 881 | Current = MU->getDefiningAccess(); |
| 882 | |
| 883 | DefPath FirstDesc(Q.StartingLoc, Current, Current, None); |
| 884 | // Fast path for the overly-common case (no crazy phi optimization |
| 885 | // necessary) |
| 886 | UpwardsWalkResult WalkResult = walkToPhiOrClobber(FirstDesc); |
George Burgess IV | 93ea19b | 2016-07-24 07:03:49 +0000 | [diff] [blame] | 887 | MemoryAccess *Result; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 888 | if (WalkResult.IsKnownClobber) { |
George Burgess IV | 93ea19b | 2016-07-24 07:03:49 +0000 | [diff] [blame] | 889 | Result = WalkResult.Result; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 890 | Q.AR = WalkResult.AR; |
George Burgess IV | 93ea19b | 2016-07-24 07:03:49 +0000 | [diff] [blame] | 891 | } else { |
| 892 | OptznResult OptRes = tryOptimizePhi(cast<MemoryPhi>(FirstDesc.Last), |
| 893 | Current, Q.StartingLoc); |
| 894 | verifyOptResult(OptRes); |
George Burgess IV | 93ea19b | 2016-07-24 07:03:49 +0000 | [diff] [blame] | 895 | resetPhiOptznState(); |
| 896 | Result = OptRes.PrimaryClobber.Clobber; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 897 | } |
| 898 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 899 | #ifdef EXPENSIVE_CHECKS |
George Burgess IV | 93ea19b | 2016-07-24 07:03:49 +0000 | [diff] [blame] | 900 | checkClobberSanity(Current, Result, Q.StartingLoc, MSSA, Q, AA); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 901 | #endif |
George Burgess IV | 93ea19b | 2016-07-24 07:03:49 +0000 | [diff] [blame] | 902 | return Result; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 903 | } |
Geoff Berry | cdf5333 | 2016-08-08 17:52:01 +0000 | [diff] [blame] | 904 | |
| 905 | void verify(const MemorySSA *MSSA) { assert(MSSA == &this->MSSA); } |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 906 | }; |
| 907 | |
| 908 | struct RenamePassData { |
| 909 | DomTreeNode *DTN; |
| 910 | DomTreeNode::const_iterator ChildIt; |
| 911 | MemoryAccess *IncomingVal; |
| 912 | |
| 913 | RenamePassData(DomTreeNode *D, DomTreeNode::const_iterator It, |
| 914 | MemoryAccess *M) |
| 915 | : DTN(D), ChildIt(It), IncomingVal(M) {} |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 916 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 917 | void swap(RenamePassData &RHS) { |
| 918 | std::swap(DTN, RHS.DTN); |
| 919 | std::swap(ChildIt, RHS.ChildIt); |
| 920 | std::swap(IncomingVal, RHS.IncomingVal); |
| 921 | } |
| 922 | }; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 923 | |
| 924 | } // end anonymous namespace |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 925 | |
| 926 | namespace llvm { |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 927 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 928 | /// A MemorySSAWalker that does AA walks to disambiguate accesses. It no |
George Burgess IV | 45f263d | 2018-05-26 02:28:55 +0000 | [diff] [blame] | 929 | /// longer does caching on its own, but the name has been retained for the |
| 930 | /// moment. |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 931 | class MemorySSA::CachingWalker final : public MemorySSAWalker { |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 932 | ClobberWalker Walker; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 933 | |
| 934 | MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, UpwardsMemoryQuery &); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 935 | |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 936 | public: |
| 937 | CachingWalker(MemorySSA *, AliasAnalysis *, DominatorTree *); |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 938 | ~CachingWalker() override = default; |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 939 | |
George Burgess IV | 400ae40 | 2016-07-20 19:51:34 +0000 | [diff] [blame] | 940 | using MemorySSAWalker::getClobberingMemoryAccess; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 941 | |
George Burgess IV | 400ae40 | 2016-07-20 19:51:34 +0000 | [diff] [blame] | 942 | MemoryAccess *getClobberingMemoryAccess(MemoryAccess *) override; |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 943 | MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, |
George Burgess IV | 013fd73 | 2016-10-28 19:22:46 +0000 | [diff] [blame] | 944 | const MemoryLocation &) override; |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 945 | void invalidateInfo(MemoryAccess *) override; |
| 946 | |
Geoff Berry | cdf5333 | 2016-08-08 17:52:01 +0000 | [diff] [blame] | 947 | void verify(const MemorySSA *MSSA) override { |
| 948 | MemorySSAWalker::verify(MSSA); |
| 949 | Walker.verify(MSSA); |
| 950 | } |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 951 | }; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 952 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 953 | } // end namespace llvm |
| 954 | |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 955 | void MemorySSA::renameSuccessorPhis(BasicBlock *BB, MemoryAccess *IncomingVal, |
| 956 | bool RenameAllUses) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 957 | // Pass through values to our successors |
| 958 | for (const BasicBlock *S : successors(BB)) { |
| 959 | auto It = PerBlockAccesses.find(S); |
| 960 | // Rename the phi nodes in our successor block |
| 961 | if (It == PerBlockAccesses.end() || !isa<MemoryPhi>(It->second->front())) |
| 962 | continue; |
Daniel Berlin | ada263d | 2016-06-20 20:21:33 +0000 | [diff] [blame] | 963 | AccessList *Accesses = It->second.get(); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 964 | auto *Phi = cast<MemoryPhi>(&Accesses->front()); |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 965 | if (RenameAllUses) { |
| 966 | int PhiIndex = Phi->getBasicBlockIndex(BB); |
| 967 | assert(PhiIndex != -1 && "Incomplete phi during partial rename"); |
| 968 | Phi->setIncomingValue(PhiIndex, IncomingVal); |
| 969 | } else |
| 970 | Phi->addIncoming(IncomingVal, BB); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 971 | } |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 972 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 973 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 974 | /// Rename a single basic block into MemorySSA form. |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 975 | /// Uses the standard SSA renaming algorithm. |
| 976 | /// \returns The new incoming value. |
| 977 | MemoryAccess *MemorySSA::renameBlock(BasicBlock *BB, MemoryAccess *IncomingVal, |
| 978 | bool RenameAllUses) { |
| 979 | auto It = PerBlockAccesses.find(BB); |
| 980 | // Skip most processing if the list is empty. |
| 981 | if (It != PerBlockAccesses.end()) { |
| 982 | AccessList *Accesses = It->second.get(); |
| 983 | for (MemoryAccess &L : *Accesses) { |
| 984 | if (MemoryUseOrDef *MUD = dyn_cast<MemoryUseOrDef>(&L)) { |
| 985 | if (MUD->getDefiningAccess() == nullptr || RenameAllUses) |
| 986 | MUD->setDefiningAccess(IncomingVal); |
| 987 | if (isa<MemoryDef>(&L)) |
| 988 | IncomingVal = &L; |
| 989 | } else { |
| 990 | IncomingVal = &L; |
| 991 | } |
| 992 | } |
| 993 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 994 | return IncomingVal; |
| 995 | } |
| 996 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 997 | /// This is the standard SSA renaming algorithm. |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 998 | /// |
| 999 | /// We walk the dominator tree in preorder, renaming accesses, and then filling |
| 1000 | /// in phi nodes in our successors. |
| 1001 | void MemorySSA::renamePass(DomTreeNode *Root, MemoryAccess *IncomingVal, |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 1002 | SmallPtrSetImpl<BasicBlock *> &Visited, |
| 1003 | bool SkipVisited, bool RenameAllUses) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1004 | SmallVector<RenamePassData, 32> WorkStack; |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 1005 | // Skip everything if we already renamed this block and we are skipping. |
| 1006 | // Note: You can't sink this into the if, because we need it to occur |
| 1007 | // regardless of whether we skip blocks or not. |
| 1008 | bool AlreadyVisited = !Visited.insert(Root->getBlock()).second; |
| 1009 | if (SkipVisited && AlreadyVisited) |
| 1010 | return; |
| 1011 | |
| 1012 | IncomingVal = renameBlock(Root->getBlock(), IncomingVal, RenameAllUses); |
| 1013 | renameSuccessorPhis(Root->getBlock(), IncomingVal, RenameAllUses); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1014 | WorkStack.push_back({Root, Root->begin(), IncomingVal}); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1015 | |
| 1016 | while (!WorkStack.empty()) { |
| 1017 | DomTreeNode *Node = WorkStack.back().DTN; |
| 1018 | DomTreeNode::const_iterator ChildIt = WorkStack.back().ChildIt; |
| 1019 | IncomingVal = WorkStack.back().IncomingVal; |
| 1020 | |
| 1021 | if (ChildIt == Node->end()) { |
| 1022 | WorkStack.pop_back(); |
| 1023 | } else { |
| 1024 | DomTreeNode *Child = *ChildIt; |
| 1025 | ++WorkStack.back().ChildIt; |
| 1026 | BasicBlock *BB = Child->getBlock(); |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 1027 | // Note: You can't sink this into the if, because we need it to occur |
| 1028 | // regardless of whether we skip blocks or not. |
| 1029 | AlreadyVisited = !Visited.insert(BB).second; |
| 1030 | if (SkipVisited && AlreadyVisited) { |
| 1031 | // We already visited this during our renaming, which can happen when |
| 1032 | // being asked to rename multiple blocks. Figure out the incoming val, |
| 1033 | // which is the last def. |
| 1034 | // Incoming value can only change if there is a block def, and in that |
| 1035 | // case, it's the last block def in the list. |
| 1036 | if (auto *BlockDefs = getWritableBlockDefs(BB)) |
| 1037 | IncomingVal = &*BlockDefs->rbegin(); |
| 1038 | } else |
| 1039 | IncomingVal = renameBlock(BB, IncomingVal, RenameAllUses); |
| 1040 | renameSuccessorPhis(BB, IncomingVal, RenameAllUses); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1041 | WorkStack.push_back({Child, Child->begin(), IncomingVal}); |
| 1042 | } |
| 1043 | } |
| 1044 | } |
| 1045 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1046 | /// This handles unreachable block accesses by deleting phi nodes in |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1047 | /// unreachable blocks, and marking all other unreachable MemoryAccess's as |
| 1048 | /// being uses of the live on entry definition. |
| 1049 | void MemorySSA::markUnreachableAsLiveOnEntry(BasicBlock *BB) { |
| 1050 | assert(!DT->isReachableFromEntry(BB) && |
| 1051 | "Reachable block found while handling unreachable blocks"); |
| 1052 | |
Daniel Berlin | fc7e651 | 2016-07-06 05:32:05 +0000 | [diff] [blame] | 1053 | // Make sure phi nodes in our reachable successors end up with a |
| 1054 | // LiveOnEntryDef for our incoming edge, even though our block is forward |
| 1055 | // unreachable. We could just disconnect these blocks from the CFG fully, |
| 1056 | // but we do not right now. |
| 1057 | for (const BasicBlock *S : successors(BB)) { |
| 1058 | if (!DT->isReachableFromEntry(S)) |
| 1059 | continue; |
| 1060 | auto It = PerBlockAccesses.find(S); |
| 1061 | // Rename the phi nodes in our successor block |
| 1062 | if (It == PerBlockAccesses.end() || !isa<MemoryPhi>(It->second->front())) |
| 1063 | continue; |
| 1064 | AccessList *Accesses = It->second.get(); |
| 1065 | auto *Phi = cast<MemoryPhi>(&Accesses->front()); |
| 1066 | Phi->addIncoming(LiveOnEntryDef.get(), BB); |
| 1067 | } |
| 1068 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1069 | auto It = PerBlockAccesses.find(BB); |
| 1070 | if (It == PerBlockAccesses.end()) |
| 1071 | return; |
| 1072 | |
| 1073 | auto &Accesses = It->second; |
| 1074 | for (auto AI = Accesses->begin(), AE = Accesses->end(); AI != AE;) { |
| 1075 | auto Next = std::next(AI); |
| 1076 | // If we have a phi, just remove it. We are going to replace all |
| 1077 | // users with live on entry. |
| 1078 | if (auto *UseOrDef = dyn_cast<MemoryUseOrDef>(AI)) |
| 1079 | UseOrDef->setDefiningAccess(LiveOnEntryDef.get()); |
| 1080 | else |
| 1081 | Accesses->erase(AI); |
| 1082 | AI = Next; |
| 1083 | } |
| 1084 | } |
| 1085 | |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 1086 | MemorySSA::MemorySSA(Function &Func, AliasAnalysis *AA, DominatorTree *DT) |
| 1087 | : AA(AA), DT(DT), F(Func), LiveOnEntryDef(nullptr), Walker(nullptr), |
George Burgess IV | 68ac941 | 2018-02-23 23:07:18 +0000 | [diff] [blame] | 1088 | NextID(0) { |
Daniel Berlin | 16ed57c | 2016-06-27 18:22:27 +0000 | [diff] [blame] | 1089 | buildMemorySSA(); |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 1090 | } |
| 1091 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1092 | MemorySSA::~MemorySSA() { |
| 1093 | // Drop all our references |
| 1094 | for (const auto &Pair : PerBlockAccesses) |
| 1095 | for (MemoryAccess &MA : *Pair.second) |
| 1096 | MA.dropAllReferences(); |
| 1097 | } |
| 1098 | |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1099 | MemorySSA::AccessList *MemorySSA::getOrCreateAccessList(const BasicBlock *BB) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1100 | auto Res = PerBlockAccesses.insert(std::make_pair(BB, nullptr)); |
| 1101 | |
| 1102 | if (Res.second) |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1103 | Res.first->second = llvm::make_unique<AccessList>(); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1104 | return Res.first->second.get(); |
| 1105 | } |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1106 | |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1107 | MemorySSA::DefsList *MemorySSA::getOrCreateDefsList(const BasicBlock *BB) { |
| 1108 | auto Res = PerBlockDefs.insert(std::make_pair(BB, nullptr)); |
| 1109 | |
| 1110 | if (Res.second) |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1111 | Res.first->second = llvm::make_unique<DefsList>(); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1112 | return Res.first->second.get(); |
| 1113 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1114 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1115 | namespace llvm { |
| 1116 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1117 | /// This class is a batch walker of all MemoryUse's in the program, and points |
| 1118 | /// their defining access at the thing that actually clobbers them. Because it |
| 1119 | /// is a batch walker that touches everything, it does not operate like the |
| 1120 | /// other walkers. This walker is basically performing a top-down SSA renaming |
| 1121 | /// pass, where the version stack is used as the cache. This enables it to be |
| 1122 | /// significantly more time and memory efficient than using the regular walker, |
| 1123 | /// which is walking bottom-up. |
| 1124 | class MemorySSA::OptimizeUses { |
| 1125 | public: |
| 1126 | OptimizeUses(MemorySSA *MSSA, MemorySSAWalker *Walker, AliasAnalysis *AA, |
| 1127 | DominatorTree *DT) |
| 1128 | : MSSA(MSSA), Walker(Walker), AA(AA), DT(DT) { |
| 1129 | Walker = MSSA->getWalker(); |
| 1130 | } |
| 1131 | |
| 1132 | void optimizeUses(); |
| 1133 | |
| 1134 | private: |
| 1135 | /// This represents where a given memorylocation is in the stack. |
| 1136 | struct MemlocStackInfo { |
| 1137 | // This essentially is keeping track of versions of the stack. Whenever |
| 1138 | // the stack changes due to pushes or pops, these versions increase. |
| 1139 | unsigned long StackEpoch; |
| 1140 | unsigned long PopEpoch; |
| 1141 | // This is the lower bound of places on the stack to check. It is equal to |
| 1142 | // the place the last stack walk ended. |
| 1143 | // Note: Correctness depends on this being initialized to 0, which densemap |
| 1144 | // does |
| 1145 | unsigned long LowerBound; |
Daniel Berlin | 4b4c722 | 2016-08-08 04:44:53 +0000 | [diff] [blame] | 1146 | const BasicBlock *LowerBoundBlock; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1147 | // This is where the last walk for this memory location ended. |
| 1148 | unsigned long LastKill; |
| 1149 | bool LastKillValid; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1150 | Optional<AliasResult> AR; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1151 | }; |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1152 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1153 | void optimizeUsesInBlock(const BasicBlock *, unsigned long &, unsigned long &, |
| 1154 | SmallVectorImpl<MemoryAccess *> &, |
| 1155 | DenseMap<MemoryLocOrCall, MemlocStackInfo> &); |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1156 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1157 | MemorySSA *MSSA; |
| 1158 | MemorySSAWalker *Walker; |
| 1159 | AliasAnalysis *AA; |
| 1160 | DominatorTree *DT; |
| 1161 | }; |
| 1162 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1163 | } // end namespace llvm |
| 1164 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1165 | /// Optimize the uses in a given block This is basically the SSA renaming |
| 1166 | /// algorithm, with one caveat: We are able to use a single stack for all |
| 1167 | /// MemoryUses. This is because the set of *possible* reaching MemoryDefs is |
| 1168 | /// the same for every MemoryUse. The *actual* clobbering MemoryDef is just |
| 1169 | /// going to be some position in that stack of possible ones. |
| 1170 | /// |
| 1171 | /// We track the stack positions that each MemoryLocation needs |
| 1172 | /// to check, and last ended at. This is because we only want to check the |
| 1173 | /// things that changed since last time. The same MemoryLocation should |
| 1174 | /// get clobbered by the same store (getModRefInfo does not use invariantness or |
| 1175 | /// things like this, and if they start, we can modify MemoryLocOrCall to |
| 1176 | /// include relevant data) |
| 1177 | void MemorySSA::OptimizeUses::optimizeUsesInBlock( |
| 1178 | const BasicBlock *BB, unsigned long &StackEpoch, unsigned long &PopEpoch, |
| 1179 | SmallVectorImpl<MemoryAccess *> &VersionStack, |
| 1180 | DenseMap<MemoryLocOrCall, MemlocStackInfo> &LocStackInfo) { |
| 1181 | |
| 1182 | /// If no accesses, nothing to do. |
| 1183 | MemorySSA::AccessList *Accesses = MSSA->getWritableBlockAccesses(BB); |
| 1184 | if (Accesses == nullptr) |
| 1185 | return; |
| 1186 | |
| 1187 | // Pop everything that doesn't dominate the current block off the stack, |
| 1188 | // increment the PopEpoch to account for this. |
Piotr Padlewski | cc5868c1 | 2017-02-18 20:34:36 +0000 | [diff] [blame] | 1189 | while (true) { |
| 1190 | assert( |
| 1191 | !VersionStack.empty() && |
| 1192 | "Version stack should have liveOnEntry sentinel dominating everything"); |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1193 | BasicBlock *BackBlock = VersionStack.back()->getBlock(); |
| 1194 | if (DT->dominates(BackBlock, BB)) |
| 1195 | break; |
| 1196 | while (VersionStack.back()->getBlock() == BackBlock) |
| 1197 | VersionStack.pop_back(); |
| 1198 | ++PopEpoch; |
| 1199 | } |
Piotr Padlewski | cc5868c1 | 2017-02-18 20:34:36 +0000 | [diff] [blame] | 1200 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1201 | for (MemoryAccess &MA : *Accesses) { |
| 1202 | auto *MU = dyn_cast<MemoryUse>(&MA); |
| 1203 | if (!MU) { |
| 1204 | VersionStack.push_back(&MA); |
| 1205 | ++StackEpoch; |
| 1206 | continue; |
| 1207 | } |
| 1208 | |
George Burgess IV | 024f3d2 | 2016-08-03 19:57:02 +0000 | [diff] [blame] | 1209 | if (isUseTriviallyOptimizableToLiveOnEntry(*AA, MU->getMemoryInst())) { |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1210 | MU->setDefiningAccess(MSSA->getLiveOnEntryDef(), true, None); |
George Burgess IV | 024f3d2 | 2016-08-03 19:57:02 +0000 | [diff] [blame] | 1211 | continue; |
| 1212 | } |
| 1213 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1214 | MemoryLocOrCall UseMLOC(MU); |
| 1215 | auto &LocInfo = LocStackInfo[UseMLOC]; |
Daniel Berlin | 26fcea9 | 2016-08-02 20:02:21 +0000 | [diff] [blame] | 1216 | // If the pop epoch changed, it means we've removed stuff from top of |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1217 | // stack due to changing blocks. We may have to reset the lower bound or |
| 1218 | // last kill info. |
| 1219 | if (LocInfo.PopEpoch != PopEpoch) { |
| 1220 | LocInfo.PopEpoch = PopEpoch; |
| 1221 | LocInfo.StackEpoch = StackEpoch; |
Daniel Berlin | 4b4c722 | 2016-08-08 04:44:53 +0000 | [diff] [blame] | 1222 | // If the lower bound was in something that no longer dominates us, we |
| 1223 | // have to reset it. |
| 1224 | // We can't simply track stack size, because the stack may have had |
| 1225 | // pushes/pops in the meantime. |
| 1226 | // XXX: This is non-optimal, but only is slower cases with heavily |
| 1227 | // branching dominator trees. To get the optimal number of queries would |
| 1228 | // be to make lowerbound and lastkill a per-loc stack, and pop it until |
| 1229 | // the top of that stack dominates us. This does not seem worth it ATM. |
| 1230 | // A much cheaper optimization would be to always explore the deepest |
| 1231 | // branch of the dominator tree first. This will guarantee this resets on |
| 1232 | // the smallest set of blocks. |
| 1233 | if (LocInfo.LowerBoundBlock && LocInfo.LowerBoundBlock != BB && |
Daniel Berlin | 1e98c04 | 2016-09-26 17:22:54 +0000 | [diff] [blame] | 1234 | !DT->dominates(LocInfo.LowerBoundBlock, BB)) { |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1235 | // Reset the lower bound of things to check. |
| 1236 | // TODO: Some day we should be able to reset to last kill, rather than |
| 1237 | // 0. |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1238 | LocInfo.LowerBound = 0; |
Daniel Berlin | 4b4c722 | 2016-08-08 04:44:53 +0000 | [diff] [blame] | 1239 | LocInfo.LowerBoundBlock = VersionStack[0]->getBlock(); |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1240 | LocInfo.LastKillValid = false; |
| 1241 | } |
| 1242 | } else if (LocInfo.StackEpoch != StackEpoch) { |
| 1243 | // If all that has changed is the StackEpoch, we only have to check the |
| 1244 | // new things on the stack, because we've checked everything before. In |
| 1245 | // this case, the lower bound of things to check remains the same. |
| 1246 | LocInfo.PopEpoch = PopEpoch; |
| 1247 | LocInfo.StackEpoch = StackEpoch; |
| 1248 | } |
| 1249 | if (!LocInfo.LastKillValid) { |
| 1250 | LocInfo.LastKill = VersionStack.size() - 1; |
| 1251 | LocInfo.LastKillValid = true; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1252 | LocInfo.AR = MayAlias; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1253 | } |
| 1254 | |
| 1255 | // At this point, we should have corrected last kill and LowerBound to be |
| 1256 | // in bounds. |
| 1257 | assert(LocInfo.LowerBound < VersionStack.size() && |
| 1258 | "Lower bound out of range"); |
| 1259 | assert(LocInfo.LastKill < VersionStack.size() && |
| 1260 | "Last kill info out of range"); |
| 1261 | // In any case, the new upper bound is the top of the stack. |
| 1262 | unsigned long UpperBound = VersionStack.size() - 1; |
| 1263 | |
| 1264 | if (UpperBound - LocInfo.LowerBound > MaxCheckLimit) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1265 | LLVM_DEBUG(dbgs() << "MemorySSA skipping optimization of " << *MU << " (" |
| 1266 | << *(MU->getMemoryInst()) << ")" |
| 1267 | << " because there are " |
| 1268 | << UpperBound - LocInfo.LowerBound |
| 1269 | << " stores to disambiguate\n"); |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1270 | // Because we did not walk, LastKill is no longer valid, as this may |
| 1271 | // have been a kill. |
| 1272 | LocInfo.LastKillValid = false; |
| 1273 | continue; |
| 1274 | } |
| 1275 | bool FoundClobberResult = false; |
| 1276 | while (UpperBound > LocInfo.LowerBound) { |
| 1277 | if (isa<MemoryPhi>(VersionStack[UpperBound])) { |
| 1278 | // For phis, use the walker, see where we ended up, go there |
| 1279 | Instruction *UseInst = MU->getMemoryInst(); |
| 1280 | MemoryAccess *Result = Walker->getClobberingMemoryAccess(UseInst); |
| 1281 | // We are guaranteed to find it or something is wrong |
| 1282 | while (VersionStack[UpperBound] != Result) { |
| 1283 | assert(UpperBound != 0); |
| 1284 | --UpperBound; |
| 1285 | } |
| 1286 | FoundClobberResult = true; |
| 1287 | break; |
| 1288 | } |
| 1289 | |
| 1290 | MemoryDef *MD = cast<MemoryDef>(VersionStack[UpperBound]); |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 1291 | // If the lifetime of the pointer ends at this instruction, it's live on |
| 1292 | // entry. |
| 1293 | if (!UseMLOC.IsCall && lifetimeEndsAt(MD, UseMLOC.getLoc(), *AA)) { |
| 1294 | // Reset UpperBound to liveOnEntryDef's place in the stack |
| 1295 | UpperBound = 0; |
| 1296 | FoundClobberResult = true; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1297 | LocInfo.AR = MustAlias; |
Daniel Berlin | df10119 | 2016-08-03 00:01:46 +0000 | [diff] [blame] | 1298 | break; |
| 1299 | } |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1300 | ClobberAlias CA = instructionClobbersQuery(MD, MU, UseMLOC, *AA); |
| 1301 | if (CA.IsClobber) { |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1302 | FoundClobberResult = true; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1303 | LocInfo.AR = CA.AR; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1304 | break; |
| 1305 | } |
| 1306 | --UpperBound; |
| 1307 | } |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1308 | |
| 1309 | // Note: Phis always have AliasResult AR set to MayAlias ATM. |
| 1310 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1311 | // At the end of this loop, UpperBound is either a clobber, or lower bound |
| 1312 | // PHI walking may cause it to be < LowerBound, and in fact, < LastKill. |
| 1313 | if (FoundClobberResult || UpperBound < LocInfo.LastKill) { |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1314 | // We were last killed now by where we got to |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1315 | if (MSSA->isLiveOnEntryDef(VersionStack[UpperBound])) |
| 1316 | LocInfo.AR = None; |
| 1317 | MU->setDefiningAccess(VersionStack[UpperBound], true, LocInfo.AR); |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1318 | LocInfo.LastKill = UpperBound; |
| 1319 | } else { |
| 1320 | // Otherwise, we checked all the new ones, and now we know we can get to |
| 1321 | // LastKill. |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 1322 | MU->setDefiningAccess(VersionStack[LocInfo.LastKill], true, LocInfo.AR); |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1323 | } |
| 1324 | LocInfo.LowerBound = VersionStack.size() - 1; |
Daniel Berlin | 4b4c722 | 2016-08-08 04:44:53 +0000 | [diff] [blame] | 1325 | LocInfo.LowerBoundBlock = BB; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1326 | } |
| 1327 | } |
| 1328 | |
| 1329 | /// Optimize uses to point to their actual clobbering definitions. |
| 1330 | void MemorySSA::OptimizeUses::optimizeUses() { |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1331 | SmallVector<MemoryAccess *, 16> VersionStack; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1332 | DenseMap<MemoryLocOrCall, MemlocStackInfo> LocStackInfo; |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1333 | VersionStack.push_back(MSSA->getLiveOnEntryDef()); |
| 1334 | |
| 1335 | unsigned long StackEpoch = 1; |
| 1336 | unsigned long PopEpoch = 1; |
Piotr Padlewski | cc5868c1 | 2017-02-18 20:34:36 +0000 | [diff] [blame] | 1337 | // We perform a non-recursive top-down dominator tree walk. |
Daniel Berlin | 7ac3d74 | 2016-08-05 22:09:14 +0000 | [diff] [blame] | 1338 | for (const auto *DomNode : depth_first(DT->getRootNode())) |
| 1339 | optimizeUsesInBlock(DomNode->getBlock(), StackEpoch, PopEpoch, VersionStack, |
| 1340 | LocStackInfo); |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1341 | } |
| 1342 | |
Daniel Berlin | 3d512a2 | 2016-08-22 19:14:30 +0000 | [diff] [blame] | 1343 | void MemorySSA::placePHINodes( |
Michael Zolotukhin | 67cfbaa | 2018-05-15 18:40:29 +0000 | [diff] [blame] | 1344 | const SmallPtrSetImpl<BasicBlock *> &DefiningBlocks) { |
Daniel Berlin | 3d512a2 | 2016-08-22 19:14:30 +0000 | [diff] [blame] | 1345 | // Determine where our MemoryPhi's should go |
| 1346 | ForwardIDFCalculator IDFs(*DT); |
| 1347 | IDFs.setDefiningBlocks(DefiningBlocks); |
Daniel Berlin | 3d512a2 | 2016-08-22 19:14:30 +0000 | [diff] [blame] | 1348 | SmallVector<BasicBlock *, 32> IDFBlocks; |
| 1349 | IDFs.calculate(IDFBlocks); |
| 1350 | |
| 1351 | // Now place MemoryPhi nodes. |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1352 | for (auto &BB : IDFBlocks) |
| 1353 | createMemoryPhi(BB); |
Daniel Berlin | 3d512a2 | 2016-08-22 19:14:30 +0000 | [diff] [blame] | 1354 | } |
| 1355 | |
Daniel Berlin | 16ed57c | 2016-06-27 18:22:27 +0000 | [diff] [blame] | 1356 | void MemorySSA::buildMemorySSA() { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1357 | // We create an access to represent "live on entry", for things like |
| 1358 | // arguments or users of globals, where the memory they use is defined before |
| 1359 | // the beginning of the function. We do not actually insert it into the IR. |
| 1360 | // We do not define a live on exit for the immediate uses, and thus our |
| 1361 | // semantics do *not* imply that something with no immediate uses can simply |
| 1362 | // be removed. |
| 1363 | BasicBlock &StartingPoint = F.getEntryBlock(); |
George Burgess IV | 612cf21 | 2018-02-27 06:43:19 +0000 | [diff] [blame] | 1364 | LiveOnEntryDef.reset(new MemoryDef(F.getContext(), nullptr, nullptr, |
| 1365 | &StartingPoint, NextID++)); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1366 | |
| 1367 | // We maintain lists of memory accesses per-block, trading memory for time. We |
| 1368 | // could just look up the memory access for every possible instruction in the |
| 1369 | // stream. |
| 1370 | SmallPtrSet<BasicBlock *, 32> DefiningBlocks; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1371 | // Go through each block, figure out where defs occur, and chain together all |
| 1372 | // the accesses. |
| 1373 | for (BasicBlock &B : F) { |
Daniel Berlin | 7898ca6 | 2016-02-07 01:52:15 +0000 | [diff] [blame] | 1374 | bool InsertIntoDef = false; |
Daniel Berlin | ada263d | 2016-06-20 20:21:33 +0000 | [diff] [blame] | 1375 | AccessList *Accesses = nullptr; |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1376 | DefsList *Defs = nullptr; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1377 | for (Instruction &I : B) { |
Peter Collingbourne | ffecb14 | 2016-05-26 01:19:17 +0000 | [diff] [blame] | 1378 | MemoryUseOrDef *MUD = createNewAccess(&I); |
George Burgess IV | b42b762 | 2016-03-11 19:34:03 +0000 | [diff] [blame] | 1379 | if (!MUD) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1380 | continue; |
Daniel Berlin | 1b51a29 | 2016-02-07 01:52:19 +0000 | [diff] [blame] | 1381 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1382 | if (!Accesses) |
| 1383 | Accesses = getOrCreateAccessList(&B); |
George Burgess IV | b42b762 | 2016-03-11 19:34:03 +0000 | [diff] [blame] | 1384 | Accesses->push_back(MUD); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1385 | if (isa<MemoryDef>(MUD)) { |
| 1386 | InsertIntoDef = true; |
| 1387 | if (!Defs) |
| 1388 | Defs = getOrCreateDefsList(&B); |
| 1389 | Defs->push_back(*MUD); |
| 1390 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1391 | } |
Daniel Berlin | 7898ca6 | 2016-02-07 01:52:15 +0000 | [diff] [blame] | 1392 | if (InsertIntoDef) |
| 1393 | DefiningBlocks.insert(&B); |
Daniel Berlin | 1b51a29 | 2016-02-07 01:52:19 +0000 | [diff] [blame] | 1394 | } |
Michael Zolotukhin | 67cfbaa | 2018-05-15 18:40:29 +0000 | [diff] [blame] | 1395 | placePHINodes(DefiningBlocks); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1396 | |
| 1397 | // Now do regular SSA renaming on the MemoryDef/MemoryUse. Visited will get |
| 1398 | // filled in with all blocks. |
| 1399 | SmallPtrSet<BasicBlock *, 16> Visited; |
| 1400 | renamePass(DT->getRootNode(), LiveOnEntryDef.get(), Visited); |
| 1401 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 1402 | CachingWalker *Walker = getWalkerImpl(); |
| 1403 | |
Daniel Berlin | c43aa5a | 2016-08-02 16:24:03 +0000 | [diff] [blame] | 1404 | OptimizeUses(this, Walker, AA, DT).optimizeUses(); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 1405 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1406 | // Mark the uses in unreachable blocks as live on entry, so that they go |
| 1407 | // somewhere. |
| 1408 | for (auto &BB : F) |
| 1409 | if (!Visited.count(&BB)) |
| 1410 | markUnreachableAsLiveOnEntry(&BB); |
Daniel Berlin | 16ed57c | 2016-06-27 18:22:27 +0000 | [diff] [blame] | 1411 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1412 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 1413 | MemorySSAWalker *MemorySSA::getWalker() { return getWalkerImpl(); } |
| 1414 | |
| 1415 | MemorySSA::CachingWalker *MemorySSA::getWalkerImpl() { |
Daniel Berlin | 16ed57c | 2016-06-27 18:22:27 +0000 | [diff] [blame] | 1416 | if (Walker) |
| 1417 | return Walker.get(); |
| 1418 | |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1419 | Walker = llvm::make_unique<CachingWalker>(this, AA, DT); |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 1420 | return Walker.get(); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1421 | } |
| 1422 | |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1423 | // This is a helper function used by the creation routines. It places NewAccess |
| 1424 | // into the access and defs lists for a given basic block, at the given |
| 1425 | // insertion point. |
| 1426 | void MemorySSA::insertIntoListsForBlock(MemoryAccess *NewAccess, |
| 1427 | const BasicBlock *BB, |
| 1428 | InsertionPlace Point) { |
| 1429 | auto *Accesses = getOrCreateAccessList(BB); |
| 1430 | if (Point == Beginning) { |
| 1431 | // If it's a phi node, it goes first, otherwise, it goes after any phi |
| 1432 | // nodes. |
| 1433 | if (isa<MemoryPhi>(NewAccess)) { |
| 1434 | Accesses->push_front(NewAccess); |
| 1435 | auto *Defs = getOrCreateDefsList(BB); |
| 1436 | Defs->push_front(*NewAccess); |
| 1437 | } else { |
| 1438 | auto AI = find_if_not( |
| 1439 | *Accesses, [](const MemoryAccess &MA) { return isa<MemoryPhi>(MA); }); |
| 1440 | Accesses->insert(AI, NewAccess); |
| 1441 | if (!isa<MemoryUse>(NewAccess)) { |
| 1442 | auto *Defs = getOrCreateDefsList(BB); |
| 1443 | auto DI = find_if_not( |
| 1444 | *Defs, [](const MemoryAccess &MA) { return isa<MemoryPhi>(MA); }); |
| 1445 | Defs->insert(DI, *NewAccess); |
| 1446 | } |
| 1447 | } |
| 1448 | } else { |
| 1449 | Accesses->push_back(NewAccess); |
| 1450 | if (!isa<MemoryUse>(NewAccess)) { |
| 1451 | auto *Defs = getOrCreateDefsList(BB); |
| 1452 | Defs->push_back(*NewAccess); |
| 1453 | } |
| 1454 | } |
Daniel Berlin | 9d8a335 | 2017-01-30 11:35:39 +0000 | [diff] [blame] | 1455 | BlockNumberingValid.erase(BB); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | void MemorySSA::insertIntoListsBefore(MemoryAccess *What, const BasicBlock *BB, |
| 1459 | AccessList::iterator InsertPt) { |
| 1460 | auto *Accesses = getWritableBlockAccesses(BB); |
| 1461 | bool WasEnd = InsertPt == Accesses->end(); |
| 1462 | Accesses->insert(AccessList::iterator(InsertPt), What); |
| 1463 | if (!isa<MemoryUse>(What)) { |
| 1464 | auto *Defs = getOrCreateDefsList(BB); |
| 1465 | // If we got asked to insert at the end, we have an easy job, just shove it |
| 1466 | // at the end. If we got asked to insert before an existing def, we also get |
Zhaoshi Zheng | a5531f2 | 2018-04-04 21:08:11 +0000 | [diff] [blame] | 1467 | // an iterator. If we got asked to insert before a use, we have to hunt for |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1468 | // the next def. |
| 1469 | if (WasEnd) { |
| 1470 | Defs->push_back(*What); |
| 1471 | } else if (isa<MemoryDef>(InsertPt)) { |
| 1472 | Defs->insert(InsertPt->getDefsIterator(), *What); |
| 1473 | } else { |
| 1474 | while (InsertPt != Accesses->end() && !isa<MemoryDef>(InsertPt)) |
| 1475 | ++InsertPt; |
| 1476 | // Either we found a def, or we are inserting at the end |
| 1477 | if (InsertPt == Accesses->end()) |
| 1478 | Defs->push_back(*What); |
| 1479 | else |
| 1480 | Defs->insert(InsertPt->getDefsIterator(), *What); |
| 1481 | } |
| 1482 | } |
Daniel Berlin | 9d8a335 | 2017-01-30 11:35:39 +0000 | [diff] [blame] | 1483 | BlockNumberingValid.erase(BB); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1484 | } |
| 1485 | |
George Burgess IV | 5676a5d | 2018-08-22 22:34:38 +0000 | [diff] [blame] | 1486 | void MemorySSA::prepareForMoveTo(MemoryAccess *What, BasicBlock *BB) { |
| 1487 | // Keep it in the lookup tables, remove from the lists |
| 1488 | removeFromLists(What, false); |
| 1489 | |
| 1490 | // Note that moving should implicitly invalidate the optimized state of a |
| 1491 | // MemoryUse (and Phis can't be optimized). However, it doesn't do so for a |
| 1492 | // MemoryDef. |
| 1493 | if (auto *MD = dyn_cast<MemoryDef>(What)) |
| 1494 | MD->resetOptimized(); |
| 1495 | What->setBlock(BB); |
| 1496 | } |
| 1497 | |
Zhaoshi Zheng | a5531f2 | 2018-04-04 21:08:11 +0000 | [diff] [blame] | 1498 | // Move What before Where in the IR. The end result is that What will belong to |
Daniel Berlin | 60ead05 | 2017-01-28 01:23:13 +0000 | [diff] [blame] | 1499 | // the right lists and have the right Block set, but will not otherwise be |
| 1500 | // correct. It will not have the right defining access, and if it is a def, |
| 1501 | // things below it will not properly be updated. |
| 1502 | void MemorySSA::moveTo(MemoryUseOrDef *What, BasicBlock *BB, |
| 1503 | AccessList::iterator Where) { |
George Burgess IV | 5676a5d | 2018-08-22 22:34:38 +0000 | [diff] [blame] | 1504 | prepareForMoveTo(What, BB); |
Daniel Berlin | 60ead05 | 2017-01-28 01:23:13 +0000 | [diff] [blame] | 1505 | insertIntoListsBefore(What, BB, Where); |
| 1506 | } |
| 1507 | |
Alina Sbirlea | 0f53355 | 2018-07-11 22:11:46 +0000 | [diff] [blame] | 1508 | void MemorySSA::moveTo(MemoryAccess *What, BasicBlock *BB, |
Daniel Berlin | 9d8a335 | 2017-01-30 11:35:39 +0000 | [diff] [blame] | 1509 | InsertionPlace Point) { |
Alina Sbirlea | 0f53355 | 2018-07-11 22:11:46 +0000 | [diff] [blame] | 1510 | if (isa<MemoryPhi>(What)) { |
| 1511 | assert(Point == Beginning && |
| 1512 | "Can only move a Phi at the beginning of the block"); |
| 1513 | // Update lookup table entry |
| 1514 | ValueToMemoryAccess.erase(What->getBlock()); |
| 1515 | bool Inserted = ValueToMemoryAccess.insert({BB, What}).second; |
| 1516 | (void)Inserted; |
| 1517 | assert(Inserted && "Cannot move a Phi to a block that already has one"); |
| 1518 | } |
| 1519 | |
George Burgess IV | 5676a5d | 2018-08-22 22:34:38 +0000 | [diff] [blame] | 1520 | prepareForMoveTo(What, BB); |
Daniel Berlin | 9d8a335 | 2017-01-30 11:35:39 +0000 | [diff] [blame] | 1521 | insertIntoListsForBlock(What, BB, Point); |
| 1522 | } |
| 1523 | |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1524 | MemoryPhi *MemorySSA::createMemoryPhi(BasicBlock *BB) { |
| 1525 | assert(!getMemoryAccess(BB) && "MemoryPhi already exists for this BB"); |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1526 | MemoryPhi *Phi = new MemoryPhi(BB->getContext(), BB, NextID++); |
Daniel Berlin | 9d8a335 | 2017-01-30 11:35:39 +0000 | [diff] [blame] | 1527 | // Phi's always are placed at the front of the block. |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1528 | insertIntoListsForBlock(Phi, BB, Beginning); |
Daniel Berlin | 5130cc8 | 2016-07-31 21:08:20 +0000 | [diff] [blame] | 1529 | ValueToMemoryAccess[BB] = Phi; |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1530 | return Phi; |
| 1531 | } |
| 1532 | |
| 1533 | MemoryUseOrDef *MemorySSA::createDefinedAccess(Instruction *I, |
| 1534 | MemoryAccess *Definition) { |
| 1535 | assert(!isa<PHINode>(I) && "Cannot create a defined access for a PHI"); |
| 1536 | MemoryUseOrDef *NewAccess = createNewAccess(I); |
| 1537 | assert( |
| 1538 | NewAccess != nullptr && |
| 1539 | "Tried to create a memory access for a non-memory touching instruction"); |
| 1540 | NewAccess->setDefiningAccess(Definition); |
| 1541 | return NewAccess; |
| 1542 | } |
| 1543 | |
Daniel Berlin | d952cea | 2017-04-07 01:28:36 +0000 | [diff] [blame] | 1544 | // Return true if the instruction has ordering constraints. |
| 1545 | // Note specifically that this only considers stores and loads |
| 1546 | // because others are still considered ModRef by getModRefInfo. |
| 1547 | static inline bool isOrdered(const Instruction *I) { |
| 1548 | if (auto *SI = dyn_cast<StoreInst>(I)) { |
| 1549 | if (!SI->isUnordered()) |
| 1550 | return true; |
| 1551 | } else if (auto *LI = dyn_cast<LoadInst>(I)) { |
| 1552 | if (!LI->isUnordered()) |
| 1553 | return true; |
| 1554 | } |
| 1555 | return false; |
| 1556 | } |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 1557 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1558 | /// Helper function to create new memory accesses |
Peter Collingbourne | ffecb14 | 2016-05-26 01:19:17 +0000 | [diff] [blame] | 1559 | MemoryUseOrDef *MemorySSA::createNewAccess(Instruction *I) { |
Peter Collingbourne | b9aa1f4 | 2016-05-26 04:58:46 +0000 | [diff] [blame] | 1560 | // The assume intrinsic has a control dependency which we model by claiming |
| 1561 | // that it writes arbitrarily. Ignore that fake memory dependency here. |
| 1562 | // FIXME: Replace this special casing with a more accurate modelling of |
| 1563 | // assume's control dependency. |
| 1564 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) |
| 1565 | if (II->getIntrinsicID() == Intrinsic::assume) |
| 1566 | return nullptr; |
| 1567 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1568 | // Find out what affect this instruction has on memory. |
Alina Sbirlea | 967e796 | 2017-08-01 00:28:29 +0000 | [diff] [blame] | 1569 | ModRefInfo ModRef = AA->getModRefInfo(I, None); |
Daniel Berlin | d952cea | 2017-04-07 01:28:36 +0000 | [diff] [blame] | 1570 | // The isOrdered check is used to ensure that volatiles end up as defs |
| 1571 | // (atomics end up as ModRef right now anyway). Until we separate the |
| 1572 | // ordering chain from the memory chain, this enables people to see at least |
| 1573 | // some relative ordering to volatiles. Note that getClobberingMemoryAccess |
| 1574 | // will still give an answer that bypasses other volatile loads. TODO: |
| 1575 | // Separate memory aliasing and ordering into two different chains so that we |
| 1576 | // can precisely represent both "what memory will this read/write/is clobbered |
| 1577 | // by" and "what instructions can I move this past". |
Alina Sbirlea | 63d2250 | 2017-12-05 20:12:23 +0000 | [diff] [blame] | 1578 | bool Def = isModSet(ModRef) || isOrdered(I); |
| 1579 | bool Use = isRefSet(ModRef); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1580 | |
| 1581 | // It's possible for an instruction to not modify memory at all. During |
| 1582 | // construction, we ignore them. |
Peter Collingbourne | ffecb14 | 2016-05-26 01:19:17 +0000 | [diff] [blame] | 1583 | if (!Def && !Use) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1584 | return nullptr; |
| 1585 | |
George Burgess IV | b42b762 | 2016-03-11 19:34:03 +0000 | [diff] [blame] | 1586 | MemoryUseOrDef *MUD; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1587 | if (Def) |
George Burgess IV | b42b762 | 2016-03-11 19:34:03 +0000 | [diff] [blame] | 1588 | MUD = new MemoryDef(I->getContext(), nullptr, I, I->getParent(), NextID++); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1589 | else |
George Burgess IV | b42b762 | 2016-03-11 19:34:03 +0000 | [diff] [blame] | 1590 | MUD = new MemoryUse(I->getContext(), nullptr, I, I->getParent()); |
Daniel Berlin | 5130cc8 | 2016-07-31 21:08:20 +0000 | [diff] [blame] | 1591 | ValueToMemoryAccess[I] = MUD; |
George Burgess IV | b42b762 | 2016-03-11 19:34:03 +0000 | [diff] [blame] | 1592 | return MUD; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1593 | } |
| 1594 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1595 | /// Returns true if \p Replacer dominates \p Replacee . |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1596 | bool MemorySSA::dominatesUse(const MemoryAccess *Replacer, |
| 1597 | const MemoryAccess *Replacee) const { |
| 1598 | if (isa<MemoryUseOrDef>(Replacee)) |
| 1599 | return DT->dominates(Replacer->getBlock(), Replacee->getBlock()); |
| 1600 | const auto *MP = cast<MemoryPhi>(Replacee); |
| 1601 | // For a phi node, the use occurs in the predecessor block of the phi node. |
| 1602 | // Since we may occur multiple times in the phi node, we have to check each |
| 1603 | // operand to ensure Replacer dominates each operand where Replacee occurs. |
| 1604 | for (const Use &Arg : MP->operands()) { |
George Burgess IV | b5a229f | 2016-02-02 23:15:26 +0000 | [diff] [blame] | 1605 | if (Arg.get() != Replacee && |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1606 | !DT->dominates(Replacer->getBlock(), MP->getIncomingBlock(Arg))) |
| 1607 | return false; |
| 1608 | } |
| 1609 | return true; |
| 1610 | } |
| 1611 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1612 | /// Properly remove \p MA from all of MemorySSA's lookup tables. |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1613 | void MemorySSA::removeFromLookups(MemoryAccess *MA) { |
| 1614 | assert(MA->use_empty() && |
| 1615 | "Trying to remove memory access that still has uses"); |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1616 | BlockNumbering.erase(MA); |
George Burgess IV | 2cbf973 | 2018-06-22 22:34:07 +0000 | [diff] [blame] | 1617 | if (auto *MUD = dyn_cast<MemoryUseOrDef>(MA)) |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1618 | MUD->setDefiningAccess(nullptr); |
| 1619 | // Invalidate our walker's cache if necessary |
| 1620 | if (!isa<MemoryUse>(MA)) |
| 1621 | Walker->invalidateInfo(MA); |
George Burgess IV | 2cbf973 | 2018-06-22 22:34:07 +0000 | [diff] [blame] | 1622 | |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1623 | Value *MemoryInst; |
George Burgess IV | 2cbf973 | 2018-06-22 22:34:07 +0000 | [diff] [blame] | 1624 | if (const auto *MUD = dyn_cast<MemoryUseOrDef>(MA)) |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1625 | MemoryInst = MUD->getMemoryInst(); |
George Burgess IV | 2cbf973 | 2018-06-22 22:34:07 +0000 | [diff] [blame] | 1626 | else |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1627 | MemoryInst = MA->getBlock(); |
George Burgess IV | 2cbf973 | 2018-06-22 22:34:07 +0000 | [diff] [blame] | 1628 | |
Daniel Berlin | 5130cc8 | 2016-07-31 21:08:20 +0000 | [diff] [blame] | 1629 | auto VMA = ValueToMemoryAccess.find(MemoryInst); |
| 1630 | if (VMA->second == MA) |
| 1631 | ValueToMemoryAccess.erase(VMA); |
Daniel Berlin | 60ead05 | 2017-01-28 01:23:13 +0000 | [diff] [blame] | 1632 | } |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1633 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1634 | /// Properly remove \p MA from all of MemorySSA's lists. |
Daniel Berlin | 60ead05 | 2017-01-28 01:23:13 +0000 | [diff] [blame] | 1635 | /// |
| 1636 | /// Because of the way the intrusive list and use lists work, it is important to |
| 1637 | /// do removal in the right order. |
| 1638 | /// ShouldDelete defaults to true, and will cause the memory access to also be |
| 1639 | /// deleted, not just removed. |
| 1640 | void MemorySSA::removeFromLists(MemoryAccess *MA, bool ShouldDelete) { |
Alina Sbirlea | da1e80f | 2018-06-29 20:46:16 +0000 | [diff] [blame] | 1641 | BasicBlock *BB = MA->getBlock(); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1642 | // The access list owns the reference, so we erase it from the non-owning list |
| 1643 | // first. |
| 1644 | if (!isa<MemoryUse>(MA)) { |
Alina Sbirlea | da1e80f | 2018-06-29 20:46:16 +0000 | [diff] [blame] | 1645 | auto DefsIt = PerBlockDefs.find(BB); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1646 | std::unique_ptr<DefsList> &Defs = DefsIt->second; |
| 1647 | Defs->remove(*MA); |
| 1648 | if (Defs->empty()) |
| 1649 | PerBlockDefs.erase(DefsIt); |
| 1650 | } |
| 1651 | |
Daniel Berlin | 60ead05 | 2017-01-28 01:23:13 +0000 | [diff] [blame] | 1652 | // The erase call here will delete it. If we don't want it deleted, we call |
| 1653 | // remove instead. |
Alina Sbirlea | da1e80f | 2018-06-29 20:46:16 +0000 | [diff] [blame] | 1654 | auto AccessIt = PerBlockAccesses.find(BB); |
Daniel Berlin | ada263d | 2016-06-20 20:21:33 +0000 | [diff] [blame] | 1655 | std::unique_ptr<AccessList> &Accesses = AccessIt->second; |
Daniel Berlin | 60ead05 | 2017-01-28 01:23:13 +0000 | [diff] [blame] | 1656 | if (ShouldDelete) |
| 1657 | Accesses->erase(MA); |
| 1658 | else |
| 1659 | Accesses->remove(MA); |
| 1660 | |
Alina Sbirlea | da1e80f | 2018-06-29 20:46:16 +0000 | [diff] [blame] | 1661 | if (Accesses->empty()) { |
George Burgess IV | e0e6e48 | 2016-03-02 02:35:04 +0000 | [diff] [blame] | 1662 | PerBlockAccesses.erase(AccessIt); |
Alina Sbirlea | da1e80f | 2018-06-29 20:46:16 +0000 | [diff] [blame] | 1663 | BlockNumberingValid.erase(BB); |
| 1664 | } |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 1665 | } |
| 1666 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1667 | void MemorySSA::print(raw_ostream &OS) const { |
| 1668 | MemorySSAAnnotatedWriter Writer(this); |
| 1669 | F.print(OS, &Writer); |
| 1670 | } |
| 1671 | |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 1672 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 1673 | LLVM_DUMP_METHOD void MemorySSA::dump() const { print(dbgs()); } |
Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 1674 | #endif |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1675 | |
Daniel Berlin | 932b4cb | 2016-02-10 17:39:43 +0000 | [diff] [blame] | 1676 | void MemorySSA::verifyMemorySSA() const { |
| 1677 | verifyDefUses(F); |
| 1678 | verifyDomination(F); |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1679 | verifyOrdering(F); |
George Burgess IV | 97ec624 | 2018-06-25 05:30:36 +0000 | [diff] [blame] | 1680 | verifyDominationNumbers(F); |
Geoff Berry | cdf5333 | 2016-08-08 17:52:01 +0000 | [diff] [blame] | 1681 | Walker->verify(this); |
Alina Sbirlea | f5403d8 | 2018-08-29 18:26:04 +0000 | [diff] [blame] | 1682 | verifyClobberSanity(F); |
| 1683 | } |
| 1684 | |
| 1685 | /// Check sanity of the clobbering instruction for access MA. |
| 1686 | void MemorySSA::checkClobberSanityAccess(const MemoryAccess *MA) const { |
| 1687 | if (const auto *MUD = dyn_cast<MemoryUseOrDef>(MA)) { |
| 1688 | if (!MUD->isOptimized()) |
| 1689 | return; |
| 1690 | auto *I = MUD->getMemoryInst(); |
| 1691 | auto Loc = MemoryLocation::getOrNone(I); |
| 1692 | if (Loc == None) |
| 1693 | return; |
| 1694 | auto *Clobber = MUD->getOptimized(); |
| 1695 | UpwardsMemoryQuery Q(I, MUD); |
| 1696 | checkClobberSanity(MUD, Clobber, *Loc, *this, Q, *AA); |
| 1697 | } |
| 1698 | } |
| 1699 | |
| 1700 | void MemorySSA::verifyClobberSanity(const Function &F) const { |
| 1701 | #if !defined(NDEBUG) && defined(EXPENSIVE_CHECKS) |
| 1702 | for (const BasicBlock &BB : F) { |
| 1703 | const AccessList *Accesses = getBlockAccesses(&BB); |
| 1704 | if (!Accesses) |
| 1705 | continue; |
| 1706 | for (const MemoryAccess &MA : *Accesses) |
| 1707 | checkClobberSanityAccess(&MA); |
| 1708 | } |
| 1709 | #endif |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1710 | } |
| 1711 | |
George Burgess IV | 97ec624 | 2018-06-25 05:30:36 +0000 | [diff] [blame] | 1712 | /// Verify that all of the blocks we believe to have valid domination numbers |
| 1713 | /// actually have valid domination numbers. |
| 1714 | void MemorySSA::verifyDominationNumbers(const Function &F) const { |
| 1715 | #ifndef NDEBUG |
| 1716 | if (BlockNumberingValid.empty()) |
| 1717 | return; |
| 1718 | |
| 1719 | SmallPtrSet<const BasicBlock *, 16> ValidBlocks = BlockNumberingValid; |
| 1720 | for (const BasicBlock &BB : F) { |
| 1721 | if (!ValidBlocks.count(&BB)) |
| 1722 | continue; |
| 1723 | |
| 1724 | ValidBlocks.erase(&BB); |
| 1725 | |
| 1726 | const AccessList *Accesses = getBlockAccesses(&BB); |
| 1727 | // It's correct to say an empty block has valid numbering. |
| 1728 | if (!Accesses) |
| 1729 | continue; |
| 1730 | |
| 1731 | // Block numbering starts at 1. |
| 1732 | unsigned long LastNumber = 0; |
| 1733 | for (const MemoryAccess &MA : *Accesses) { |
| 1734 | auto ThisNumberIter = BlockNumbering.find(&MA); |
| 1735 | assert(ThisNumberIter != BlockNumbering.end() && |
| 1736 | "MemoryAccess has no domination number in a valid block!"); |
| 1737 | |
| 1738 | unsigned long ThisNumber = ThisNumberIter->second; |
| 1739 | assert(ThisNumber > LastNumber && |
| 1740 | "Domination numbers should be strictly increasing!"); |
| 1741 | LastNumber = ThisNumber; |
| 1742 | } |
| 1743 | } |
| 1744 | |
| 1745 | assert(ValidBlocks.empty() && |
| 1746 | "All valid BasicBlocks should exist in F -- dangling pointers?"); |
| 1747 | #endif |
| 1748 | } |
| 1749 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1750 | /// Verify that the order and existence of MemoryAccesses matches the |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1751 | /// order and existence of memory affecting instructions. |
| 1752 | void MemorySSA::verifyOrdering(Function &F) const { |
George Burgess IV | 6a9aa02 | 2018-08-28 00:32:32 +0000 | [diff] [blame] | 1753 | #ifndef NDEBUG |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1754 | // Walk all the blocks, comparing what the lookups think and what the access |
| 1755 | // lists think, as well as the order in the blocks vs the order in the access |
| 1756 | // lists. |
| 1757 | SmallVector<MemoryAccess *, 32> ActualAccesses; |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1758 | SmallVector<MemoryAccess *, 32> ActualDefs; |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1759 | for (BasicBlock &B : F) { |
| 1760 | const AccessList *AL = getBlockAccesses(&B); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1761 | const auto *DL = getBlockDefs(&B); |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1762 | MemoryAccess *Phi = getMemoryAccess(&B); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1763 | if (Phi) { |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1764 | ActualAccesses.push_back(Phi); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1765 | ActualDefs.push_back(Phi); |
| 1766 | } |
| 1767 | |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1768 | for (Instruction &I : B) { |
| 1769 | MemoryAccess *MA = getMemoryAccess(&I); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1770 | assert((!MA || (AL && (isa<MemoryUse>(MA) || DL))) && |
| 1771 | "We have memory affecting instructions " |
| 1772 | "in this block but they are not in the " |
| 1773 | "access list or defs list"); |
| 1774 | if (MA) { |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1775 | ActualAccesses.push_back(MA); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1776 | if (isa<MemoryDef>(MA)) |
| 1777 | ActualDefs.push_back(MA); |
| 1778 | } |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1779 | } |
| 1780 | // Either we hit the assert, really have no accesses, or we have both |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1781 | // accesses and an access list. |
| 1782 | // Same with defs. |
| 1783 | if (!AL && !DL) |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1784 | continue; |
| 1785 | assert(AL->size() == ActualAccesses.size() && |
| 1786 | "We don't have the same number of accesses in the block as on the " |
| 1787 | "access list"); |
Davide Italiano | 6c77de0 | 2017-01-30 03:16:43 +0000 | [diff] [blame] | 1788 | assert((DL || ActualDefs.size() == 0) && |
| 1789 | "Either we should have a defs list, or we should have no defs"); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1790 | assert((!DL || DL->size() == ActualDefs.size()) && |
| 1791 | "We don't have the same number of defs in the block as on the " |
| 1792 | "def list"); |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1793 | auto ALI = AL->begin(); |
| 1794 | auto AAI = ActualAccesses.begin(); |
| 1795 | while (ALI != AL->end() && AAI != ActualAccesses.end()) { |
| 1796 | assert(&*ALI == *AAI && "Not the same accesses in the same order"); |
| 1797 | ++ALI; |
| 1798 | ++AAI; |
| 1799 | } |
| 1800 | ActualAccesses.clear(); |
Daniel Berlin | d602e04 | 2017-01-25 20:56:19 +0000 | [diff] [blame] | 1801 | if (DL) { |
| 1802 | auto DLI = DL->begin(); |
| 1803 | auto ADI = ActualDefs.begin(); |
| 1804 | while (DLI != DL->end() && ADI != ActualDefs.end()) { |
| 1805 | assert(&*DLI == *ADI && "Not the same defs in the same order"); |
| 1806 | ++DLI; |
| 1807 | ++ADI; |
| 1808 | } |
| 1809 | } |
| 1810 | ActualDefs.clear(); |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1811 | } |
George Burgess IV | 6a9aa02 | 2018-08-28 00:32:32 +0000 | [diff] [blame] | 1812 | #endif |
Daniel Berlin | 932b4cb | 2016-02-10 17:39:43 +0000 | [diff] [blame] | 1813 | } |
| 1814 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1815 | /// Verify the domination properties of MemorySSA by checking that each |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1816 | /// definition dominates all of its uses. |
Daniel Berlin | 932b4cb | 2016-02-10 17:39:43 +0000 | [diff] [blame] | 1817 | void MemorySSA::verifyDomination(Function &F) const { |
Daniel Berlin | 7af9587 | 2016-08-05 21:47:20 +0000 | [diff] [blame] | 1818 | #ifndef NDEBUG |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1819 | for (BasicBlock &B : F) { |
| 1820 | // Phi nodes are attached to basic blocks |
Daniel Berlin | 2919b1c | 2016-08-05 21:46:52 +0000 | [diff] [blame] | 1821 | if (MemoryPhi *MP = getMemoryAccess(&B)) |
| 1822 | for (const Use &U : MP->uses()) |
| 1823 | assert(dominates(MP, U) && "Memory PHI does not dominate it's uses"); |
Daniel Berlin | 7af9587 | 2016-08-05 21:47:20 +0000 | [diff] [blame] | 1824 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1825 | for (Instruction &I : B) { |
| 1826 | MemoryAccess *MD = dyn_cast_or_null<MemoryDef>(getMemoryAccess(&I)); |
| 1827 | if (!MD) |
| 1828 | continue; |
| 1829 | |
Daniel Berlin | 2919b1c | 2016-08-05 21:46:52 +0000 | [diff] [blame] | 1830 | for (const Use &U : MD->uses()) |
| 1831 | assert(dominates(MD, U) && "Memory Def does not dominate it's uses"); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1832 | } |
| 1833 | } |
Daniel Berlin | 7af9587 | 2016-08-05 21:47:20 +0000 | [diff] [blame] | 1834 | #endif |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1835 | } |
| 1836 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1837 | /// Verify the def-use lists in MemorySSA, by verifying that \p Use |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1838 | /// appears in the use list of \p Def. |
Daniel Berlin | 932b4cb | 2016-02-10 17:39:43 +0000 | [diff] [blame] | 1839 | void MemorySSA::verifyUseInDefs(MemoryAccess *Def, MemoryAccess *Use) const { |
Daniel Berlin | 7af9587 | 2016-08-05 21:47:20 +0000 | [diff] [blame] | 1840 | #ifndef NDEBUG |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1841 | // The live on entry use may cause us to get a NULL def here |
Daniel Berlin | 7af9587 | 2016-08-05 21:47:20 +0000 | [diff] [blame] | 1842 | if (!Def) |
| 1843 | assert(isLiveOnEntryDef(Use) && |
| 1844 | "Null def but use not point to live on entry def"); |
| 1845 | else |
Daniel Berlin | da2f38e | 2016-08-11 21:26:50 +0000 | [diff] [blame] | 1846 | assert(is_contained(Def->users(), Use) && |
Daniel Berlin | 7af9587 | 2016-08-05 21:47:20 +0000 | [diff] [blame] | 1847 | "Did not find use in def's use list"); |
| 1848 | #endif |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1849 | } |
| 1850 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1851 | /// Verify the immediate use information, by walking all the memory |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1852 | /// accesses and verifying that, for each use, it appears in the |
| 1853 | /// appropriate def's use list |
Daniel Berlin | 932b4cb | 2016-02-10 17:39:43 +0000 | [diff] [blame] | 1854 | void MemorySSA::verifyDefUses(Function &F) const { |
George Burgess IV | 6a9aa02 | 2018-08-28 00:32:32 +0000 | [diff] [blame] | 1855 | #ifndef NDEBUG |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1856 | for (BasicBlock &B : F) { |
| 1857 | // Phi nodes are attached to basic blocks |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1858 | if (MemoryPhi *Phi = getMemoryAccess(&B)) { |
David Majnemer | 580e754 | 2016-06-25 00:04:06 +0000 | [diff] [blame] | 1859 | assert(Phi->getNumOperands() == static_cast<unsigned>(std::distance( |
| 1860 | pred_begin(&B), pred_end(&B))) && |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1861 | "Incomplete MemoryPhi Node"); |
Alina Sbirlea | 201d02c | 2018-06-20 21:06:13 +0000 | [diff] [blame] | 1862 | for (unsigned I = 0, E = Phi->getNumIncomingValues(); I != E; ++I) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1863 | verifyUseInDefs(Phi->getIncomingValue(I), Phi); |
Alina Sbirlea | 201d02c | 2018-06-20 21:06:13 +0000 | [diff] [blame] | 1864 | assert(find(predecessors(&B), Phi->getIncomingBlock(I)) != |
| 1865 | pred_end(&B) && |
| 1866 | "Incoming phi block not a block predecessor"); |
| 1867 | } |
Daniel Berlin | 1430026 | 2016-06-21 18:39:20 +0000 | [diff] [blame] | 1868 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1869 | |
| 1870 | for (Instruction &I : B) { |
George Burgess IV | 66837ab | 2016-11-01 21:17:46 +0000 | [diff] [blame] | 1871 | if (MemoryUseOrDef *MA = getMemoryAccess(&I)) { |
| 1872 | verifyUseInDefs(MA->getDefiningAccess(), MA); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1873 | } |
| 1874 | } |
| 1875 | } |
George Burgess IV | 6a9aa02 | 2018-08-28 00:32:32 +0000 | [diff] [blame] | 1876 | #endif |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1877 | } |
| 1878 | |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1879 | /// Perform a local numbering on blocks so that instruction ordering can be |
| 1880 | /// determined in constant time. |
| 1881 | /// TODO: We currently just number in order. If we numbered by N, we could |
| 1882 | /// allow at least N-1 sequences of insertBefore or insertAfter (and at least |
| 1883 | /// log2(N) sequences of mixed before and after) without needing to invalidate |
| 1884 | /// the numbering. |
| 1885 | void MemorySSA::renumberBlock(const BasicBlock *B) const { |
| 1886 | // The pre-increment ensures the numbers really start at 1. |
| 1887 | unsigned long CurrentNumber = 0; |
| 1888 | const AccessList *AL = getBlockAccesses(B); |
| 1889 | assert(AL != nullptr && "Asking to renumber an empty block"); |
| 1890 | for (const auto &I : *AL) |
| 1891 | BlockNumbering[&I] = ++CurrentNumber; |
| 1892 | BlockNumberingValid.insert(B); |
| 1893 | } |
| 1894 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1895 | /// Determine, for two memory accesses in the same block, |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1896 | /// whether \p Dominator dominates \p Dominatee. |
| 1897 | /// \returns True if \p Dominator dominates \p Dominatee. |
| 1898 | bool MemorySSA::locallyDominates(const MemoryAccess *Dominator, |
| 1899 | const MemoryAccess *Dominatee) const { |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1900 | const BasicBlock *DominatorBlock = Dominator->getBlock(); |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1901 | |
Daniel Berlin | 1986030 | 2016-07-19 23:08:08 +0000 | [diff] [blame] | 1902 | assert((DominatorBlock == Dominatee->getBlock()) && |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1903 | "Asking for local domination when accesses are in different blocks!"); |
Sebastian Pop | e1f60b1 | 2016-06-10 21:36:41 +0000 | [diff] [blame] | 1904 | // A node dominates itself. |
| 1905 | if (Dominatee == Dominator) |
| 1906 | return true; |
| 1907 | |
| 1908 | // When Dominatee is defined on function entry, it is not dominated by another |
| 1909 | // memory access. |
| 1910 | if (isLiveOnEntryDef(Dominatee)) |
| 1911 | return false; |
| 1912 | |
| 1913 | // When Dominator is defined on function entry, it dominates the other memory |
| 1914 | // access. |
| 1915 | if (isLiveOnEntryDef(Dominator)) |
| 1916 | return true; |
| 1917 | |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1918 | if (!BlockNumberingValid.count(DominatorBlock)) |
| 1919 | renumberBlock(DominatorBlock); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1920 | |
Daniel Berlin | 5c46b94 | 2016-07-19 22:49:43 +0000 | [diff] [blame] | 1921 | unsigned long DominatorNum = BlockNumbering.lookup(Dominator); |
| 1922 | // All numbers start with 1 |
| 1923 | assert(DominatorNum != 0 && "Block was not numbered properly"); |
| 1924 | unsigned long DominateeNum = BlockNumbering.lookup(Dominatee); |
| 1925 | assert(DominateeNum != 0 && "Block was not numbered properly"); |
| 1926 | return DominatorNum < DominateeNum; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1927 | } |
| 1928 | |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 1929 | bool MemorySSA::dominates(const MemoryAccess *Dominator, |
| 1930 | const MemoryAccess *Dominatee) const { |
| 1931 | if (Dominator == Dominatee) |
| 1932 | return true; |
| 1933 | |
| 1934 | if (isLiveOnEntryDef(Dominatee)) |
| 1935 | return false; |
| 1936 | |
| 1937 | if (Dominator->getBlock() != Dominatee->getBlock()) |
| 1938 | return DT->dominates(Dominator->getBlock(), Dominatee->getBlock()); |
| 1939 | return locallyDominates(Dominator, Dominatee); |
| 1940 | } |
| 1941 | |
Daniel Berlin | 2919b1c | 2016-08-05 21:46:52 +0000 | [diff] [blame] | 1942 | bool MemorySSA::dominates(const MemoryAccess *Dominator, |
| 1943 | const Use &Dominatee) const { |
| 1944 | if (MemoryPhi *MP = dyn_cast<MemoryPhi>(Dominatee.getUser())) { |
| 1945 | BasicBlock *UseBB = MP->getIncomingBlock(Dominatee); |
| 1946 | // The def must dominate the incoming block of the phi. |
| 1947 | if (UseBB != Dominator->getBlock()) |
| 1948 | return DT->dominates(Dominator->getBlock(), UseBB); |
| 1949 | // If the UseBB and the DefBB are the same, compare locally. |
| 1950 | return locallyDominates(Dominator, cast<MemoryAccess>(Dominatee)); |
| 1951 | } |
| 1952 | // If it's not a PHI node use, the normal dominates can already handle it. |
| 1953 | return dominates(Dominator, cast<MemoryAccess>(Dominatee.getUser())); |
| 1954 | } |
| 1955 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1956 | const static char LiveOnEntryStr[] = "liveOnEntry"; |
| 1957 | |
Reid Kleckner | 96ab872 | 2017-05-18 17:24:10 +0000 | [diff] [blame] | 1958 | void MemoryAccess::print(raw_ostream &OS) const { |
| 1959 | switch (getValueID()) { |
| 1960 | case MemoryPhiVal: return static_cast<const MemoryPhi *>(this)->print(OS); |
| 1961 | case MemoryDefVal: return static_cast<const MemoryDef *>(this)->print(OS); |
| 1962 | case MemoryUseVal: return static_cast<const MemoryUse *>(this)->print(OS); |
| 1963 | } |
| 1964 | llvm_unreachable("invalid value id"); |
| 1965 | } |
| 1966 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1967 | void MemoryDef::print(raw_ostream &OS) const { |
| 1968 | MemoryAccess *UO = getDefiningAccess(); |
| 1969 | |
George Burgess IV | aa283d8 | 2018-06-14 19:55:53 +0000 | [diff] [blame] | 1970 | auto printID = [&OS](MemoryAccess *A) { |
| 1971 | if (A && A->getID()) |
| 1972 | OS << A->getID(); |
| 1973 | else |
| 1974 | OS << LiveOnEntryStr; |
| 1975 | }; |
| 1976 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1977 | OS << getID() << " = MemoryDef("; |
George Burgess IV | aa283d8 | 2018-06-14 19:55:53 +0000 | [diff] [blame] | 1978 | printID(UO); |
| 1979 | OS << ")"; |
| 1980 | |
| 1981 | if (isOptimized()) { |
| 1982 | OS << "->"; |
| 1983 | printID(getOptimized()); |
| 1984 | |
| 1985 | if (Optional<AliasResult> AR = getOptimizedAccessType()) |
| 1986 | OS << " " << *AR; |
| 1987 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 1988 | } |
| 1989 | |
| 1990 | void MemoryPhi::print(raw_ostream &OS) const { |
| 1991 | bool First = true; |
| 1992 | OS << getID() << " = MemoryPhi("; |
| 1993 | for (const auto &Op : operands()) { |
| 1994 | BasicBlock *BB = getIncomingBlock(Op); |
| 1995 | MemoryAccess *MA = cast<MemoryAccess>(Op); |
| 1996 | if (!First) |
| 1997 | OS << ','; |
| 1998 | else |
| 1999 | First = false; |
| 2000 | |
| 2001 | OS << '{'; |
| 2002 | if (BB->hasName()) |
| 2003 | OS << BB->getName(); |
| 2004 | else |
| 2005 | BB->printAsOperand(OS, false); |
| 2006 | OS << ','; |
| 2007 | if (unsigned ID = MA->getID()) |
| 2008 | OS << ID; |
| 2009 | else |
| 2010 | OS << LiveOnEntryStr; |
| 2011 | OS << '}'; |
| 2012 | } |
| 2013 | OS << ')'; |
| 2014 | } |
| 2015 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2016 | void MemoryUse::print(raw_ostream &OS) const { |
| 2017 | MemoryAccess *UO = getDefiningAccess(); |
| 2018 | OS << "MemoryUse("; |
| 2019 | if (UO && UO->getID()) |
| 2020 | OS << UO->getID(); |
| 2021 | else |
| 2022 | OS << LiveOnEntryStr; |
| 2023 | OS << ')'; |
George Burgess IV | aa283d8 | 2018-06-14 19:55:53 +0000 | [diff] [blame] | 2024 | |
| 2025 | if (Optional<AliasResult> AR = getOptimizedAccessType()) |
| 2026 | OS << " " << *AR; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2027 | } |
| 2028 | |
| 2029 | void MemoryAccess::dump() const { |
Daniel Berlin | 78cbd28 | 2017-02-20 22:26:03 +0000 | [diff] [blame] | 2030 | // Cannot completely remove virtual function even in release mode. |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 2031 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2032 | print(dbgs()); |
| 2033 | dbgs() << "\n"; |
Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 2034 | #endif |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2035 | } |
| 2036 | |
Chad Rosier | 232e29e | 2016-07-06 21:20:47 +0000 | [diff] [blame] | 2037 | char MemorySSAPrinterLegacyPass::ID = 0; |
| 2038 | |
| 2039 | MemorySSAPrinterLegacyPass::MemorySSAPrinterLegacyPass() : FunctionPass(ID) { |
| 2040 | initializeMemorySSAPrinterLegacyPassPass(*PassRegistry::getPassRegistry()); |
| 2041 | } |
| 2042 | |
| 2043 | void MemorySSAPrinterLegacyPass::getAnalysisUsage(AnalysisUsage &AU) const { |
| 2044 | AU.setPreservesAll(); |
| 2045 | AU.addRequired<MemorySSAWrapperPass>(); |
Chad Rosier | 232e29e | 2016-07-06 21:20:47 +0000 | [diff] [blame] | 2046 | } |
| 2047 | |
| 2048 | bool MemorySSAPrinterLegacyPass::runOnFunction(Function &F) { |
| 2049 | auto &MSSA = getAnalysis<MemorySSAWrapperPass>().getMSSA(); |
| 2050 | MSSA.print(dbgs()); |
| 2051 | if (VerifyMemorySSA) |
| 2052 | MSSA.verifyMemorySSA(); |
| 2053 | return false; |
| 2054 | } |
| 2055 | |
Chandler Carruth | dab4eae | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 2056 | AnalysisKey MemorySSAAnalysis::Key; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2057 | |
Daniel Berlin | 1e98c04 | 2016-09-26 17:22:54 +0000 | [diff] [blame] | 2058 | MemorySSAAnalysis::Result MemorySSAAnalysis::run(Function &F, |
| 2059 | FunctionAnalysisManager &AM) { |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2060 | auto &DT = AM.getResult<DominatorTreeAnalysis>(F); |
| 2061 | auto &AA = AM.getResult<AAManager>(F); |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 2062 | return MemorySSAAnalysis::Result(llvm::make_unique<MemorySSA>(F, &AA, &DT)); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2063 | } |
| 2064 | |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2065 | PreservedAnalyses MemorySSAPrinterPass::run(Function &F, |
| 2066 | FunctionAnalysisManager &AM) { |
| 2067 | OS << "MemorySSA for function: " << F.getName() << "\n"; |
Geoff Berry | 290a13e | 2016-08-08 18:27:22 +0000 | [diff] [blame] | 2068 | AM.getResult<MemorySSAAnalysis>(F).getMSSA().print(OS); |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2069 | |
| 2070 | return PreservedAnalyses::all(); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2071 | } |
| 2072 | |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2073 | PreservedAnalyses MemorySSAVerifierPass::run(Function &F, |
| 2074 | FunctionAnalysisManager &AM) { |
Geoff Berry | 290a13e | 2016-08-08 18:27:22 +0000 | [diff] [blame] | 2075 | AM.getResult<MemorySSAAnalysis>(F).getMSSA().verifyMemorySSA(); |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2076 | |
| 2077 | return PreservedAnalyses::all(); |
| 2078 | } |
| 2079 | |
| 2080 | char MemorySSAWrapperPass::ID = 0; |
| 2081 | |
| 2082 | MemorySSAWrapperPass::MemorySSAWrapperPass() : FunctionPass(ID) { |
| 2083 | initializeMemorySSAWrapperPassPass(*PassRegistry::getPassRegistry()); |
| 2084 | } |
| 2085 | |
| 2086 | void MemorySSAWrapperPass::releaseMemory() { MSSA.reset(); } |
| 2087 | |
| 2088 | void MemorySSAWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2089 | AU.setPreservesAll(); |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2090 | AU.addRequiredTransitive<DominatorTreeWrapperPass>(); |
| 2091 | AU.addRequiredTransitive<AAResultsWrapperPass>(); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2092 | } |
| 2093 | |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2094 | bool MemorySSAWrapperPass::runOnFunction(Function &F) { |
| 2095 | auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 2096 | auto &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); |
| 2097 | MSSA.reset(new MemorySSA(F, &AA, &DT)); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2098 | return false; |
| 2099 | } |
| 2100 | |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2101 | void MemorySSAWrapperPass::verifyAnalysis() const { MSSA->verifyMemorySSA(); } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2102 | |
Geoff Berry | b96d3b2 | 2016-06-01 21:30:40 +0000 | [diff] [blame] | 2103 | void MemorySSAWrapperPass::print(raw_ostream &OS, const Module *M) const { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2104 | MSSA->print(OS); |
| 2105 | } |
| 2106 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2107 | MemorySSAWalker::MemorySSAWalker(MemorySSA *M) : MSSA(M) {} |
| 2108 | |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 2109 | MemorySSA::CachingWalker::CachingWalker(MemorySSA *M, AliasAnalysis *A, |
| 2110 | DominatorTree *D) |
Eugene Zelenko | bb1b2d0 | 2017-08-16 22:07:40 +0000 | [diff] [blame] | 2111 | : MemorySSAWalker(M), Walker(*M, *A, *D) {} |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2112 | |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 2113 | void MemorySSA::CachingWalker::invalidateInfo(MemoryAccess *MA) { |
Daniel Berlin | d7a7ae0 | 2017-04-05 19:01:58 +0000 | [diff] [blame] | 2114 | if (auto *MUD = dyn_cast<MemoryUseOrDef>(MA)) |
| 2115 | MUD->resetOptimized(); |
Daniel Berlin | 83fc77b | 2016-03-01 18:46:54 +0000 | [diff] [blame] | 2116 | } |
| 2117 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 2118 | /// Walk the use-def chains starting at \p MA and find |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2119 | /// the MemoryAccess that actually clobbers Loc. |
| 2120 | /// |
| 2121 | /// \returns our clobbering memory access |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 2122 | MemoryAccess *MemorySSA::CachingWalker::getClobberingMemoryAccess( |
| 2123 | MemoryAccess *StartingAccess, UpwardsMemoryQuery &Q) { |
George Burgess IV | 0034e39 | 2018-04-09 23:09:27 +0000 | [diff] [blame] | 2124 | return Walker.findClobber(StartingAccess, Q); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2125 | } |
| 2126 | |
George Burgess IV | fd1f2f8 | 2016-06-24 21:02:12 +0000 | [diff] [blame] | 2127 | MemoryAccess *MemorySSA::CachingWalker::getClobberingMemoryAccess( |
George Burgess IV | 013fd73 | 2016-10-28 19:22:46 +0000 | [diff] [blame] | 2128 | MemoryAccess *StartingAccess, const MemoryLocation &Loc) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2129 | if (isa<MemoryPhi>(StartingAccess)) |
| 2130 | return StartingAccess; |
| 2131 | |
| 2132 | auto *StartingUseOrDef = cast<MemoryUseOrDef>(StartingAccess); |
| 2133 | if (MSSA->isLiveOnEntryDef(StartingUseOrDef)) |
| 2134 | return StartingUseOrDef; |
| 2135 | |
| 2136 | Instruction *I = StartingUseOrDef->getMemoryInst(); |
| 2137 | |
| 2138 | // Conservatively, fences are always clobbers, so don't perform the walk if we |
| 2139 | // hit a fence. |
David Majnemer | a940f36 | 2016-07-15 17:19:24 +0000 | [diff] [blame] | 2140 | if (!ImmutableCallSite(I) && I->isFenceLike()) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2141 | return StartingUseOrDef; |
| 2142 | |
| 2143 | UpwardsMemoryQuery Q; |
| 2144 | Q.OriginalAccess = StartingUseOrDef; |
| 2145 | Q.StartingLoc = Loc; |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 2146 | Q.Inst = I; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2147 | Q.IsCall = false; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2148 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2149 | // Unlike the other function, do not walk to the def of a def, because we are |
| 2150 | // handed something we already believe is the clobbering access. |
| 2151 | MemoryAccess *DefiningAccess = isa<MemoryUse>(StartingUseOrDef) |
| 2152 | ? StartingUseOrDef->getDefiningAccess() |
| 2153 | : StartingUseOrDef; |
| 2154 | |
| 2155 | MemoryAccess *Clobber = getClobberingMemoryAccess(DefiningAccess, Q); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2156 | LLVM_DEBUG(dbgs() << "Starting Memory SSA clobber for " << *I << " is "); |
| 2157 | LLVM_DEBUG(dbgs() << *StartingUseOrDef << "\n"); |
| 2158 | LLVM_DEBUG(dbgs() << "Final Memory SSA clobber for " << *I << " is "); |
| 2159 | LLVM_DEBUG(dbgs() << *Clobber << "\n"); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2160 | return Clobber; |
| 2161 | } |
| 2162 | |
| 2163 | MemoryAccess * |
George Burgess IV | 400ae40 | 2016-07-20 19:51:34 +0000 | [diff] [blame] | 2164 | MemorySSA::CachingWalker::getClobberingMemoryAccess(MemoryAccess *MA) { |
| 2165 | auto *StartingAccess = dyn_cast<MemoryUseOrDef>(MA); |
| 2166 | // If this is a MemoryPhi, we can't do anything. |
| 2167 | if (!StartingAccess) |
| 2168 | return MA; |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2169 | |
Daniel Berlin | cd2deac | 2016-10-20 20:13:45 +0000 | [diff] [blame] | 2170 | // If this is an already optimized use or def, return the optimized result. |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 2171 | // Note: Currently, we store the optimized def result in a separate field, |
| 2172 | // since we can't use the defining access. |
George Burgess IV | 6f49f4a | 2018-02-24 00:15:21 +0000 | [diff] [blame] | 2173 | if (StartingAccess->isOptimized()) |
| 2174 | return StartingAccess->getOptimized(); |
Daniel Berlin | cd2deac | 2016-10-20 20:13:45 +0000 | [diff] [blame] | 2175 | |
George Burgess IV | 400ae40 | 2016-07-20 19:51:34 +0000 | [diff] [blame] | 2176 | const Instruction *I = StartingAccess->getMemoryInst(); |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 2177 | UpwardsMemoryQuery Q(I, StartingAccess); |
George Burgess IV | 44477c6 | 2018-03-11 04:16:12 +0000 | [diff] [blame] | 2178 | // We can't sanely do anything with a fence, since they conservatively clobber |
| 2179 | // all memory, and have no locations to get pointers from to try to |
| 2180 | // disambiguate. |
George Burgess IV | 5f30897 | 2016-07-19 01:29:15 +0000 | [diff] [blame] | 2181 | if (!Q.IsCall && I->isFenceLike()) |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2182 | return StartingAccess; |
| 2183 | |
George Burgess IV | 024f3d2 | 2016-08-03 19:57:02 +0000 | [diff] [blame] | 2184 | if (isUseTriviallyOptimizableToLiveOnEntry(*MSSA->AA, I)) { |
| 2185 | MemoryAccess *LiveOnEntry = MSSA->getLiveOnEntryDef(); |
George Burgess IV | 44477c6 | 2018-03-11 04:16:12 +0000 | [diff] [blame] | 2186 | StartingAccess->setOptimized(LiveOnEntry); |
| 2187 | StartingAccess->setOptimizedAccessType(None); |
George Burgess IV | 024f3d2 | 2016-08-03 19:57:02 +0000 | [diff] [blame] | 2188 | return LiveOnEntry; |
| 2189 | } |
| 2190 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2191 | // Start with the thing we already think clobbers this location |
| 2192 | MemoryAccess *DefiningAccess = StartingAccess->getDefiningAccess(); |
| 2193 | |
| 2194 | // At this point, DefiningAccess may be the live on entry def. |
| 2195 | // If it is, we will not get a better result. |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 2196 | if (MSSA->isLiveOnEntryDef(DefiningAccess)) { |
George Burgess IV | 44477c6 | 2018-03-11 04:16:12 +0000 | [diff] [blame] | 2197 | StartingAccess->setOptimized(DefiningAccess); |
| 2198 | StartingAccess->setOptimizedAccessType(None); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2199 | return DefiningAccess; |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 2200 | } |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2201 | |
| 2202 | MemoryAccess *Result = getClobberingMemoryAccess(DefiningAccess, Q); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2203 | LLVM_DEBUG(dbgs() << "Starting Memory SSA clobber for " << *I << " is "); |
| 2204 | LLVM_DEBUG(dbgs() << *DefiningAccess << "\n"); |
| 2205 | LLVM_DEBUG(dbgs() << "Final Memory SSA clobber for " << *I << " is "); |
| 2206 | LLVM_DEBUG(dbgs() << *Result << "\n"); |
Alina Sbirlea | d90c9f4 | 2018-03-08 18:03:14 +0000 | [diff] [blame] | 2207 | |
George Burgess IV | 44477c6 | 2018-03-11 04:16:12 +0000 | [diff] [blame] | 2208 | StartingAccess->setOptimized(Result); |
| 2209 | if (MSSA->isLiveOnEntryDef(Result)) |
| 2210 | StartingAccess->setOptimizedAccessType(None); |
| 2211 | else if (Q.AR == MustAlias) |
| 2212 | StartingAccess->setOptimizedAccessType(MustAlias); |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2213 | |
| 2214 | return Result; |
| 2215 | } |
| 2216 | |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2217 | MemoryAccess * |
George Burgess IV | 400ae40 | 2016-07-20 19:51:34 +0000 | [diff] [blame] | 2218 | DoNothingMemorySSAWalker::getClobberingMemoryAccess(MemoryAccess *MA) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2219 | if (auto *Use = dyn_cast<MemoryUseOrDef>(MA)) |
| 2220 | return Use->getDefiningAccess(); |
| 2221 | return MA; |
| 2222 | } |
| 2223 | |
| 2224 | MemoryAccess *DoNothingMemorySSAWalker::getClobberingMemoryAccess( |
George Burgess IV | 013fd73 | 2016-10-28 19:22:46 +0000 | [diff] [blame] | 2225 | MemoryAccess *StartingAccess, const MemoryLocation &) { |
George Burgess IV | e1100f5 | 2016-02-02 22:46:49 +0000 | [diff] [blame] | 2226 | if (auto *Use = dyn_cast<MemoryUseOrDef>(StartingAccess)) |
| 2227 | return Use->getDefiningAccess(); |
| 2228 | return StartingAccess; |
| 2229 | } |
Reid Kleckner | 96ab872 | 2017-05-18 17:24:10 +0000 | [diff] [blame] | 2230 | |
| 2231 | void MemoryPhi::deleteMe(DerivedUser *Self) { |
| 2232 | delete static_cast<MemoryPhi *>(Self); |
| 2233 | } |
| 2234 | |
| 2235 | void MemoryDef::deleteMe(DerivedUser *Self) { |
| 2236 | delete static_cast<MemoryDef *>(Self); |
| 2237 | } |
| 2238 | |
| 2239 | void MemoryUse::deleteMe(DerivedUser *Self) { |
| 2240 | delete static_cast<MemoryUse *>(Self); |
| 2241 | } |