clang  3.9.0
Public Member Functions | Public Attributes | List of all members
clang::LazyOffsetPtr< T, OffsT, Get > Struct Template Reference

A lazy pointer to an AST node (of base type T) that resides within an external AST source. More...

#include <ExternalASTSource.h>

Inheritance diagram for clang::LazyOffsetPtr< T, OffsT, Get >:
[legend]
Collaboration diagram for clang::LazyOffsetPtr< T, OffsT, Get >:
[legend]

Public Member Functions

 LazyOffsetPtr ()
 
 LazyOffsetPtr (T *Ptr)
 
 LazyOffsetPtr (uint64_t Offset)
 
LazyOffsetPtroperator= (T *Ptr)
 
LazyOffsetPtroperator= (uint64_t Offset)
 
 operator bool () const
 Whether this pointer is non-NULL. More...
 
bool isValid () const
 Whether this pointer is non-NULL. More...
 
bool isOffset () const
 Whether this pointer is currently stored as an offset. More...
 
T * get (ExternalASTSource *Source) const
 Retrieve the pointer to the AST node that this lazy pointer. More...
 

Public Attributes

uint64_t Ptr
 Either a pointer to an AST node or the offset within the external AST source where the AST node can be found. More...
 

Detailed Description

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
struct clang::LazyOffsetPtr< T, OffsT, Get >

A lazy pointer to an AST node (of base type T) that resides within an external AST source.

The AST node is identified within the external AST source by a 63-bit offset, and can be retrieved via an operation on the external AST source itself.

Definition at line 321 of file ExternalASTSource.h.

Constructor & Destructor Documentation

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
clang::LazyOffsetPtr< T, OffsT, Get >::LazyOffsetPtr ( )
inline

Definition at line 330 of file ExternalASTSource.h.

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
clang::LazyOffsetPtr< T, OffsT, Get >::LazyOffsetPtr ( T *  Ptr)
inlineexplicit

Definition at line 332 of file ExternalASTSource.h.

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
clang::LazyOffsetPtr< T, OffsT, Get >::LazyOffsetPtr ( uint64_t  Offset)
inlineexplicit

Definition at line 333 of file ExternalASTSource.h.

Member Function Documentation

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
T* clang::LazyOffsetPtr< T, OffsT, Get >::get ( ExternalASTSource Source) const
inline
template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
bool clang::LazyOffsetPtr< T, OffsT, Get >::isOffset ( ) const
inline

Whether this pointer is currently stored as an offset.

Definition at line 365 of file ExternalASTSource.h.

Referenced by clang::LazyOffsetPtr< Stmt, uint64_t,&ExternalASTSource::GetExternalDeclStmt >::get().

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
bool clang::LazyOffsetPtr< T, OffsT, Get >::isValid ( ) const
inline

Whether this pointer is non-NULL.

This operation does not require the AST node to be deserialized.

Definition at line 362 of file ExternalASTSource.h.

Referenced by clang::FunctionDecl::doesDeclarationForceExternallyVisibleDefinition(), and clang::ObjCMethodDecl::hasBody().

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
clang::LazyOffsetPtr< T, OffsT, Get >::operator bool ( ) const
inlineexplicit

Whether this pointer is non-NULL.

This operation does not require the AST node to be deserialized.

Definition at line 357 of file ExternalASTSource.h.

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
LazyOffsetPtr& clang::LazyOffsetPtr< T, OffsT, Get >::operator= ( T *  Ptr)
inline

Definition at line 339 of file ExternalASTSource.h.

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
LazyOffsetPtr& clang::LazyOffsetPtr< T, OffsT, Get >::operator= ( uint64_t  Offset)
inline

Definition at line 344 of file ExternalASTSource.h.

Member Data Documentation

template<typename T, typename OffsT, T *(ExternalASTSource::*)(OffsT Offset) Get>
uint64_t clang::LazyOffsetPtr< T, OffsT, Get >::Ptr
mutable

The documentation for this struct was generated from the following file: