From 2898d3cb86b170c5113b3520911de90091482dfa Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 9 Sep 2009 17:30:04 +0000 Subject: [PATCH] Enable MDNode uniquing. llvm-svn: 81355 --- lib/VMCore/Metadata.cpp | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/lib/VMCore/Metadata.cpp b/lib/VMCore/Metadata.cpp index 76f25285b80..8e025b6d7a2 100644 --- a/lib/VMCore/Metadata.cpp +++ b/lib/VMCore/Metadata.cpp @@ -90,16 +90,11 @@ MDNode *MDNode::get(LLVMContext &Context, Value*const* Vals, unsigned NumVals) { for (unsigned i = 0; i != NumVals; ++i) ID.AddPointer(Vals[i]); - // FIXME: MDNode uniquing disabled temporarily. -#ifndef ENABLE_MDNODE_UNIQUING - return new MDNode(Context, Vals, NumVals); -#endif - pImpl->ConstantsLock.reader_acquire(); void *InsertPoint; MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint); pImpl->ConstantsLock.reader_release(); - + if (!N) { sys::SmartScopedWriter Writer(pImpl->ConstantsLock); N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint); @@ -120,27 +115,12 @@ void MDNode::dropAllReferences() { } MDNode::~MDNode() { - // FIXME: MDNode uniquing disabled temporarily. -#ifdef ENABLE_MDNODE_UNIQUING getType()->getContext().pImpl->MDNodeSet.RemoveNode(this); -#endif dropAllReferences(); } // Replace value from this node's element list. void MDNode::replaceElement(Value *From, Value *To) { - // FIXME: MDNode uniquing disabled temporarily. -#ifndef ENABLE_MDNODE_UNIQUING - if (From == To || !getType()) - return; - - for (SmallVector::iterator I = Node.begin(), - E = Node.end(); I != E; ++I) - if (*I && *I == From) - *I = ElementVH(To, this); - return; -#endif - if (From == To || !getType()) return; LLVMContext &Context = getType()->getContext();