clang
15.0.0git
|
This table allows us to fully hide how we implement multi-keyword caching. More...
#include "clang/Basic/IdentifierTable.h"
Public Member Functions | |
SelectorTable () | |
SelectorTable (const SelectorTable &)=delete | |
SelectorTable & | operator= (const SelectorTable &)=delete |
~SelectorTable () | |
Selector | getSelector (unsigned NumArgs, IdentifierInfo **IIV) |
Can create any sort of selector. More... | |
Selector | getUnarySelector (IdentifierInfo *ID) |
Selector | getNullarySelector (IdentifierInfo *ID) |
size_t | getTotalMemory () const |
Return the total amount of memory allocated for managing selectors. More... | |
Static Public Member Functions | |
static SmallString< 64 > | constructSetterName (StringRef Name) |
Return the default setter name for the given identifier. More... | |
static Selector | constructSetterSelector (IdentifierTable &Idents, SelectorTable &SelTable, const IdentifierInfo *Name) |
Return the default setter selector for the given identifier. More... | |
static std::string | getPropertyNameFromSetterSelector (Selector Sel) |
Return the property name for the given setter selector. More... | |
This table allows us to fully hide how we implement multi-keyword caching.
Definition at line 897 of file IdentifierTable.h.
SelectorTable::SelectorTable | ( | ) |
Definition at line 739 of file IdentifierTable.cpp.
|
delete |
SelectorTable::~SelectorTable | ( | ) |
Definition at line 743 of file IdentifierTable.cpp.
References getSelectorTableImpl().
|
static |
Return the default setter name for the given identifier.
This is "set" + Name
where the initial character of Name
has been capitalized.
Definition at line 686 of file IdentifierTable.cpp.
Referenced by hasDefaultSetterName().
|
static |
Return the default setter selector for the given identifier.
This is "set" + Name
where the initial character of Name
has been capitalized.
Definition at line 694 of file IdentifierTable.cpp.
Referenced by clang::Sema::ActOnClassPropertyRefExpr(), and clang::Sema::HandleExprPropertyRefExpr().
|
inline |
Definition at line 917 of file IdentifierTable.h.
Referenced by clang::Sema::ActOnClassPropertyRefExpr(), clang::Sema::checkObjCBridgeRelatedComponents(), cleanupDeallocOrFinalize(), clang::CodeGen::CodeGenFunction::EmitBlockCopyAndAutorelease(), GCRewriteFinalize(), clang::NSAPI::getNSArraySelector(), clang::NSAPI::getNSDictionarySelector(), clang::Sema::HandleExprPropertyRefExpr(), and clang::serialization::reader::ASTSelectorLookupTrait::ReadKey().
|
static |
Return the property name for the given setter selector.
Definition at line 702 of file IdentifierTable.cpp.
Selector SelectorTable::getSelector | ( | unsigned | NumArgs, |
IdentifierInfo ** | IIV | ||
) |
Can create any sort of selector.
NumArgs
indicates whether this is a no argument selector "foo", a single argument selector "foo:" or multi-argument "foo:bar:".
Definition at line 713 of file IdentifierTable.cpp.
References getSelectorTableImpl().
Referenced by clang::Sema::BuildObjCBoxedExpr(), clang::Sema::CheckObjCForCollectionOperand(), clang::CodeGen::CodeGenFunction::EmitObjCMRRAutoreleasePoolPop(), clang::CodeGen::CodeGenFunction::EmitObjCMRRAutoreleasePoolPush(), clang::getKeywordSelector(), clang::NSAPI::getNSArraySelector(), clang::NSAPI::getNSDictionarySelector(), clang::NSAPI::getNSSetSelector(), clang::NSAPI::getNSStringSelector(), clang::GetNullarySelector(), clang::GetUnarySelector(), clang::ASTImporter::Import(), and clang::serialization::reader::ASTSelectorLookupTrait::ReadKey().
size_t SelectorTable::getTotalMemory | ( | ) | const |
Return the total amount of memory allocated for managing selectors.
Definition at line 708 of file IdentifierTable.cpp.
References getSelectorTableImpl().
|
inline |
Definition at line 913 of file IdentifierTable.h.
Referenced by clang::Sema::BuildObjCBoxedExpr(), clang::Sema::checkObjCBridgeRelatedComponents(), clang::NSAPI::getNSArraySelector(), clang::NSAPI::getNSDictionarySelector(), clang::NSAPI::getNSNumberLiteralSelector(), clang::NSAPI::getNSSetSelector(), clang::NSAPI::getNSStringSelector(), and clang::serialization::reader::ASTSelectorLookupTrait::ReadKey().
|
delete |