clang
9.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 | performsCallback (unsigned ID, llvm::SmallVectorImpl< int > &Encoding) const |
Determine whether this builtin has callback behavior (see llvm::AbstractCallSites for details). 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 67 of file Builtins.h.
|
inline |
Definition at line 72 of file Builtins.h.
References clang::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 189 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 109 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 223 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 182 of file Builtins.h.
Referenced by emitReplacement(), and getHeaderName().
|
inline |
Return the identifier name for the specified builtin, e.g.
"__builtin_abs".
Definition at line 85 of file Builtins.h.
Referenced by emitReplacement().
|
inline |
Definition at line 210 of file Builtins.h.
Referenced by clang::CodeGen::CodeGenFunction::checkTargetFeatures().
unsigned Builtin::Context::getRequiredVectorWidth | ( | unsigned | ID | ) | const |
Definition at line 113 of file Builtins.cpp.
|
inline |
Get the type descriptor string for the specified builtin.
Definition at line 90 of file Builtins.h.
Referenced by clang::ASTContext::GetBuiltinType().
|
inline |
Determines whether this builtin has custom typechecking.
Definition at line 159 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 165 of file Builtins.h.
|
inline |
Return true if this builtin has a result or any arguments which are reference types.
Definition at line 171 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 90 of file Builtins.cpp.
References clang::Builtin::FirstTSBuiltin, clang::IdentifierTable::get(), i, and clang::Builtin::NotBuiltin.
Referenced by clang::FrontendAction::BeginSourceFile(), and clang::createChainedIncludesSource().
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 42 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 217 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 50 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 106 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 206 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 147 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 133 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Return true if we know this builtin never returns.
Definition at line 116 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 111 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 140 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
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 154 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 152 of file Builtins.cpp.
|
inline |
Return true if this function has no side effects.
Definition at line 100 of file Builtins.h.
References clang::Builtin::Info::Attributes.
|
inline |
Return true if we know this builtin can return twice.
Definition at line 121 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 157 of file Builtins.cpp.
|
inline |
Return true if this function is a target-specific builtin.
Definition at line 95 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 127 of file Builtins.h.
References clang::Builtin::Info::Attributes.
Referenced by clang::CallExpr::isUnevaluatedBuiltinCall().
bool Builtin::Context::performsCallback | ( | unsigned | ID, |
llvm::SmallVectorImpl< int > & | Encoding | ||
) | const |
Determine whether this builtin has callback behavior (see llvm::AbstractCallSites for details).
If so, add the index to the callback callee argument and the callback payload arguments.
Definition at line 162 of file Builtins.cpp.