clang 19.0.0git
Protected Types | Protected Member Functions | Protected Attributes | Friends | List of all members
clang::detail::DeclarationNameExtra Class Reference

DeclarationNameExtra is used as a base of various uncommon special names. More...

#include "clang/Basic/IdentifierTable.h"

Inheritance diagram for clang::detail::DeclarationNameExtra:
Inheritance graph
[legend]

Protected Types

enum  ExtraKind { CXXDeductionGuideName , CXXLiteralOperatorName , CXXUsingDirective , ObjCMultiArgSelector }
 The kind of "extra" information stored in the DeclarationName. More...
 

Protected Member Functions

 DeclarationNameExtra (ExtraKind Kind)
 
 DeclarationNameExtra (unsigned NumArgs)
 
ExtraKind getKind () const
 Return the corresponding ExtraKind.
 
unsigned getNumArgs () const
 Return the number of arguments in an ObjC selector.
 

Protected Attributes

unsigned ExtraKindOrNumArgs
 ExtraKindOrNumArgs has one of the following meaning:
 

Friends

class clang::DeclarationName
 
class clang::DeclarationNameTable
 

Detailed Description

DeclarationNameExtra is used as a base of various uncommon special names.

This class is needed since DeclarationName has not enough space to store the kind of every possible names. Therefore the kind of common names is stored directly in DeclarationName, and the kind of uncommon names is stored in DeclarationNameExtra. It is aligned to 8 bytes because DeclarationName needs the lower 3 bits to store the kind of common names. DeclarationNameExtra is tightly coupled to DeclarationName and any change here is very likely to require changes in DeclarationName(Table).

Definition at line 853 of file IdentifierTable.h.

Member Enumeration Documentation

◆ ExtraKind

The kind of "extra" information stored in the DeclarationName.

See ExtraKindOrNumArgs for an explanation of how these enumerator values are used. Note that DeclarationName depends on the numerical values of the enumerators in this enum. See DeclarationName::StoredNameKind for more info.

Enumerator
CXXDeductionGuideName 
CXXLiteralOperatorName 
CXXUsingDirective 
ObjCMultiArgSelector 

Definition at line 863 of file IdentifierTable.h.

Constructor & Destructor Documentation

◆ DeclarationNameExtra() [1/2]

clang::detail::DeclarationNameExtra::DeclarationNameExtra ( ExtraKind  Kind)
inlineprotected

Definition at line 882 of file IdentifierTable.h.

◆ DeclarationNameExtra() [2/2]

clang::detail::DeclarationNameExtra::DeclarationNameExtra ( unsigned  NumArgs)
inlineprotected

Definition at line 883 of file IdentifierTable.h.

Member Function Documentation

◆ getKind()

ExtraKind clang::detail::DeclarationNameExtra::getKind ( ) const
inlineprotected

Return the corresponding ExtraKind.

Definition at line 887 of file IdentifierTable.h.

◆ getNumArgs()

unsigned clang::detail::DeclarationNameExtra::getNumArgs ( ) const
inlineprotected

Return the number of arguments in an ObjC selector.

Only valid when this is indeed an ObjCMultiArgSelector.

Definition at line 896 of file IdentifierTable.h.

Referenced by clang::Selector::getNumArgs().

Friends And Related Function Documentation

◆ clang::DeclarationName

friend class clang::DeclarationName
friend

Definition at line 854 of file IdentifierTable.h.

◆ clang::DeclarationNameTable

friend class clang::DeclarationNameTable
friend

Definition at line 855 of file IdentifierTable.h.

Member Data Documentation

◆ ExtraKindOrNumArgs

unsigned clang::detail::DeclarationNameExtra::ExtraKindOrNumArgs
protected

ExtraKindOrNumArgs has one of the following meaning:

Definition at line 880 of file IdentifierTable.h.


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