blob: c881ec283a91058f7e5d7885807e827a28e3a960 [file] [log] [blame]
Chris Lattner53ad0ed2002-08-22 18:25:32 +00001//===- AliasAnalysis.cpp - Generic Alias Analysis Interface Implementation -==//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner53ad0ed2002-08-22 18:25:32 +00009//
10// This file implements the generic AliasAnalysis interface which is used as the
11// common interface used by all clients and implementations of alias analysis.
12//
13// This file also implements the default version of the AliasAnalysis interface
14// that is to be used when no other implementation is specified. This does some
15// simple tests that detect obvious cases: two different global pointers cannot
16// alias, a global cannot alias a malloc, two different mallocs cannot alias,
17// etc.
18//
19// This alias analysis implementation really isn't very good for anything, but
20// it is very fast, and makes a nice clean default implementation. Because it
21// handles lots of little corner cases, other, more complex, alias analysis
22// implementations may choose to rely on this pass to resolve these simple and
23// easy cases.
24//
25//===----------------------------------------------------------------------===//
26
Chris Lattnerd501c132003-02-26 19:41:54 +000027#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner53ad0ed2002-08-22 18:25:32 +000028#include "llvm/BasicBlock.h"
Chris Lattner53ad0ed2002-08-22 18:25:32 +000029#include "llvm/iMemory.h"
Chris Lattner14ac8772003-02-26 19:26:51 +000030#include "llvm/Target/TargetData.h"
Chris Lattner53ad0ed2002-08-22 18:25:32 +000031
Brian Gaeked0fde302003-11-11 22:41:34 +000032namespace llvm {
33
Chris Lattner53ad0ed2002-08-22 18:25:32 +000034// Register the AliasAnalysis interface, providing a nice name to refer to.
Chris Lattnerdc1ad192003-02-03 21:16:17 +000035namespace {
36 RegisterAnalysisGroup<AliasAnalysis> Z("Alias Analysis");
Chris Lattnerdc1ad192003-02-03 21:16:17 +000037}
Chris Lattner53ad0ed2002-08-22 18:25:32 +000038
Chris Lattner14ac8772003-02-26 19:26:51 +000039AliasAnalysis::ModRefResult
40AliasAnalysis::getModRefInfo(LoadInst *L, Value *P, unsigned Size) {
41 return alias(L->getOperand(0), TD->getTypeSize(L->getType()),
42 P, Size) ? Ref : NoModRef;
Chris Lattner53ad0ed2002-08-22 18:25:32 +000043}
44
Chris Lattner14ac8772003-02-26 19:26:51 +000045AliasAnalysis::ModRefResult
46AliasAnalysis::getModRefInfo(StoreInst *S, Value *P, unsigned Size) {
47 return alias(S->getOperand(1), TD->getTypeSize(S->getOperand(0)->getType()),
48 P, Size) ? Mod : NoModRef;
49}
50
51
Chris Lattner53ad0ed2002-08-22 18:25:32 +000052// AliasAnalysis destructor: DO NOT move this to the header file for
53// AliasAnalysis or else clients of the AliasAnalysis class may not depend on
54// the AliasAnalysis.o file in the current .a file, causing alias analysis
55// support to not be included in the tool correctly!
56//
57AliasAnalysis::~AliasAnalysis() {}
58
Chris Lattner14ac8772003-02-26 19:26:51 +000059/// setTargetData - Subclasses must call this method to initialize the
60/// AliasAnalysis interface before any other methods are called.
61///
62void AliasAnalysis::InitializeAliasAnalysis(Pass *P) {
63 TD = &P->getAnalysis<TargetData>();
64}
65
66// getAnalysisUsage - All alias analysis implementations should invoke this
67// directly (using AliasAnalysis::getAnalysisUsage(AU)) to make sure that
68// TargetData is required by the pass.
69void AliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
70 AU.addRequired<TargetData>(); // All AA's need TargetData.
71}
72
Chris Lattnerf9355f62002-08-22 22:46:39 +000073/// canBasicBlockModify - Return true if it is possible for execution of the
74/// specified basic block to modify the value pointed to by Ptr.
75///
Chris Lattner14ac8772003-02-26 19:26:51 +000076bool AliasAnalysis::canBasicBlockModify(const BasicBlock &BB,
77 const Value *Ptr, unsigned Size) {
78 return canInstructionRangeModify(BB.front(), BB.back(), Ptr, Size);
Chris Lattner53ad0ed2002-08-22 18:25:32 +000079}
80
Chris Lattnerf9355f62002-08-22 22:46:39 +000081/// canInstructionRangeModify - Return true if it is possible for the execution
82/// of the specified instructions to modify the value pointed to by Ptr. The
83/// instructions to consider are all of the instructions in the range of [I1,I2]
84/// INCLUSIVE. I1 and I2 must be in the same basic block.
85///
Chris Lattner53ad0ed2002-08-22 18:25:32 +000086bool AliasAnalysis::canInstructionRangeModify(const Instruction &I1,
87 const Instruction &I2,
Chris Lattner14ac8772003-02-26 19:26:51 +000088 const Value *Ptr, unsigned Size) {
Chris Lattner53ad0ed2002-08-22 18:25:32 +000089 assert(I1.getParent() == I2.getParent() &&
90 "Instructions not in same basic block!");
Chris Lattner53ad0ed2002-08-22 18:25:32 +000091 BasicBlock::iterator I = const_cast<Instruction*>(&I1);
92 BasicBlock::iterator E = const_cast<Instruction*>(&I2);
93 ++E; // Convert from inclusive to exclusive range.
94
Chris Lattner14ac8772003-02-26 19:26:51 +000095 for (; I != E; ++I) // Check every instruction in range
96 if (getModRefInfo(I, const_cast<Value*>(Ptr), Size) & Mod)
Chris Lattner53ad0ed2002-08-22 18:25:32 +000097 return true;
Chris Lattner53ad0ed2002-08-22 18:25:32 +000098 return false;
99}
100
Chris Lattnerd501c132003-02-26 19:41:54 +0000101// Because of the way .a files work, we must force the BasicAA implementation to
102// be pulled in if the AliasAnalysis classes are pulled in. Otherwise we run
103// the risk of AliasAnalysis being used, but the default implementation not
104// being linked into the tool that uses it.
Chris Lattner53ad0ed2002-08-22 18:25:32 +0000105//
Chris Lattnerd501c132003-02-26 19:41:54 +0000106extern void BasicAAStub();
107static IncludeFile INCLUDE_BASICAA_CPP((void*)&BasicAAStub);
Chris Lattner14ac8772003-02-26 19:26:51 +0000108
Chris Lattner8dcd17c2003-02-26 19:57:10 +0000109
110namespace {
111 struct NoAA : public ImmutablePass, public AliasAnalysis {
112 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
113 AliasAnalysis::getAnalysisUsage(AU);
114 }
115
116 virtual void initializePass() {
117 InitializeAliasAnalysis(this);
118 }
119 };
120
121 // Register this pass...
122 RegisterOpt<NoAA>
123 X("no-aa", "No Alias Analysis (always returns 'may' alias)");
124
125 // Declare that we implement the AliasAnalysis interface
126 RegisterAnalysisGroup<AliasAnalysis, NoAA> Y;
127} // End of anonymous namespace
Brian Gaeked0fde302003-11-11 22:41:34 +0000128
129} // End llvm namespace