15#ifndef LLVM_CLANG_BASIC_BUILTINS_H
16#define LLVM_CLANG_BASIC_BUILTINS_H
18#include "llvm/ADT/ArrayRef.h"
19#include "llvm/ADT/StringMap.h"
20#include "llvm/ADT/StringRef.h"
21#include "llvm/ADT/StringTable.h"
55#define HEADER(ID, NAME) ID,
56#include "clang/Basic/BuiltinHeaders.def"
69#define GET_BUILTIN_ENUMERATORS
70#include "clang/Basic/Builtins.inc"
71#undef GET_BUILTIN_ENUMERATORS
82 llvm::StringTable::Offset
Name = {};
83 llvm::StringTable::Offset
Type = {};
107static constexpr std::array<Info, N>
MakeInfos(std::array<Info, N> Infos) {
111 for (
Info &I : Infos) {
113 NewOffsets.
Name = Offset;
114 Offset += I.Offsets.Name.value();
115 NewOffsets.
Type = Offset;
116 Offset += I.Offsets.Type.value();
118 Offset += I.Offsets.Attributes.value();
120 Offset += I.Offsets.Features.value();
121 I.Offsets = NewOffsets;
146#define CLANG_BUILTIN_DETAIL_STR_TABLE(S) \
147 _Pragma("clang diagnostic push") \
148 _Pragma("clang diagnostic ignored \"-Woverlength-strings\"") \
149 S _Pragma("clang diagnostic pop")
151#define CLANG_BUILTIN_DETAIL_STR_TABLE(S) S
158#define CLANG_BUILTIN_STR_TABLE_START CLANG_BUILTIN_DETAIL_STR_TABLE("\0")
164#define CLANG_BUILTIN_STR_TABLE(ID, TYPE, ATTRS) \
165 CLANG_BUILTIN_DETAIL_STR_TABLE(#ID "\0" TYPE "\0" ATTRS "\0"
"\0")
170#define CLANG_TARGET_BUILTIN_STR_TABLE(ID, TYPE, ATTRS, FEATURE) \
171 CLANG_BUILTIN_DETAIL_STR_TABLE(#ID "\0" TYPE "\0" ATTRS "\0" FEATURE "\0")
177#define CLANG_TARGET_HEADER_BUILTIN_STR_TABLE(ID, TYPE, ATTRS, HEADER, LANGS, \
179 CLANG_BUILTIN_DETAIL_STR_TABLE(#ID "\0" TYPE "\0" ATTRS "\0" FEATURE "\0")
183#define CLANG_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS) \
184 Builtin::Info::StrOffsets { \
185 sizeof(#ID), sizeof(TYPE), sizeof(ATTRS), sizeof("") \
190#define CLANG_TARGET_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS, FEATURE) \
191 Builtin::Info::StrOffsets { \
192 sizeof(#ID), sizeof(TYPE), sizeof(ATTRS), sizeof(FEATURE) \
203#define CLANG_BUILTIN_ENTRY(ID, TYPE, ATTRS) \
204 Builtin::Info{CLANG_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS), \
205 HeaderDesc::NO_HEADER, ALL_LANGUAGES},
206#define CLANG_LANGBUILTIN_ENTRY(ID, TYPE, ATTRS, LANG) \
207 Builtin::Info{CLANG_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS), \
208 HeaderDesc::NO_HEADER, LANG},
209#define CLANG_LIBBUILTIN_ENTRY(ID, TYPE, ATTRS, HEADER, LANG) \
210 Builtin::Info{CLANG_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS), \
211 HeaderDesc::HEADER, LANG},
212#define CLANG_TARGET_BUILTIN_ENTRY(ID, TYPE, ATTRS, FEATURE) \
214 CLANG_TARGET_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS, FEATURE), \
215 HeaderDesc::NO_HEADER, ALL_LANGUAGES},
216#define CLANG_TARGET_HEADER_BUILTIN_ENTRY(ID, TYPE, ATTRS, HEADER, LANG, \
219 CLANG_TARGET_BUILTIN_DETAIL_STR_OFFSETS(ID, TYPE, ATTRS, FEATURE), \
220 HeaderDesc::HEADER, LANG},
234 unsigned NumTargetBuiltins = 0;
235 unsigned NumAuxTargetBuiltins = 0;
382 bool isPrintfLike(
unsigned ID,
unsigned &FormatIdx,
bool &HasVAListArg);
387 bool isScanfLike(
unsigned ID,
unsigned &FormatIdx,
bool &HasVAListArg);
441 std::pair<const InfosShard &, const Info &>
442 getShardAndInfo(
unsigned ID)
const;
444 const Info &getInfo(
unsigned ID)
const {
return getShardAndInfo(
ID).second; }
447 bool isLike(
unsigned ID,
unsigned &FormatIdx,
bool &HasVAListArg,
448 const char *Fmt)
const;
456 llvm::StringRef RequiredFatures,
457 const llvm::StringMap<bool> &TargetFetureMap);
463#define BuiltinTemplate(BTName) BTK##BTName,
464#include "clang/Basic/BuiltinTemplates.inc"
llvm::MachO::Target Target
Holds information about both target-independent and target-specific builtins, allowing easy queries b...
bool isUnevaluated(unsigned ID) const
Returns true if this builtin does not perform the side-effects of its arguments.
std::string getQuotedName(unsigned ID) const
Return the identifier name for the specified builtin inside single quotes for a diagnostic,...
bool hasReferenceArgsOrResult(unsigned ID) const
Return true if this builtin has a result or any arguments which are reference types.
bool performsCallback(unsigned ID, llvm::SmallVectorImpl< int > &Encoding) const
Determine whether this builtin has callback behavior (see llvm::AbstractCallSites for details).
bool isAuxBuiltinID(unsigned ID) const
Return true if the builtin ID belongs exclusively to the AuxTarget, and false if it belongs to both p...
bool isLibFunction(unsigned ID) const
Return true if this is a builtin for a libc/libm function, with a "__builtin_" prefix (e....
const char * getHeaderName(unsigned ID) const
If this is a library function that comes from a specific header, retrieve that header name.
bool hasPtrArgsOrResult(unsigned ID) const
Determines whether this builtin has a result or any arguments which are pointer types.
bool isReturnsTwice(unsigned ID) const
Return true if we know this builtin can return twice.
bool isImmediate(unsigned ID) const
Returns true if this is an immediate (consteval) function.
bool isConstWithoutErrnoAndExceptions(unsigned ID) const
Return true if this function has no side effects and doesn't read memory, except for possibly errno o...
static bool isBuiltinFunc(llvm::StringRef Name)
Returns true if this is a libc/libm function without the '__builtin_' prefix.
unsigned getRequiredVectorWidth(unsigned ID) const
unsigned getAuxBuiltinID(unsigned ID) const
Return real builtin ID (i.e.
bool allowTypeMismatch(unsigned ID) const
Determines whether a declaration of this builtin should be recognized even if the type doesn't match ...
bool isTSBuiltin(unsigned ID) const
Return true if this function is a target-specific builtin.
bool hasCustomTypechecking(unsigned ID) const
Determines whether this builtin has custom typechecking.
std::string getName(unsigned ID) const
Return the identifier name for the specified builtin, e.g.
bool isHeaderDependentFunction(unsigned ID) const
Returns true if this builtin requires appropriate header in other compilers.
void initializeBuiltins(IdentifierTable &Table, const LangOptions &LangOpts)
Mark the identifiers for all the builtins with their appropriate builtin ID # and mark any non-portab...
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...
bool isInStdNamespace(unsigned ID) const
Determines whether this builtin is a C++ standard library function that lives in (possibly-versioned)...
bool canBeRedeclared(unsigned ID) const
Returns true if this is a builtin that can be redeclared.
const char * getAttributesString(unsigned ID) const
Get the attributes descriptor string for the specified builtin.
bool isConstantEvaluated(unsigned ID) const
Return true if this function can be constant evaluated by Clang frontend.
bool isPredefinedLibFunction(unsigned ID) const
Determines whether this builtin is a predefined libc/libm function, such as "malloc",...
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 th...
const char * getTypeString(unsigned ID) const
Get the type descriptor string for the specified builtin.
bool isNoReturn(unsigned ID) const
Return true if we know this builtin never returns.
const char * getRequiredFeatures(unsigned ID) const
bool isDirectlyAddressable(unsigned ID) const
Determines whether this builtin can have its address taken with no special action required.
bool isConstWithoutExceptions(unsigned ID) const
bool isPredefinedRuntimeFunction(unsigned ID) const
Determines whether this builtin is a predefined compiler-rt/libgcc function, such as "__clear_cache",...
bool isPure(unsigned ID) const
Return true if this function has no side effects.
bool isNoThrow(unsigned ID) const
Return true if we know this builtin never throws an exception.
void InitializeTarget(const TargetInfo &Target, const TargetInfo *AuxTarget)
Perform target-specific initialization.
bool isConst(unsigned ID) const
Return true if this function has no side effects and doesn't read memory.
Implements an efficient mapping from strings to IdentifierInfo nodes.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Exposes information about the current target.
The base class of the type hierarchy.
bool evaluateRequiredTargetFeatures(llvm::StringRef RequiredFatures, const llvm::StringMap< bool > &TargetFetureMap)
Returns true if the required target features of a builtin function are enabled.
static constexpr std::array< Info, N > MakeInfos(std::array< Info, N > Infos)
A constexpr function to construct an infos array from X-macros.
The JSON file list parser is used to communicate input to InstallAPI.
BuiltinTemplateKind
Kinds of BuiltinTemplateDecl.
llvm::StringTable::Offset Name
llvm::StringTable::Offset Features
llvm::StringTable::Offset Attributes
llvm::StringTable::Offset Type
The info used to represent each builtin.
struct clang::Builtin::Info::StrOffsets Offsets
std::string getName(const InfosShard &Shard) const
Get the name for the builtin represented by this Info object.
A shard of a target's builtins string table and info.
const llvm::StringTable * Strings
llvm::StringLiteral NamePrefix
llvm::ArrayRef< Info > Infos