LLVM
8.0.1
|
#include "llvm/Analysis/CFLAliasAnalysisUtils.h"
Public Member Functions | |
FunctionHandle (Function *Fn, AAResult *Result) | |
void | deleted () override |
Callback for Value destruction. More... | |
void | allUsesReplacedWith (Value *) override |
Callback for Value RAUW. More... | |
![]() | |
CallbackVH () | |
CallbackVH (Value *P) | |
operator Value * () const | |
![]() | |
ValueHandleBase (HandleBaseKind Kind) | |
ValueHandleBase (HandleBaseKind Kind, Value *V) | |
~ValueHandleBase () | |
Value * | operator= (Value *RHS) |
Value * | operator= (const ValueHandleBase &RHS) |
Value * | operator-> () const |
Value & | operator* () const |
Additional Inherited Members | |
![]() | |
static void | ValueIsDeleted (Value *V) |
static void | ValueIsRAUWd (Value *Old, Value *New) |
![]() | |
enum | HandleBaseKind { Assert, Callback, Weak, WeakTracking } |
This indicates what sub class the handle actually is. More... | |
![]() | |
~CallbackVH ()=default | |
CallbackVH (const CallbackVH &)=default | |
CallbackVH & | operator= (const CallbackVH &)=default |
void | setValPtr (Value *P) |
![]() | |
ValueHandleBase (const ValueHandleBase &RHS) | |
ValueHandleBase (HandleBaseKind Kind, const ValueHandleBase &RHS) | |
Value * | getValPtr () const |
void | RemoveFromUseList () |
Remove this ValueHandle from its current use list. More... | |
void | clearValPtr () |
Clear the underlying pointer without clearing the use list. More... | |
![]() | |
static bool | isValid (Value *V) |
Definition at line 24 of file CFLAliasAnalysisUtils.h.
|
inline |
Definition at line 25 of file CFLAliasAnalysisUtils.h.
References assert().
|
inlineoverridevirtual |
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.
Reimplemented from llvm::CallbackVH.
Definition at line 32 of file CFLAliasAnalysisUtils.h.
References assert(), llvm::ValueHandleBase::getValPtr(), and llvm::CallbackVH::setValPtr().
|
inlineoverridevirtual |
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.
Reimplemented from llvm::CallbackVH.
Definition at line 31 of file CFLAliasAnalysisUtils.h.