LLVM  4.0.0
Classes | Public Member Functions | Protected Member Functions | List of all members
llvm::MDBuilder Class Reference

#include <MDBuilder.h>

Classes

struct  TBAAStructField
 

Public Member Functions

 MDBuilder (LLVMContext &context)
 
MDStringcreateString (StringRef Str)
 Return the given string as metadata. More...
 
ConstantAsMetadatacreateConstant (Constant *C)
 Return the given constant as metadata. More...
 
MDNodecreateFPMath (float Accuracy)
 Return metadata with the given settings. More...
 
MDNodecreateBranchWeights (uint32_t TrueWeight, uint32_t FalseWeight)
 Return metadata containing two branch weights. More...
 
MDNodecreateBranchWeights (ArrayRef< uint32_t > Weights)
 Return metadata containing a number of branch weights. More...
 
MDNodecreateUnpredictable ()
 Return metadata specifying that a branch or switch is unpredictable. More...
 
MDNodecreateFunctionEntryCount (uint64_t Count)
 Return metadata containing the entry count for a function. More...
 
MDNodecreateFunctionSectionPrefix (StringRef Prefix)
 Return metadata containing the section prefix for a function. More...
 
MDNodecreateRange (const APInt &Lo, const APInt &Hi)
 Return metadata describing the range [Lo, Hi). More...
 
MDNodecreateRange (Constant *Lo, Constant *Hi)
 Return metadata describing the range [Lo, Hi). More...
 
MDNodecreateAnonymousTBAARoot ()
 Return metadata appropriate for a TBAA root node. More...
 
MDNodecreateAnonymousAliasScopeDomain (StringRef Name=StringRef())
 Return metadata appropriate for an alias scope domain node. More...
 
MDNodecreateAnonymousAliasScope (MDNode *Domain, StringRef Name=StringRef())
 Return metadata appropriate for an alias scope root node. More...
 
MDNodecreateTBAARoot (StringRef Name)
 Return metadata appropriate for a TBAA root node with the given name. More...
 
MDNodecreateAliasScopeDomain (StringRef Name)
 Return metadata appropriate for an alias scope domain node with the given name. More...
 
MDNodecreateAliasScope (StringRef Name, MDNode *Domain)
 Return metadata appropriate for an alias scope node with the given name. More...
 
MDNodecreateTBAANode (StringRef Name, MDNode *Parent, bool isConstant=false)
 Return metadata for a non-root TBAA node with the given name, parent in the TBAA tree, and value for 'pointsToConstantMemory'. More...
 
MDNodecreateTBAAStructNode (ArrayRef< TBAAStructField > Fields)
 Return metadata for a tbaa.struct node with the given struct field descriptions. More...
 
MDNodecreateTBAAStructTypeNode (StringRef Name, ArrayRef< std::pair< MDNode *, uint64_t >> Fields)
 Return metadata for a TBAA struct node in the type DAG with the given name, a list of pairs (offset, field type in the type DAG). More...
 
MDNodecreateTBAAScalarTypeNode (StringRef Name, MDNode *Parent, uint64_t Offset=0)
 Return metadata for a TBAA scalar type node with the given name, an offset and a parent in the TBAA type DAG. More...
 
MDNodecreateTBAAStructTagNode (MDNode *BaseType, MDNode *AccessType, uint64_t Offset, bool IsConstant=false)
 Return metadata for a TBAA tag node with the given base type, access type and offset relative to the base type. More...
 

Protected Member Functions

MDNodecreateAnonymousAARoot (StringRef Name=StringRef(), MDNode *Extra=nullptr)
 Return metadata appropriate for a AA root node (scope or TBAA). More...
 

Detailed Description

Definition at line 32 of file MDBuilder.h.

Constructor & Destructor Documentation

llvm::MDBuilder::MDBuilder ( LLVMContext context)
inline

Definition at line 36 of file MDBuilder.h.

Member Function Documentation

MDNode * MDBuilder::createAliasScope ( StringRef  Name,
MDNode Domain 
)

Return metadata appropriate for an alias scope node with the given name.

This may be identified (uniqued) with other scopes with the same name and domain.

Definition at line 130 of file MDBuilder.cpp.

References createString(), and llvm::MDNode::get().

MDNode * MDBuilder::createAliasScopeDomain ( StringRef  Name)

Return metadata appropriate for an alias scope domain node with the given name.

This may be identified (uniqued) with other roots with the same name.

Definition at line 126 of file MDBuilder.cpp.

References createString(), and llvm::MDNode::get().

MDNode * MDBuilder::createAnonymousAARoot ( StringRef  Name = StringRef(),
MDNode Extra = nullptr 
)
protected

Return metadata appropriate for a AA root node (scope or TBAA).

Each returned node is distinct from all other metadata and will never be identified (uniqued) with anything else.

Definition at line 88 of file MDBuilder.cpp.

References AMDGPU::RuntimeMD::KeyName::Args, createString(), llvm::NVPTXISD::Dummy, llvm::StringRef::empty(), llvm::MDNode::get(), llvm::MDNode::getTemporary(), llvm::None, and llvm::MDNode::replaceOperandWith().

Referenced by createAnonymousAliasScope(), createAnonymousAliasScopeDomain(), and createAnonymousTBAARoot().

MDNode* llvm::MDBuilder::createAnonymousAliasScope ( MDNode Domain,
StringRef  Name = StringRef() 
)
inline

Return metadata appropriate for an alias scope root node.

Each returned node is distinct from all other metadata and will never be identified (uniqued) with anything else.

Definition at line 111 of file MDBuilder.h.

References createAnonymousAARoot().

Referenced by llvm::LoopVersioning::prepareNoAliasMetadata().

MDNode* llvm::MDBuilder::createAnonymousAliasScopeDomain ( StringRef  Name = StringRef())
inline

Return metadata appropriate for an alias scope domain node.

Each returned node is distinct from all other metadata and will never be identified (uniqued) with anything else.

Definition at line 104 of file MDBuilder.h.

References createAnonymousAARoot().

Referenced by llvm::LoopVersioning::prepareNoAliasMetadata().

MDNode* llvm::MDBuilder::createAnonymousTBAARoot ( )
inline

Return metadata appropriate for a TBAA root node.

Each returned node is distinct from all other metadata and will never be identified (uniqued) with anything else.

Definition at line 97 of file MDBuilder.h.

References createAnonymousAARoot().

MDNode * MDBuilder::createBranchWeights ( uint32_t  TrueWeight,
uint32_t  FalseWeight 
)

Return metadata containing two branch weights.

Definition at line 37 of file MDBuilder.cpp.

MDNode * MDBuilder::createBranchWeights ( ArrayRef< uint32_t Weights)

Return metadata containing a number of branch weights.

Definition at line 42 of file MDBuilder.cpp.

References assert(), createConstant(), createString(), llvm::ConstantInt::get(), llvm::MDNode::get(), llvm::Type::getInt32Ty(), i, Int32Ty, llvm::ArrayRef< T >::size(), and Vals.

ConstantAsMetadata * MDBuilder::createConstant ( Constant C)
MDNode * MDBuilder::createFPMath ( float  Accuracy)

Return metadata with the given settings.

The special value 0.0 for the Accuracy parameter indicates the default (maximal precision) setting.

Definition at line 28 of file MDBuilder.cpp.

References assert(), createConstant(), llvm::ConstantFP::get(), llvm::MDNode::get(), and llvm::Type::getFloatTy().

MDNode * MDBuilder::createFunctionEntryCount ( uint64_t  Count)

Return metadata containing the entry count for a function.

Definition at line 59 of file MDBuilder.cpp.

References createConstant(), createString(), llvm::ConstantInt::get(), llvm::MDNode::get(), and llvm::Type::getInt64Ty().

Referenced by llvm::Function::setEntryCount().

MDNode * MDBuilder::createFunctionSectionPrefix ( StringRef  Prefix)

Return metadata containing the section prefix for a function.

Definition at line 66 of file MDBuilder.cpp.

References createString(), and llvm::MDNode::get().

Referenced by llvm::Function::setSectionPrefix().

MDNode * MDBuilder::createRange ( const APInt Lo,
const APInt Hi 
)

Return metadata describing the range [Lo, Hi).

Definition at line 72 of file MDBuilder.cpp.

References assert(), llvm::IntegerType::get(), llvm::ConstantInt::get(), and llvm::APInt::getBitWidth().

MDNode * MDBuilder::createRange ( Constant Lo,
Constant Hi 
)

Return metadata describing the range [Lo, Hi).

Definition at line 79 of file MDBuilder.cpp.

References createConstant(), and llvm::MDNode::get().

MDString * MDBuilder::createString ( StringRef  Str)
MDNode * MDBuilder::createTBAANode ( StringRef  Name,
MDNode Parent,
bool  isConstant = false 
)

Return metadata for a non-root TBAA node with the given name, parent in the TBAA tree, and value for 'pointsToConstantMemory'.

Definition at line 116 of file MDBuilder.cpp.

References createConstant(), createString(), fuzzer::Flags, llvm::ConstantInt::get(), llvm::MDNode::get(), and llvm::Type::getInt64Ty().

MDNode * MDBuilder::createTBAARoot ( StringRef  Name)

Return metadata appropriate for a TBAA root node with the given name.

This may be identified (uniqued) with other roots with the same name.

Definition at line 110 of file MDBuilder.cpp.

References createString(), and llvm::MDNode::get().

MDNode * MDBuilder::createTBAAScalarTypeNode ( StringRef  Name,
MDNode Parent,
uint64_t  Offset = 0 
)

Return metadata for a TBAA scalar type node with the given name, an offset and a parent in the TBAA type DAG.

Definition at line 163 of file MDBuilder.cpp.

References createConstant(), createString(), llvm::ConstantInt::get(), llvm::MDNode::get(), and llvm::Type::getInt64Ty().

MDNode * MDBuilder::createTBAAStructNode ( ArrayRef< TBAAStructField Fields)

Return metadata for a tbaa.struct node with the given struct field descriptions.

Definition at line 136 of file MDBuilder.cpp.

References createConstant(), llvm::ConstantInt::get(), llvm::MDNode::get(), llvm::Type::getInt64Ty(), i, Offset, llvm::ArrayRef< T >::size(), and Vals.

MDNode * MDBuilder::createTBAAStructTagNode ( MDNode BaseType,
MDNode AccessType,
uint64_t  Offset,
bool  IsConstant = false 
)

Return metadata for a TBAA tag node with the given base type, access type and offset relative to the base type.

Definition at line 172 of file MDBuilder.cpp.

References createConstant(), llvm::ConstantInt::get(), llvm::MDNode::get(), and llvm::Type::getInt64Ty().

MDNode * MDBuilder::createTBAAStructTypeNode ( StringRef  Name,
ArrayRef< std::pair< MDNode *, uint64_t >>  Fields 
)

Return metadata for a TBAA struct node in the type DAG with the given name, a list of pairs (offset, field type in the type DAG).

Definition at line 149 of file MDBuilder.cpp.

References createConstant(), createString(), llvm::ConstantInt::get(), llvm::MDNode::get(), llvm::Type::getInt64Ty(), and i.

MDNode * MDBuilder::createUnpredictable ( )

Return metadata specifying that a branch or switch is unpredictable.

Definition at line 55 of file MDBuilder.cpp.

References llvm::MDNode::get(), and llvm::None.


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