LLVM API Documentation

Public Types | Public Member Functions
llvm::AttrBuilder Class Reference

#include <Attributes.h>

List of all members.

Public Types

typedef std::pair< std::string,
std::string > 
td_type
typedef std::map< std::string,
std::string >::iterator 
td_iterator
typedef std::map< std::string,
std::string >::const_iterator 
td_const_iterator
typedef llvm::iterator_range
< td_iterator
td_range
typedef llvm::iterator_range
< td_const_iterator
td_const_range

Public Member Functions

 AttrBuilder ()
 AttrBuilder (uint64_t Val)
 AttrBuilder (const Attribute &A)
 AttrBuilder (AttributeSet AS, unsigned Idx)
void clear ()
AttrBuilderaddAttribute (Attribute::AttrKind Val)
 Add an attribute to the builder.
AttrBuilderaddAttribute (Attribute A)
 Add the Attribute object to the builder.
AttrBuilderaddAttribute (StringRef A, StringRef V=StringRef())
 Add the target-dependent attribute to the builder.
AttrBuilderremoveAttribute (Attribute::AttrKind Val)
 Remove an attribute from the builder.
AttrBuilderremoveAttributes (AttributeSet A, uint64_t Index)
 Remove the attributes from the builder.
AttrBuilderremoveAttribute (StringRef A)
 Remove the target-dependent attribute to the builder.
AttrBuildermerge (const AttrBuilder &B)
 Add the attributes from the builder.
bool contains (Attribute::AttrKind A) const
 Return true if the builder has the specified attribute.
bool contains (StringRef A) const
 Return true if the builder has the specified target-dependent attribute.
bool hasAttributes () const
 Return true if the builder has IR-level attributes.
bool hasAttributes (AttributeSet A, uint64_t Index) const
 Return true if the builder has any attribute that's in the specified attribute.
bool hasAlignmentAttr () const
 Return true if the builder has an alignment attribute.
uint64_t getAlignment () const
 Retrieve the alignment attribute, if it exists.
uint64_t getStackAlignment () const
 Retrieve the stack alignment attribute, if it exists.
uint64_t getDereferenceableBytes () const
 Retrieve the number of dereferenceable bytes, if the dereferenceable attribute exists (zero is returned otherwise).
AttrBuilderaddAlignmentAttr (unsigned Align)
 This turns an int alignment (which must be a power of 2) into the form used internally in Attribute.
AttrBuilderaddStackAlignmentAttr (unsigned Align)
 This turns an int stack alignment (which must be a power of 2) into the form used internally in Attribute.
AttrBuilderaddDereferenceableAttr (uint64_t Bytes)
 This turns the number of dereferenceable bytes into the form used internally in Attribute.
bool empty () const
 Return true if the builder contains no target-independent attributes.
td_iterator td_begin ()
td_iterator td_end ()
td_const_iterator td_begin () const
td_const_iterator td_end () const
td_range td_attrs ()
td_const_range td_attrs () const
bool td_empty () const
bool operator== (const AttrBuilder &B)
bool operator!= (const AttrBuilder &B)
AttrBuilderaddRawValue (uint64_t Val)
 Add the raw value to the internal representation.

Detailed Description

Definition at line 403 of file Attributes.h.


Member Typedef Documentation

typedef std::map<std::string, std::string>::const_iterator llvm::AttrBuilder::td_const_iterator

Definition at line 493 of file Attributes.h.

Definition at line 495 of file Attributes.h.

typedef std::map<std::string, std::string>::iterator llvm::AttrBuilder::td_iterator

Definition at line 492 of file Attributes.h.

Definition at line 494 of file Attributes.h.

typedef std::pair<std::string, std::string> llvm::AttrBuilder::td_type

Definition at line 491 of file Attributes.h.


Constructor & Destructor Documentation

Definition at line 410 of file Attributes.h.

llvm::AttrBuilder::AttrBuilder ( uint64_t  Val) [inline, explicit]

Definition at line 411 of file Attributes.h.

References addRawValue().

Definition at line 415 of file Attributes.h.

References addAttribute().


Member Function Documentation

This turns an int alignment (which must be a power of 2) into the form used internally in Attribute.

Definition at line 1114 of file Attributes.cpp.

References Align(), llvm::Attribute::Alignment, and llvm::isPowerOf2_32().

Referenced by decodeLLVMAttributesForBitcode(), getParameterABIAttributes(), LLVMSetInstrParamAlignment(), and LLVMSetParamAlignment().

Add the target-dependent attribute to the builder.

Definition at line 1054 of file Attributes.cpp.

References llvm::ARM_PROC::A.

This turns the number of dereferenceable bytes into the form used internally in Attribute.

Definition at line 1137 of file Attributes.cpp.

References llvm::Attribute::Dereferenceable.

Referenced by llvm::AttributeFuncs::typeIncompatible().

This turns an int stack alignment (which must be a power of 2) into the form used internally in Attribute.

Definition at line 1125 of file Attributes.cpp.

References Align(), llvm::isPowerOf2_32(), and llvm::Attribute::StackAlignment.

Definition at line 1022 of file Attributes.cpp.

Return true if the builder has the specified attribute.

Definition at line 445 of file Attributes.h.

References llvm::ARM_PROC::A, and llvm::Attribute::EndAttrKinds.

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

Return true if the builder has the specified target-dependent attribute.

Definition at line 1165 of file Attributes.cpp.

bool llvm::AttrBuilder::empty ( ) const [inline]

Return true if the builder contains no target-independent attributes.

Definition at line 488 of file Attributes.h.

uint64_t llvm::AttrBuilder::getAlignment ( ) const [inline]

Retrieve the alignment attribute, if it exists.

Definition at line 465 of file Attributes.h.

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

uint64_t llvm::AttrBuilder::getDereferenceableBytes ( ) const [inline]

Retrieve the number of dereferenceable bytes, if the dereferenceable attribute exists (zero is returned otherwise).

Definition at line 472 of file Attributes.h.

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

uint64_t llvm::AttrBuilder::getStackAlignment ( ) const [inline]

Retrieve the stack alignment attribute, if it exists.

Definition at line 468 of file Attributes.h.

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

Return true if the builder has an alignment attribute.

Definition at line 1198 of file Attributes.cpp.

Return true if the builder has IR-level attributes.

Definition at line 1169 of file Attributes.cpp.

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

bool AttrBuilder::hasAttributes ( AttributeSet  A,
uint64_t  Index 
) const

Add the attributes from the builder.

Definition at line 1145 of file Attributes.cpp.

References I.

bool llvm::AttrBuilder::operator!= ( const AttrBuilder B) [inline]

Definition at line 511 of file Attributes.h.

bool AttrBuilder::operator== ( const AttrBuilder B)

Definition at line 1202 of file Attributes.cpp.

References I.

Remove an attribute from the builder.

Definition at line 1059 of file Attributes.cpp.

References llvm::Attribute::Alignment, llvm::Attribute::Dereferenceable, llvm::Attribute::EndAttrKinds, and llvm::Attribute::StackAlignment.

Remove the target-dependent attribute to the builder.

Definition at line 1107 of file Attributes.cpp.

References I.

Definition at line 503 of file Attributes.h.

References td_begin(), and td_end().

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

Definition at line 504 of file Attributes.h.

References td_begin(), and td_end().

Definition at line 497 of file Attributes.h.

Referenced by td_attrs().

Definition at line 500 of file Attributes.h.

bool llvm::AttrBuilder::td_empty ( ) const [inline]

Definition at line 508 of file Attributes.h.

Definition at line 498 of file Attributes.h.

Referenced by td_attrs().

Definition at line 501 of file Attributes.h.


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