clang
6.0.0
|
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... | |
This table allows us to fully hide how we implement multi-keyword caching.
Definition at line 777 of file IdentifierTable.h.
SelectorTable::SelectorTable | ( | ) |
Definition at line 671 of file IdentifierTable.cpp.
|
delete |
SelectorTable::~SelectorTable | ( | ) |
Definition at line 675 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 624 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 632 of file IdentifierTable.cpp.
Referenced by addContextSensitiveTypeNullability(), LookupMemberExpr(), and LookupMethodInReceiverType().
|
inline |
Definition at line 797 of file IdentifierTable.h.
Referenced by cleanupDeallocOrFinalize(), clang::CodeGen::CodeGenFunction::EmitBlockCopyAndAutorelease(), GCRewriteFinalize(), clang::NSAPI::getNSArraySelector(), clang::NSAPI::getNSDictionarySelector(), LookupMemberExpr(), LookupMethodInReceiverType(), and clang::serialization::reader::ASTSelectorLookupTrait::ReadKey().
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 645 of file IdentifierTable.cpp.
References getSelectorTableImpl(), and clang::MultiKeywordSelector::Profile().
Referenced by CheckKeyForObjCARCConversion(), clang::CodeGen::CodeGenFunction::EmitObjCMRRAutoreleasePoolPop(), clang::CodeGen::CodeGenFunction::EmitObjCMRRAutoreleasePoolPush(), clang::ento::getKeywordSelector(), clang::NSAPI::getNSArraySelector(), clang::NSAPI::getNSDictionarySelector(), clang::NSAPI::getNSSetSelector(), clang::NSAPI::getNSStringSelector(), clang::GetNullarySelector(), clang::GetUnarySelector(), and clang::ObjCNoReturn::ObjCNoReturn().
size_t SelectorTable::getTotalMemory | ( | ) | const |
Return the total amount of memory allocated for managing selectors.
Definition at line 640 of file IdentifierTable.cpp.
References getSelectorTableImpl().
|
inline |
Definition at line 793 of file IdentifierTable.h.
Referenced by clang::NSAPI::getNSArraySelector(), clang::NSAPI::getNSDictionarySelector(), clang::NSAPI::getNSNumberLiteralSelector(), clang::NSAPI::getNSSetSelector(), clang::NSAPI::getNSStringSelector(), and clang::serialization::reader::ASTSelectorLookupTrait::ReadKey().
|
delete |