class ValueMapCallbackVH
Declaration
template <typename KeyT, typename ValueT, typename Config>
class ValueMapCallbackVH : public CallbackVH { /* full declaration omitted */ };
Declared at: llvm/include/llvm/IR/ValueMap.h:241
Inherits from: CallbackVH
Templates
- KeyT
- ValueT
- Config
Method Overview
- public KeyT Unwrap() const
- public void allUsesReplacedWith(llvm::Value * new_key)
- public void deleted()
Inherited from CallbackVH:
Inherited from ValueHandleBase:
- protected RemoveFromUseList
- public ValueIsDeleted
- public ValueIsRAUWd
- protected clearValPtr
- protected getValPtr
- protected isValid
Methods
¶KeyT Unwrap() const
KeyT Unwrap() const
Declared at: llvm/include/llvm/IR/ValueMap.h:258
¶void allUsesReplacedWith(llvm::Value* new_key)
void allUsesReplacedWith(llvm::Value* new_key)
Description
Callback for Value RAUW. Called when this->getValPtr()->replaceAllUsesWith(new_value) is called, _before_ any of the uses have actually been replaced. If WeakTrackingVH were implemented as a CallbackVH, it would use this method to call setValPtr(new_value). AssertingVH would do nothing in this method.
Declared at: llvm/include/llvm/IR/ValueMap.h:271
Parameters
- llvm::Value* new_key
¶void deleted()
void deleted()
Description
Callback for Value destruction. Called when this->getValPtr() is destroyed, inside ~Value(), so you may call any non-virtual Value method on getValPtr(), but no subclass methods. If WeakTrackingVH were implemented as a CallbackVH, it would use this method to call setValPtr(NULL). AssertingVH would use this method to cause an assertion failure. All implementations must remove the reference from this object to the Value that's being destroyed.
Declared at: llvm/include/llvm/IR/ValueMap.h:260