LLVM 24.0.0git
BasicAliasAnalysis.h
Go to the documentation of this file.
1//===- BasicAliasAnalysis.h - Stateless, local Alias Analysis ---*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8/// \file
9/// This is the interface for LLVM's primary stateless and local alias analysis.
10///
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_ANALYSIS_BASICALIASANALYSIS_H
14#define LLVM_ANALYSIS_BASICALIASANALYSIS_H
15
18#include "llvm/IR/PassManager.h"
19#include "llvm/Pass.h"
21#include <memory>
22#include <utility>
23
24namespace llvm {
25
26class AssumptionCache;
27class DataLayout;
28class DominatorTree;
29class Function;
30class GEPOperator;
31class PHINode;
32class SelectInst;
34class Value;
35
36/// This is the AA result object for the basic, local, and stateless alias
37/// analysis. It implements the AA query interface in an entirely stateless
38/// manner. As one consequence, it is never invalidated due to IR changes.
39/// While it does retain some storage, that is used as an optimization and not
40/// to preserve information from query to query. However it does retain handles
41/// to various other analyses and must be recomputed when those analyses are.
43 const DataLayout &DL;
44 const Function &F;
45 const TargetLibraryInfo &TLI;
47 /// Use getDT() instead of accessing this member directly, in order to
48 /// respect the AAQI.UseDominatorTree option.
49 DominatorTree *DT_;
50
51 DominatorTree *getDT(const AAQueryInfo &AAQI) const {
52 return AAQI.UseDominatorTree ? DT_ : nullptr;
53 }
54
55public:
56 BasicAAResult(const DataLayout &DL, const Function &F,
57 const TargetLibraryInfo &TLI, AssumptionCache &AC,
58 DominatorTree *DT = nullptr)
59 : DL(DL), F(F), TLI(TLI), AC(AC), DT_(DT) {}
60
62 : AAResultBase(Arg), DL(Arg.DL), F(Arg.F), TLI(Arg.TLI), AC(Arg.AC),
63 DT_(Arg.DT_) {}
65 : AAResultBase(std::move(Arg)), DL(Arg.DL), F(Arg.F), TLI(Arg.TLI),
66 AC(Arg.AC), DT_(Arg.DT_) {}
67
68 /// Handle invalidation events in the new pass manager.
70 FunctionAnalysisManager::Invalidator &Inv);
71
73 const MemoryLocation &LocB, AAQueryInfo &AAQI,
74 const Instruction *CtxI);
75
77 const Instruction *CtxI);
78
81 const MemoryLocation &Loc,
82 AAQueryInfo &AAQI);
83
85 const CallBase *Call2, AAQueryInfo &AAQI);
86
87 /// Returns a bitmask that should be unconditionally applied to the ModRef
88 /// info of a memory location. This allows us to eliminate Mod and/or Ref
89 /// from the ModRef info based on the knowledge that the memory location
90 /// points to constant and/or locally-invariant memory.
91 ///
92 /// If IgnoreLocals is true, then this method returns NoModRef for memory
93 /// that points to a local alloca.
95 AAQueryInfo &AAQI,
96 bool IgnoreLocals = false);
97
98 /// Get the location associated with a pointer argument of a callsite.
99 LLVM_ABI ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx);
100
101 /// Returns the behavior when calling the given call site.
103 AAQueryInfo &AAQI);
104
105 /// Returns the behavior when calling the given function. For use when the
106 /// call site is not known.
108
109private:
110 struct DecomposedGEP;
111 struct VariableGEPOffsetInfo;
112
113 /// Tracks instructions visited by pointsToConstantMemory.
115
116 static DecomposedGEP
117 DecomposeGEPExpression(const Value *V, const DataLayout &DL,
119
120 /// Analyze the variable indices of a decomposed GEP, computing the GCD
121 /// that each Scale*V term is a multiple of, and an approximate range of
122 /// possible total offsets.
123 VariableGEPOffsetInfo analyzeVariableOffsets(const DecomposedGEP &GEP,
124 DominatorTree *DT);
125
126 /// Try to determine the range of values for VarIndex such that
127 /// VarIndex <= -MinAbsVarIndex || MinAbsVarIndex <= VarIndex, thus
128 /// establishing a minimum absolute value of the variable offset.
129 std::optional<APInt> computeMinAbsVarOffset(const DecomposedGEP &GEP,
130 DominatorTree *DT,
131 const AAQueryInfo &AAQI);
132
133 /// A Heuristic for aliasGEP that searches for a constant offset
134 /// between the variables.
135 ///
136 /// GetLinearExpression has some limitations, as generally zext(%x + 1)
137 /// != zext(%x) + zext(1) if the arithmetic overflows. GetLinearExpression
138 /// will therefore conservatively refuse to decompose these expressions.
139 /// However, we know that, for all %x, zext(%x) != zext(%x + 1), even if
140 /// the addition overflows.
141 bool computeConstantOffsetHeuristic(const DecomposedGEP &GEP,
142 LocationSize V1Size, LocationSize V2Size,
144 const AAQueryInfo &AAQI);
145
146 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2,
147 const AAQueryInfo &AAQI);
148
149 void subtractDecomposedGEPs(DecomposedGEP &DestGEP,
150 const DecomposedGEP &SrcGEP,
151 const AAQueryInfo &AAQI);
152
153 AliasResult aliasGEP(const GEPOperator *V1, LocationSize V1Size,
154 const Value *V2, LocationSize V2Size,
155 const Value *UnderlyingV1, const Value *UnderlyingV2,
156 AAQueryInfo &AAQI);
157
158 AliasResult aliasPHI(const PHINode *PN, LocationSize PNSize,
159 const Value *V2, LocationSize V2Size, AAQueryInfo &AAQI);
160
161 AliasResult aliasSelect(const SelectInst *SI, LocationSize SISize,
162 const Value *V2, LocationSize V2Size,
163 AAQueryInfo &AAQI);
164
165 AliasResult aliasCheck(const Value *V1, LocationSize V1Size, const Value *V2,
166 LocationSize V2Size, AAQueryInfo &AAQI,
167 const Instruction *CtxI);
168
169 AliasResult aliasCheckRecursive(const Value *V1, LocationSize V1Size,
170 const Value *V2, LocationSize V2Size,
171 AAQueryInfo &AAQI, const Value *O1,
172 const Value *O2);
173};
174
175/// Analysis pass providing a never-invalidated alias analysis result.
176class BasicAA : public AnalysisInfoMixin<BasicAA> {
178
179 LLVM_ABI static AnalysisKey Key;
180
181public:
183
185};
186
187/// Legacy wrapper pass to provide the BasicAAResult object.
189 std::unique_ptr<BasicAAResult> Result;
190
191 virtual void anchor();
192
193public:
194 static char ID;
195
197
198 BasicAAResult &getResult() { return *Result; }
199 const BasicAAResult &getResult() const { return *Result; }
200
201 bool runOnFunction(Function &F) override;
202 void getAnalysisUsage(AnalysisUsage &AU) const override;
203};
204
205LLVM_ABI FunctionPass *createBasicAAWrapperPass();
206
207} // end namespace llvm
208
209#endif // LLVM_ANALYSIS_BASICALIASANALYSIS_H
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
#define LLVM_ABI
Definition Compiler.h:215
static bool runOnFunction(Function &F, bool PostInlining)
Hexagon Common GEP
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition MD5.cpp:54
This file defines the SmallPtrSet class.
This class stores info we want to provide to or retain within an alias query.
bool UseDominatorTree
Whether alias analysis is allowed to use the dominator tree, for use by passes that lazily update the...
ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc, AAQueryInfo &AAQI)
AAResultBase()=default
The possible results of an alias query.
Represent the analysis usage information of a pass.
A cache of @llvm.assume calls within a function.
This is the AA result object for the basic, local, and stateless alias analysis.
BasicAAResult(const DataLayout &DL, const Function &F, const TargetLibraryInfo &TLI, AssumptionCache &AC, DominatorTree *DT=nullptr)
LLVM_ABI ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc, AAQueryInfo &AAQI)
Checks to see if the specified callsite can clobber the specified memory object.
LLVM_ABI ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx)
Get the location associated with a pointer argument of a callsite.
BasicAAResult(BasicAAResult &&Arg)
LLVM_ABI MemoryEffects getMemoryEffects(const CallBase *Call, AAQueryInfo &AAQI)
Returns the behavior when calling the given call site.
LLVM_ABI AliasResult aliasErrno(const MemoryLocation &Loc, const Instruction *CtxI)
BasicAAResult(const BasicAAResult &Arg)
LLVM_ABI ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, AAQueryInfo &AAQI, bool IgnoreLocals=false)
Returns a bitmask that should be unconditionally applied to the ModRef info of a memory location.
LLVM_ABI bool invalidate(Function &Fn, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &Inv)
Handle invalidation events in the new pass manager.
LLVM_ABI AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB, AAQueryInfo &AAQI, const Instruction *CtxI)
const BasicAAResult & getResult() const
Analysis pass providing a never-invalidated alias analysis result.
BasicAAResult Result
LLVM_ABI BasicAAResult run(Function &F, FunctionAnalysisManager &AM)
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:122
FunctionPass(char &pid)
Definition Pass.h:316
Representation for a specific memory location.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
This class represents the LLVM 'select' instruction.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Provides information about what library functions are available for the current target.
LLVM Value Representation.
Definition Value.h:75
CallInst * Call
This is an optimization pass for GlobalISel generic memory operations.
@ O1
Optimize quickly without destroying debuggability.
@ O2
Optimize for fast execution as much as possible without triggering significant incremental compile ti...
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:356
LLVM_ABI FunctionPass * createBasicAAWrapperPass()
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
Definition ModRef.h:28
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1917
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29