LLVM  8.0.1
Public Member Functions | Static Public Member Functions | Protected Member Functions | Friends | List of all members
llvm::ValueAsMetadata Class Reference

Value wrapper in the Metadata hierarchy. More...

#include "llvm/IR/Metadata.h"

Inheritance diagram for llvm::ValueAsMetadata:
Inheritance graph
[legend]
Collaboration diagram for llvm::ValueAsMetadata:
Collaboration graph
[legend]

Public Member Functions

ValuegetValue () const
 
TypegetType () const
 
LLVMContextgetContext () const
 

Static Public Member Functions

static ValueAsMetadataget (Value *V)
 
static ConstantAsMetadatagetConstant (Value *C)
 
static LocalAsMetadatagetLocal (Value *Local)
 
static ValueAsMetadatagetIfExists (Value *V)
 
static ConstantAsMetadatagetConstantIfExists (Value *C)
 
static LocalAsMetadatagetLocalIfExists (Value *Local)
 
static void handleDeletion (Value *V)
 
static void handleRAUW (Value *From, Value *To)
 
static bool classof (const Metadata *MD)
 

Protected Member Functions

 ValueAsMetadata (unsigned ID, Value *V)
 
 ~ValueAsMetadata ()=default
 
void replaceAllUsesWith (Metadata *MD)
 Handle collisions after Value::replaceAllUsesWith(). More...
 

Friends

class ReplaceableMetadataImpl
 
class LLVMContextImpl
 

Additional Inherited Members

 Active type of storage. More...

Detailed Description

Value wrapper in the Metadata hierarchy.

This is a custom value handle that allows other metadata to refer to classes in the Value hierarchy.

Because of full uniquing support, each value is only wrapped by a single ValueAsMetadata object, so the lookup maps are far more efficient than those using ValueHandleBase.

Definition at line 339 of file Metadata.h.

Constructor & Destructor Documentation

◆ ValueAsMetadata()

llvm::ValueAsMetadata::ValueAsMetadata ( unsigned  ID,
Value V 
)
inlineprotected

Definition at line 351 of file Metadata.h.

References assert().

◆ ~ValueAsMetadata()

llvm::ValueAsMetadata::~ValueAsMetadata ( )
protecteddefault

Member Function Documentation

◆ classof()

static bool llvm::ValueAsMetadata::classof ( const Metadata MD)
inlinestatic

Definition at line 397 of file Metadata.h.

References llvm::Metadata::getMetadataID().

◆ get()

ValueAsMetadata * ValueAsMetadata::get ( Value V)
static

◆ getConstant()

static ConstantAsMetadata* llvm::ValueAsMetadata::getConstant ( Value C)
inlinestatic

Definition at line 361 of file Metadata.h.

References C.

Referenced by llvm::ConstantAsMetadata::get(), and wrapConstantAsMetadata().

◆ getConstantIfExists()

static ConstantAsMetadata* llvm::ValueAsMetadata::getConstantIfExists ( Value C)
inlinestatic

Definition at line 371 of file Metadata.h.

Referenced by llvm::ConstantAsMetadata::getIfExists().

◆ getContext()

LLVMContext& llvm::ValueAsMetadata::getContext ( ) const
inline

Definition at line 381 of file Metadata.h.

References From, and llvm::Value::getContext().

◆ getIfExists()

ValueAsMetadata * ValueAsMetadata::getIfExists ( Value V)
static

◆ getLocal()

static LocalAsMetadata* llvm::ValueAsMetadata::getLocal ( Value Local)
inlinestatic

Definition at line 365 of file Metadata.h.

Referenced by llvm::LocalAsMetadata::get().

◆ getLocalIfExists()

static LocalAsMetadata* llvm::ValueAsMetadata::getLocalIfExists ( Value Local)
inlinestatic

Definition at line 375 of file Metadata.h.

Referenced by llvm::LocalAsMetadata::getIfExists().

◆ getType()

Type* llvm::ValueAsMetadata::getType ( ) const
inline

Definition at line 380 of file Metadata.h.

References llvm::Value::getType().

◆ getValue()

Value* llvm::ValueAsMetadata::getValue ( ) const
inline

◆ handleDeletion()

void ValueAsMetadata::handleDeletion ( Value V)
static

◆ handleRAUW()

void ValueAsMetadata::handleRAUW ( Value From,
Value To 
)
static

◆ replaceAllUsesWith()

void llvm::ValueAsMetadata::replaceAllUsesWith ( Metadata MD)
inlineprotected

Handle collisions after Value::replaceAllUsesWith().

RAUW isn't supported directly for ValueAsMetadata, but if the wrapped Value gets RAUW'ed and the target already exists, this is used to merge the two metadata nodes.

Definition at line 392 of file Metadata.h.

References llvm::ReplaceableMetadataImpl::replaceAllUsesWith().

Referenced by handleDeletion(), and handleRAUW().

Friends And Related Function Documentation

◆ LLVMContextImpl

friend class LLVMContextImpl
friend

Definition at line 341 of file Metadata.h.

◆ ReplaceableMetadataImpl

friend class ReplaceableMetadataImpl
friend

Definition at line 340 of file Metadata.h.


The documentation for this class was generated from the following files: