LLVM  8.0.1
ScalarEvolutionAliasAnalysis.cpp
Go to the documentation of this file.
1 //===- ScalarEvolutionAliasAnalysis.cpp - SCEV-based Alias Analysis -------===//
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 defines the ScalarEvolutionAliasAnalysis pass, which implements a
11 // simple alias analysis implemented in terms of ScalarEvolution queries.
12 //
13 // This differs from traditional loop dependence analysis in that it tests
14 // for dependencies within a single iteration of a loop, rather than
15 // dependencies between different iterations.
16 //
17 // ScalarEvolution has a more complete understanding of pointer arithmetic
18 // than BasicAliasAnalysis' collection of ad-hoc analyses.
19 //
20 //===----------------------------------------------------------------------===//
21 
23 using namespace llvm;
24 
26  const MemoryLocation &LocB) {
27  // If either of the memory references is empty, it doesn't matter what the
28  // pointer values are. This allows the code below to ignore this special
29  // case.
30  if (LocA.Size.isZero() || LocB.Size.isZero())
31  return NoAlias;
32 
33  // This is SCEVAAResult. Get the SCEVs!
34  const SCEV *AS = SE.getSCEV(const_cast<Value *>(LocA.Ptr));
35  const SCEV *BS = SE.getSCEV(const_cast<Value *>(LocB.Ptr));
36 
37  // If they evaluate to the same expression, it's a MustAlias.
38  if (AS == BS)
39  return MustAlias;
40 
41  // If something is known about the difference between the two addresses,
42  // see if it's enough to prove a NoAlias.
43  if (SE.getEffectiveSCEVType(AS->getType()) ==
44  SE.getEffectiveSCEVType(BS->getType())) {
45  unsigned BitWidth = SE.getTypeSizeInBits(AS->getType());
46  APInt ASizeInt(BitWidth, LocA.Size.hasValue()
47  ? LocA.Size.getValue()
49  APInt BSizeInt(BitWidth, LocB.Size.hasValue()
50  ? LocB.Size.getValue()
52 
53  // Compute the difference between the two pointers.
54  const SCEV *BA = SE.getMinusSCEV(BS, AS);
55 
56  // Test whether the difference is known to be great enough that memory of
57  // the given sizes don't overlap. This assumes that ASizeInt and BSizeInt
58  // are non-zero, which is special-cased above.
59  if (ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) &&
60  (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax()))
61  return NoAlias;
62 
63  // Folding the subtraction while preserving range information can be tricky
64  // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS
65  // and try again to see if things fold better that way.
66 
67  // Compute the difference between the two pointers.
68  const SCEV *AB = SE.getMinusSCEV(AS, BS);
69 
70  // Test whether the difference is known to be great enough that memory of
71  // the given sizes don't overlap. This assumes that ASizeInt and BSizeInt
72  // are non-zero, which is special-cased above.
73  if (BSizeInt.ule(SE.getUnsignedRange(AB).getUnsignedMin()) &&
74  (-ASizeInt).uge(SE.getUnsignedRange(AB).getUnsignedMax()))
75  return NoAlias;
76  }
77 
78  // If ScalarEvolution can find an underlying object, form a new query.
79  // The correctness of this depends on ScalarEvolution not recognizing
80  // inttoptr and ptrtoint operators.
81  Value *AO = GetBaseValue(AS);
82  Value *BO = GetBaseValue(BS);
83  if ((AO && AO != LocA.Ptr) || (BO && BO != LocB.Ptr))
84  if (alias(MemoryLocation(AO ? AO : LocA.Ptr,
85  AO ? LocationSize::unknown() : LocA.Size,
86  AO ? AAMDNodes() : LocA.AATags),
87  MemoryLocation(BO ? BO : LocB.Ptr,
88  BO ? LocationSize::unknown() : LocB.Size,
89  BO ? AAMDNodes() : LocB.AATags)) == NoAlias)
90  return NoAlias;
91 
92  // Forward the query to the next analysis.
93  return AAResultBase::alias(LocA, LocB);
94 }
95 
96 /// Given an expression, try to find a base value.
97 ///
98 /// Returns null if none was found.
99 Value *SCEVAAResult::GetBaseValue(const SCEV *S) {
100  if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
101  // In an addrec, assume that the base will be in the start, rather
102  // than the step.
103  return GetBaseValue(AR->getStart());
104  } else if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
105  // If there's a pointer operand, it'll be sorted at the end of the list.
106  const SCEV *Last = A->getOperand(A->getNumOperands() - 1);
107  if (Last->getType()->isPointerTy())
108  return GetBaseValue(Last);
109  } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
110  // This is a leaf node.
111  return U->getValue();
112  }
113  // No Identified object found.
114  return nullptr;
115 }
116 
117 AnalysisKey SCEVAA::Key;
118 
121 }
122 
123 char SCEVAAWrapperPass::ID = 0;
125  "ScalarEvolution-based Alias Analysis", false, true)
128  "ScalarEvolution-based Alias Analysis", false, true)
129 
131  return new SCEVAAWrapperPass();
132 }
133 
136 }
137 
139  Result.reset(
140  new SCEVAAResult(getAnalysis<ScalarEvolutionWrapperPass>().getSE()));
141  return false;
142 }
143 
145  AU.setPreservesAll();
147 }
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:770
This class represents lattice values for constants.
Definition: AllocatorList.h:24
Type * getEffectiveSCEVType(Type *Ty) const
Return a type with the same bitwidth as the given type and which represents how SCEV will treat the g...
static constexpr LocationSize unknown()
scev ScalarEvolution based Alias Analysis
The main scalar evolution driver.
The two locations do not alias at all.
Definition: AliasAnalysis.h:84
uint64_t getTypeSizeInBits(Type *Ty) const
Return the size in bits of the specified type, for which isSCEVable must return true.
F(f)
block Block Frequency true
AnalysisUsage & addRequired()
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:51
This is the interface for a SCEV-based alias analysis.
A simple alias analysis implementation that uses ScalarEvolution to answer queries.
This node represents a polynomial recurrence on the trip count of the specified loop.
FunctionPass * createSCEVAAWrapperPass()
Creates an instance of SCEVAAWrapperPass.
AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB)
APInt getUnsignedMin() const
Return the smallest unsigned value contained in the ConstantRange.
AliasResult
The possible results of an alias query.
Definition: AliasAnalysis.h:78
uint64_t getValue() const
This means that we are dealing with an entirely unknown SCEV value, and only represent it as its LLVM...
bool isPointerTy() const
True if this is an instance of PointerType.
Definition: Type.h:224
APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
Represent the analysis usage information of a pass.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
INITIALIZE_PASS_BEGIN(SCEVAAWrapperPass, "scev-aa", "ScalarEvolution-based Alias Analysis", false, true) INITIALIZE_PASS_END(SCEVAAWrapperPass
SCEVAAResult(ScalarEvolution &SE)
void initializeSCEVAAWrapperPassPass(PassRegistry &)
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
LocationSize Size
The maximum size of the location, in address-units, or UnknownSize if the size is not known...
const SCEV * getMinusSCEV(const SCEV *LHS, const SCEV *RHS, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Return LHS-RHS. Minus is represented in SCEV as A+B*-1.
INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, "Assign register bank of generic virtual registers", false, false) RegBankSelect
SCEVAAResult run(Function &F, FunctionAnalysisManager &AM)
const Value * Ptr
The address of the start of the location.
Representation for a specific memory location.
The two locations precisely alias each other.
Definition: AliasAnalysis.h:90
Legacy wrapper pass to provide the SCEVAAResult object.
Type * getType() const
Return the LLVM type of this SCEV expression.
AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB)
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
Definition: Metadata.h:644
Class for arbitrary precision integers.
Definition: APInt.h:70
This node represents an addition of some number of SCEVs.
void setPreservesAll()
Set by analyses that do not transform their input at all.
Analysis pass that exposes the ScalarEvolution for a function.
bool runOnFunction(Function &F) override
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass...
AAMDNodes AATags
The metadata nodes which describes the aliasing of the location (each member is null if that kind of ...
This class represents an analyzed expression in the program.
bool isZero() const
ConstantRange getUnsignedRange(const SCEV *S)
Determine the unsigned range for a particular SCEV.
LLVM Value Representation.
Definition: Value.h:73
const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
bool hasValue() const
A container for analyses that lazily runs them and caches their results.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition: PassManager.h:71