summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/DataStructure/DataStructure.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-22 00:53:54 +0000
committerChris Lattner <sabre@nondot.org>2004-02-22 00:53:54 +0000
commita376aae246cf527b381d1eb70c5e64df1e47644b (patch)
tree40563be9180e943a99e1e2d1121eb7eed20e2554 /llvm/lib/Analysis/DataStructure/DataStructure.cpp
parentf3e2a6360ce02f6f626227eaebddd7284b757bef (diff)
downloadbcm5719-llvm-a376aae246cf527b381d1eb70c5e64df1e47644b.tar.gz
bcm5719-llvm-a376aae246cf527b381d1eb70c5e64df1e47644b.zip
Use isNull instead of getNode() to test for existence of a node, this is cheaper.
FIX MAJOR BUG, whereby we didn't merge null edges correctly. Correcting this fixes poolallocation on 175.vpr, and possibly others. llvm-svn: 11695
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/DataStructure.cpp')
-rw-r--r--llvm/lib/Analysis/DataStructure/DataStructure.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/llvm/lib/Analysis/DataStructure/DataStructure.cpp b/llvm/lib/Analysis/DataStructure/DataStructure.cpp
index 528a62235ff..5ea414e208c 100644
--- a/llvm/lib/Analysis/DataStructure/DataStructure.cpp
+++ b/llvm/lib/Analysis/DataStructure/DataStructure.cpp
@@ -845,7 +845,7 @@ void ReachabilityCloner::merge(const DSNodeHandle &NH,
// been cloned.
const DSNode *SN = SrcNH.getNode();
DSNodeHandle &SCNH = NodeMap[SN]; // SourceClonedNodeHandle
- if (SCNH.getNode()) { // Node already cloned?
+ if (!SCNH.isNull()) { // Node already cloned?
NH.mergeWith(DSNodeHandle(SCNH.getNode(),
SCNH.getOffset()+SrcNH.getOffset()));
@@ -971,10 +971,15 @@ void ReachabilityCloner::merge(const DSNodeHandle &NH,
if (CN->getSize() != 1)
MergeOffset = ((i << DS::PointerShift)+SCNH.getOffset()) %CN->getSize();
- // Perform the recursive merging. Make sure to create a temporary NH,
- // because the Link can disappear in the process of recursive merging.
- DSNodeHandle Tmp = CN->getLink(MergeOffset);
- merge(Tmp, SrcEdge);
+ DSNodeHandle &Link = CN->getLink(MergeOffset);
+ if (!Link.isNull()) {
+ // Perform the recursive merging. Make sure to create a temporary NH,
+ // because the Link can disappear in the process of recursive merging.
+ DSNodeHandle Tmp = Link;
+ merge(Tmp, SrcEdge);
+ } else {
+ merge(Link, SrcEdge);
+ }
}
}
}
@@ -1214,7 +1219,7 @@ void DSGraph::mergeInGraph(const DSCallSite &CS, Function &F,
}
// Map the return node pointer over.
- if (CS.getRetVal().getNode())
+ if (!CS.getRetVal().isNull())
RC.merge(CS.getRetVal(), Graph.getReturnNodeFor(F));
// If requested, copy the calls or aux-calls lists.
OpenPOWER on IntegriCloud