blob: 139fa38b8a94d7f5562dba5e8438fcb1e530425f [file] [log] [blame]
Dan Gohmanda85ed82010-10-19 23:09:08 +00001//===- NoAliasAnalysis.cpp - Minimal Alias Analysis Impl ------------------===//
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 default implementation of the Alias Analysis interface
11// that simply returns "I don't know" for all queries.
12//
13//===----------------------------------------------------------------------===//
14
Dan Gohmanda85ed82010-10-19 23:09:08 +000015#include "llvm/Analysis/Passes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/Analysis/AliasAnalysis.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/DataLayout.h"
Hal Finkel354e23b2014-07-17 01:28:25 +000018#include "llvm/IR/LLVMContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Pass.h"
Dan Gohmanda85ed82010-10-19 23:09:08 +000020using namespace llvm;
21
22namespace {
23 /// NoAA - This class implements the -no-aa pass, which always returns "I
24 /// don't know" for alias queries. NoAA is unlike other alias analysis
25 /// implementations, in that it does not chain to a previous analysis. As
26 /// such it doesn't follow many of the rules that other alias analyses must.
27 ///
28 struct NoAA : public ImmutablePass, public AliasAnalysis {
29 static char ID; // Class identification, replacement for typeinfo
30 NoAA() : ImmutablePass(ID) {
31 initializeNoAAPass(*PassRegistry::getPassRegistry());
32 }
33
Craig Toppere9ba7592014-03-05 07:30:04 +000034 void getAnalysisUsage(AnalysisUsage &AU) const override {}
Dan Gohmanda85ed82010-10-19 23:09:08 +000035
Craig Toppere9ba7592014-03-05 07:30:04 +000036 void initializePass() override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000037 // Note: NoAA does not call InitializeAliasAnalysis because it's
38 // special and does not support chaining.
Rafael Espindola93512512014-02-25 17:30:31 +000039 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +000040 DL = DLP ? &DLP->getDataLayout() : nullptr;
Dan Gohmanda85ed82010-10-19 23:09:08 +000041 }
42
Craig Toppere9ba7592014-03-05 07:30:04 +000043 AliasResult alias(const Location &LocA, const Location &LocB) override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000044 return MayAlias;
45 }
46
Craig Toppere9ba7592014-03-05 07:30:04 +000047 ModRefBehavior getModRefBehavior(ImmutableCallSite CS) override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000048 return UnknownModRefBehavior;
49 }
Craig Toppere9ba7592014-03-05 07:30:04 +000050 ModRefBehavior getModRefBehavior(const Function *F) override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000051 return UnknownModRefBehavior;
52 }
53
Craig Toppere9ba7592014-03-05 07:30:04 +000054 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override {
Dan Gohman9130bad2010-11-08 16:45:26 +000055 return false;
56 }
Hal Finkel354e23b2014-07-17 01:28:25 +000057 Location getArgLocation(ImmutableCallSite CS, unsigned ArgIdx,
58 ModRefResult &Mask) override {
59 Mask = ModRef;
60 return Location(CS.getArgument(ArgIdx), UnknownSize,
61 CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa));
62 }
63
Craig Toppere9ba7592014-03-05 07:30:04 +000064 ModRefResult getModRefInfo(ImmutableCallSite CS,
65 const Location &Loc) override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000066 return ModRef;
67 }
Craig Toppere9ba7592014-03-05 07:30:04 +000068 ModRefResult getModRefInfo(ImmutableCallSite CS1,
69 ImmutableCallSite CS2) override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000070 return ModRef;
71 }
72
Craig Toppere9ba7592014-03-05 07:30:04 +000073 void deleteValue(Value *V) override {}
74 void copyValue(Value *From, Value *To) override {}
75 void addEscapingUse(Use &U) override {}
76
Dan Gohmanda85ed82010-10-19 23:09:08 +000077 /// getAdjustedAnalysisPointer - This method is used when a pass implements
78 /// an analysis interface through multiple inheritance. If needed, it
79 /// should override this to adjust the this pointer as needed for the
80 /// specified pass info.
Craig Toppere9ba7592014-03-05 07:30:04 +000081 void *getAdjustedAnalysisPointer(const void *ID) override {
Dan Gohmanda85ed82010-10-19 23:09:08 +000082 if (ID == &AliasAnalysis::ID)
83 return (AliasAnalysis*)this;
84 return this;
85 }
86 };
87} // End of anonymous namespace
88
89// Register this pass...
90char NoAA::ID = 0;
91INITIALIZE_AG_PASS(NoAA, AliasAnalysis, "no-aa",
92 "No Alias Analysis (always returns 'may' alias)",
93 true, true, true)
94
95ImmutablePass *llvm::createNoAAPass() { return new NoAA(); }