clang
7.0.0
|
Holds information about both target-independent and target-specific builtins, allowing easy queries by clients. More...
#include "clang/Basic/Builtins.h"
Public Member Functions | |
Context () | |
void | InitializeTarget (const TargetInfo &Target, const TargetInfo *AuxTarget) |
Perform target-specific initialization. More... | |
void | initializeBuiltins (IdentifierTable &Table, const LangOptions &LangOpts) |
Mark the identifiers for all the builtins with their appropriate builtin ID # and mark any non-portable builtin identifiers as such. More... | |
const char * | getName (unsigned ID) const |
Return the identifier name for the specified builtin, e.g. More... | |
const char * | getTypeString (unsigned ID) const |
Get the type descriptor string for the specified builtin. More... | |
bool | isTSBuiltin (unsigned ID) const |
Return true if this function is a target-specific builtin. More... | |
bool | isPure (unsigned ID) const |
Return true if this function has no side effects. More... | |
bool | isConst (unsigned ID) const |
Return true if this function has no side effects and doesn't read memory. More... | |
bool | isNoThrow (unsigned ID) const |
Return true if we know this builtin never throws an exception. More... | |
bool | isNoReturn (unsigned ID) const |
Return true if we know this builtin never returns. More... | |
bool | isReturnsTwice (unsigned ID) const |
Return true if we know this builtin can return twice. More... | |
bool | isUnevaluated (unsigned ID) const |
Returns true if this builtin does not perform the side-effects of its arguments. More... | |
bool | isLibFunction (unsigned ID) const |
Return true if this is a builtin for a libc/libm function, with a "__builtin_" prefix (e.g. More... | |
bool | isPredefinedLibFunction (unsigned ID) const |
Determines whether this builtin is a predefined libc/libm function, such as "malloc", where we know the signature a priori. More... | |
bool | isHeaderDependentFunction (unsigned ID) const |
Returns true if this builtin requires appropriate header in other compilers. More... | |
bool | isPredefinedRuntimeFunction (unsigned ID) const |
Determines whether this builtin is a predefined compiler-rt/libgcc function, such as "__clear_cache", where we know the signature a priori. More... | |
bool | hasCustomTypechecking (unsigned ID) const |
Determines whether this builtin has custom typechecking. More... | |
bool | hasPtrArgsOrResult (unsigned ID) const |
Determines whether this builtin has a result or any arguments which are pointer types. More... | |
bool | hasReferenceArgsOrResult (unsigned ID) const |
Return true if this builtin has a result or any arguments which are reference types. More... | |
void | forgetBuiltin (unsigned ID, IdentifierTable &Table) |
Completely forget that the given ID was ever considered a builtin, e.g., because the user provided a conflicting signature. More... | |
const char * | getHeaderName (unsigned ID) const |
If this is a library function that comes from a specific header, retrieve that header name. More... | |
bool | isPrintfLike (unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) |
Determine whether this builtin is like printf in its formatting rules and, if so, set the index to the format string argument and whether this function as a va_list argument. More... | |
bool | isScanfLike (unsigned ID, unsigned &FormatIdx, bool &HasVAListArg) |
Determine whether this builtin is like scanf in its formatting rules and, if so, set the index to the format string argument and whether this function as a va_list argument. More... | |
bool | isConstWithoutErrno (unsigned ID) const |
Return true if this function has no side effects and doesn't read memory, except for possibly errno. More... | |
const char * | getRequiredFeatures (unsigned ID) const |
unsigned | getRequiredVectorWidth (unsigned ID) const |
bool | isAuxBuiltinID (unsigned ID) const |
Return true if builtin ID belongs to AuxTarget. More... | |
unsigned | getAuxBuiltinID (unsigned ID) const |
Return real builtin ID (i.e. More... | |
bool | canBeRedeclared (unsigned ID) const |
Returns true if this is a builtin that can be redeclared. More... | |
Static Public Member Functions | |
static bool | isBuiltinFunc (const char *Name) |
Returns true if this is a libc/libm function without the '__builtin_' prefix. More... | |
Holds information about both target-independent and target-specific builtins, allowing easy queries by clients.
Builtins from an optional auxiliary target are stored in AuxTSRecords. Their IDs are shifted up by TSRecords.size() and need to be translated back with getAuxBuiltinID() before use.
Definition at line 68 of file Builtins.h.
|
inline |
Definition at line 73 of file Builtins.h.
References MultiVersioning::Target.
bool Builtin::Context::canBeRedeclared | ( | unsigned | ID | ) | const |
Returns true if this is a builtin that can be redeclared.
Returns true for non-builtins.
Definition at line 159 of file Builtins.cpp.
References hasCustomTypechecking(), hasReferenceArgsOrResult(), and clang::Builtin::NotBuiltin.
Referenced by clang::ASTContext::canBuiltinBeRedeclared().
void Builtin::Context::forgetBuiltin | ( | unsigned | ID, |
IdentifierTable & | Table | ||
) |
Completely forget that the given ID was ever considered a builtin, e.g., because the user provided a conflicting signature.
Definition at line 106 of file Builtins.cpp.
References clang::IdentifierTable::get().
|
inline |
Return real builtin ID (i.e.
ID it would have during compilation for AuxTarget).
Definition at line 218 of file Builtins.h.
References BuiltinInfo, and clang::Builtin::Info::Name.
|
inline |
If this is a library function that comes from a specific header, retrieve that header name.
Definition at line 183 of file Builtins.h.
|
inline |
Return the identifier name for the specified builtin, e.g.
"__builtin_abs".
Definition at line 86 of file Builtins.h.
|
inline |
Definition at line 205 of file Builtins.h.
unsigned Builtin::Context::getRequiredVectorWidth | ( | unsigned | ID | ) | const |
Definition at line 110 of file Builtins.cpp.
|
inline |
Get the type descriptor string for the specified builtin.
Definition at line 91 of file Builtins.h.
Referenced by clang::ASTContext::GetBuiltinType().
|
inline |
Determines whether this builtin has custom typechecking.
Definition at line 160 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Referenced by canBeRedeclared().
|
inline |
Determines whether this builtin has a result or any arguments which are pointer types.
Definition at line 166 of file Builtins.h.
|
inline |
Return true if this builtin has a result or any arguments which are reference types.
Definition at line 172 of file Builtins.h.
Referenced by canBeRedeclared().
void Builtin::Context::initializeBuiltins | ( | IdentifierTable & | Table, |
const LangOptions & | LangOpts | ||
) |
Mark the identifiers for all the builtins with their appropriate builtin ID # and mark any non-portable builtin identifiers as such.
initializeBuiltins - Mark the identifiers for all the builtins with their appropriate builtin ID # and mark any non-portable builtin identifiers as such.
Definition at line 87 of file Builtins.cpp.
References clang::Builtin::FirstTSBuiltin, clang::IdentifierTable::get(), and clang::Builtin::NotBuiltin.
Referenced by clang::FrontendAction::BeginSourceFile().
void Builtin::Context::InitializeTarget | ( | const TargetInfo & | Target, |
const TargetInfo * | AuxTarget | ||
) |
Perform target-specific initialization.
AuxTarget | Target info to incorporate builtins from. May be nullptr. |
Definition at line 43 of file Builtins.cpp.
References clang::TargetInfo::getTargetBuiltins().
Referenced by clang::Preprocessor::Initialize().
|
inline |
Return true if builtin ID belongs to AuxTarget.
Definition at line 212 of file Builtins.h.
References clang::Builtin::FirstTSBuiltin.
|
static |
Returns true if this is a libc/libm function without the '__builtin_' prefix.
Definition at line 51 of file Builtins.cpp.
Referenced by getAllNoBuiltinFuncValues().
|
inline |
Return true if this function has no side effects and doesn't read memory.
Definition at line 107 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Return true if this function has no side effects and doesn't read memory, except for possibly errno.
Such functions can be const when the MathErrno lang option is disabled.
Definition at line 201 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Returns true if this builtin requires appropriate header in other compilers.
In Clang it will work even without including it, but we can emit a warning about missing header.
Definition at line 148 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Return true if this is a builtin for a libc/libm function, with a "__builtin_" prefix (e.g.
__builtin_abs).
Definition at line 134 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Return true if we know this builtin never returns.
Definition at line 117 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Referenced by clang::ASTContext::GetBuiltinType().
|
inline |
Return true if we know this builtin never throws an exception.
Definition at line 112 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Referenced by clang::ASTContext::GetBuiltinType().
|
inline |
Determines whether this builtin is a predefined libc/libm function, such as "malloc", where we know the signature a priori.
Definition at line 141 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Referenced by LookupBuiltin().
|
inline |
Determines whether this builtin is a predefined compiler-rt/libgcc function, such as "__clear_cache", where we know the signature a priori.
Definition at line 155 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Determine whether this builtin is like printf in its formatting rules and, if so, set the index to the format string argument and whether this function as a va_list argument.
Definition at line 149 of file Builtins.cpp.
|
inline |
Return true if this function has no side effects.
Definition at line 101 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Return true if we know this builtin can return twice.
Definition at line 122 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Determine whether this builtin is like scanf in its formatting rules and, if so, set the index to the format string argument and whether this function as a va_list argument.
Definition at line 154 of file Builtins.cpp.
|
inline |
Return true if this function is a target-specific builtin.
Definition at line 96 of file Builtins.h.
References clang::Builtin::FirstTSBuiltin.
|
inline |
Returns true if this builtin does not perform the side-effects of its arguments.
Definition at line 128 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Referenced by clang::CallExpr::isUnevaluatedBuiltinCall().