diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-11-07 20:39:05 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-11-07 20:39:05 +0000 |
commit | 30b254e48be5813a904ee0db136964e2593196ea (patch) | |
tree | 572ca1c739b322e3eace07e57d45973f5828cb91 /llvm/lib/Analysis | |
parent | 1ee904e503faf7df5da414e92c7b24d9b770168c (diff) | |
download | bcm5719-llvm-30b254e48be5813a904ee0db136964e2593196ea.tar.gz bcm5719-llvm-30b254e48be5813a904ee0db136964e2593196ea.zip |
Optionally allow comparison operations from affect DSGraphs
llvm-svn: 31511
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 2542fd01962..856ceb3c9a5 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/lib/Analysis/DataStructure/Local.cpp @@ -40,6 +40,10 @@ static cl::opt<bool> TrackIntegersAsPointers("dsa-track-integers", cl::Hidden, cl::desc("If this is set, track integers as potential pointers")); +static cl::opt<bool> +IgnoreSetCC("dsa-ignore-setcc", cl::Hidden, + cl::desc("If this is set, do nothing at pointer comparisons")); + static cl::list<std::string> AllocList("dsa-alloc-list", cl::value_desc("list"), @@ -336,7 +340,8 @@ void GraphBuilder::visitSelectInst(SelectInst &SI) { void GraphBuilder::visitSetCondInst(SetCondInst &SCI) { if (!isPointerType(SCI.getOperand(0)->getType()) || isa<ConstantPointerNull>(SCI.getOperand(1))) return; // Only pointers - ScalarMap[SCI.getOperand(0)].mergeWith(getValueDest(*SCI.getOperand(1))); + if(!IgnoreSetCC) + ScalarMap[SCI.getOperand(0)].mergeWith(getValueDest(*SCI.getOperand(1))); } |