2010-08-02 23:11:01 +00:00
|
|
|
//===- TypeBasedAliasAnalysis.cpp - Type-Based Alias Analysis -------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the TypeBasedAliasAnalysis pass, which implements
|
|
|
|
// metadata-based TBAA.
|
|
|
|
//
|
|
|
|
// In LLVM IR, memory does not have types, so LLVM's own type system is not
|
|
|
|
// suitable for doing TBAA. Instead, metadata is added to the IR to describe
|
|
|
|
// a type system of a higher level language.
|
|
|
|
//
|
|
|
|
// This pass is language-independent. The type system is encoded in
|
|
|
|
// metadata. This allows this pass to support typical C and C++ TBAA, but
|
|
|
|
// it can also support custom aliasing behavior for other languages.
|
|
|
|
//
|
|
|
|
// This is a work-in-progress. It doesn't work yet, and the metadata
|
|
|
|
// format isn't stable.
|
|
|
|
//
|
|
|
|
// TODO: getModRefBehavior. The AliasAnalysis infrastructure will need to
|
|
|
|
// be extended.
|
|
|
|
// TODO: struct fields
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
|
|
#include "llvm/Analysis/Passes.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Metadata.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// TBAANode - This is a simple wrapper around an MDNode which provides a
|
|
|
|
/// higher-level interface by hiding the details of how alias analysis
|
|
|
|
/// information is encoded in its operands.
|
|
|
|
class TBAANode {
|
|
|
|
const MDNode *Node;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TBAANode() : Node(0) {}
|
2010-09-14 23:28:12 +00:00
|
|
|
explicit TBAANode(const MDNode *N) : Node(N) {}
|
2010-08-02 23:11:01 +00:00
|
|
|
|
|
|
|
/// getNode - Get the MDNode for this TBAANode.
|
|
|
|
const MDNode *getNode() const { return Node; }
|
|
|
|
|
|
|
|
/// getParent - Get this TBAANode's Alias DAG parent.
|
|
|
|
TBAANode getParent() const {
|
|
|
|
if (Node->getNumOperands() < 2)
|
|
|
|
return TBAANode();
|
2010-10-14 22:55:57 +00:00
|
|
|
MDNode *P = dyn_cast_or_null<MDNode>(Node->getOperand(1));
|
2010-08-02 23:11:01 +00:00
|
|
|
if (!P)
|
|
|
|
return TBAANode();
|
|
|
|
// Ok, this node has a valid parent. Return it.
|
|
|
|
return TBAANode(P);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// TypeIsImmutable - Test if this TBAANode represents a type for objects
|
|
|
|
/// which are not modified (by any means) in the context where this
|
|
|
|
/// AliasAnalysis is relevant.
|
|
|
|
bool TypeIsImmutable() const {
|
|
|
|
if (Node->getNumOperands() < 3)
|
|
|
|
return false;
|
|
|
|
ConstantInt *CI = dyn_cast<ConstantInt>(Node->getOperand(2));
|
|
|
|
if (!CI)
|
|
|
|
return false;
|
|
|
|
// TODO: Think about the encoding.
|
|
|
|
return CI->isOne();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// TypeBasedAliasAnalysis - This is a simple alias analysis
|
|
|
|
/// implementation that uses TypeBased to answer queries.
|
|
|
|
class TypeBasedAliasAnalysis : public ImmutablePass,
|
|
|
|
public AliasAnalysis {
|
|
|
|
public:
|
|
|
|
static char ID; // Class identification, replacement for typeinfo
|
2010-08-06 18:33:48 +00:00
|
|
|
TypeBasedAliasAnalysis() : ImmutablePass(ID) {}
|
2010-08-02 23:11:01 +00:00
|
|
|
|
2010-10-11 23:39:34 +00:00
|
|
|
virtual void initializePass() {
|
|
|
|
InitializeAliasAnalysis(this);
|
|
|
|
}
|
|
|
|
|
2010-08-02 23:11:01 +00:00
|
|
|
/// getAdjustedAnalysisPointer - This method is used when a pass implements
|
|
|
|
/// an analysis interface through multiple inheritance. If needed, it
|
|
|
|
/// should override this to adjust the this pointer as needed for the
|
|
|
|
/// specified pass info.
|
2010-08-06 18:33:48 +00:00
|
|
|
virtual void *getAdjustedAnalysisPointer(const void *PI) {
|
|
|
|
if (PI == &AliasAnalysis::ID)
|
2010-08-02 23:11:01 +00:00
|
|
|
return (AliasAnalysis*)this;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
2010-09-14 21:25:10 +00:00
|
|
|
virtual AliasResult alias(const Location &LocA, const Location &LocB);
|
|
|
|
virtual bool pointsToConstantMemory(const Location &Loc);
|
2010-08-02 23:11:01 +00:00
|
|
|
};
|
|
|
|
} // End of anonymous namespace
|
|
|
|
|
|
|
|
// Register this pass...
|
|
|
|
char TypeBasedAliasAnalysis::ID = 0;
|
|
|
|
INITIALIZE_AG_PASS(TypeBasedAliasAnalysis, AliasAnalysis, "tbaa",
|
2010-10-07 22:25:06 +00:00
|
|
|
"Type-Based Alias Analysis", false, true, false)
|
2010-08-02 23:11:01 +00:00
|
|
|
|
|
|
|
ImmutablePass *llvm::createTypeBasedAliasAnalysisPass() {
|
|
|
|
return new TypeBasedAliasAnalysis();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TypeBasedAliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
AliasAnalysis::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
AliasAnalysis::AliasResult
|
2010-09-14 21:25:10 +00:00
|
|
|
TypeBasedAliasAnalysis::alias(const Location &LocA,
|
|
|
|
const Location &LocB) {
|
2010-08-02 23:11:01 +00:00
|
|
|
// Get the attached MDNodes. If either value lacks a tbaa MDNode, we must
|
|
|
|
// be conservative.
|
2010-09-14 23:28:12 +00:00
|
|
|
const MDNode *AM = LocA.TBAATag;
|
2010-10-11 23:39:34 +00:00
|
|
|
if (!AM) return AliasAnalysis::alias(LocA, LocB);
|
2010-09-14 23:28:12 +00:00
|
|
|
const MDNode *BM = LocB.TBAATag;
|
2010-10-11 23:39:34 +00:00
|
|
|
if (!BM) return AliasAnalysis::alias(LocA, LocB);
|
2010-08-02 23:11:01 +00:00
|
|
|
|
|
|
|
// Keep track of the root node for A and B.
|
|
|
|
TBAANode RootA, RootB;
|
|
|
|
|
|
|
|
// Climb the DAG from A to see if we reach B.
|
|
|
|
for (TBAANode T(AM); ; ) {
|
|
|
|
if (T.getNode() == BM)
|
|
|
|
// B is an ancestor of A.
|
2010-10-11 23:39:34 +00:00
|
|
|
return AliasAnalysis::alias(LocA, LocB);
|
2010-08-02 23:11:01 +00:00
|
|
|
|
|
|
|
RootA = T;
|
|
|
|
T = T.getParent();
|
|
|
|
if (!T.getNode())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Climb the DAG from B to see if we reach A.
|
|
|
|
for (TBAANode T(BM); ; ) {
|
|
|
|
if (T.getNode() == AM)
|
|
|
|
// A is an ancestor of B.
|
2010-10-11 23:39:34 +00:00
|
|
|
return AliasAnalysis::alias(LocA, LocB);
|
2010-08-02 23:11:01 +00:00
|
|
|
|
|
|
|
RootB = T;
|
|
|
|
T = T.getParent();
|
|
|
|
if (!T.getNode())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Neither node is an ancestor of the other.
|
|
|
|
|
|
|
|
// If they have the same root, then we've proved there's no alias.
|
|
|
|
if (RootA.getNode() == RootB.getNode())
|
|
|
|
return NoAlias;
|
|
|
|
|
|
|
|
// If they have different roots, they're part of different potentially
|
|
|
|
// unrelated type systems, so we must be conservative.
|
2010-10-11 23:39:34 +00:00
|
|
|
return AliasAnalysis::alias(LocA, LocB);
|
2010-08-02 23:11:01 +00:00
|
|
|
}
|
|
|
|
|
2010-09-14 21:25:10 +00:00
|
|
|
bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc) {
|
2010-09-14 23:28:12 +00:00
|
|
|
const MDNode *M = Loc.TBAATag;
|
2010-08-02 23:11:01 +00:00
|
|
|
if (!M) return false;
|
|
|
|
|
|
|
|
// If this is an "immutable" type, we can assume the pointer is pointing
|
|
|
|
// to constant memory.
|
|
|
|
return TBAANode(M).TypeIsImmutable();
|
|
|
|
}
|