blob: c262b9ea2adf971119e5d50ae46e93ce9b8d5852 [file] [log] [blame]
Hal Finkel7529c552014-09-02 21:43:13 +00001//===- CFLAliasAnalysis.cpp - CFL-Based Alias Analysis Implementation ------==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a CFL-based context-insensitive alias analysis
11// algorithm. It does not depend on types. The algorithm is a mixture of the one
12// described in "Demand-driven alias analysis for C" by Xin Zheng and Radu
13// Rugina, and "Fast algorithms for Dyck-CFL-reachability with applications to
14// Alias Analysis" by Zhang Q, Lyu M R, Yuan H, and Su Z. -- to summarize the
15// papers, we build a graph of the uses of a variable, where each node is a
16// memory location, and each edge is an action that happened on that memory
17// location. The "actions" can be one of Dereference, Reference, Assign, or
18// Assign.
19//
20// Two variables are considered as aliasing iff you can reach one value's node
21// from the other value's node and the language formed by concatenating all of
22// the edge labels (actions) conforms to a context-free grammar.
23//
24// Because this algorithm requires a graph search on each query, we execute the
25// algorithm outlined in "Fast algorithms..." (mentioned above)
26// in order to transform the graph into sets of variables that may alias in
27// ~nlogn time (n = number of variables.), which makes queries take constant
28// time.
29//===----------------------------------------------------------------------===//
30
31#include "StratifiedSets.h"
Hal Finkel7529c552014-09-02 21:43:13 +000032#include "llvm/ADT/BitVector.h"
33#include "llvm/ADT/DenseMap.h"
Hal Finkel7529c552014-09-02 21:43:13 +000034#include "llvm/ADT/None.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000035#include "llvm/ADT/Optional.h"
Hal Finkel7529c552014-09-02 21:43:13 +000036#include "llvm/Analysis/AliasAnalysis.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000037#include "llvm/Analysis/Passes.h"
Hal Finkel7529c552014-09-02 21:43:13 +000038#include "llvm/IR/Constants.h"
39#include "llvm/IR/Function.h"
Hal Finkel7529c552014-09-02 21:43:13 +000040#include "llvm/IR/InstVisitor.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000041#include "llvm/IR/Instructions.h"
Hal Finkel7529c552014-09-02 21:43:13 +000042#include "llvm/IR/ValueHandle.h"
43#include "llvm/Pass.h"
44#include "llvm/Support/Allocator.h"
Hal Finkel7d7087c2014-09-02 22:13:00 +000045#include "llvm/Support/Compiler.h"
George Burgess IV33305e72015-02-12 03:07:07 +000046#include "llvm/Support/Debug.h"
Hal Finkel7529c552014-09-02 21:43:13 +000047#include "llvm/Support/ErrorHandling.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000048#include "llvm/Support/raw_ostream.h"
Hal Finkel7529c552014-09-02 21:43:13 +000049#include <algorithm>
50#include <cassert>
51#include <forward_list>
Benjamin Kramer799003b2015-03-23 19:32:43 +000052#include <memory>
Hal Finkel7529c552014-09-02 21:43:13 +000053#include <tuple>
54
55using namespace llvm;
56
George Burgess IV33305e72015-02-12 03:07:07 +000057#define DEBUG_TYPE "cfl-aa"
58
Hal Finkel7529c552014-09-02 21:43:13 +000059// Try to go from a Value* to a Function*. Never returns nullptr.
60static Optional<Function *> parentFunctionOfValue(Value *);
61
62// Returns possible functions called by the Inst* into the given
63// SmallVectorImpl. Returns true if targets found, false otherwise.
64// This is templated because InvokeInst/CallInst give us the same
65// set of functions that we care about, and I don't like repeating
66// myself.
67template <typename Inst>
68static bool getPossibleTargets(Inst *, SmallVectorImpl<Function *> &);
69
70// Some instructions need to have their users tracked. Instructions like
71// `add` require you to get the users of the Instruction* itself, other
72// instructions like `store` require you to get the users of the first
73// operand. This function gets the "proper" value to track for each
74// type of instruction we support.
75static Optional<Value *> getTargetValue(Instruction *);
76
77// There are certain instructions (i.e. FenceInst, etc.) that we ignore.
78// This notes that we should ignore those.
79static bool hasUsefulEdges(Instruction *);
80
Hal Finkel1ae325f2014-09-02 23:50:01 +000081const StratifiedIndex StratifiedLink::SetSentinel =
George Burgess IV11d509d2015-03-15 00:52:21 +000082 std::numeric_limits<StratifiedIndex>::max();
Hal Finkel1ae325f2014-09-02 23:50:01 +000083
Hal Finkel7529c552014-09-02 21:43:13 +000084namespace {
85// StratifiedInfo Attribute things.
86typedef unsigned StratifiedAttr;
Hal Finkel7d7087c2014-09-02 22:13:00 +000087LLVM_CONSTEXPR unsigned MaxStratifiedAttrIndex = NumStratifiedAttrs;
88LLVM_CONSTEXPR unsigned AttrAllIndex = 0;
89LLVM_CONSTEXPR unsigned AttrGlobalIndex = 1;
George Burgess IVb54a8d622015-03-10 02:40:06 +000090LLVM_CONSTEXPR unsigned AttrUnknownIndex = 2;
91LLVM_CONSTEXPR unsigned AttrFirstArgIndex = 3;
Hal Finkel7d7087c2014-09-02 22:13:00 +000092LLVM_CONSTEXPR unsigned AttrLastArgIndex = MaxStratifiedAttrIndex;
93LLVM_CONSTEXPR unsigned AttrMaxNumArgs = AttrLastArgIndex - AttrFirstArgIndex;
Hal Finkel7529c552014-09-02 21:43:13 +000094
Hal Finkel7d7087c2014-09-02 22:13:00 +000095LLVM_CONSTEXPR StratifiedAttr AttrNone = 0;
George Burgess IVb54a8d622015-03-10 02:40:06 +000096LLVM_CONSTEXPR StratifiedAttr AttrUnknown = 1 << AttrUnknownIndex;
Hal Finkel7d7087c2014-09-02 22:13:00 +000097LLVM_CONSTEXPR StratifiedAttr AttrAll = ~AttrNone;
Hal Finkel7529c552014-09-02 21:43:13 +000098
99// \brief StratifiedSets call for knowledge of "direction", so this is how we
100// represent that locally.
101enum class Level { Same, Above, Below };
102
103// \brief Edges can be one of four "weights" -- each weight must have an inverse
104// weight (Assign has Assign; Reference has Dereference).
105enum class EdgeType {
106 // The weight assigned when assigning from or to a value. For example, in:
107 // %b = getelementptr %a, 0
108 // ...The relationships are %b assign %a, and %a assign %b. This used to be
109 // two edges, but having a distinction bought us nothing.
110 Assign,
111
112 // The edge used when we have an edge going from some handle to a Value.
113 // Examples of this include:
114 // %b = load %a (%b Dereference %a)
115 // %b = extractelement %a, 0 (%a Dereference %b)
116 Dereference,
117
118 // The edge used when our edge goes from a value to a handle that may have
119 // contained it at some point. Examples:
120 // %b = load %a (%a Reference %b)
121 // %b = extractelement %a, 0 (%b Reference %a)
122 Reference
123};
124
125// \brief Encodes the notion of a "use"
126struct Edge {
127 // \brief Which value the edge is coming from
128 Value *From;
129
130 // \brief Which value the edge is pointing to
131 Value *To;
132
133 // \brief Edge weight
134 EdgeType Weight;
135
136 // \brief Whether we aliased any external values along the way that may be
137 // invisible to the analysis (i.e. landingpad for exceptions, calls for
138 // interprocedural analysis, etc.)
139 StratifiedAttrs AdditionalAttrs;
140
141 Edge(Value *From, Value *To, EdgeType W, StratifiedAttrs A)
142 : From(From), To(To), Weight(W), AdditionalAttrs(A) {}
143};
144
145// \brief Information we have about a function and would like to keep around
146struct FunctionInfo {
147 StratifiedSets<Value *> Sets;
148 // Lots of functions have < 4 returns. Adjust as necessary.
149 SmallVector<Value *, 4> ReturnedValues;
Hal Finkel85f26922014-09-03 00:06:47 +0000150
George Burgess IV11d509d2015-03-15 00:52:21 +0000151 FunctionInfo(StratifiedSets<Value *> &&S, SmallVector<Value *, 4> &&RV)
152 : Sets(std::move(S)), ReturnedValues(std::move(RV)) {}
Hal Finkel7529c552014-09-02 21:43:13 +0000153};
154
155struct CFLAliasAnalysis;
156
David Blaikie7f1e0562015-03-03 21:18:16 +0000157struct FunctionHandle : public CallbackVH {
Hal Finkel7529c552014-09-02 21:43:13 +0000158 FunctionHandle(Function *Fn, CFLAliasAnalysis *CFLAA)
159 : CallbackVH(Fn), CFLAA(CFLAA) {
160 assert(Fn != nullptr);
161 assert(CFLAA != nullptr);
162 }
163
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000164 ~FunctionHandle() override {}
David Blaikie7f1e0562015-03-03 21:18:16 +0000165
David Blaikie711cd9c2014-11-14 19:06:36 +0000166 void deleted() override { removeSelfFromCache(); }
167 void allUsesReplacedWith(Value *) override { removeSelfFromCache(); }
Hal Finkel7529c552014-09-02 21:43:13 +0000168
169private:
170 CFLAliasAnalysis *CFLAA;
171
172 void removeSelfFromCache();
173};
174
175struct CFLAliasAnalysis : public ImmutablePass, public AliasAnalysis {
176private:
177 /// \brief Cached mapping of Functions to their StratifiedSets.
178 /// If a function's sets are currently being built, it is marked
179 /// in the cache as an Optional without a value. This way, if we
180 /// have any kind of recursion, it is discernable from a function
181 /// that simply has empty sets.
182 DenseMap<Function *, Optional<FunctionInfo>> Cache;
183 std::forward_list<FunctionHandle> Handles;
184
185public:
186 static char ID;
187
188 CFLAliasAnalysis() : ImmutablePass(ID) {
189 initializeCFLAliasAnalysisPass(*PassRegistry::getPassRegistry());
190 }
191
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000192 ~CFLAliasAnalysis() override {}
Hal Finkel7529c552014-09-02 21:43:13 +0000193
Argyrios Kyrtzidis0b9f5502014-10-01 21:00:44 +0000194 void getAnalysisUsage(AnalysisUsage &AU) const override {
Hal Finkel7529c552014-09-02 21:43:13 +0000195 AliasAnalysis::getAnalysisUsage(AU);
196 }
197
198 void *getAdjustedAnalysisPointer(const void *ID) override {
199 if (ID == &AliasAnalysis::ID)
200 return (AliasAnalysis *)this;
201 return this;
202 }
203
204 /// \brief Inserts the given Function into the cache.
205 void scan(Function *Fn);
206
207 void evict(Function *Fn) { Cache.erase(Fn); }
208
209 /// \brief Ensures that the given function is available in the cache.
210 /// Returns the appropriate entry from the cache.
211 const Optional<FunctionInfo> &ensureCached(Function *Fn) {
212 auto Iter = Cache.find(Fn);
213 if (Iter == Cache.end()) {
214 scan(Fn);
215 Iter = Cache.find(Fn);
216 assert(Iter != Cache.end());
217 assert(Iter->second.hasValue());
218 }
219 return Iter->second;
220 }
221
222 AliasResult query(const Location &LocA, const Location &LocB);
223
224 AliasResult alias(const Location &LocA, const Location &LocB) override {
225 if (LocA.Ptr == LocB.Ptr) {
226 if (LocA.Size == LocB.Size) {
227 return MustAlias;
228 } else {
229 return PartialAlias;
230 }
231 }
232
233 // Comparisons between global variables and other constants should be
234 // handled by BasicAA.
George Burgess IVab03af22015-03-10 02:58:15 +0000235 // TODO: ConstantExpr handling -- CFLAA may report NoAlias when comparing
236 // a GlobalValue and ConstantExpr, but every query needs to have at least
237 // one Value tied to a Function, and neither GlobalValues nor ConstantExprs
238 // are.
Hal Finkel7529c552014-09-02 21:43:13 +0000239 if (isa<Constant>(LocA.Ptr) && isa<Constant>(LocB.Ptr)) {
Daniel Berlin8f10e382015-01-26 17:30:39 +0000240 return AliasAnalysis::alias(LocA, LocB);
Hal Finkel7529c552014-09-02 21:43:13 +0000241 }
George Burgess IV33305e72015-02-12 03:07:07 +0000242
Daniel Berlin8f10e382015-01-26 17:30:39 +0000243 AliasResult QueryResult = query(LocA, LocB);
244 if (QueryResult == MayAlias)
245 return AliasAnalysis::alias(LocA, LocB);
Hal Finkel7529c552014-09-02 21:43:13 +0000246
Daniel Berlin8f10e382015-01-26 17:30:39 +0000247 return QueryResult;
Hal Finkel7529c552014-09-02 21:43:13 +0000248 }
249
Mehdi Amini46a43552015-03-04 18:43:29 +0000250 bool doInitialization(Module &M) override;
Hal Finkel7529c552014-09-02 21:43:13 +0000251};
252
253void FunctionHandle::removeSelfFromCache() {
254 assert(CFLAA != nullptr);
255 auto *Val = getValPtr();
256 CFLAA->evict(cast<Function>(Val));
257 setValPtr(nullptr);
258}
259
260// \brief Gets the edges our graph should have, based on an Instruction*
261class GetEdgesVisitor : public InstVisitor<GetEdgesVisitor, void> {
262 CFLAliasAnalysis &AA;
263 SmallVectorImpl<Edge> &Output;
264
265public:
266 GetEdgesVisitor(CFLAliasAnalysis &AA, SmallVectorImpl<Edge> &Output)
267 : AA(AA), Output(Output) {}
268
269 void visitInstruction(Instruction &) {
270 llvm_unreachable("Unsupported instruction encountered");
271 }
272
George Burgess IVb54a8d622015-03-10 02:40:06 +0000273 void visitPtrToIntInst(PtrToIntInst &Inst) {
274 auto *Ptr = Inst.getOperand(0);
275 Output.push_back(Edge(Ptr, Ptr, EdgeType::Assign, AttrUnknown));
276 }
277
278 void visitIntToPtrInst(IntToPtrInst &Inst) {
279 auto *Ptr = &Inst;
280 Output.push_back(Edge(Ptr, Ptr, EdgeType::Assign, AttrUnknown));
281 }
282
Hal Finkel7529c552014-09-02 21:43:13 +0000283 void visitCastInst(CastInst &Inst) {
George Burgess IV11d509d2015-03-15 00:52:21 +0000284 Output.push_back(
285 Edge(&Inst, Inst.getOperand(0), EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000286 }
287
288 void visitBinaryOperator(BinaryOperator &Inst) {
289 auto *Op1 = Inst.getOperand(0);
290 auto *Op2 = Inst.getOperand(1);
Hal Finkel8d1590d2014-09-02 22:52:30 +0000291 Output.push_back(Edge(&Inst, Op1, EdgeType::Assign, AttrNone));
292 Output.push_back(Edge(&Inst, Op2, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000293 }
294
295 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &Inst) {
296 auto *Ptr = Inst.getPointerOperand();
297 auto *Val = Inst.getNewValOperand();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000298 Output.push_back(Edge(Ptr, Val, EdgeType::Dereference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000299 }
300
301 void visitAtomicRMWInst(AtomicRMWInst &Inst) {
302 auto *Ptr = Inst.getPointerOperand();
303 auto *Val = Inst.getValOperand();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000304 Output.push_back(Edge(Ptr, Val, EdgeType::Dereference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000305 }
306
307 void visitPHINode(PHINode &Inst) {
Pete Cooper833f34d2015-05-12 20:05:31 +0000308 for (Value *Val : Inst.incoming_values()) {
Hal Finkel8d1590d2014-09-02 22:52:30 +0000309 Output.push_back(Edge(&Inst, Val, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000310 }
311 }
312
313 void visitGetElementPtrInst(GetElementPtrInst &Inst) {
314 auto *Op = Inst.getPointerOperand();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000315 Output.push_back(Edge(&Inst, Op, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000316 for (auto I = Inst.idx_begin(), E = Inst.idx_end(); I != E; ++I)
Hal Finkel8d1590d2014-09-02 22:52:30 +0000317 Output.push_back(Edge(&Inst, *I, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000318 }
319
320 void visitSelectInst(SelectInst &Inst) {
Daniel Berlin16f7a522015-01-26 17:31:17 +0000321 // Condition is not processed here (The actual statement producing
322 // the condition result is processed elsewhere). For select, the
323 // condition is evaluated, but not loaded, stored, or assigned
324 // simply as a result of being the condition of a select.
325
Hal Finkel7529c552014-09-02 21:43:13 +0000326 auto *TrueVal = Inst.getTrueValue();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000327 Output.push_back(Edge(&Inst, TrueVal, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000328 auto *FalseVal = Inst.getFalseValue();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000329 Output.push_back(Edge(&Inst, FalseVal, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000330 }
331
332 void visitAllocaInst(AllocaInst &) {}
333
334 void visitLoadInst(LoadInst &Inst) {
335 auto *Ptr = Inst.getPointerOperand();
336 auto *Val = &Inst;
Hal Finkel8d1590d2014-09-02 22:52:30 +0000337 Output.push_back(Edge(Val, Ptr, EdgeType::Reference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000338 }
339
340 void visitStoreInst(StoreInst &Inst) {
341 auto *Ptr = Inst.getPointerOperand();
342 auto *Val = Inst.getValueOperand();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000343 Output.push_back(Edge(Ptr, Val, EdgeType::Dereference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000344 }
345
Hal Finkeldb5f86a2014-10-14 20:51:26 +0000346 void visitVAArgInst(VAArgInst &Inst) {
347 // We can't fully model va_arg here. For *Ptr = Inst.getOperand(0), it does
348 // two things:
349 // 1. Loads a value from *((T*)*Ptr).
350 // 2. Increments (stores to) *Ptr by some target-specific amount.
351 // For now, we'll handle this like a landingpad instruction (by placing the
352 // result in its own group, and having that group alias externals).
353 auto *Val = &Inst;
354 Output.push_back(Edge(Val, Val, EdgeType::Assign, AttrAll));
355 }
356
Hal Finkel7529c552014-09-02 21:43:13 +0000357 static bool isFunctionExternal(Function *Fn) {
358 return Fn->isDeclaration() || !Fn->hasLocalLinkage();
359 }
360
361 // Gets whether the sets at Index1 above, below, or equal to the sets at
362 // Index2. Returns None if they are not in the same set chain.
363 static Optional<Level> getIndexRelation(const StratifiedSets<Value *> &Sets,
364 StratifiedIndex Index1,
365 StratifiedIndex Index2) {
366 if (Index1 == Index2)
367 return Level::Same;
368
369 const auto *Current = &Sets.getLink(Index1);
370 while (Current->hasBelow()) {
371 if (Current->Below == Index2)
372 return Level::Below;
373 Current = &Sets.getLink(Current->Below);
374 }
375
376 Current = &Sets.getLink(Index1);
377 while (Current->hasAbove()) {
378 if (Current->Above == Index2)
379 return Level::Above;
380 Current = &Sets.getLink(Current->Above);
381 }
382
383 return NoneType();
384 }
385
386 bool
387 tryInterproceduralAnalysis(const SmallVectorImpl<Function *> &Fns,
388 Value *FuncValue,
389 const iterator_range<User::op_iterator> &Args) {
Hal Finkelca616ac2014-09-02 23:29:48 +0000390 const unsigned ExpectedMaxArgs = 8;
391 const unsigned MaxSupportedArgs = 50;
Hal Finkel7529c552014-09-02 21:43:13 +0000392 assert(Fns.size() > 0);
393
394 // I put this here to give us an upper bound on time taken by IPA. Is it
395 // really (realistically) needed? Keep in mind that we do have an n^2 algo.
George Burgess IVab03af22015-03-10 02:58:15 +0000396 if (std::distance(Args.begin(), Args.end()) > (int)MaxSupportedArgs)
Hal Finkel7529c552014-09-02 21:43:13 +0000397 return false;
398
399 // Exit early if we'll fail anyway
400 for (auto *Fn : Fns) {
401 if (isFunctionExternal(Fn) || Fn->isVarArg())
402 return false;
403 auto &MaybeInfo = AA.ensureCached(Fn);
404 if (!MaybeInfo.hasValue())
405 return false;
406 }
407
408 SmallVector<Value *, ExpectedMaxArgs> Arguments(Args.begin(), Args.end());
409 SmallVector<StratifiedInfo, ExpectedMaxArgs> Parameters;
410 for (auto *Fn : Fns) {
411 auto &Info = *AA.ensureCached(Fn);
412 auto &Sets = Info.Sets;
413 auto &RetVals = Info.ReturnedValues;
414
415 Parameters.clear();
416 for (auto &Param : Fn->args()) {
417 auto MaybeInfo = Sets.find(&Param);
418 // Did a new parameter somehow get added to the function/slip by?
419 if (!MaybeInfo.hasValue())
420 return false;
421 Parameters.push_back(*MaybeInfo);
422 }
423
424 // Adding an edge from argument -> return value for each parameter that
425 // may alias the return value
426 for (unsigned I = 0, E = Parameters.size(); I != E; ++I) {
427 auto &ParamInfo = Parameters[I];
428 auto &ArgVal = Arguments[I];
429 bool AddEdge = false;
430 StratifiedAttrs Externals;
431 for (unsigned X = 0, XE = RetVals.size(); X != XE; ++X) {
432 auto MaybeInfo = Sets.find(RetVals[X]);
433 if (!MaybeInfo.hasValue())
434 return false;
435
436 auto &RetInfo = *MaybeInfo;
437 auto RetAttrs = Sets.getLink(RetInfo.Index).Attrs;
438 auto ParamAttrs = Sets.getLink(ParamInfo.Index).Attrs;
439 auto MaybeRelation =
440 getIndexRelation(Sets, ParamInfo.Index, RetInfo.Index);
441 if (MaybeRelation.hasValue()) {
442 AddEdge = true;
443 Externals |= RetAttrs | ParamAttrs;
444 }
445 }
446 if (AddEdge)
Hal Finkelca616ac2014-09-02 23:29:48 +0000447 Output.push_back(Edge(FuncValue, ArgVal, EdgeType::Assign,
George Burgess IV11d509d2015-03-15 00:52:21 +0000448 StratifiedAttrs().flip()));
Hal Finkel7529c552014-09-02 21:43:13 +0000449 }
450
451 if (Parameters.size() != Arguments.size())
452 return false;
453
454 // Adding edges between arguments for arguments that may end up aliasing
455 // each other. This is necessary for functions such as
456 // void foo(int** a, int** b) { *a = *b; }
457 // (Technically, the proper sets for this would be those below
458 // Arguments[I] and Arguments[X], but our algorithm will produce
459 // extremely similar, and equally correct, results either way)
460 for (unsigned I = 0, E = Arguments.size(); I != E; ++I) {
461 auto &MainVal = Arguments[I];
462 auto &MainInfo = Parameters[I];
463 auto &MainAttrs = Sets.getLink(MainInfo.Index).Attrs;
464 for (unsigned X = I + 1; X != E; ++X) {
465 auto &SubInfo = Parameters[X];
466 auto &SubVal = Arguments[X];
467 auto &SubAttrs = Sets.getLink(SubInfo.Index).Attrs;
468 auto MaybeRelation =
469 getIndexRelation(Sets, MainInfo.Index, SubInfo.Index);
470
471 if (!MaybeRelation.hasValue())
472 continue;
473
474 auto NewAttrs = SubAttrs | MainAttrs;
Hal Finkel8d1590d2014-09-02 22:52:30 +0000475 Output.push_back(Edge(MainVal, SubVal, EdgeType::Assign, NewAttrs));
Hal Finkel7529c552014-09-02 21:43:13 +0000476 }
477 }
478 }
479 return true;
480 }
481
482 template <typename InstT> void visitCallLikeInst(InstT &Inst) {
483 SmallVector<Function *, 4> Targets;
484 if (getPossibleTargets(&Inst, Targets)) {
485 if (tryInterproceduralAnalysis(Targets, &Inst, Inst.arg_operands()))
486 return;
487 // Cleanup from interprocedural analysis
488 Output.clear();
489 }
490
491 for (Value *V : Inst.arg_operands())
Hal Finkel8d1590d2014-09-02 22:52:30 +0000492 Output.push_back(Edge(&Inst, V, EdgeType::Assign, AttrAll));
Hal Finkel7529c552014-09-02 21:43:13 +0000493 }
494
495 void visitCallInst(CallInst &Inst) { visitCallLikeInst(Inst); }
496
497 void visitInvokeInst(InvokeInst &Inst) { visitCallLikeInst(Inst); }
498
499 // Because vectors/aggregates are immutable and unaddressable,
500 // there's nothing we can do to coax a value out of them, other
501 // than calling Extract{Element,Value}. We can effectively treat
502 // them as pointers to arbitrary memory locations we can store in
503 // and load from.
504 void visitExtractElementInst(ExtractElementInst &Inst) {
505 auto *Ptr = Inst.getVectorOperand();
506 auto *Val = &Inst;
Hal Finkel8d1590d2014-09-02 22:52:30 +0000507 Output.push_back(Edge(Val, Ptr, EdgeType::Reference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000508 }
509
510 void visitInsertElementInst(InsertElementInst &Inst) {
511 auto *Vec = Inst.getOperand(0);
512 auto *Val = Inst.getOperand(1);
Hal Finkel8d1590d2014-09-02 22:52:30 +0000513 Output.push_back(Edge(&Inst, Vec, EdgeType::Assign, AttrNone));
514 Output.push_back(Edge(&Inst, Val, EdgeType::Dereference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000515 }
516
517 void visitLandingPadInst(LandingPadInst &Inst) {
518 // Exceptions come from "nowhere", from our analysis' perspective.
519 // So we place the instruction its own group, noting that said group may
520 // alias externals
Hal Finkel8d1590d2014-09-02 22:52:30 +0000521 Output.push_back(Edge(&Inst, &Inst, EdgeType::Assign, AttrAll));
Hal Finkel7529c552014-09-02 21:43:13 +0000522 }
523
524 void visitInsertValueInst(InsertValueInst &Inst) {
525 auto *Agg = Inst.getOperand(0);
526 auto *Val = Inst.getOperand(1);
Hal Finkel8d1590d2014-09-02 22:52:30 +0000527 Output.push_back(Edge(&Inst, Agg, EdgeType::Assign, AttrNone));
528 Output.push_back(Edge(&Inst, Val, EdgeType::Dereference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000529 }
530
531 void visitExtractValueInst(ExtractValueInst &Inst) {
532 auto *Ptr = Inst.getAggregateOperand();
Hal Finkel8d1590d2014-09-02 22:52:30 +0000533 Output.push_back(Edge(&Inst, Ptr, EdgeType::Reference, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000534 }
535
536 void visitShuffleVectorInst(ShuffleVectorInst &Inst) {
537 auto *From1 = Inst.getOperand(0);
538 auto *From2 = Inst.getOperand(1);
Hal Finkel8d1590d2014-09-02 22:52:30 +0000539 Output.push_back(Edge(&Inst, From1, EdgeType::Assign, AttrNone));
540 Output.push_back(Edge(&Inst, From2, EdgeType::Assign, AttrNone));
Hal Finkel7529c552014-09-02 21:43:13 +0000541 }
Pete Cooper36642532015-06-12 16:13:54 +0000542
543 void visitConstantExpr(ConstantExpr *CE) {
544 switch (CE->getOpcode()) {
545 default:
546 llvm_unreachable("Unknown instruction type encountered!");
547// Build the switch statement using the Instruction.def file.
548#define HANDLE_INST(NUM, OPCODE, CLASS) \
549 case Instruction::OPCODE: \
550 visit##OPCODE(*(CLASS *)CE); \
551 break;
552#include "llvm/IR/Instruction.def"
553 }
554 }
Hal Finkel7529c552014-09-02 21:43:13 +0000555};
556
557// For a given instruction, we need to know which Value* to get the
558// users of in order to build our graph. In some cases (i.e. add),
559// we simply need the Instruction*. In other cases (i.e. store),
560// finding the users of the Instruction* is useless; we need to find
561// the users of the first operand. This handles determining which
562// value to follow for us.
563//
564// Note: we *need* to keep this in sync with GetEdgesVisitor. Add
565// something to GetEdgesVisitor, add it here -- remove something from
566// GetEdgesVisitor, remove it here.
567class GetTargetValueVisitor
568 : public InstVisitor<GetTargetValueVisitor, Value *> {
569public:
570 Value *visitInstruction(Instruction &Inst) { return &Inst; }
571
572 Value *visitStoreInst(StoreInst &Inst) { return Inst.getPointerOperand(); }
573
574 Value *visitAtomicCmpXchgInst(AtomicCmpXchgInst &Inst) {
575 return Inst.getPointerOperand();
576 }
577
578 Value *visitAtomicRMWInst(AtomicRMWInst &Inst) {
579 return Inst.getPointerOperand();
580 }
581
582 Value *visitInsertElementInst(InsertElementInst &Inst) {
583 return Inst.getOperand(0);
584 }
585
586 Value *visitInsertValueInst(InsertValueInst &Inst) {
587 return Inst.getAggregateOperand();
588 }
589};
590
591// Set building requires a weighted bidirectional graph.
592template <typename EdgeTypeT> class WeightedBidirectionalGraph {
593public:
594 typedef std::size_t Node;
595
596private:
Hal Finkelca616ac2014-09-02 23:29:48 +0000597 const static Node StartNode = Node(0);
Hal Finkel7529c552014-09-02 21:43:13 +0000598
599 struct Edge {
600 EdgeTypeT Weight;
601 Node Other;
602
George Burgess IV11d509d2015-03-15 00:52:21 +0000603 Edge(const EdgeTypeT &W, const Node &N) : Weight(W), Other(N) {}
Hal Finkelca616ac2014-09-02 23:29:48 +0000604
Hal Finkel7529c552014-09-02 21:43:13 +0000605 bool operator==(const Edge &E) const {
606 return Weight == E.Weight && Other == E.Other;
607 }
608
609 bool operator!=(const Edge &E) const { return !operator==(E); }
610 };
611
612 struct NodeImpl {
613 std::vector<Edge> Edges;
614 };
615
616 std::vector<NodeImpl> NodeImpls;
617
618 bool inbounds(Node NodeIndex) const { return NodeIndex < NodeImpls.size(); }
619
620 const NodeImpl &getNode(Node N) const { return NodeImpls[N]; }
621 NodeImpl &getNode(Node N) { return NodeImpls[N]; }
622
623public:
624 // ----- Various Edge iterators for the graph ----- //
625
626 // \brief Iterator for edges. Because this graph is bidirected, we don't
627 // allow modificaiton of the edges using this iterator. Additionally, the
628 // iterator becomes invalid if you add edges to or from the node you're
629 // getting the edges of.
630 struct EdgeIterator : public std::iterator<std::forward_iterator_tag,
631 std::tuple<EdgeTypeT, Node *>> {
632 EdgeIterator(const typename std::vector<Edge>::const_iterator &Iter)
633 : Current(Iter) {}
634
635 EdgeIterator(NodeImpl &Impl) : Current(Impl.begin()) {}
636
637 EdgeIterator &operator++() {
638 ++Current;
639 return *this;
640 }
641
642 EdgeIterator operator++(int) {
643 EdgeIterator Copy(Current);
644 operator++();
645 return Copy;
646 }
647
648 std::tuple<EdgeTypeT, Node> &operator*() {
649 Store = std::make_tuple(Current->Weight, Current->Other);
650 return Store;
651 }
652
653 bool operator==(const EdgeIterator &Other) const {
654 return Current == Other.Current;
655 }
656
657 bool operator!=(const EdgeIterator &Other) const {
658 return !operator==(Other);
659 }
660
661 private:
662 typename std::vector<Edge>::const_iterator Current;
663 std::tuple<EdgeTypeT, Node> Store;
664 };
665
666 // Wrapper for EdgeIterator with begin()/end() calls.
667 struct EdgeIterable {
668 EdgeIterable(const std::vector<Edge> &Edges)
669 : BeginIter(Edges.begin()), EndIter(Edges.end()) {}
670
671 EdgeIterator begin() { return EdgeIterator(BeginIter); }
672
673 EdgeIterator end() { return EdgeIterator(EndIter); }
674
675 private:
676 typename std::vector<Edge>::const_iterator BeginIter;
677 typename std::vector<Edge>::const_iterator EndIter;
678 };
679
680 // ----- Actual graph-related things ----- //
681
Hal Finkelca616ac2014-09-02 23:29:48 +0000682 WeightedBidirectionalGraph() {}
Hal Finkel7529c552014-09-02 21:43:13 +0000683
684 WeightedBidirectionalGraph(WeightedBidirectionalGraph<EdgeTypeT> &&Other)
685 : NodeImpls(std::move(Other.NodeImpls)) {}
686
687 WeightedBidirectionalGraph<EdgeTypeT> &
688 operator=(WeightedBidirectionalGraph<EdgeTypeT> &&Other) {
689 NodeImpls = std::move(Other.NodeImpls);
690 return *this;
691 }
692
693 Node addNode() {
694 auto Index = NodeImpls.size();
695 auto NewNode = Node(Index);
696 NodeImpls.push_back(NodeImpl());
697 return NewNode;
698 }
699
700 void addEdge(Node From, Node To, const EdgeTypeT &Weight,
701 const EdgeTypeT &ReverseWeight) {
702 assert(inbounds(From));
703 assert(inbounds(To));
704 auto &FromNode = getNode(From);
705 auto &ToNode = getNode(To);
Hal Finkelca616ac2014-09-02 23:29:48 +0000706 FromNode.Edges.push_back(Edge(Weight, To));
707 ToNode.Edges.push_back(Edge(ReverseWeight, From));
Hal Finkel7529c552014-09-02 21:43:13 +0000708 }
709
710 EdgeIterable edgesFor(const Node &N) const {
711 const auto &Node = getNode(N);
712 return EdgeIterable(Node.Edges);
713 }
714
715 bool empty() const { return NodeImpls.empty(); }
716 std::size_t size() const { return NodeImpls.size(); }
717
718 // \brief Gets an arbitrary node in the graph as a starting point for
719 // traversal.
720 Node getEntryNode() {
721 assert(inbounds(StartNode));
722 return StartNode;
723 }
724};
725
726typedef WeightedBidirectionalGraph<std::pair<EdgeType, StratifiedAttrs>> GraphT;
727typedef DenseMap<Value *, GraphT::Node> NodeMapT;
728}
729
730// -- Setting up/registering CFLAA pass -- //
731char CFLAliasAnalysis::ID = 0;
732
733INITIALIZE_AG_PASS(CFLAliasAnalysis, AliasAnalysis, "cfl-aa",
734 "CFL-Based AA implementation", false, true, false)
735
736ImmutablePass *llvm::createCFLAliasAnalysisPass() {
737 return new CFLAliasAnalysis();
738}
739
740//===----------------------------------------------------------------------===//
741// Function declarations that require types defined in the namespace above
742//===----------------------------------------------------------------------===//
743
744// Given an argument number, returns the appropriate Attr index to set.
745static StratifiedAttr argNumberToAttrIndex(StratifiedAttr);
746
747// Given a Value, potentially return which AttrIndex it maps to.
748static Optional<StratifiedAttr> valueToAttrIndex(Value *Val);
749
750// Gets the inverse of a given EdgeType.
751static EdgeType flipWeight(EdgeType);
752
753// Gets edges of the given Instruction*, writing them to the SmallVector*.
754static void argsToEdges(CFLAliasAnalysis &, Instruction *,
755 SmallVectorImpl<Edge> &);
756
Pete Cooper36642532015-06-12 16:13:54 +0000757// Gets edges of the given ConstantExpr*, writing them to the SmallVector*.
758static void argsToEdges(CFLAliasAnalysis &, ConstantExpr *,
759 SmallVectorImpl<Edge> &);
760
Hal Finkel7529c552014-09-02 21:43:13 +0000761// Gets the "Level" that one should travel in StratifiedSets
762// given an EdgeType.
763static Level directionOfEdgeType(EdgeType);
764
765// Builds the graph needed for constructing the StratifiedSets for the
766// given function
767static void buildGraphFrom(CFLAliasAnalysis &, Function *,
768 SmallVectorImpl<Value *> &, NodeMapT &, GraphT &);
769
George Burgess IVab03af22015-03-10 02:58:15 +0000770// Gets the edges of a ConstantExpr as if it was an Instruction. This
771// function also acts on any nested ConstantExprs, adding the edges
772// of those to the given SmallVector as well.
773static void constexprToEdges(CFLAliasAnalysis &, ConstantExpr &,
774 SmallVectorImpl<Edge> &);
775
776// Given an Instruction, this will add it to the graph, along with any
777// Instructions that are potentially only available from said Instruction
778// For example, given the following line:
779// %0 = load i16* getelementptr ([1 x i16]* @a, 0, 0), align 2
780// addInstructionToGraph would add both the `load` and `getelementptr`
781// instructions to the graph appropriately.
782static void addInstructionToGraph(CFLAliasAnalysis &, Instruction &,
783 SmallVectorImpl<Value *> &, NodeMapT &,
784 GraphT &);
785
786// Notes whether it would be pointless to add the given Value to our sets.
787static bool canSkipAddingToSets(Value *Val);
788
Hal Finkel7529c552014-09-02 21:43:13 +0000789// Builds the graph + StratifiedSets for a function.
790static FunctionInfo buildSetsFrom(CFLAliasAnalysis &, Function *);
791
792static Optional<Function *> parentFunctionOfValue(Value *Val) {
793 if (auto *Inst = dyn_cast<Instruction>(Val)) {
794 auto *Bb = Inst->getParent();
795 return Bb->getParent();
796 }
797
798 if (auto *Arg = dyn_cast<Argument>(Val))
799 return Arg->getParent();
800 return NoneType();
801}
802
803template <typename Inst>
804static bool getPossibleTargets(Inst *Call,
805 SmallVectorImpl<Function *> &Output) {
806 if (auto *Fn = Call->getCalledFunction()) {
807 Output.push_back(Fn);
808 return true;
809 }
810
811 // TODO: If the call is indirect, we might be able to enumerate all potential
812 // targets of the call and return them, rather than just failing.
813 return false;
814}
815
816static Optional<Value *> getTargetValue(Instruction *Inst) {
817 GetTargetValueVisitor V;
818 return V.visit(Inst);
819}
820
821static bool hasUsefulEdges(Instruction *Inst) {
822 bool IsNonInvokeTerminator =
823 isa<TerminatorInst>(Inst) && !isa<InvokeInst>(Inst);
824 return !isa<CmpInst>(Inst) && !isa<FenceInst>(Inst) && !IsNonInvokeTerminator;
825}
826
Pete Cooper36642532015-06-12 16:13:54 +0000827static bool hasUsefulEdges(ConstantExpr *CE) {
828 // ConstantExpr doens't have terminators, invokes, or fences, so only needs
829 // to check for compares.
830 return CE->getOpcode() != Instruction::ICmp &&
831 CE->getOpcode() != Instruction::FCmp;
832}
833
Hal Finkel7529c552014-09-02 21:43:13 +0000834static Optional<StratifiedAttr> valueToAttrIndex(Value *Val) {
835 if (isa<GlobalValue>(Val))
836 return AttrGlobalIndex;
837
838 if (auto *Arg = dyn_cast<Argument>(Val))
Daniel Berlin16f7a522015-01-26 17:31:17 +0000839 // Only pointer arguments should have the argument attribute,
840 // because things can't escape through scalars without us seeing a
841 // cast, and thus, interaction with them doesn't matter.
842 if (!Arg->hasNoAliasAttr() && Arg->getType()->isPointerTy())
Hal Finkel7529c552014-09-02 21:43:13 +0000843 return argNumberToAttrIndex(Arg->getArgNo());
844 return NoneType();
845}
846
847static StratifiedAttr argNumberToAttrIndex(unsigned ArgNum) {
George Burgess IV3c898c22015-01-21 16:37:21 +0000848 if (ArgNum >= AttrMaxNumArgs)
Hal Finkel7529c552014-09-02 21:43:13 +0000849 return AttrAllIndex;
850 return ArgNum + AttrFirstArgIndex;
851}
852
853static EdgeType flipWeight(EdgeType Initial) {
854 switch (Initial) {
855 case EdgeType::Assign:
856 return EdgeType::Assign;
857 case EdgeType::Dereference:
858 return EdgeType::Reference;
859 case EdgeType::Reference:
860 return EdgeType::Dereference;
861 }
862 llvm_unreachable("Incomplete coverage of EdgeType enum");
863}
864
865static void argsToEdges(CFLAliasAnalysis &Analysis, Instruction *Inst,
866 SmallVectorImpl<Edge> &Output) {
George Burgess IVab03af22015-03-10 02:58:15 +0000867 assert(hasUsefulEdges(Inst) &&
868 "Expected instructions to have 'useful' edges");
Hal Finkel7529c552014-09-02 21:43:13 +0000869 GetEdgesVisitor v(Analysis, Output);
870 v.visit(Inst);
871}
872
Pete Cooper36642532015-06-12 16:13:54 +0000873static void argsToEdges(CFLAliasAnalysis &Analysis, ConstantExpr *CE,
874 SmallVectorImpl<Edge> &Output) {
875 assert(hasUsefulEdges(CE) && "Expected constant expr to have 'useful' edges");
876 GetEdgesVisitor v(Analysis, Output);
877 v.visitConstantExpr(CE);
878}
879
Hal Finkel7529c552014-09-02 21:43:13 +0000880static Level directionOfEdgeType(EdgeType Weight) {
881 switch (Weight) {
882 case EdgeType::Reference:
883 return Level::Above;
884 case EdgeType::Dereference:
885 return Level::Below;
886 case EdgeType::Assign:
887 return Level::Same;
888 }
889 llvm_unreachable("Incomplete switch coverage");
890}
891
George Burgess IVab03af22015-03-10 02:58:15 +0000892static void constexprToEdges(CFLAliasAnalysis &Analysis,
893 ConstantExpr &CExprToCollapse,
894 SmallVectorImpl<Edge> &Results) {
895 SmallVector<ConstantExpr *, 4> Worklist;
896 Worklist.push_back(&CExprToCollapse);
897
898 SmallVector<Edge, 8> ConstexprEdges;
Pete Cooper36642532015-06-12 16:13:54 +0000899 SmallPtrSet<ConstantExpr *, 4> Visited;
George Burgess IVab03af22015-03-10 02:58:15 +0000900 while (!Worklist.empty()) {
901 auto *CExpr = Worklist.pop_back_val();
George Burgess IVab03af22015-03-10 02:58:15 +0000902
Pete Cooper36642532015-06-12 16:13:54 +0000903 if (!hasUsefulEdges(CExpr))
George Burgess IVab03af22015-03-10 02:58:15 +0000904 continue;
905
906 ConstexprEdges.clear();
Pete Cooper36642532015-06-12 16:13:54 +0000907 argsToEdges(Analysis, CExpr, ConstexprEdges);
George Burgess IVab03af22015-03-10 02:58:15 +0000908 for (auto &Edge : ConstexprEdges) {
Pete Cooper36642532015-06-12 16:13:54 +0000909 if (auto *Nested = dyn_cast<ConstantExpr>(Edge.From))
910 if (Visited.insert(Nested).second)
911 Worklist.push_back(Nested);
George Burgess IVab03af22015-03-10 02:58:15 +0000912
Pete Cooper36642532015-06-12 16:13:54 +0000913 if (auto *Nested = dyn_cast<ConstantExpr>(Edge.To))
914 if (Visited.insert(Nested).second)
915 Worklist.push_back(Nested);
George Burgess IVab03af22015-03-10 02:58:15 +0000916 }
917
918 Results.append(ConstexprEdges.begin(), ConstexprEdges.end());
919 }
920}
921
922static void addInstructionToGraph(CFLAliasAnalysis &Analysis, Instruction &Inst,
923 SmallVectorImpl<Value *> &ReturnedValues,
924 NodeMapT &Map, GraphT &Graph) {
Hal Finkel7529c552014-09-02 21:43:13 +0000925 const auto findOrInsertNode = [&Map, &Graph](Value *Val) {
926 auto Pair = Map.insert(std::make_pair(Val, GraphT::Node()));
927 auto &Iter = Pair.first;
928 if (Pair.second) {
929 auto NewNode = Graph.addNode();
930 Iter->second = NewNode;
931 }
932 return Iter->second;
933 };
934
George Burgess IVab03af22015-03-10 02:58:15 +0000935 // We don't want the edges of most "return" instructions, but we *do* want
936 // to know what can be returned.
937 if (isa<ReturnInst>(&Inst))
938 ReturnedValues.push_back(&Inst);
939
940 if (!hasUsefulEdges(&Inst))
941 return;
942
Hal Finkel7529c552014-09-02 21:43:13 +0000943 SmallVector<Edge, 8> Edges;
George Burgess IVab03af22015-03-10 02:58:15 +0000944 argsToEdges(Analysis, &Inst, Edges);
Hal Finkel7529c552014-09-02 21:43:13 +0000945
George Burgess IVab03af22015-03-10 02:58:15 +0000946 // In the case of an unused alloca (or similar), edges may be empty. Note
947 // that it exists so we can potentially answer NoAlias.
948 if (Edges.empty()) {
949 auto MaybeVal = getTargetValue(&Inst);
950 assert(MaybeVal.hasValue());
951 auto *Target = *MaybeVal;
952 findOrInsertNode(Target);
953 return;
Hal Finkel7529c552014-09-02 21:43:13 +0000954 }
George Burgess IVab03af22015-03-10 02:58:15 +0000955
956 const auto addEdgeToGraph = [&Graph, &findOrInsertNode](const Edge &E) {
957 auto To = findOrInsertNode(E.To);
958 auto From = findOrInsertNode(E.From);
959 auto FlippedWeight = flipWeight(E.Weight);
960 auto Attrs = E.AdditionalAttrs;
961 Graph.addEdge(From, To, std::make_pair(E.Weight, Attrs),
962 std::make_pair(FlippedWeight, Attrs));
963 };
964
965 SmallVector<ConstantExpr *, 4> ConstantExprs;
966 for (const Edge &E : Edges) {
967 addEdgeToGraph(E);
968 if (auto *Constexpr = dyn_cast<ConstantExpr>(E.To))
969 ConstantExprs.push_back(Constexpr);
970 if (auto *Constexpr = dyn_cast<ConstantExpr>(E.From))
971 ConstantExprs.push_back(Constexpr);
972 }
973
974 for (ConstantExpr *CE : ConstantExprs) {
975 Edges.clear();
976 constexprToEdges(Analysis, *CE, Edges);
977 std::for_each(Edges.begin(), Edges.end(), addEdgeToGraph);
978 }
979}
980
981// Aside: We may remove graph construction entirely, because it doesn't really
982// buy us much that we don't already have. I'd like to add interprocedural
983// analysis prior to this however, in case that somehow requires the graph
984// produced by this for efficient execution
985static void buildGraphFrom(CFLAliasAnalysis &Analysis, Function *Fn,
986 SmallVectorImpl<Value *> &ReturnedValues,
987 NodeMapT &Map, GraphT &Graph) {
988 for (auto &Bb : Fn->getBasicBlockList())
989 for (auto &Inst : Bb.getInstList())
990 addInstructionToGraph(Analysis, Inst, ReturnedValues, Map, Graph);
991}
992
993static bool canSkipAddingToSets(Value *Val) {
994 // Constants can share instances, which may falsely unify multiple
995 // sets, e.g. in
996 // store i32* null, i32** %ptr1
997 // store i32* null, i32** %ptr2
998 // clearly ptr1 and ptr2 should not be unified into the same set, so
999 // we should filter out the (potentially shared) instance to
1000 // i32* null.
1001 if (isa<Constant>(Val)) {
1002 bool Container = isa<ConstantVector>(Val) || isa<ConstantArray>(Val) ||
1003 isa<ConstantStruct>(Val);
1004 // TODO: Because all of these things are constant, we can determine whether
1005 // the data is *actually* mutable at graph building time. This will probably
1006 // come for free/cheap with offset awareness.
1007 bool CanStoreMutableData =
1008 isa<GlobalValue>(Val) || isa<ConstantExpr>(Val) || Container;
1009 return !CanStoreMutableData;
1010 }
1011
1012 return false;
Hal Finkel7529c552014-09-02 21:43:13 +00001013}
1014
1015static FunctionInfo buildSetsFrom(CFLAliasAnalysis &Analysis, Function *Fn) {
1016 NodeMapT Map;
1017 GraphT Graph;
1018 SmallVector<Value *, 4> ReturnedValues;
1019
1020 buildGraphFrom(Analysis, Fn, ReturnedValues, Map, Graph);
1021
1022 DenseMap<GraphT::Node, Value *> NodeValueMap;
1023 NodeValueMap.resize(Map.size());
1024 for (const auto &Pair : Map)
Hal Finkel8d1590d2014-09-02 22:52:30 +00001025 NodeValueMap.insert(std::make_pair(Pair.second, Pair.first));
Hal Finkel7529c552014-09-02 21:43:13 +00001026
1027 const auto findValueOrDie = [&NodeValueMap](GraphT::Node Node) {
1028 auto ValIter = NodeValueMap.find(Node);
1029 assert(ValIter != NodeValueMap.end());
1030 return ValIter->second;
1031 };
1032
1033 StratifiedSetsBuilder<Value *> Builder;
1034
1035 SmallVector<GraphT::Node, 16> Worklist;
1036 for (auto &Pair : Map) {
1037 Worklist.clear();
1038
1039 auto *Value = Pair.first;
1040 Builder.add(Value);
1041 auto InitialNode = Pair.second;
1042 Worklist.push_back(InitialNode);
1043 while (!Worklist.empty()) {
1044 auto Node = Worklist.pop_back_val();
1045 auto *CurValue = findValueOrDie(Node);
George Burgess IVab03af22015-03-10 02:58:15 +00001046 if (canSkipAddingToSets(CurValue))
Hal Finkel7529c552014-09-02 21:43:13 +00001047 continue;
1048
1049 for (const auto &EdgeTuple : Graph.edgesFor(Node)) {
1050 auto Weight = std::get<0>(EdgeTuple);
1051 auto Label = Weight.first;
1052 auto &OtherNode = std::get<1>(EdgeTuple);
1053 auto *OtherValue = findValueOrDie(OtherNode);
1054
George Burgess IVab03af22015-03-10 02:58:15 +00001055 if (canSkipAddingToSets(OtherValue))
Hal Finkel7529c552014-09-02 21:43:13 +00001056 continue;
1057
1058 bool Added;
1059 switch (directionOfEdgeType(Label)) {
1060 case Level::Above:
1061 Added = Builder.addAbove(CurValue, OtherValue);
1062 break;
1063 case Level::Below:
1064 Added = Builder.addBelow(CurValue, OtherValue);
1065 break;
1066 case Level::Same:
1067 Added = Builder.addWith(CurValue, OtherValue);
1068 break;
1069 }
1070
George Burgess IVb54a8d622015-03-10 02:40:06 +00001071 auto Aliasing = Weight.second;
1072 if (auto MaybeCurIndex = valueToAttrIndex(CurValue))
1073 Aliasing.set(*MaybeCurIndex);
1074 if (auto MaybeOtherIndex = valueToAttrIndex(OtherValue))
1075 Aliasing.set(*MaybeOtherIndex);
1076 Builder.noteAttributes(CurValue, Aliasing);
1077 Builder.noteAttributes(OtherValue, Aliasing);
1078
1079 if (Added)
Hal Finkel7529c552014-09-02 21:43:13 +00001080 Worklist.push_back(OtherNode);
Hal Finkel7529c552014-09-02 21:43:13 +00001081 }
1082 }
1083 }
1084
1085 // There are times when we end up with parameters not in our graph (i.e. if
1086 // it's only used as the condition of a branch). Other bits of code depend on
1087 // things that were present during construction being present in the graph.
1088 // So, we add all present arguments here.
1089 for (auto &Arg : Fn->args()) {
George Burgess IVab03af22015-03-10 02:58:15 +00001090 if (!Builder.add(&Arg))
1091 continue;
1092
1093 auto Attrs = valueToAttrIndex(&Arg);
1094 if (Attrs.hasValue())
1095 Builder.noteAttributes(&Arg, *Attrs);
Hal Finkel7529c552014-09-02 21:43:13 +00001096 }
1097
Hal Finkel85f26922014-09-03 00:06:47 +00001098 return FunctionInfo(Builder.build(), std::move(ReturnedValues));
Hal Finkel7529c552014-09-02 21:43:13 +00001099}
1100
1101void CFLAliasAnalysis::scan(Function *Fn) {
Hal Finkel8d1590d2014-09-02 22:52:30 +00001102 auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>()));
Hal Finkel7529c552014-09-02 21:43:13 +00001103 (void)InsertPair;
1104 assert(InsertPair.second &&
1105 "Trying to scan a function that has already been cached");
1106
1107 FunctionInfo Info(buildSetsFrom(*this, Fn));
1108 Cache[Fn] = std::move(Info);
1109 Handles.push_front(FunctionHandle(Fn, this));
1110}
1111
1112AliasAnalysis::AliasResult
1113CFLAliasAnalysis::query(const AliasAnalysis::Location &LocA,
1114 const AliasAnalysis::Location &LocB) {
1115 auto *ValA = const_cast<Value *>(LocA.Ptr);
1116 auto *ValB = const_cast<Value *>(LocB.Ptr);
1117
1118 Function *Fn = nullptr;
1119 auto MaybeFnA = parentFunctionOfValue(ValA);
1120 auto MaybeFnB = parentFunctionOfValue(ValB);
1121 if (!MaybeFnA.hasValue() && !MaybeFnB.hasValue()) {
George Burgess IV33305e72015-02-12 03:07:07 +00001122 // The only times this is known to happen are when globals + InlineAsm
1123 // are involved
1124 DEBUG(dbgs() << "CFLAA: could not extract parent function information.\n");
1125 return AliasAnalysis::MayAlias;
Hal Finkel7529c552014-09-02 21:43:13 +00001126 }
1127
1128 if (MaybeFnA.hasValue()) {
1129 Fn = *MaybeFnA;
1130 assert((!MaybeFnB.hasValue() || *MaybeFnB == *MaybeFnA) &&
1131 "Interprocedural queries not supported");
1132 } else {
1133 Fn = *MaybeFnB;
1134 }
1135
1136 assert(Fn != nullptr);
1137 auto &MaybeInfo = ensureCached(Fn);
1138 assert(MaybeInfo.hasValue());
1139
1140 auto &Sets = MaybeInfo->Sets;
1141 auto MaybeA = Sets.find(ValA);
1142 if (!MaybeA.hasValue())
1143 return AliasAnalysis::MayAlias;
1144
1145 auto MaybeB = Sets.find(ValB);
1146 if (!MaybeB.hasValue())
1147 return AliasAnalysis::MayAlias;
1148
1149 auto SetA = *MaybeA;
1150 auto SetB = *MaybeB;
Hal Finkel7529c552014-09-02 21:43:13 +00001151 auto AttrsA = Sets.getLink(SetA.Index).Attrs;
1152 auto AttrsB = Sets.getLink(SetB.Index).Attrs;
George Burgess IV33305e72015-02-12 03:07:07 +00001153
Hal Finkel8eae3ad2014-10-06 14:42:56 +00001154 // Stratified set attributes are used as markets to signify whether a member
George Burgess IV33305e72015-02-12 03:07:07 +00001155 // of a StratifiedSet (or a member of a set above the current set) has
Hal Finkel8eae3ad2014-10-06 14:42:56 +00001156 // interacted with either arguments or globals. "Interacted with" meaning
George Burgess IV33305e72015-02-12 03:07:07 +00001157 // its value may be different depending on the value of an argument or
Hal Finkel8eae3ad2014-10-06 14:42:56 +00001158 // global. The thought behind this is that, because arguments and globals
1159 // may alias each other, if AttrsA and AttrsB have touched args/globals,
George Burgess IV33305e72015-02-12 03:07:07 +00001160 // we must conservatively say that they alias. However, if at least one of
1161 // the sets has no values that could legally be altered by changing the value
Hal Finkel8eae3ad2014-10-06 14:42:56 +00001162 // of an argument or global, then we don't have to be as conservative.
1163 if (AttrsA.any() && AttrsB.any())
1164 return AliasAnalysis::MayAlias;
Hal Finkel7529c552014-09-02 21:43:13 +00001165
Daniel Berlin16f7a522015-01-26 17:31:17 +00001166 // We currently unify things even if the accesses to them may not be in
1167 // bounds, so we can't return partial alias here because we don't
1168 // know whether the pointer is really within the object or not.
1169 // IE Given an out of bounds GEP and an alloca'd pointer, we may
1170 // unify the two. We can't return partial alias for this case.
1171 // Since we do not currently track enough information to
1172 // differentiate
1173
1174 if (SetA.Index == SetB.Index)
1175 return AliasAnalysis::MayAlias;
1176
Hal Finkel7529c552014-09-02 21:43:13 +00001177 return AliasAnalysis::NoAlias;
1178}
Mehdi Amini46a43552015-03-04 18:43:29 +00001179
1180bool CFLAliasAnalysis::doInitialization(Module &M) {
1181 InitializeAliasAnalysis(this, &M.getDataLayout());
1182 return true;
1183}