Clang Project

clang_source_code/lib/Basic/Builtins.cpp
1//===--- Builtins.cpp - Builtin function implementation -------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9//  This file implements various things for builtin functions.
10//
11//===----------------------------------------------------------------------===//
12
13#include "clang/Basic/Builtins.h"
14#include "clang/Basic/IdentifierTable.h"
15#include "clang/Basic/LangOptions.h"
16#include "clang/Basic/TargetInfo.h"
17#include "llvm/ADT/StringRef.h"
18using namespace clang;
19
20static const Builtin::Info BuiltinInfo[] = {
21  { "not a builtin function"nullptrnullptrnullptrALL_LANGUAGES,nullptr},
22#define BUILTIN(ID, TYPE, ATTRS)                                               \
23  { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
24#define LANGBUILTIN(ID, TYPE, ATTRS, LANGS)                                    \
25  { #ID, TYPE, ATTRS, nullptr, LANGS, nullptr },
26#define LIBBUILTIN(ID, TYPE, ATTRS, HEADER, LANGS)                             \
27  { #ID, TYPE, ATTRS, HEADER, LANGS, nullptr },
28#include "clang/Basic/Builtins.def"
29};
30
31const Builtin::Info &Builtin::Context::getRecord(unsigned IDconst {
32  if (ID < Builtin::FirstTSBuiltin)
33    return BuiltinInfo[ID];
34   (0) . __assert_fail ("((ID - Builtin..FirstTSBuiltin) < (TSRecords.size() + AuxTSRecords.size())) && \"Invalid builtin ID!\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 36, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(((ID - Builtin::FirstTSBuiltin) <
35 (0) . __assert_fail ("((ID - Builtin..FirstTSBuiltin) < (TSRecords.size() + AuxTSRecords.size())) && \"Invalid builtin ID!\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 36, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">          (TSRecords.size() + AuxTSRecords.size())) &&
36 (0) . __assert_fail ("((ID - Builtin..FirstTSBuiltin) < (TSRecords.size() + AuxTSRecords.size())) && \"Invalid builtin ID!\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 36, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">         "Invalid builtin ID!");
37  if (isAuxBuiltinID(ID))
38    return AuxTSRecords[getAuxBuiltinID(ID) - Builtin::FirstTSBuiltin];
39  return TSRecords[ID - Builtin::FirstTSBuiltin];
40}
41
42void Builtin::Context::InitializeTarget(const TargetInfo &Target,
43                                        const TargetInfo *AuxTarget) {
44   (0) . __assert_fail ("TSRecords.empty() && \"Already initialized target?\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 44, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(TSRecords.empty() && "Already initialized target?");
45  TSRecords = Target.getTargetBuiltins();
46  if (AuxTarget)
47    AuxTSRecords = AuxTarget->getTargetBuiltins();
48}
49
50bool Builtin::Context::isBuiltinFunc(const char *Name) {
51  StringRef FuncName(Name);
52  for (unsigned i = Builtin::NotBuiltin + 1i != Builtin::FirstTSBuiltin; ++i)
53    if (FuncName.equals(BuiltinInfo[i].Name))
54      return strchr(BuiltinInfo[i].Attributes'f') != nullptr;
55
56  return false;
57}
58
59bool Builtin::Context::builtinIsSupported(const Builtin::Info &BuiltinInfo,
60                                          const LangOptions &LangOpts) {
61  bool BuiltinsUnsupported =
62      (LangOpts.NoBuiltin || LangOpts.isNoBuiltinFunc(BuiltinInfo.Name)) &&
63      strchr(BuiltinInfo.Attributes'f');
64  bool MathBuiltinsUnsupported =
65    LangOpts.NoMathBuiltin && BuiltinInfo.HeaderName &&
66    llvm::StringRef(BuiltinInfo.HeaderName).equals("math.h");
67  bool GnuModeUnsupported = !LangOpts.GNUMode && (BuiltinInfo.Langs & GNU_LANG);
68  bool MSModeUnsupported =
69      !LangOpts.MicrosoftExt && (BuiltinInfo.Langs & MS_LANG);
70  bool ObjCUnsupported = !LangOpts.ObjC && BuiltinInfo.Langs == OBJC_LANG;
71  bool OclC1Unsupported = (LangOpts.OpenCLVersion / 100) != 1 &&
72                          (BuiltinInfo.Langs & ALL_OCLC_LANGUAGES ) ==  OCLC1X_LANG;
73  bool OclC2Unsupported = LangOpts.OpenCLVersion != 200 &&
74                          (BuiltinInfo.Langs & ALL_OCLC_LANGUAGES) == OCLC20_LANG;
75  bool OclCUnsupported = !LangOpts.OpenCL &&
76                         (BuiltinInfo.Langs & ALL_OCLC_LANGUAGES);
77  bool OpenMPUnsupported = !LangOpts.OpenMP && BuiltinInfo.Langs == OMP_LANG;
78  return !BuiltinsUnsupported && !MathBuiltinsUnsupported && !OclCUnsupported &&
79         !OclC1Unsupported && !OclC2Unsupported && !OpenMPUnsupported &&
80         !GnuModeUnsupported && !MSModeUnsupported && !ObjCUnsupported;
81}
82
83/// initializeBuiltins - Mark the identifiers for all the builtins with their
84/// appropriate builtin ID # and mark any non-portable builtin identifiers as
85/// such.
86void Builtin::Context::initializeBuiltins(IdentifierTable &Table,
87                                          const LangOptionsLangOpts) {
88  // Step #1: mark all target-independent builtins with their ID's.
89  for (unsigned i = Builtin::NotBuiltin+1i != Builtin::FirstTSBuiltin; ++i)
90    if (builtinIsSupported(BuiltinInfo[i], LangOpts)) {
91      Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
92    }
93
94  // Step #2: Register target-specific builtins.
95  for (unsigned i = 0, e = TSRecords.size(); i != e; ++i)
96    if (builtinIsSupported(TSRecords[i], LangOpts))
97      Table.get(TSRecords[i].Name).setBuiltinID(i + Builtin::FirstTSBuiltin);
98
99  // Step #3: Register target-specific builtins for AuxTarget.
100  for (unsigned i = 0, e = AuxTSRecords.size(); i != e; ++i)
101    Table.get(AuxTSRecords[i].Name)
102        .setBuiltinID(i + Builtin::FirstTSBuiltin + TSRecords.size());
103}
104
105void Builtin::Context::forgetBuiltin(unsigned IDIdentifierTable &Table) {
106  Table.get(getRecord(ID).Name).setBuiltinID(0);
107}
108
109unsigned Builtin::Context::getRequiredVectorWidth(unsigned IDconst {
110  const char *WidthPos = ::strchr(getRecord(ID).Attributes'V');
111  if (!WidthPos)
112    return 0;
113
114  ++WidthPos;
115   (0) . __assert_fail ("*WidthPos == '.' && \"Vector width specifier must be followed by a '.'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 116, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(*WidthPos == ':' &&
116 (0) . __assert_fail ("*WidthPos == '.' && \"Vector width specifier must be followed by a '.'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 116, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">         "Vector width specifier must be followed by a ':'");
117  ++WidthPos;
118
119  char *EndPos;
120  unsigned Width = ::strtol(WidthPos, &EndPos10);
121   (0) . __assert_fail ("*EndPos == '.' && \"Vector width specific must end with a '.'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 121, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(*EndPos == ':' && "Vector width specific must end with a ':'");
122  return Width;
123}
124
125bool Builtin::Context::isLike(unsigned IDunsigned &FormatIdx,
126                              bool &HasVAListArgconst char *Fmtconst {
127   (0) . __assert_fail ("Fmt && \"Not passed a format string\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 127, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(Fmt && "Not passed a format string");
128   (0) . __assert_fail ("..strlen(Fmt) == 2 && \"Format string needs to be two characters long\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 129, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(::strlen(Fmt) == 2 &&
129 (0) . __assert_fail ("..strlen(Fmt) == 2 && \"Format string needs to be two characters long\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 129, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">         "Format string needs to be two characters long");
130   (0) . __assert_fail ("..toupper(Fmt[0]) == Fmt[1] && \"Format string is not in the form \\\"xX\\\"\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 131, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(::toupper(Fmt[0]) == Fmt[1] &&
131 (0) . __assert_fail ("..toupper(Fmt[0]) == Fmt[1] && \"Format string is not in the form \\\"xX\\\"\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 131, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">         "Format string is not in the form \"xX\"");
132
133  const char *Like = ::strpbrk(getRecord(ID).AttributesFmt);
134  if (!Like)
135    return false;
136
137  HasVAListArg = (*Like == Fmt[1]);
138
139  ++Like;
140   (0) . __assert_fail ("*Like == '.' && \"Format specifier must be followed by a '.'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 140, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(*Like == ':' && "Format specifier must be followed by a ':'");
141  ++Like;
142
143   (0) . __assert_fail ("..strchr(Like, '.') && \"Format specifier must end with a '.'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 143, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(::strchr(Like, ':') && "Format specifier must end with a ':'");
144  FormatIdx = ::strtol(Likenullptr10);
145  return true;
146}
147
148bool Builtin::Context::isPrintfLike(unsigned IDunsigned &FormatIdx,
149                                    bool &HasVAListArg) {
150  return isLike(IDFormatIdxHasVAListArg"pP");
151}
152
153bool Builtin::Context::isScanfLike(unsigned IDunsigned &FormatIdx,
154                                   bool &HasVAListArg) {
155  return isLike(IDFormatIdxHasVAListArg"sS");
156}
157
158bool Builtin::Context::performsCallback(unsigned ID,
159                                        SmallVectorImpl<int> &Encodingconst {
160  const char *CalleePos = ::strchr(getRecord(ID).Attributes'C');
161  if (!CalleePos)
162    return false;
163
164  ++CalleePos;
165   (0) . __assert_fail ("*CalleePos == '<' && \"Callback callee specifier must be followed by a '<'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 166, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(*CalleePos == '<' &&
166 (0) . __assert_fail ("*CalleePos == '<' && \"Callback callee specifier must be followed by a '<'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 166, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">         "Callback callee specifier must be followed by a '<'");
167  ++CalleePos;
168
169  char *EndPos;
170  int CalleeIdx = ::strtol(CalleePos, &EndPos10);
171   (0) . __assert_fail ("CalleeIdx >= 0 && \"Callee index is supposed to be positive!\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 171, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(CalleeIdx >= 0 && "Callee index is supposed to be positive!");
172  Encoding.push_back(CalleeIdx);
173
174  while (*EndPos == ',') {
175    const char *PayloadPos = EndPos + 1;
176
177    int PayloadIdx = ::strtol(PayloadPos, &EndPos10);
178    Encoding.push_back(PayloadIdx);
179  }
180
181  '") ? static_cast (0) . __assert_fail ("*EndPos == '>' && \"Callback callee specifier must end with a '>'\"", "/home/seafit/code_projects/clang_source/clang/lib/Basic/Builtins.cpp", 181, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(*EndPos == '>' && "Callback callee specifier must end with a '>'");
182  return true;
183}
184
185bool Builtin::Context::canBeRedeclared(unsigned IDconst {
186  return ID == Builtin::NotBuiltin ||
187         ID == Builtin::BI__va_start ||
188         (!hasReferenceArgsOrResult(ID) &&
189          !hasCustomTypechecking(ID));
190}
191
clang::Builtin::Context::getRecord
clang::Builtin::Context::InitializeTarget
clang::Builtin::Context::isBuiltinFunc
clang::Builtin::Context::builtinIsSupported
clang::Builtin::Context::initializeBuiltins
clang::Builtin::Context::forgetBuiltin
clang::Builtin::Context::getRequiredVectorWidth
clang::Builtin::Context::isLike
clang::Builtin::Context::isPrintfLike
clang::Builtin::Context::isScanfLike
clang::Builtin::Context::performsCallback
clang::Builtin::Context::canBeRedeclared