clang 22.0.0git
|
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. | |
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. | |
std::string | getName (unsigned ID) const |
Return the identifier name for the specified builtin, e.g. | |
std::string | getQuotedName (unsigned ID) const |
Return the identifier name for the specified builtin inside single quotes for a diagnostic, e.g. | |
const char * | getTypeString (unsigned ID) const |
Get the type descriptor string for the specified builtin. | |
const char * | getAttributesString (unsigned ID) const |
Get the attributes descriptor string for the specified builtin. | |
bool | isTSBuiltin (unsigned ID) const |
Return true if this function is a target-specific builtin. | |
bool | isPure (unsigned ID) const |
Return true if this function has no side effects. | |
bool | isConst (unsigned ID) const |
Return true if this function has no side effects and doesn't read memory. | |
bool | isNoThrow (unsigned ID) const |
Return true if we know this builtin never throws an exception. | |
bool | isNoReturn (unsigned ID) const |
Return true if we know this builtin never returns. | |
bool | isReturnsTwice (unsigned ID) const |
Return true if we know this builtin can return twice. | |
bool | isUnevaluated (unsigned ID) const |
Returns true if this builtin does not perform the side-effects of its arguments. | |
bool | isLibFunction (unsigned ID) const |
Return true if this is a builtin for a libc/libm function, with a "__builtin_" prefix (e.g. | |
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. | |
bool | isHeaderDependentFunction (unsigned ID) const |
Returns true if this builtin requires appropriate header in other compilers. | |
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. | |
bool | isInStdNamespace (unsigned ID) const |
Determines whether this builtin is a C++ standard library function that lives in (possibly-versioned) namespace std, possibly a template specialization, where the signature is determined by the standard library declaration. | |
bool | isDirectlyAddressable (unsigned ID) const |
Determines whether this builtin can have its address taken with no special action required. | |
bool | hasCustomTypechecking (unsigned ID) const |
Determines whether this builtin has custom typechecking. | |
bool | allowTypeMismatch (unsigned ID) const |
Determines whether a declaration of this builtin should be recognized even if the type doesn't match the specified signature. | |
bool | hasPtrArgsOrResult (unsigned ID) const |
Determines whether this builtin has a result or any arguments which are pointer types. | |
bool | hasReferenceArgsOrResult (unsigned ID) const |
Return true if this builtin has a result or any arguments which are reference types. | |
const char * | getHeaderName (unsigned ID) const |
If this is a library function that comes from a specific header, retrieve that header name. | |
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. | |
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. | |
bool | performsCallback (unsigned ID, llvm::SmallVectorImpl< int > &Encoding) const |
Determine whether this builtin has callback behavior (see llvm::AbstractCallSites for details). | |
bool | isConstWithoutErrnoAndExceptions (unsigned ID) const |
Return true if this function has no side effects and doesn't read memory, except for possibly errno or raising FP exceptions. | |
bool | isConstWithoutExceptions (unsigned ID) const |
const char * | getRequiredFeatures (unsigned ID) const |
unsigned | getRequiredVectorWidth (unsigned ID) const |
bool | isAuxBuiltinID (unsigned ID) const |
Return true if the builtin ID belongs exclusively to the AuxTarget, and false if it belongs to both primary and aux target, or neither. | |
unsigned | getAuxBuiltinID (unsigned ID) const |
Return real builtin ID (i.e. | |
bool | canBeRedeclared (unsigned ID) const |
Returns true if this is a builtin that can be redeclared. | |
bool | isConstantEvaluated (unsigned ID) const |
Return true if this function can be constant evaluated by Clang frontend. | |
bool | isImmediate (unsigned ID) const |
Returns true if this is an immediate (consteval) function. |
Static Public Member Functions | |
static bool | isBuiltinFunc (llvm::StringRef Name) |
Returns true if this is a libc/libm function without the '__builtin_' prefix. |
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 228 of file Builtins.h.
Builtin::Context::Context | ( | ) |
Definition at line 107 of file Builtins.cpp.
References BuiltinInfos, and BuiltinStrings.
Determines whether a declaration of this builtin should be recognized even if the type doesn't match the specified signature.
Definition at line 355 of file Builtins.h.
References getAttributesString(), and hasCustomTypechecking().
Returns true if this is a builtin that can be redeclared.
Returns true for non-builtins.
Definition at line 323 of file Builtins.cpp.
References hasCustomTypechecking(), hasReferenceArgsOrResult(), isInStdNamespace(), and clang::Builtin::NotBuiltin.
const char * Builtin::Context::getAttributesString | ( | unsigned | ID | ) | const |
Get the attributes descriptor string for the specified builtin.
Definition at line 97 of file Builtins.cpp.
Referenced by allowTypeMismatch(), getRequiredVectorWidth(), hasCustomTypechecking(), isConst(), isConstantEvaluated(), isConstWithoutErrnoAndExceptions(), isConstWithoutExceptions(), isHeaderDependentFunction(), isImmediate(), isInStdNamespace(), isLibFunction(), isNoReturn(), isNoThrow(), isPredefinedLibFunction(), isPredefinedRuntimeFunction(), isPure(), isReturnsTwice(), isUnevaluated(), and performsCallback().
Return real builtin ID (i.e.
ID it would have during compilation for AuxTarget).
Definition at line 420 of file Builtins.h.
Referenced by clang::SemaARM::SmeAliasValid(), and clang::SemaARM::SveAliasValid().
|
inline |
If this is a library function that comes from a specific header, retrieve that header name.
Definition at line 375 of file Builtins.h.
Referenced by emitReplacement(), and getHeaderName().
std::string Builtin::Context::getName | ( | unsigned | ID | ) | const |
Return the identifier name for the specified builtin, e.g.
"__builtin_abs".
Definition at line 80 of file Builtins.cpp.
Referenced by clang::CodeGen::CodeGenFunction::EmitBuiltinExpr(), emitReplacement(), and clang::ento::CheckerContext::isCLibraryFunction().
std::string Builtin::Context::getQuotedName | ( | unsigned | ID | ) | const |
Return the identifier name for the specified builtin inside single quotes for a diagnostic, e.g.
"'__builtin_abs'".
Definition at line 85 of file Builtins.cpp.
Referenced by BuiltinMaskedLoad(), BuiltinMaskedStore(), clang::interp::diagnoseNonConstexprBuiltin(), clang::interp::interp__builtin_memchr(), and clang::interp::interp__builtin_memcmp().
const char * Builtin::Context::getRequiredFeatures | ( | unsigned | ID | ) | const |
Definition at line 102 of file Builtins.cpp.
Referenced by clang::checkArmStreamingBuiltin().
Definition at line 247 of file Builtins.cpp.
References getAttributesString().
const char * Builtin::Context::getTypeString | ( | unsigned | ID | ) | const |
Get the type descriptor string for the specified builtin.
Definition at line 92 of file Builtins.cpp.
Referenced by hasPtrArgsOrResult(), and hasReferenceArgsOrResult().
Determines whether this builtin has custom typechecking.
Definition at line 349 of file Builtins.h.
References getAttributesString().
Referenced by allowTypeMismatch(), and canBeRedeclared().
Determines whether this builtin has a result or any arguments which are pointer types.
Definition at line 362 of file Builtins.h.
References getTypeString().
Return true if this builtin has a result or any arguments which are reference types.
Definition at line 368 of file Builtins.h.
References getTypeString().
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 203 of file Builtins.cpp.
References builtinIsSupported(), clang::IdentifierTable::end(), clang::IdentifierTable::find(), clang::Builtin::FirstTSBuiltin, clang::IdentifierTable::get(), isInStdNamespace(), isPredefinedLibFunction(), clang::LangOptions::NoBuiltinFuncs, clang::Builtin::NotBuiltin, and clang::IdentifierInfo::setBuiltinID().
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 109 of file Builtins.cpp.
References clang::TargetInfo::getTargetBuiltins(), and clang::Target.
Return true if the builtin ID belongs exclusively to the AuxTarget, and false if it belongs to both primary and aux target, or neither.
Definition at line 414 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 123 of file Builtins.cpp.
References BuiltinInfos, and BuiltinStrings.
Referenced by getAllNoBuiltinFuncValues(), and handleNoBuiltinAttr().
Return true if this function has no side effects and doesn't read memory.
Definition at line 275 of file Builtins.h.
References getAttributesString().
Referenced by clang::CodeGen::CodeGenFunction::EmitBuiltinExpr().
Return true if this function can be constant evaluated by Clang frontend.
Definition at line 431 of file Builtins.h.
References getAttributesString().
Referenced by clang::interp::InterpretBuiltin().
Return true if this function has no side effects and doesn't read memory, except for possibly errno or raising FP exceptions.
Such functions can be const when the MathErrno lang option and FP exceptions are disabled.
Definition at line 400 of file Builtins.h.
References getAttributesString().
Referenced by clang::CodeGen::CodeGenFunction::EmitBuiltinExpr(), and emitLibraryCall().
Definition at line 404 of file Builtins.h.
References getAttributesString().
Referenced by clang::CodeGen::CodeGenFunction::EmitBuiltinExpr().
Determines whether this builtin can have its address taken with no special action required.
Definition at line 341 of file Builtins.h.
References isInStdNamespace(), and isPredefinedLibFunction().
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 320 of file Builtins.h.
References getAttributesString().
Returns true if this is an immediate (consteval) function.
Definition at line 436 of file Builtins.h.
References getAttributesString().
Determines whether this builtin is a C++ standard library function that lives in (possibly-versioned) namespace std, possibly a template specialization, where the signature is determined by the standard library declaration.
Definition at line 335 of file Builtins.h.
References getAttributesString().
Referenced by canBeRedeclared(), initializeBuiltins(), and isDirectlyAddressable().
Return true if this is a builtin for a libc/libm function, with a "__builtin_" prefix (e.g.
__builtin_abs).
Definition at line 302 of file Builtins.h.
References getAttributesString().
Return true if we know this builtin never returns.
Definition at line 285 of file Builtins.h.
References getAttributesString().
Return true if we know this builtin never throws an exception.
Definition at line 280 of file Builtins.h.
References getAttributesString().
Determines whether this builtin is a predefined libc/libm function, such as "malloc", where we know the signature a priori.
In C, such functions behave as if they are predeclared, possibly with a warning on first use. In Objective-C and C++, they do not, but they are recognized as builtins once we see a declaration.
Definition at line 313 of file Builtins.h.
References getAttributesString().
Referenced by EmitDirectCallee(), initializeBuiltins(), and isDirectlyAddressable().
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 327 of file Builtins.h.
References getAttributesString().
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 286 of file Builtins.cpp.
Return true if this function has no side effects.
Definition at line 269 of file Builtins.h.
References getAttributesString().
Return true if we know this builtin can return twice.
Definition at line 290 of file Builtins.h.
References getAttributesString().
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 291 of file Builtins.cpp.
Return true if this function is a target-specific builtin.
Definition at line 264 of file Builtins.h.
References clang::Builtin::FirstTSBuiltin.
Returns true if this builtin does not perform the side-effects of its arguments.
Definition at line 296 of file Builtins.h.
References getAttributesString().
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 296 of file Builtins.cpp.
References getAttributesString().