LLVM  8.0.1
BasicAliasAnalysis.h
Go to the documentation of this file.
1 //===- BasicAliasAnalysis.h - Stateless, local Alias Analysis ---*- C++ -*-===//
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 /// \file
10 /// This is the interface for LLVM's primary stateless and local alias analysis.
11 ///
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_ANALYSIS_BASICALIASANALYSIS_H
15 #define LLVM_ANALYSIS_BASICALIASANALYSIS_H
16 
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/Optional.h"
19 #include "llvm/ADT/SmallPtrSet.h"
20 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/IR/InstrTypes.h"
25 #include "llvm/IR/PassManager.h"
26 #include "llvm/Pass.h"
27 #include <algorithm>
28 #include <cstdint>
29 #include <memory>
30 #include <utility>
31 
32 namespace llvm {
33 
34 struct AAMDNodes;
35 class APInt;
36 class AssumptionCache;
37 class BasicBlock;
38 class DataLayout;
39 class DominatorTree;
40 class Function;
41 class GEPOperator;
42 class LoopInfo;
43 class PHINode;
44 class SelectInst;
45 class TargetLibraryInfo;
46 class PhiValues;
47 class Value;
48 
49 /// This is the AA result object for the basic, local, and stateless alias
50 /// analysis. It implements the AA query interface in an entirely stateless
51 /// manner. As one consequence, it is never invalidated due to IR changes.
52 /// While it does retain some storage, that is used as an optimization and not
53 /// to preserve information from query to query. However it does retain handles
54 /// to various other analyses and must be recomputed when those analyses are.
55 class BasicAAResult : public AAResultBase<BasicAAResult> {
57 
58  const DataLayout &DL;
59  const Function &F;
60  const TargetLibraryInfo &TLI;
61  AssumptionCache &AC;
62  DominatorTree *DT;
63  LoopInfo *LI;
64  PhiValues *PV;
65 
66 public:
67  BasicAAResult(const DataLayout &DL, const Function &F,
68  const TargetLibraryInfo &TLI, AssumptionCache &AC,
69  DominatorTree *DT = nullptr, LoopInfo *LI = nullptr,
70  PhiValues *PV = nullptr)
71  : AAResultBase(), DL(DL), F(F), TLI(TLI), AC(AC), DT(DT), LI(LI), PV(PV)
72  {}
73 
75  : AAResultBase(Arg), DL(Arg.DL), F(Arg.F), TLI(Arg.TLI), AC(Arg.AC),
76  DT(Arg.DT), LI(Arg.LI), PV(Arg.PV) {}
78  : AAResultBase(std::move(Arg)), DL(Arg.DL), F(Arg.F), TLI(Arg.TLI),
79  AC(Arg.AC), DT(Arg.DT), LI(Arg.LI), PV(Arg.PV) {}
80 
81  /// Handle invalidation events in the new pass manager.
82  bool invalidate(Function &Fn, const PreservedAnalyses &PA,
84 
85  AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB);
86 
87  ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc);
88 
89  ModRefInfo getModRefInfo(const CallBase *Call1, const CallBase *Call2);
90 
91  /// Chases pointers until we find a (constant global) or not.
92  bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
93 
94  /// Get the location associated with a pointer argument of a callsite.
95  ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx);
96 
97  /// Returns the behavior when calling the given call site.
99 
100  /// Returns the behavior when calling the given function. For use when the
101  /// call site is not known.
103 
104 private:
105  // A linear transformation of a Value; this class represents ZExt(SExt(V,
106  // SExtBits), ZExtBits) * Scale + Offset.
107  struct VariableGEPIndex {
108  // An opaque Value - we can't decompose this further.
109  const Value *V;
110 
111  // We need to track what extensions we've done as we consider the same Value
112  // with different extensions as different variables in a GEP's linear
113  // expression;
114  // e.g.: if V == -1, then sext(x) != zext(x).
115  unsigned ZExtBits;
116  unsigned SExtBits;
117 
118  APInt Scale;
119 
120  bool operator==(const VariableGEPIndex &Other) const {
121  return V == Other.V && ZExtBits == Other.ZExtBits &&
122  SExtBits == Other.SExtBits && Scale == Other.Scale;
123  }
124 
125  bool operator!=(const VariableGEPIndex &Other) const {
126  return !operator==(Other);
127  }
128  };
129 
130  // Represents the internal structure of a GEP, decomposed into a base pointer,
131  // constant offsets, and variable scaled indices.
132  struct DecomposedGEP {
133  // Base pointer of the GEP
134  const Value *Base;
135  // Total constant offset w.r.t the base from indexing into structs
136  APInt StructOffset;
137  // Total constant offset w.r.t the base from indexing through
138  // pointers/arrays/vectors
139  APInt OtherOffset;
140  // Scaled variable (non-constant) indices.
142  };
143 
144  /// Track alias queries to guard against recursion.
145  using LocPair = std::pair<MemoryLocation, MemoryLocation>;
147  AliasCacheTy AliasCache;
148 
149  /// Tracks phi nodes we have visited.
150  ///
151  /// When interpret "Value" pointer equality as value equality we need to make
152  /// sure that the "Value" is not part of a cycle. Otherwise, two uses could
153  /// come from different "iterations" of a cycle and see different values for
154  /// the same "Value" pointer.
155  ///
156  /// The following example shows the problem:
157  /// %p = phi(%alloca1, %addr2)
158  /// %l = load %ptr
159  /// %addr1 = gep, %alloca2, 0, %l
160  /// %addr2 = gep %alloca2, 0, (%l + 1)
161  /// alias(%p, %addr1) -> MayAlias !
162  /// store %l, ...
164 
165  /// Tracks instructions visited by pointsToConstantMemory.
167 
168  static const Value *
169  GetLinearExpression(const Value *V, APInt &Scale, APInt &Offset,
170  unsigned &ZExtBits, unsigned &SExtBits,
171  const DataLayout &DL, unsigned Depth, AssumptionCache *AC,
172  DominatorTree *DT, bool &NSW, bool &NUW);
173 
174  static bool DecomposeGEPExpression(const Value *V, DecomposedGEP &Decomposed,
175  const DataLayout &DL, AssumptionCache *AC, DominatorTree *DT);
176 
177  static bool isGEPBaseAtNegativeOffset(const GEPOperator *GEPOp,
178  const DecomposedGEP &DecompGEP, const DecomposedGEP &DecompObject,
179  LocationSize ObjectAccessSize);
180 
181  /// A Heuristic for aliasGEP that searches for a constant offset
182  /// between the variables.
183  ///
184  /// GetLinearExpression has some limitations, as generally zext(%x + 1)
185  /// != zext(%x) + zext(1) if the arithmetic overflows. GetLinearExpression
186  /// will therefore conservatively refuse to decompose these expressions.
187  /// However, we know that, for all %x, zext(%x) != zext(%x + 1), even if
188  /// the addition overflows.
189  bool
190  constantOffsetHeuristic(const SmallVectorImpl<VariableGEPIndex> &VarIndices,
191  LocationSize V1Size, LocationSize V2Size,
192  APInt BaseOffset, AssumptionCache *AC,
193  DominatorTree *DT);
194 
195  bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2);
196 
197  void GetIndexDifference(SmallVectorImpl<VariableGEPIndex> &Dest,
199 
200  AliasResult aliasGEP(const GEPOperator *V1, LocationSize V1Size,
201  const AAMDNodes &V1AAInfo, const Value *V2,
202  LocationSize V2Size, const AAMDNodes &V2AAInfo,
203  const Value *UnderlyingV1, const Value *UnderlyingV2);
204 
205  AliasResult aliasPHI(const PHINode *PN, LocationSize PNSize,
206  const AAMDNodes &PNAAInfo, const Value *V2,
207  LocationSize V2Size, const AAMDNodes &V2AAInfo,
208  const Value *UnderV2);
209 
210  AliasResult aliasSelect(const SelectInst *SI, LocationSize SISize,
211  const AAMDNodes &SIAAInfo, const Value *V2,
212  LocationSize V2Size, const AAMDNodes &V2AAInfo,
213  const Value *UnderV2);
214 
215  AliasResult aliasCheck(const Value *V1, LocationSize V1Size,
216  AAMDNodes V1AATag, const Value *V2,
217  LocationSize V2Size, AAMDNodes V2AATag,
218  const Value *O1 = nullptr, const Value *O2 = nullptr);
219 };
220 
221 /// Analysis pass providing a never-invalidated alias analysis result.
222 class BasicAA : public AnalysisInfoMixin<BasicAA> {
224 
225  static AnalysisKey Key;
226 
227 public:
229 
231 };
232 
233 /// Legacy wrapper pass to provide the BasicAAResult object.
235  std::unique_ptr<BasicAAResult> Result;
236 
237  virtual void anchor();
238 
239 public:
240  static char ID;
241 
243 
244  BasicAAResult &getResult() { return *Result; }
245  const BasicAAResult &getResult() const { return *Result; }
246 
247  bool runOnFunction(Function &F) override;
248  void getAnalysisUsage(AnalysisUsage &AU) const override;
249 };
250 
252 
253 /// A helper for the legacy pass manager to create a \c BasicAAResult object
254 /// populated to the best of our ability for a particular function when inside
255 /// of a \c ModulePass or a \c CallGraphSCCPass.
257 
258 /// This class is a functor to be used in legacy module or SCC passes for
259 /// computing AA results for a function. We store the results in fields so that
260 /// they live long enough to be queried, but we re-use them each time.
262  Pass &P;
265 
266 public:
267  LegacyAARGetter(Pass &P) : P(P) {}
270  AAR.emplace(createLegacyPMAAResults(P, F, *BAR));
271  return *AAR;
272  }
273 };
274 
275 } // end namespace llvm
276 
277 #endif // LLVM_ANALYSIS_BASICALIASANALYSIS_H
Pass interface - Implemented by all &#39;passes&#39;.
Definition: Pass.h:81
const BasicAAResult & getResult() const
A parsed version of the target data layout string in and methods for querying it. ...
Definition: DataLayout.h:111
This class represents lattice values for constants.
Definition: AllocatorList.h:24
Various leaf nodes.
Definition: ISDOpcodes.h:60
BasicAAResult createLegacyPMBasicAAResult(Pass &P, Function &F)
A helper for the legacy pass manager to create a BasicAAResult object populated to the best of our ab...
void emplace(ArgTypes &&... Args)
Create a new object by constructing it in place with the given arguments.
Definition: Optional.h:135
A cache of @llvm.assume calls within a function.
This is the AA result object for the basic, local, and stateless alias analysis.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Definition: InstrTypes.h:1014
ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx)
Get the location associated with a pointer argument of a callsite.
bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal)
Chases pointers until we find a (constant global) or not.
Definition: BitVector.h:938
This class represents the LLVM &#39;select&#39; instruction.
This class is a functor to be used in legacy module or SCC passes for computing AA results for a func...
AAResults createLegacyPMAAResults(Pass &P, Function &F, BasicAAResult &BAR)
A helper for the legacy pass manager to create a AAResults object populated to the best of our abilit...
AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB)
ELFYAML::ELF_STO Other
Definition: ELFYAML.cpp:784
A CRTP-driven "mixin" base class to help implement the function alias analysis results concept...
Key
PAL metadata keys.
#define F(x, y, z)
Definition: MD5.cpp:55
FunctionModRefBehavior
Summary of how a function affects memory in the program.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree...
Definition: Dominators.h:145
AliasResult
The possible results of an alias query.
Definition: AliasAnalysis.h:78
BasicAAResult(const DataLayout &DL, const Function &F, const TargetLibraryInfo &TLI, AssumptionCache &AC, DominatorTree *DT=nullptr, LoopInfo *LI=nullptr, PhiValues *PV=nullptr)
static bool runOnFunction(Function &F, bool PostInlining)
#define P(N)
FunctionModRefBehavior getModRefBehavior(const CallBase *Call)
Returns the behavior when calling the given call site.
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:154
AAResults & operator()(Function &F)
A CRTP mix-in that provides informational APIs needed for analysis passes.
Definition: PassManager.h:383
Represent the analysis usage information of a pass.
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
bool invalidate(Function &Fn, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &Inv)
Handle invalidation events in the new pass manager.
Representation for a specific memory location.
Provides information about what library functions are available for the current target.
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
Definition: Metadata.h:644
ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc)
Checks to see if the specified callsite can clobber the specified memory object.
Class for arbitrary precision integers.
Definition: APInt.h:70
FunctionPass * createBasicAAWrapperPass()
amdgpu Simplify well known AMD library false Value Value * Arg
Analysis pass providing a never-invalidated alias analysis result.
bool operator!=(uint64_t V1, const APInt &V2)
Definition: APInt.h:1969
BasicAAResult(BasicAAResult &&Arg)
BasicAAResult(const BasicAAResult &Arg)
This file provides utility analysis objects describing memory locations.
Class for calculating and caching the underlying values of phis in a function.
Definition: PhiValues.h:43
API to communicate dependencies between analyses during invalidation.
Definition: PassManager.h:642
LLVM Value Representation.
Definition: Value.h:73
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
A container for analyses that lazily runs them and caches their results.
bool operator==(uint64_t V1, const APInt &V2)
Definition: APInt.h:1967
This header defines various interfaces for pass management in LLVM.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition: PassManager.h:71
Legacy wrapper pass to provide the BasicAAResult object.