1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

avoid temporary CallbackVH's.

llvm-svn: 92218
This commit is contained in:
Chris Lattner 2009-12-28 09:10:16 +00:00
parent 14d3bc91c4
commit 2cfabb2151

View File

@ -64,6 +64,11 @@ public:
MDNodeElement(Value *V, MDNode *P) : CallbackVH(V), Parent(P) {} MDNodeElement(Value *V, MDNode *P) : CallbackVH(V), Parent(P) {}
~MDNodeElement() {} ~MDNodeElement() {}
void set(Value *V, MDNode *P) {
setValPtr(V);
Parent = P;
}
virtual void deleted(); virtual void deleted();
virtual void allUsesReplacedWith(Value *NV); virtual void allUsesReplacedWith(Value *NV);
}; };
@ -91,7 +96,7 @@ MDNode::MDNode(LLVMContext &C, Value *const *Vals, unsigned NumVals,
Operands = new MDNodeElement[NumOperands]; Operands = new MDNodeElement[NumOperands];
MDNodeElement *Ptr = Operands; MDNodeElement *Ptr = Operands;
for (unsigned i = 0; i != NumVals; ++i) for (unsigned i = 0; i != NumVals; ++i)
Ptr[i] = MDNodeElement(Vals[i], this); Ptr[i].set(Vals[i], this);
if (isFunctionLocal) if (isFunctionLocal)
SubclassData |= FunctionLocalBit; SubclassData |= FunctionLocalBit;
@ -161,9 +166,8 @@ void MDNode::replaceElement(Value *From, Value *To) {
// Replace From element(s) in place. // Replace From element(s) in place.
for (SmallVector<unsigned, 4>::iterator I = Indexes.begin(), E = Indexes.end(); for (SmallVector<unsigned, 4>::iterator I = Indexes.begin(), E = Indexes.end();
I != E; ++I) { I != E; ++I)
Operands[*I] = MDNodeElement(To, this); Operands[*I].set(To, this);
}
// Insert updated "this" into the context's folding node set. // Insert updated "this" into the context's folding node set.
// If a node with same element list already exist then before inserting // If a node with same element list already exist then before inserting