diff options
author | Owen Anderson <resistor@mac.com> | 2010-12-18 00:07:15 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-12-18 00:07:15 +0000 |
commit | a479b2325635544fb2c955c4d7e8b6ea9582120f (patch) | |
tree | 04d5a0f32335c46cb014aeda4e86d7eb0425f741 /lib/VMCore | |
parent | 89cab93fe999f6d81b4b99a71ac797b7ecfec277 (diff) | |
download | external_llvm-a479b2325635544fb2c955c4d7e8b6ea9582120f.zip external_llvm-a479b2325635544fb2c955c4d7e8b6ea9582120f.tar.gz external_llvm-a479b2325635544fb2c955c4d7e8b6ea9582120f.tar.bz2 |
Add support to CallbackVH to receive notification when a Value's use-list changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Value.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 76cfb90..3c32c56 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -281,6 +281,16 @@ void Value::takeName(Value *V) { } +/// addUse - This method should only be used by the Use class. +/// +void Value::addUse(Use &U) { + U.addToList(&UseList); + + // Notify all ValueHandles (if present) that this value added a Use. + if (HasValueHandle) + ValueHandleBase::ValueAddedUse(U); +} + // uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith, // except that it doesn't have all of the asserts. The asserts fail because we // are half-way done resolving types, which causes some types to exist as two @@ -569,6 +579,34 @@ void ValueHandleBase::ValueIsDeleted(Value *V) { } } +void ValueHandleBase::ValueAddedUse(Use &U) { + assert(U->HasValueHandle && "Should only be called if ValueHandles present"); + + // Get the linked list base, which is guaranteed to exist since the + // HasValueHandle flag is set. + LLVMContextImpl *pImpl = U->getContext().pImpl; + ValueHandleBase *Entry = pImpl->ValueHandles[U.get()]; + + assert(Entry && "Value bit set but no entries exist"); + + // We use a local ValueHandleBase as an iterator so that + // ValueHandles can add and remove themselves from the list without + // breaking our iteration. This is not really an AssertingVH; we + // just have to give ValueHandleBase some kind. + for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) { + Iterator.RemoveFromUseList(); + Iterator.AddToExistingUseListAfter(Entry); + assert(Entry->Next == &Iterator && "Loop invariant broken."); + + switch (Entry->getKind()) { + default: + break; + case Callback: + static_cast<CallbackVH*>(Entry)->addedUse(U); + break; + } + } +} void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { assert(Old->HasValueHandle &&"Should only be called if ValueHandles present"); |