From 7f0b4052fa9145ba7863f998a3f1b9d36b69e842 Mon Sep 17 00:00:00 2001 From: Jeffrey Yasskin Date: Sat, 27 Mar 2010 09:09:17 +0000 Subject: Remove another memory leak from ABCD by using Edges by value instead of pointer. There was also a SmallPtrSet whose settiness wasn't being used, so I changed it to a SmallVector. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99713 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/ABCD.cpp | 50 ++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 29 deletions(-) (limited to 'lib/Transforms/Scalar/ABCD.cpp') diff --git a/lib/Transforms/Scalar/ABCD.cpp b/lib/Transforms/Scalar/ABCD.cpp index f3b904bc97..6135992a2f 100644 --- a/lib/Transforms/Scalar/ABCD.cpp +++ b/lib/Transforms/Scalar/ABCD.cpp @@ -277,7 +277,7 @@ class ABCD : public FunctionPass { bool hasEdge(Value *V, bool upper) const; /// Returns all edges pointed by vertex V - SmallPtrSet getEdges(Value *V) const { + SmallVector getEdges(Value *V) const { return graph.lookup(V); } @@ -295,13 +295,7 @@ class ABCD : public FunctionPass { } private: - DenseMap > graph; - - /// Adds a Node to the graph. - DenseMap >::iterator addNode(Value *V) { - SmallPtrSet p; - return graph.insert(std::make_pair(V, p)).first; - } + DenseMap > graph; /// Prints the header of the dot file void printHeader(raw_ostream &OS, Function &F) const; @@ -318,7 +312,7 @@ class ABCD : public FunctionPass { void printVertex(raw_ostream &OS, Value *source) const; /// Prints the edge to the dot file - void printEdge(raw_ostream &OS, Value *source, Edge *edge) const; + void printEdge(raw_ostream &OS, Value *source, const Edge &edge) const; void printName(raw_ostream &OS, Value *info) const; }; @@ -924,18 +918,18 @@ void ABCD::updateMemDistance(Value *a, Value *b, const Bound &bound, unsigned level, meet_function meet) { ABCD::ProveResult res = (meet == max) ? False : True; - SmallPtrSet Edges = inequality_graph.getEdges(b); - SmallPtrSet::iterator begin = Edges.begin(), end = Edges.end(); + SmallVector Edges = inequality_graph.getEdges(b); + SmallVector::iterator begin = Edges.begin(), end = Edges.end(); for (; begin != end ; ++begin) { if (((res >= Reduced) && (meet == max)) || ((res == False) && (meet == min))) { break; } - Edge *in = *begin; - if (in->isUpperBound() == bound.isUpperBound()) { - Value *succ = in->getVertex(); - res = meet(res, prove(a, succ, Bound(bound, in->getValue()), + const Edge &in = *begin; + if (in.isUpperBound() == bound.isUpperBound()) { + Value *succ = in.getVertex(); + res = meet(res, prove(a, succ, Bound(bound, in.getValue()), level+1)); } } @@ -1023,19 +1017,17 @@ void ABCD::InequalityGraph::addEdge(Value *V_to, Value *V_from, assert(cast(V_from->getType())->getBitWidth() == value.getBitWidth()); - DenseMap >::iterator from; - from = addNode(V_from); - from->second.insert(new Edge(V_to, value, upper)); + graph[V_from].push_back(Edge(V_to, value, upper)); } /// Test if there is any edge from V in the upper direction bool ABCD::InequalityGraph::hasEdge(Value *V, bool upper) const { - SmallPtrSet it = graph.lookup(V); + SmallVector it = graph.lookup(V); - SmallPtrSet::iterator begin = it.begin(); - SmallPtrSet::iterator end = it.end(); + SmallVector::iterator begin = it.begin(); + SmallVector::iterator end = it.end(); for (; begin != end; ++begin) { - if ((*begin)->isUpperBound() == upper) { + if (begin->isUpperBound() == upper) { return true; } } @@ -1052,18 +1044,18 @@ void ABCD::InequalityGraph::printHeader(raw_ostream &OS, Function &F) const { /// Prints the body of the dot file void ABCD::InequalityGraph::printBody(raw_ostream &OS) const { - DenseMap >::const_iterator begin = + DenseMap >::const_iterator begin = graph.begin(), end = graph.end(); for (; begin != end ; ++begin) { - SmallPtrSet::iterator begin_par = + SmallVector::const_iterator begin_par = begin->second.begin(), end_par = begin->second.end(); Value *source = begin->first; printVertex(OS, source); for (; begin_par != end_par ; ++begin_par) { - Edge *edge = *begin_par; + const Edge &edge = *begin_par; printEdge(OS, source, edge); } } @@ -1082,10 +1074,10 @@ void ABCD::InequalityGraph::printVertex(raw_ostream &OS, Value *source) const { /// Prints the edge to the dot file void ABCD::InequalityGraph::printEdge(raw_ostream &OS, Value *source, - Edge *edge) const { - Value *dest = edge->getVertex(); - APInt value = edge->getValue(); - bool upper = edge->isUpperBound(); + const Edge &edge) const { + Value *dest = edge.getVertex(); + APInt value = edge.getValue(); + bool upper = edge.isUpperBound(); OS << "\""; printName(OS, source); -- cgit v1.2.3