annotate lib/Analysis/MemorySSA.cpp @ 134:3a76565eade5 LLVM5.0.1

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