|
LLVM
3.7.0
|
DWARF expression. More...
#include <DebugInfoMetadata.h>
Classes | |
| class | expr_op_iterator |
| An iterator for expression operands. More... | |
| class | ExprOperand |
| A lightweight wrapper around an expression operand. More... | |
Public Types | |
| typedef ArrayRef< uint64_t > ::iterator | element_iterator |
Public Types inherited from llvm::MDNode | |
| typedef const MDOperand * | op_iterator |
| typedef iterator_range < op_iterator > | op_range |
Public Types inherited from llvm::Metadata | |
| enum | MetadataKind { MDTupleKind, DILocationKind, GenericDINodeKind, DISubrangeKind, DIEnumeratorKind, DIBasicTypeKind, DIDerivedTypeKind, DICompositeTypeKind, DISubroutineTypeKind, DIFileKind, DICompileUnitKind, DISubprogramKind, DILexicalBlockKind, DILexicalBlockFileKind, DINamespaceKind, DIModuleKind, DITemplateTypeParameterKind, DITemplateValueParameterKind, DIGlobalVariableKind, DILocalVariableKind, DIExpressionKind, DIObjCPropertyKind, DIImportedEntityKind, ConstantAsMetadataKind, LocalAsMetadataKind, MDStringKind } |
Static Public Member Functions | |
| static bool | classof (const Metadata *MD) |
Static Public Member Functions inherited from llvm::MDNode | |
| static MDTuple * | get (LLVMContext &Context, ArrayRef< Metadata * > MDs) |
| static MDTuple * | getIfExists (LLVMContext &Context, ArrayRef< Metadata * > MDs) |
| static MDTuple * | getDistinct (LLVMContext &Context, ArrayRef< Metadata * > MDs) |
| static TempMDTuple | getTemporary (LLVMContext &Context, ArrayRef< Metadata * > MDs) |
| static void | deleteTemporary (MDNode *N) |
| Deallocate a node created by getTemporary. More... | |
| template<class T > | |
| static std::enable_if < std::is_base_of< MDNode, T > ::value, T * >::type | replaceWithPermanent (std::unique_ptr< T, TempMDNodeDeleter > N) |
| Replace a temporary node with a permanent one. More... | |
| template<class T > | |
| static std::enable_if < std::is_base_of< MDNode, T > ::value, T * >::type | replaceWithUniqued (std::unique_ptr< T, TempMDNodeDeleter > N) |
| Replace a temporary node with a uniqued one. More... | |
| template<class T > | |
| static std::enable_if < std::is_base_of< MDNode, T > ::value, T * >::type | replaceWithDistinct (std::unique_ptr< T, TempMDNodeDeleter > N) |
| Replace a temporary node with a distinct one. More... | |
| static bool | classof (const Metadata *MD) |
| Methods for support type inquiry through isa, cast, and dyn_cast: More... | |
| static MDNode * | concatenate (MDNode *A, MDNode *B) |
| Methods for metadata merging. More... | |
| static MDNode * | intersect (MDNode *A, MDNode *B) |
| static MDNode * | getMostGenericTBAA (MDNode *A, MDNode *B) |
| static MDNode * | getMostGenericFPMath (MDNode *A, MDNode *B) |
| static MDNode * | getMostGenericRange (MDNode *A, MDNode *B) |
| static MDNode * | getMostGenericAliasScope (MDNode *A, MDNode *B) |
Friends | |
| class | LLVMContextImpl |
| class | MDNode |
Additional Inherited Members | |
Protected Types inherited from llvm::MDNode | |
| typedef iterator_range < MDOperand * > | mutable_op_range |
Protected Types inherited from llvm::Metadata | |
| enum | StorageType { Uniqued, Distinct, Temporary } |
| Active type of storage. More... | |
Protected Member Functions inherited from llvm::MDNode | |
| void * | operator new (size_t Size, unsigned NumOps) |
| void | operator delete (void *Mem) |
| void | operator delete (void *, unsigned) |
| Required by std, but never called. More... | |
| void | operator delete (void *, unsigned, bool) |
| Required by std, but never called. More... | |
| MDNode (LLVMContext &Context, unsigned ID, StorageType Storage, ArrayRef< Metadata * > Ops1, ArrayRef< Metadata * > Ops2=None) | |
| ~MDNode ()=default | |
| void | dropAllReferences () |
| MDOperand * | mutable_begin () |
| MDOperand * | mutable_end () |
| mutable_op_range | mutable_operands () |
| void | setOperand (unsigned I, Metadata *New) |
| Set an operand. More... | |
| void | storeDistinctInContext () |
Protected Member Functions inherited from llvm::Metadata | |
| Metadata (unsigned ID, StorageType Storage) | |
| ~Metadata ()=default | |
| void | handleChangedOperand (void *, Metadata *) |
| Default handling of a changed operand, which asserts. More... | |
Static Protected Member Functions inherited from llvm::MDNode | |
| template<class T , class StoreT > | |
| static T * | storeImpl (T *N, StorageType Storage, StoreT &Store) |
Protected Attributes inherited from llvm::MDNode | |
| ContextAndReplaceableUses | Context |
Protected Attributes inherited from llvm::Metadata | |
| unsigned | Storage: 2 |
| Storage flag for non-uniqued, otherwise unowned, metadata. More... | |
| unsigned short | SubclassData16 |
| unsigned | SubclassData32 |
DWARF expression.
This is (almost) a DWARF expression that modifies the location of a variable or (or the location of a single piece of a variable).
FIXME: Instead of DW_OP_plus taking an argument, this should use DW_OP_const and have DW_OP_plus consume the topmost elements on the stack.
TODO: Co-allocate the expression elements. TODO: Separate from MDNode, or otherwise drop Distinct and Temporary storage types.
Definition at line 2013 of file DebugInfoMetadata.h.
| typedef ArrayRef<uint64_t>::iterator llvm::DIExpression::element_iterator |
Definition at line 2054 of file DebugInfoMetadata.h.
Definition at line 2144 of file DebugInfoMetadata.h.
References llvm::Metadata::DIExpressionKind, and llvm::Metadata::getMetadataID().
|
inline |
Definition at line 2033 of file DebugInfoMetadata.h.
|
inline |
Definition at line 2055 of file DebugInfoMetadata.h.
References llvm::ArrayRef< T >::begin(), and getElements().
Referenced by expr_op_begin(), and WriteDIExpression().
|
inline |
Definition at line 2056 of file DebugInfoMetadata.h.
References llvm::ArrayRef< T >::end(), and getElements().
Referenced by expr_op_end(), and WriteDIExpression().
|
inline |
Visit the elements via ExprOperand wrappers.
These range iterators visit elements through ExprOperand wrappers. This is not guaranteed to be a valid range unless isValid() gives true.
true. Definition at line 2134 of file DebugInfoMetadata.h.
References elements_begin().
Referenced by llvm::DwarfExpression::AddMachineRegExpression(), emitDebugLocValue(), and isValid().
|
inline |
Definition at line 2137 of file DebugInfoMetadata.h.
References elements_end().
Referenced by llvm::DwarfExpression::AddMachineRegExpression(), emitDebugLocValue(), and isValid().
| uint64_t DIExpression::getBitPieceOffset | ( | ) | const |
Return the offset of this piece in bits.
Definition at line 534 of file DebugInfoMetadata.cpp.
References getElement(), getNumElements(), and isBitPiece().
Referenced by emitDebugValueComment(), llvm::DebugLocEntry::finalize(), llvm::operator<(), and piecesOverlap().
| uint64_t DIExpression::getBitPieceSize | ( | ) | const |
Return the size of this piece in bits.
Definition at line 539 of file DebugInfoMetadata.cpp.
References getElement(), getNumElements(), and isBitPiece().
Referenced by emitDebugValueComment(), llvm::DebugLocEntry::finalize(), and piecesOverlap().
|
inline |
Definition at line 2040 of file DebugInfoMetadata.h.
References I, and llvm::ArrayRef< T >::size().
Referenced by getBitPieceOffset(), getBitPieceSize(), and isBitPiece().
|
inline |
Definition at line 2037 of file DebugInfoMetadata.h.
Referenced by elements_begin(), elements_end(), llvm::MDNodeKeyImpl< DIExpression >::isKeyOf(), and WriteDIExpression().
|
inline |
Definition at line 2039 of file DebugInfoMetadata.h.
References llvm::ArrayRef< T >::size().
Referenced by emitDebugLocValue(), getBitPieceOffset(), getBitPieceSize(), and isBitPiece().
| bool DIExpression::isBitPiece | ( | ) | const |
Return whether this is a piece of an aggregate variable.
Definition at line 526 of file DebugInfoMetadata.cpp.
References getElement(), getNumElements(), isValid(), and N.
Referenced by emitDebugValueComment(), getBitPieceOffset(), getBitPieceSize(), llvm::DebugLocEntry::Value::isBitPiece(), and piecesOverlap().
| bool DIExpression::isValid | ( | ) | const |
Definition at line 505 of file DebugInfoMetadata.cpp.
References expr_op_begin(), expr_op_end(), and I.
Referenced by llvm::DbgVariable::initializeMMI(), and isBitPiece().
|
friend |
Definition at line 2014 of file DebugInfoMetadata.h.
|
friend |
Definition at line 2015 of file DebugInfoMetadata.h.
1.8.6