blob: 93b2a8b06fbe9a8a8d8df7ff3a02ffb28e9f85c5 [file] [log] [blame]
Dan Gohman2385e0e2009-08-26 14:53:06 +00001//===- 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//
Dan Gohman7cbf5a82010-03-01 17:56:04 +000013// This differs from traditional loop dependence analysis in that it tests
14// for dependencies within a single iteration of a loop, rather than
Dan Gohman4f46e142010-06-18 00:53:08 +000015// dependencies between different iterations.
Dan Gohman7cbf5a82010-03-01 17:56:04 +000016//
Dan Gohman2385e0e2009-08-26 14:53:06 +000017// ScalarEvolution has a more complete understanding of pointer arithmetic
18// than BasicAliasAnalysis' collection of ad-hoc analyses.
19//
20//===----------------------------------------------------------------------===//
21
22#include "llvm/Analysis/AliasAnalysis.h"
23#include "llvm/Analysis/ScalarEvolutionExpressions.h"
24#include "llvm/Analysis/Passes.h"
25#include "llvm/Pass.h"
Dan Gohman2385e0e2009-08-26 14:53:06 +000026using namespace llvm;
27
28namespace {
29 /// ScalarEvolutionAliasAnalysis - This is a simple alias analysis
30 /// implementation that uses ScalarEvolution to answer queries.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000031 class ScalarEvolutionAliasAnalysis : public FunctionPass,
32 public AliasAnalysis {
Dan Gohman2385e0e2009-08-26 14:53:06 +000033 ScalarEvolution *SE;
34
35 public:
36 static char ID; // Class identification, replacement for typeinfo
Owen Anderson9ccaf532010-08-05 23:42:04 +000037 ScalarEvolutionAliasAnalysis() : FunctionPass(ID), SE(0) {}
Dan Gohman2385e0e2009-08-26 14:53:06 +000038
Chris Lattner1bc76d42010-01-20 20:09:02 +000039 /// getAdjustedAnalysisPointer - This method is used when a pass implements
40 /// an analysis interface through multiple inheritance. If needed, it
41 /// should override this to adjust the this pointer as needed for the
42 /// specified pass info.
Owen Anderson9ccaf532010-08-05 23:42:04 +000043 virtual void *getAdjustedAnalysisPointer(AnalysisID PI) {
44 if (PI == &AliasAnalysis::ID)
Chris Lattner1bc76d42010-01-20 20:09:02 +000045 return (AliasAnalysis*)this;
46 return this;
47 }
Dan Gohman7cbf5a82010-03-01 17:56:04 +000048
Dan Gohman2385e0e2009-08-26 14:53:06 +000049 private:
50 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
51 virtual bool runOnFunction(Function &F);
52 virtual AliasResult alias(const Value *V1, unsigned V1Size,
53 const Value *V2, unsigned V2Size);
54
Dan Gohman576fd762009-10-31 14:32:25 +000055 Value *GetBaseValue(const SCEV *S);
Dan Gohman2385e0e2009-08-26 14:53:06 +000056 };
57} // End of anonymous namespace
58
59// Register this pass...
60char ScalarEvolutionAliasAnalysis::ID = 0;
Owen Andersond8cc7be2010-07-21 23:07:00 +000061INITIALIZE_AG_PASS(ScalarEvolutionAliasAnalysis, AliasAnalysis, "scev-aa",
62 "ScalarEvolution-based Alias Analysis", false, true, false);
Dan Gohman2385e0e2009-08-26 14:53:06 +000063
64FunctionPass *llvm::createScalarEvolutionAliasAnalysisPass() {
65 return new ScalarEvolutionAliasAnalysis();
66}
67
68void
69ScalarEvolutionAliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
70 AU.addRequiredTransitive<ScalarEvolution>();
71 AU.setPreservesAll();
72 AliasAnalysis::getAnalysisUsage(AU);
73}
74
75bool
76ScalarEvolutionAliasAnalysis::runOnFunction(Function &F) {
77 InitializeAliasAnalysis(this);
78 SE = &getAnalysis<ScalarEvolution>();
79 return false;
80}
81
Dan Gohman576fd762009-10-31 14:32:25 +000082/// GetBaseValue - Given an expression, try to find a
83/// base value. Return null is none was found.
Dan Gohman2385e0e2009-08-26 14:53:06 +000084Value *
Dan Gohman576fd762009-10-31 14:32:25 +000085ScalarEvolutionAliasAnalysis::GetBaseValue(const SCEV *S) {
Dan Gohman2385e0e2009-08-26 14:53:06 +000086 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmaned77e522009-08-29 23:36:57 +000087 // In an addrec, assume that the base will be in the start, rather
88 // than the step.
Dan Gohman576fd762009-10-31 14:32:25 +000089 return GetBaseValue(AR->getStart());
Dan Gohman2385e0e2009-08-26 14:53:06 +000090 } else if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
91 // If there's a pointer operand, it'll be sorted at the end of the list.
92 const SCEV *Last = A->getOperand(A->getNumOperands()-1);
Duncan Sands1df98592010-02-16 11:11:14 +000093 if (Last->getType()->isPointerTy())
Dan Gohman576fd762009-10-31 14:32:25 +000094 return GetBaseValue(Last);
Dan Gohman2385e0e2009-08-26 14:53:06 +000095 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
Dan Gohman576fd762009-10-31 14:32:25 +000096 // This is a leaf node.
97 return U->getValue();
Dan Gohman2385e0e2009-08-26 14:53:06 +000098 }
99 // No Identified object found.
100 return 0;
101}
102
103AliasAnalysis::AliasResult
104ScalarEvolutionAliasAnalysis::alias(const Value *A, unsigned ASize,
105 const Value *B, unsigned BSize) {
Dan Gohman49bda912010-06-30 06:12:16 +0000106 // If either of the memory references is empty, it doesn't matter what the
107 // pointer values are. This allows the code below to ignore this special
108 // case.
109 if (ASize == 0 || BSize == 0)
110 return NoAlias;
111
Dan Gohman2385e0e2009-08-26 14:53:06 +0000112 // This is ScalarEvolutionAliasAnalysis. Get the SCEVs!
113 const SCEV *AS = SE->getSCEV(const_cast<Value *>(A));
114 const SCEV *BS = SE->getSCEV(const_cast<Value *>(B));
115
116 // If they evaluate to the same expression, it's a MustAlias.
117 if (AS == BS) return MustAlias;
118
119 // If something is known about the difference between the two addresses,
120 // see if it's enough to prove a NoAlias.
121 if (SE->getEffectiveSCEVType(AS->getType()) ==
122 SE->getEffectiveSCEVType(BS->getType())) {
123 unsigned BitWidth = SE->getTypeSizeInBits(AS->getType());
Dan Gohman49bda912010-06-30 06:12:16 +0000124 APInt ASizeInt(BitWidth, ASize);
125 APInt BSizeInt(BitWidth, BSize);
126
127 // Compute the difference between the two pointers.
Dan Gohman2385e0e2009-08-26 14:53:06 +0000128 const SCEV *BA = SE->getMinusSCEV(BS, AS);
Dan Gohman49bda912010-06-30 06:12:16 +0000129
130 // Test whether the difference is known to be great enough that memory of
131 // the given sizes don't overlap. This assumes that ASizeInt and BSizeInt
132 // are non-zero, which is special-cased above.
133 if (ASizeInt.ule(SE->getUnsignedRange(BA).getUnsignedMin()) &&
134 (-BSizeInt).uge(SE->getUnsignedRange(BA).getUnsignedMax()))
135 return NoAlias;
136
137 // Folding the subtraction while preserving range information can be tricky
138 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS
139 // and try again to see if things fold better that way.
140
141 // Compute the difference between the two pointers.
142 const SCEV *AB = SE->getMinusSCEV(AS, BS);
143
144 // Test whether the difference is known to be great enough that memory of
145 // the given sizes don't overlap. This assumes that ASizeInt and BSizeInt
146 // are non-zero, which is special-cased above.
147 if (BSizeInt.ule(SE->getUnsignedRange(AB).getUnsignedMin()) &&
148 (-ASizeInt).uge(SE->getUnsignedRange(AB).getUnsignedMax()))
149 return NoAlias;
Dan Gohman2385e0e2009-08-26 14:53:06 +0000150 }
151
152 // If ScalarEvolution can find an underlying object, form a new query.
153 // The correctness of this depends on ScalarEvolution not recognizing
154 // inttoptr and ptrtoint operators.
Dan Gohman576fd762009-10-31 14:32:25 +0000155 Value *AO = GetBaseValue(AS);
156 Value *BO = GetBaseValue(BS);
Dan Gohman2385e0e2009-08-26 14:53:06 +0000157 if ((AO && AO != A) || (BO && BO != B))
Dan Gohmanef1cfac2010-08-03 01:03:11 +0000158 if (alias(AO ? AO : A, AO ? UnknownSize : ASize,
159 BO ? BO : B, BO ? UnknownSize : BSize) == NoAlias)
Dan Gohman2385e0e2009-08-26 14:53:06 +0000160 return NoAlias;
161
162 // Forward the query to the next analysis.
163 return AliasAnalysis::alias(A, ASize, B, BSize);
164}