clang 20.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 ()=default | |
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. | |
llvm::StringRef | getName (unsigned ID) const |
Return the identifier name for the specified builtin, e.g. | |
const char * | getTypeString (unsigned ID) const |
Get the type 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 builtin ID belongs to AuxTarget. | |
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 85 of file Builtins.h.
|
default |
Determines whether a declaration of this builtin should be recognized even if the type doesn't match the specified signature.
Definition at line 202 of file Builtins.h.
References hasCustomTypechecking().
Referenced by clang::Sema::ActOnFunctionDeclarator(), and clang::Sema::LazilyCreateBuiltin().
Returns true if this is a builtin that can be redeclared.
Returns true for non-builtins.
Definition at line 242 of file Builtins.cpp.
References clang::Builtin::NotBuiltin.
Referenced by clang::ASTContext::canBuiltinBeRedeclared().
Return real builtin ID (i.e.
ID it would have during compilation for AuxTarget).
Definition at line 268 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 222 of file Builtins.h.
References clang::HeaderDesc::getName(), and clang::Builtin::Info::Header.
Referenced by emitReplacement(), and clang::Sema::LazilyCreateBuiltin().
|
inline |
Return the identifier name for the specified builtin, e.g.
"__builtin_abs".
Definition at line 103 of file Builtins.h.
References clang::Builtin::Info::Name.
Referenced by clang::Sema::BuildBuiltinCallExpr(), emitReplacement(), clang::CodeGen::CodeGenModule::getBuiltinLibFunction(), clang::ento::CheckerContext::isCLibraryFunction(), and clang::Sema::LazilyCreateBuiltin().
|
inline |
Definition at line 255 of file Builtins.h.
References clang::Builtin::Info::Features.
Referenced by clang::checkArmStreamingBuiltin().
Definition at line 166 of file Builtins.cpp.
|
inline |
Get the type descriptor string for the specified builtin.
Definition at line 106 of file Builtins.h.
References clang::Builtin::Info::Type.
Referenced by clang::ASTContext::GetBuiltinType().
Determines whether this builtin has custom typechecking.
Definition at line 196 of file Builtins.h.
Referenced by allowTypeMismatch(), clang::Sema::BuildResolvedCallExpr(), clang::ASTContext::canBuiltinBeRedeclared(), and clang::Sema::ConvertArgumentsForCall().
Determines whether this builtin has a result or any arguments which are pointer types.
Definition at line 209 of file Builtins.h.
Referenced by rewriteBuiltinFunctionDecl().
Return true if this builtin has a result or any arguments which are reference types.
Definition at line 215 of file Builtins.h.
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 134 of file Builtins.cpp.
References BuiltinInfo, builtinIsSupported(), clang::IdentifierTable::end(), clang::IdentifierTable::find(), clang::Builtin::FirstTSBuiltin, clang::IdentifierTable::get(), 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 55 of file Builtins.cpp.
References clang::TargetInfo::getTargetBuiltins().
Return true if builtin ID belongs to AuxTarget.
Definition at line 262 of file Builtins.h.
References clang::Builtin::FirstTSBuiltin.
Referenced by clang::Sema::AddKnownFunctionAttributes().
|
static |
Returns true if this is a libc/libm function without the '__builtin_' prefix.
Definition at line 63 of file Builtins.cpp.
References BuiltinInfo, clang::Builtin::FirstTSBuiltin, and clang::Builtin::NotBuiltin.
Referenced by getAllNoBuiltinFuncValues(), and handleNoBuiltinAttr().
Return true if this function has no side effects and doesn't read memory.
Definition at line 122 of file Builtins.h.
Referenced by clang::Sema::AddKnownFunctionAttributes().
Return true if this function can be constant evaluated by Clang frontend.
Definition at line 279 of file Builtins.h.
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 247 of file Builtins.h.
Referenced by clang::Sema::AddKnownFunctionAttributes(), and emitLibraryCall().
Definition at line 251 of file Builtins.h.
Referenced by clang::Sema::AddKnownFunctionAttributes().
Determines whether this builtin can have its address taken with no special action required.
Definition at line 188 of file Builtins.h.
References isInStdNamespace(), and isPredefinedLibFunction().
Referenced by clang::Sema::BuildDeclarationNameExpr(), and clang::Sema::FixOverloadedFunctionReference().
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 167 of file Builtins.h.
Referenced by clang::Sema::LazilyCreateBuiltin().
Returns true if this is an immediate (consteval) function.
Definition at line 284 of file Builtins.h.
Referenced by clang::Sema::BuildResolvedCallExpr(), and clang::Sema::CreateBuiltin().
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 182 of file Builtins.h.
Referenced by clang::Sema::ActOnFunctionDeclarator(), clang::Sema::CheckPlaceholderExpr(), 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 149 of file Builtins.h.
Referenced by clang::CodeGen::CodeGenModule::getBuiltinLibFunction().
Return true if we know this builtin never returns.
Definition at line 132 of file Builtins.h.
Referenced by clang::ASTContext::GetBuiltinType().
Return true if we know this builtin never throws an exception.
Definition at line 127 of file Builtins.h.
Referenced by clang::Sema::AddKnownFunctionAttributes(), and clang::ASTContext::GetBuiltinType().
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 160 of file Builtins.h.
Referenced by clang::Sema::ActOnStartOfFunctionDef(), EmitDirectCallee(), clang::FunctionDecl::getBuiltinID(), isDirectlyAddressable(), clang::Sema::LazilyCreateBuiltin(), clang::Sema::LookupBuiltin(), and clang::Sema::MergeFunctionDecl().
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 174 of file Builtins.h.
Referenced by clang::Sema::ActOnStartOfFunctionDef().
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 205 of file Builtins.cpp.
Referenced by clang::Sema::AddKnownFunctionAttributes().
Return true if this function has no side effects.
Definition at line 116 of file Builtins.h.
Referenced by clang::Sema::AddKnownFunctionAttributes().
Return true if we know this builtin can return twice.
Definition at line 137 of file Builtins.h.
Referenced by clang::Sema::AddKnownFunctionAttributes().
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 210 of file Builtins.cpp.
Referenced by clang::Sema::AddKnownFunctionAttributes().
Return true if this function is a target-specific builtin.
Definition at line 111 of file Builtins.h.
References clang::Builtin::FirstTSBuiltin.
Referenced by clang::Sema::AddKnownFunctionAttributes().
Returns true if this builtin does not perform the side-effects of its arguments.
Definition at line 143 of file Builtins.h.
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 215 of file Builtins.cpp.
Referenced by clang::Sema::AddKnownFunctionAttributes().