aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Metadata.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-28 09:07:21 +0000
committerChris Lattner <sabre@nondot.org>2009-12-28 09:07:21 +0000
commitb241b370313588837f9960b3ec3de4dcfb8aee4e (patch)
treed4090254928303de253364f94d16bad4a68c7f4b /lib/VMCore/Metadata.cpp
parentdfdb5dcf564b66209f374c6c68bc8ddfb7ebacfd (diff)
Rewrite the function-local validation logic for MDNodes (most of r91708).
Among other benefits, this doesn't leak the SmallPtrSet, has the verifier code in the verifier pass, actually does the verification at the end, and is considerably simpler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Metadata.cpp')
-rw-r--r--lib/VMCore/Metadata.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/VMCore/Metadata.cpp b/lib/VMCore/Metadata.cpp
index 01b47d6767..c1213a3d3a 100644
--- a/lib/VMCore/Metadata.cpp
+++ b/lib/VMCore/Metadata.cpp
@@ -188,46 +188,6 @@ void MDNode::replaceElement(Value *From, Value *To) {
}
}
-// getLocalFunction - Return false if MDNode's recursive function-localness is
-// invalid (local to more than one function). Return true otherwise. If MDNode
-// has one function to which it is local, set LocalFunction to that function.
-bool MDNode::getLocalFunction(Function *LocalFunction,
- SmallPtrSet<MDNode *, 32> *VisitedMDNodes) {
- if (!isFunctionLocal())
- return true;
-
- if (!VisitedMDNodes)
- VisitedMDNodes = new SmallPtrSet<MDNode *, 32>();
-
- if (!VisitedMDNodes->insert(this))
- // MDNode has already been visited, nothing to do.
- return true;
-
- for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
- Value *V = getElement(i);
- if (!V) continue;
-
- Function *LocalFunctionTemp = NULL;
- if (Instruction *I = dyn_cast<Instruction>(V))
- LocalFunctionTemp = I->getParent()->getParent();
- else if (MDNode *MD = dyn_cast<MDNode>(V))
- if (!MD->getLocalFunction(LocalFunctionTemp, VisitedMDNodes))
- // This MDNode's operand is function-locally invalid or local to a
- // different function.
- return false;
-
- if (LocalFunctionTemp) {
- if (!LocalFunction)
- LocalFunction = LocalFunctionTemp;
- else if (LocalFunction != LocalFunctionTemp)
- // This MDNode contains operands that are local to different functions.
- return false;
- }
- }
-
- return true;
-}
-
//===----------------------------------------------------------------------===//
// NamedMDNode implementation.
//