clang  3.9.0
Public Types | Public Member Functions | Static Public Member Functions | List of all members
clang::VTableComponent Class Reference

Represents a single component in a vtable. More...

#include <VTableBuilder.h>

Public Types

enum  Kind {
  CK_VCallOffset, CK_VBaseOffset, CK_OffsetToTop, CK_RTTI,
  CK_FunctionPointer, CK_CompleteDtorPointer, CK_DeletingDtorPointer, CK_UnusedFunctionPointer
}
 

Public Member Functions

 VTableComponent ()=default
 
Kind getKind () const
 Get the kind of this vtable component. More...
 
CharUnits getVCallOffset () const
 
CharUnits getVBaseOffset () const
 
CharUnits getOffsetToTop () const
 
const CXXRecordDeclgetRTTIDecl () const
 
const CXXMethodDeclgetFunctionDecl () const
 
const CXXDestructorDeclgetDestructorDecl () const
 
const CXXMethodDeclgetUnusedFunctionDecl () const
 
bool isDestructorKind () const
 
bool isUsedFunctionPointerKind () const
 
bool isFunctionPointerKind () const
 
bool isRTTIKind () const
 

Static Public Member Functions

static VTableComponent MakeVCallOffset (CharUnits Offset)
 
static VTableComponent MakeVBaseOffset (CharUnits Offset)
 
static VTableComponent MakeOffsetToTop (CharUnits Offset)
 
static VTableComponent MakeRTTI (const CXXRecordDecl *RD)
 
static VTableComponent MakeFunction (const CXXMethodDecl *MD)
 
static VTableComponent MakeCompleteDtor (const CXXDestructorDecl *DD)
 
static VTableComponent MakeDeletingDtor (const CXXDestructorDecl *DD)
 
static VTableComponent MakeUnusedFunction (const CXXMethodDecl *MD)
 
static VTableComponent getFromOpaqueInteger (uint64_t I)
 

Detailed Description

Represents a single component in a vtable.

Definition at line 31 of file VTableBuilder.h.

Member Enumeration Documentation

Enumerator
CK_VCallOffset 
CK_VBaseOffset 
CK_OffsetToTop 
CK_RTTI 
CK_FunctionPointer 
CK_CompleteDtorPointer 

A pointer to the complete destructor.

CK_DeletingDtorPointer 

A pointer to the deleting destructor.

CK_UnusedFunctionPointer 

An entry that is never used.

In some cases, a vtable function pointer will end up never being called. Such vtable function pointers are represented as a CK_UnusedFunctionPointer.

Definition at line 33 of file VTableBuilder.h.

Constructor & Destructor Documentation

clang::VTableComponent::VTableComponent ( )
default

Member Function Documentation

const CXXDestructorDecl* clang::VTableComponent::getDestructorDecl ( ) const
inline
static VTableComponent clang::VTableComponent::getFromOpaqueInteger ( uint64_t  I)
inlinestatic

Definition at line 97 of file VTableBuilder.h.

References VTableComponent().

const CXXMethodDecl* clang::VTableComponent::getFunctionDecl ( ) const
inline
Kind clang::VTableComponent::getKind ( ) const
inline
CharUnits clang::VTableComponent::getOffsetToTop ( ) const
inline

Definition at line 118 of file VTableBuilder.h.

References CK_OffsetToTop, and getKind().

Referenced by clang::CodeGen::CodeGenVTables::CreateVTableInitializer().

const CXXRecordDecl* clang::VTableComponent::getRTTIDecl ( ) const
inline

Definition at line 124 of file VTableBuilder.h.

References isRTTIKind().

const CXXMethodDecl* clang::VTableComponent::getUnusedFunctionDecl ( ) const
inline

Definition at line 141 of file VTableBuilder.h.

References CK_UnusedFunctionPointer, and getKind().

CharUnits clang::VTableComponent::getVBaseOffset ( ) const
inline

Definition at line 112 of file VTableBuilder.h.

References CK_VBaseOffset, and getKind().

Referenced by clang::CodeGen::CodeGenVTables::CreateVTableInitializer().

CharUnits clang::VTableComponent::getVCallOffset ( ) const
inline

Definition at line 106 of file VTableBuilder.h.

References CK_VCallOffset, and getKind().

Referenced by clang::CodeGen::CodeGenVTables::CreateVTableInitializer().

bool clang::VTableComponent::isDestructorKind ( ) const
inline

Definition at line 146 of file VTableBuilder.h.

References getKind(), and isDestructorKind().

Referenced by getDestructorDecl(), getFunctionDecl(), and isDestructorKind().

bool clang::VTableComponent::isFunctionPointerKind ( ) const
inline

Definition at line 152 of file VTableBuilder.h.

References getKind().

Referenced by getFunctionDecl().

bool clang::VTableComponent::isRTTIKind ( ) const
inline

Definition at line 156 of file VTableBuilder.h.

References getKind(), and isRTTIKind().

Referenced by getRTTIDecl(), and isRTTIKind().

bool clang::VTableComponent::isUsedFunctionPointerKind ( ) const
inline

Definition at line 148 of file VTableBuilder.h.

References getKind().

static VTableComponent clang::VTableComponent::MakeCompleteDtor ( const CXXDestructorDecl DD)
inlinestatic

Definition at line 80 of file VTableBuilder.h.

References CK_CompleteDtorPointer, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeDeletingDtor ( const CXXDestructorDecl DD)
inlinestatic

Definition at line 85 of file VTableBuilder.h.

References CK_DeletingDtorPointer, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeFunction ( const CXXMethodDecl MD)
inlinestatic

Definition at line 72 of file VTableBuilder.h.

References CK_FunctionPointer, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeOffsetToTop ( CharUnits  Offset)
inlinestatic

Definition at line 64 of file VTableBuilder.h.

References CK_OffsetToTop, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeRTTI ( const CXXRecordDecl RD)
inlinestatic

Definition at line 68 of file VTableBuilder.h.

References CK_RTTI, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeUnusedFunction ( const CXXMethodDecl MD)
inlinestatic

Definition at line 90 of file VTableBuilder.h.

References CK_UnusedFunctionPointer, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeVBaseOffset ( CharUnits  Offset)
inlinestatic

Definition at line 60 of file VTableBuilder.h.

References CK_VBaseOffset, and VTableComponent().

static VTableComponent clang::VTableComponent::MakeVCallOffset ( CharUnits  Offset)
inlinestatic

Definition at line 56 of file VTableBuilder.h.

References CK_VCallOffset, and VTableComponent().


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