Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/clang/lib/Frontend/InitPreprocessor.cpp
Line
Count
Source (jump to first uncovered line)
1
//===--- InitPreprocessor.cpp - PP initialization code. ---------*- C++ -*-===//
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 the clang::InitializePreprocessor function.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#include "clang/Basic/FileManager.h"
14
#include "clang/Basic/HLSLRuntime.h"
15
#include "clang/Basic/MacroBuilder.h"
16
#include "clang/Basic/SourceManager.h"
17
#include "clang/Basic/SyncScope.h"
18
#include "clang/Basic/TargetInfo.h"
19
#include "clang/Basic/Version.h"
20
#include "clang/Frontend/FrontendDiagnostic.h"
21
#include "clang/Frontend/FrontendOptions.h"
22
#include "clang/Frontend/Utils.h"
23
#include "clang/Lex/HeaderSearch.h"
24
#include "clang/Lex/Preprocessor.h"
25
#include "clang/Lex/PreprocessorOptions.h"
26
#include "clang/Serialization/ASTReader.h"
27
#include "llvm/ADT/APFloat.h"
28
#include "llvm/IR/DataLayout.h"
29
#include "llvm/IR/DerivedTypes.h"
30
using namespace clang;
31
32
0
static bool MacroBodyEndsInBackslash(StringRef MacroBody) {
33
0
  while (!MacroBody.empty() && isWhitespace(MacroBody.back()))
34
0
    MacroBody = MacroBody.drop_back();
35
0
  return !MacroBody.empty() && MacroBody.back() == '\\';
36
0
}
37
38
// Append a #define line to Buf for Macro.  Macro should be of the form XXX,
39
// in which case we emit "#define XXX 1" or "XXX=Y z W" in which case we emit
40
// "#define XXX Y z W".  To get a #define with no value, use "XXX=".
41
static void DefineBuiltinMacro(MacroBuilder &Builder, StringRef Macro,
42
0
                               DiagnosticsEngine &Diags) {
43
0
  std::pair<StringRef, StringRef> MacroPair = Macro.split('=');
44
0
  StringRef MacroName = MacroPair.first;
45
0
  StringRef MacroBody = MacroPair.second;
46
0
  if (MacroName.size() != Macro.size()) {
47
    // Per GCC -D semantics, the macro ends at \n if it exists.
48
0
    StringRef::size_type End = MacroBody.find_first_of("\n\r");
49
0
    if (End != StringRef::npos)
50
0
      Diags.Report(diag::warn_fe_macro_contains_embedded_newline)
51
0
        << MacroName;
52
0
    MacroBody = MacroBody.substr(0, End);
53
    // We handle macro bodies which end in a backslash by appending an extra
54
    // backslash+newline.  This makes sure we don't accidentally treat the
55
    // backslash as a line continuation marker.
56
0
    if (MacroBodyEndsInBackslash(MacroBody))
57
0
      Builder.defineMacro(MacroName, Twine(MacroBody) + "\\\n");
58
0
    else
59
0
      Builder.defineMacro(MacroName, MacroBody);
60
0
  } else {
61
    // Push "macroname 1".
62
0
    Builder.defineMacro(Macro);
63
0
  }
64
0
}
65
66
/// AddImplicitInclude - Add an implicit \#include of the specified file to the
67
/// predefines buffer.
68
/// As these includes are generated by -include arguments the header search
69
/// logic is going to search relatively to the current working directory.
70
0
static void AddImplicitInclude(MacroBuilder &Builder, StringRef File) {
71
0
  Builder.append(Twine("#include \"") + File + "\"");
72
0
}
73
74
0
static void AddImplicitIncludeMacros(MacroBuilder &Builder, StringRef File) {
75
0
  Builder.append(Twine("#__include_macros \"") + File + "\"");
76
  // Marker token to stop the __include_macros fetch loop.
77
0
  Builder.append("##"); // ##?
78
0
}
79
80
/// Add an implicit \#include using the original file used to generate
81
/// a PCH file.
82
static void AddImplicitIncludePCH(MacroBuilder &Builder, Preprocessor &PP,
83
                                  const PCHContainerReader &PCHContainerRdr,
84
0
                                  StringRef ImplicitIncludePCH) {
85
0
  std::string OriginalFile = ASTReader::getOriginalSourceFile(
86
0
      std::string(ImplicitIncludePCH), PP.getFileManager(), PCHContainerRdr,
87
0
      PP.getDiagnostics());
88
0
  if (OriginalFile.empty())
89
0
    return;
90
91
0
  AddImplicitInclude(Builder, OriginalFile);
92
0
}
93
94
/// PickFP - This is used to pick a value based on the FP semantics of the
95
/// specified FP model.
96
template <typename T>
97
static T PickFP(const llvm::fltSemantics *Sem, T IEEEHalfVal, T IEEESingleVal,
98
                T IEEEDoubleVal, T X87DoubleExtendedVal, T PPCDoubleDoubleVal,
99
2.02k
                T IEEEQuadVal) {
100
2.02k
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEhalf())
101
506
    return IEEEHalfVal;
102
1.51k
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle())
103
506
    return IEEESingleVal;
104
1.01k
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEdouble())
105
506
    return IEEEDoubleVal;
106
506
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended())
107
506
    return X87DoubleExtendedVal;
108
0
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::PPCDoubleDouble())
109
0
    return PPCDoubleDoubleVal;
110
0
  assert(Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEquad());
111
0
  return IEEEQuadVal;
112
0
}
InitPreprocessor.cpp:char const* PickFP<char const*>(llvm::fltSemantics const*, char const*, char const*, char const*, char const*, char const*, char const*)
Line
Count
Source
99
736
                T IEEEQuadVal) {
100
736
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEhalf())
101
184
    return IEEEHalfVal;
102
552
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle())
103
184
    return IEEESingleVal;
104
368
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEdouble())
105
184
    return IEEEDoubleVal;
106
184
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended())
107
184
    return X87DoubleExtendedVal;
108
0
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::PPCDoubleDouble())
109
0
    return PPCDoubleDoubleVal;
110
0
  assert(Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEquad());
111
0
  return IEEEQuadVal;
112
0
}
InitPreprocessor.cpp:int PickFP<int>(llvm::fltSemantics const*, int, int, int, int, int, int)
Line
Count
Source
99
1.28k
                T IEEEQuadVal) {
100
1.28k
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEhalf())
101
322
    return IEEEHalfVal;
102
966
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle())
103
322
    return IEEESingleVal;
104
644
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEdouble())
105
322
    return IEEEDoubleVal;
106
322
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended())
107
322
    return X87DoubleExtendedVal;
108
0
  if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::PPCDoubleDouble())
109
0
    return PPCDoubleDoubleVal;
110
0
  assert(Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEquad());
111
0
  return IEEEQuadVal;
112
0
}
113
114
static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix,
115
184
                              const llvm::fltSemantics *Sem, StringRef Ext) {
116
184
  const char *DenormMin, *Epsilon, *Max, *Min;
117
184
  DenormMin = PickFP(Sem, "5.9604644775390625e-8", "1.40129846e-45",
118
184
                     "4.9406564584124654e-324", "3.64519953188247460253e-4951",
119
184
                     "4.94065645841246544176568792868221e-324",
120
184
                     "6.47517511943802511092443895822764655e-4966");
121
184
  int Digits = PickFP(Sem, 3, 6, 15, 18, 31, 33);
122
184
  int DecimalDigits = PickFP(Sem, 5, 9, 17, 21, 33, 36);
123
184
  Epsilon = PickFP(Sem, "9.765625e-4", "1.19209290e-7",
124
184
                   "2.2204460492503131e-16", "1.08420217248550443401e-19",
125
184
                   "4.94065645841246544176568792868221e-324",
126
184
                   "1.92592994438723585305597794258492732e-34");
127
184
  int MantissaDigits = PickFP(Sem, 11, 24, 53, 64, 106, 113);
128
184
  int Min10Exp = PickFP(Sem, -4, -37, -307, -4931, -291, -4931);
129
184
  int Max10Exp = PickFP(Sem, 4, 38, 308, 4932, 308, 4932);
130
184
  int MinExp = PickFP(Sem, -13, -125, -1021, -16381, -968, -16381);
131
184
  int MaxExp = PickFP(Sem, 16, 128, 1024, 16384, 1024, 16384);
132
184
  Min = PickFP(Sem, "6.103515625e-5", "1.17549435e-38", "2.2250738585072014e-308",
133
184
               "3.36210314311209350626e-4932",
134
184
               "2.00416836000897277799610805135016e-292",
135
184
               "3.36210314311209350626267781732175260e-4932");
136
184
  Max = PickFP(Sem, "6.5504e+4", "3.40282347e+38", "1.7976931348623157e+308",
137
184
               "1.18973149535723176502e+4932",
138
184
               "1.79769313486231580793728971405301e+308",
139
184
               "1.18973149535723176508575932662800702e+4932");
140
141
184
  SmallString<32> DefPrefix;
142
184
  DefPrefix = "__";
143
184
  DefPrefix += Prefix;
144
184
  DefPrefix += "_";
145
146
184
  Builder.defineMacro(DefPrefix + "DENORM_MIN__", Twine(DenormMin)+Ext);
147
184
  Builder.defineMacro(DefPrefix + "HAS_DENORM__");
148
184
  Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
149
184
  Builder.defineMacro(DefPrefix + "DECIMAL_DIG__", Twine(DecimalDigits));
150
184
  Builder.defineMacro(DefPrefix + "EPSILON__", Twine(Epsilon)+Ext);
151
184
  Builder.defineMacro(DefPrefix + "HAS_INFINITY__");
152
184
  Builder.defineMacro(DefPrefix + "HAS_QUIET_NAN__");
153
184
  Builder.defineMacro(DefPrefix + "MANT_DIG__", Twine(MantissaDigits));
154
155
184
  Builder.defineMacro(DefPrefix + "MAX_10_EXP__", Twine(Max10Exp));
156
184
  Builder.defineMacro(DefPrefix + "MAX_EXP__", Twine(MaxExp));
157
184
  Builder.defineMacro(DefPrefix + "MAX__", Twine(Max)+Ext);
158
159
184
  Builder.defineMacro(DefPrefix + "MIN_10_EXP__","("+Twine(Min10Exp)+")");
160
184
  Builder.defineMacro(DefPrefix + "MIN_EXP__", "("+Twine(MinExp)+")");
161
184
  Builder.defineMacro(DefPrefix + "MIN__", Twine(Min)+Ext);
162
184
}
163
164
165
/// DefineTypeSize - Emit a macro to the predefines buffer that declares a macro
166
/// named MacroName with the max value for a type with width 'TypeWidth' a
167
/// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
168
static void DefineTypeSize(const Twine &MacroName, unsigned TypeWidth,
169
                           StringRef ValSuffix, bool isSigned,
170
1.74k
                           MacroBuilder &Builder) {
171
1.74k
  llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
172
1.74k
                                : llvm::APInt::getMaxValue(TypeWidth);
173
1.74k
  Builder.defineMacro(MacroName, toString(MaxVal, 10, isSigned) + ValSuffix);
174
1.74k
}
175
176
/// DefineTypeSize - An overloaded helper that uses TargetInfo to determine
177
/// the width, suffix, and signedness of the given type
178
static void DefineTypeSize(const Twine &MacroName, TargetInfo::IntType Ty,
179
1.74k
                           const TargetInfo &TI, MacroBuilder &Builder) {
180
1.74k
  DefineTypeSize(MacroName, TI.getTypeWidth(Ty), TI.getTypeConstantSuffix(Ty),
181
1.74k
                 TI.isTypeSigned(Ty), Builder);
182
1.74k
}
183
184
static void DefineFmt(const Twine &Prefix, TargetInfo::IntType Ty,
185
1.38k
                      const TargetInfo &TI, MacroBuilder &Builder) {
186
1.38k
  bool IsSigned = TI.isTypeSigned(Ty);
187
1.38k
  StringRef FmtModifier = TI.getTypeFormatModifier(Ty);
188
5.52k
  for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) {
189
4.14k
    Builder.defineMacro(Prefix + "_FMT" + Twine(*Fmt) + "__",
190
4.14k
                        Twine("\"") + FmtModifier + Twine(*Fmt) + "\"");
191
4.14k
  }
192
1.38k
}
193
194
static void DefineType(const Twine &MacroName, TargetInfo::IntType Ty,
195
1.56k
                       MacroBuilder &Builder) {
196
1.56k
  Builder.defineMacro(MacroName, TargetInfo::getTypeName(Ty));
197
1.56k
}
198
199
static void DefineTypeWidth(const Twine &MacroName, TargetInfo::IntType Ty,
200
782
                            const TargetInfo &TI, MacroBuilder &Builder) {
201
782
  Builder.defineMacro(MacroName, Twine(TI.getTypeWidth(Ty)));
202
782
}
203
204
static void DefineTypeSizeof(StringRef MacroName, unsigned BitWidth,
205
598
                             const TargetInfo &TI, MacroBuilder &Builder) {
206
598
  Builder.defineMacro(MacroName,
207
598
                      Twine(BitWidth / TI.getCharWidth()));
208
598
}
209
210
// This will generate a macro based on the prefix with `_MAX__` as the suffix
211
// for the max value representable for the type, and a macro with a `_WIDTH__`
212
// suffix for the width of the type.
213
static void DefineTypeSizeAndWidth(const Twine &Prefix, TargetInfo::IntType Ty,
214
                                   const TargetInfo &TI,
215
782
                                   MacroBuilder &Builder) {
216
782
  DefineTypeSize(Prefix + "_MAX__", Ty, TI, Builder);
217
782
  DefineTypeWidth(Prefix + "_WIDTH__", Ty, TI, Builder);
218
782
}
219
220
static void DefineExactWidthIntType(TargetInfo::IntType Ty,
221
                                    const TargetInfo &TI,
222
368
                                    MacroBuilder &Builder) {
223
368
  int TypeWidth = TI.getTypeWidth(Ty);
224
368
  bool IsSigned = TI.isTypeSigned(Ty);
225
226
  // Use the target specified int64 type, when appropriate, so that [u]int64_t
227
  // ends up being defined in terms of the correct type.
228
368
  if (TypeWidth == 64)
229
92
    Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type();
230
231
  // Use the target specified int16 type when appropriate. Some MCU targets
232
  // (such as AVR) have definition of [u]int16_t to [un]signed int.
233
368
  if (TypeWidth == 16)
234
92
    Ty = IsSigned ? TI.getInt16Type() : TI.getUInt16Type();
235
236
368
  const char *Prefix = IsSigned ? "__INT" : "__UINT";
237
238
368
  DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
239
368
  DefineFmt(Prefix + Twine(TypeWidth), Ty, TI, Builder);
240
241
368
  StringRef ConstSuffix(TI.getTypeConstantSuffix(Ty));
242
368
  Builder.defineMacro(Prefix + Twine(TypeWidth) + "_C_SUFFIX__", ConstSuffix);
243
368
}
244
245
static void DefineExactWidthIntTypeSize(TargetInfo::IntType Ty,
246
                                        const TargetInfo &TI,
247
368
                                        MacroBuilder &Builder) {
248
368
  int TypeWidth = TI.getTypeWidth(Ty);
249
368
  bool IsSigned = TI.isTypeSigned(Ty);
250
251
  // Use the target specified int64 type, when appropriate, so that [u]int64_t
252
  // ends up being defined in terms of the correct type.
253
368
  if (TypeWidth == 64)
254
92
    Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type();
255
256
  // We don't need to define a _WIDTH macro for the exact-width types because
257
  // we already know the width.
258
368
  const char *Prefix = IsSigned ? "__INT" : "__UINT";
259
368
  DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder);
260
368
}
261
262
static void DefineLeastWidthIntType(unsigned TypeWidth, bool IsSigned,
263
                                    const TargetInfo &TI,
264
368
                                    MacroBuilder &Builder) {
265
368
  TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
266
368
  if (Ty == TargetInfo::NoInt)
267
0
    return;
268
269
368
  const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST";
270
368
  DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
271
  // We only want the *_WIDTH macro for the signed types to avoid too many
272
  // predefined macros (the unsigned width and the signed width are identical.)
273
368
  if (IsSigned)
274
184
    DefineTypeSizeAndWidth(Prefix + Twine(TypeWidth), Ty, TI, Builder);
275
184
  else
276
184
    DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder);
277
368
  DefineFmt(Prefix + Twine(TypeWidth), Ty, TI, Builder);
278
368
}
279
280
static void DefineFastIntType(unsigned TypeWidth, bool IsSigned,
281
368
                              const TargetInfo &TI, MacroBuilder &Builder) {
282
  // stdint.h currently defines the fast int types as equivalent to the least
283
  // types.
284
368
  TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
285
368
  if (Ty == TargetInfo::NoInt)
286
0
    return;
287
288
368
  const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST";
289
368
  DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
290
  // We only want the *_WIDTH macro for the signed types to avoid too many
291
  // predefined macros (the unsigned width and the signed width are identical.)
292
368
  if (IsSigned)
293
184
    DefineTypeSizeAndWidth(Prefix + Twine(TypeWidth), Ty, TI, Builder);
294
184
  else
295
184
    DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder);
296
368
  DefineFmt(Prefix + Twine(TypeWidth), Ty, TI, Builder);
297
368
}
298
299
300
/// Get the value the ATOMIC_*_LOCK_FREE macro should have for a type with
301
/// the specified properties.
302
460
static const char *getLockFreeValue(unsigned TypeWidth, const TargetInfo &TI) {
303
  // Fully-aligned, power-of-2 sizes no larger than the inline
304
  // width will be inlined as lock-free operations.
305
  // Note: we do not need to check alignment since _Atomic(T) is always
306
  // appropriately-aligned in clang.
307
460
  if (TI.hasBuiltinAtomic(TypeWidth, TypeWidth))
308
460
    return "2"; // "always lock free"
309
  // We cannot be certain what operations the lib calls might be
310
  // able to implement as lock-free on future processors.
311
0
  return "1"; // "sometimes lock free"
312
460
}
313
314
/// Add definitions required for a smooth interaction between
315
/// Objective-C++ automated reference counting and libstdc++ (4.2).
316
static void AddObjCXXARCLibstdcxxDefines(const LangOptions &LangOpts,
317
0
                                         MacroBuilder &Builder) {
318
0
  Builder.defineMacro("_GLIBCXX_PREDEFINED_OBJC_ARC_IS_SCALAR");
319
320
0
  std::string Result;
321
0
  {
322
    // Provide specializations for the __is_scalar type trait so that
323
    // lifetime-qualified objects are not considered "scalar" types, which
324
    // libstdc++ uses as an indicator of the presence of trivial copy, assign,
325
    // default-construct, and destruct semantics (none of which hold for
326
    // lifetime-qualified objects in ARC).
327
0
    llvm::raw_string_ostream Out(Result);
328
329
0
    Out << "namespace std {\n"
330
0
        << "\n"
331
0
        << "struct __true_type;\n"
332
0
        << "struct __false_type;\n"
333
0
        << "\n";
334
335
0
    Out << "template<typename _Tp> struct __is_scalar;\n"
336
0
        << "\n";
337
338
0
    if (LangOpts.ObjCAutoRefCount) {
339
0
      Out << "template<typename _Tp>\n"
340
0
          << "struct __is_scalar<__attribute__((objc_ownership(strong))) _Tp> {\n"
341
0
          << "  enum { __value = 0 };\n"
342
0
          << "  typedef __false_type __type;\n"
343
0
          << "};\n"
344
0
          << "\n";
345
0
    }
346
347
0
    if (LangOpts.ObjCWeak) {
348
0
      Out << "template<typename _Tp>\n"
349
0
          << "struct __is_scalar<__attribute__((objc_ownership(weak))) _Tp> {\n"
350
0
          << "  enum { __value = 0 };\n"
351
0
          << "  typedef __false_type __type;\n"
352
0
          << "};\n"
353
0
          << "\n";
354
0
    }
355
356
0
    if (LangOpts.ObjCAutoRefCount) {
357
0
      Out << "template<typename _Tp>\n"
358
0
          << "struct __is_scalar<__attribute__((objc_ownership(autoreleasing)))"
359
0
          << " _Tp> {\n"
360
0
          << "  enum { __value = 0 };\n"
361
0
          << "  typedef __false_type __type;\n"
362
0
          << "};\n"
363
0
          << "\n";
364
0
    }
365
366
0
    Out << "}\n";
367
0
  }
368
0
  Builder.append(Result);
369
0
}
370
371
static void InitializeStandardPredefinedMacros(const TargetInfo &TI,
372
                                               const LangOptions &LangOpts,
373
                                               const FrontendOptions &FEOpts,
374
46
                                               MacroBuilder &Builder) {
375
46
  if (LangOpts.HLSL) {
376
0
    Builder.defineMacro("__hlsl_clang");
377
    // HLSL Version
378
0
    Builder.defineMacro("__HLSL_VERSION",
379
0
                        Twine((unsigned)LangOpts.getHLSLVersion()));
380
381
0
    if (LangOpts.NativeHalfType)
382
0
      Builder.defineMacro("__HLSL_ENABLE_16_BIT",
383
0
                          Twine((unsigned)LangOpts.getHLSLVersion()));
384
385
    // Shader target information
386
    // "enums" for shader stages
387
0
    Builder.defineMacro("__SHADER_STAGE_VERTEX",
388
0
                        Twine((uint32_t)ShaderStage::Vertex));
389
0
    Builder.defineMacro("__SHADER_STAGE_PIXEL",
390
0
                        Twine((uint32_t)ShaderStage::Pixel));
391
0
    Builder.defineMacro("__SHADER_STAGE_GEOMETRY",
392
0
                        Twine((uint32_t)ShaderStage::Geometry));
393
0
    Builder.defineMacro("__SHADER_STAGE_HULL",
394
0
                        Twine((uint32_t)ShaderStage::Hull));
395
0
    Builder.defineMacro("__SHADER_STAGE_DOMAIN",
396
0
                        Twine((uint32_t)ShaderStage::Domain));
397
0
    Builder.defineMacro("__SHADER_STAGE_COMPUTE",
398
0
                        Twine((uint32_t)ShaderStage::Compute));
399
0
    Builder.defineMacro("__SHADER_STAGE_AMPLIFICATION",
400
0
                        Twine((uint32_t)ShaderStage::Amplification));
401
0
    Builder.defineMacro("__SHADER_STAGE_MESH",
402
0
                        Twine((uint32_t)ShaderStage::Mesh));
403
0
    Builder.defineMacro("__SHADER_STAGE_LIBRARY",
404
0
                        Twine((uint32_t)ShaderStage::Library));
405
    // The current shader stage itself
406
0
    uint32_t StageInteger = static_cast<uint32_t>(
407
0
        hlsl::getStageFromEnvironment(TI.getTriple().getEnvironment()));
408
409
0
    Builder.defineMacro("__SHADER_TARGET_STAGE", Twine(StageInteger));
410
    // Add target versions
411
0
    if (TI.getTriple().getOS() == llvm::Triple::ShaderModel) {
412
0
      VersionTuple Version = TI.getTriple().getOSVersion();
413
0
      Builder.defineMacro("__SHADER_TARGET_MAJOR", Twine(Version.getMajor()));
414
0
      unsigned Minor = Version.getMinor().value_or(0);
415
0
      Builder.defineMacro("__SHADER_TARGET_MINOR", Twine(Minor));
416
0
    }
417
0
    return;
418
0
  }
419
  // C++ [cpp.predefined]p1:
420
  //   The following macro names shall be defined by the implementation:
421
422
  //   -- __STDC__
423
  //      [C++] Whether __STDC__ is predefined and if so, what its value is,
424
  //      are implementation-defined.
425
  // (Removed in C++20.)
426
46
  if (!LangOpts.MSVCCompat && !LangOpts.TraditionalCPP)
427
46
    Builder.defineMacro("__STDC__");
428
  //   -- __STDC_HOSTED__
429
  //      The integer literal 1 if the implementation is a hosted
430
  //      implementation or the integer literal 0 if it is not.
431
46
  if (LangOpts.Freestanding)
432
0
    Builder.defineMacro("__STDC_HOSTED__", "0");
433
46
  else
434
46
    Builder.defineMacro("__STDC_HOSTED__");
435
436
  //   -- __STDC_VERSION__
437
  //      [C++] Whether __STDC_VERSION__ is predefined and if so, what its
438
  //      value is, are implementation-defined.
439
  // (Removed in C++20.)
440
46
  if (!LangOpts.CPlusPlus) {
441
23
    if (LangOpts.C23)
442
0
      Builder.defineMacro("__STDC_VERSION__", "202311L");
443
23
    else if (LangOpts.C17)
444
0
      Builder.defineMacro("__STDC_VERSION__", "201710L");
445
23
    else if (LangOpts.C11)
446
23
      Builder.defineMacro("__STDC_VERSION__", "201112L");
447
0
    else if (LangOpts.C99)
448
0
      Builder.defineMacro("__STDC_VERSION__", "199901L");
449
0
    else if (!LangOpts.GNUMode && LangOpts.Digraphs)
450
0
      Builder.defineMacro("__STDC_VERSION__", "199409L");
451
23
  } else {
452
    //   -- __cplusplus
453
23
    if (LangOpts.CPlusPlus26)
454
      // FIXME: Use correct value for C++26.
455
0
      Builder.defineMacro("__cplusplus", "202400L");
456
23
    else if (LangOpts.CPlusPlus23)
457
0
      Builder.defineMacro("__cplusplus", "202302L");
458
    //      [C++20] The integer literal 202002L.
459
23
    else if (LangOpts.CPlusPlus20)
460
0
      Builder.defineMacro("__cplusplus", "202002L");
461
    //      [C++17] The integer literal 201703L.
462
23
    else if (LangOpts.CPlusPlus17)
463
23
      Builder.defineMacro("__cplusplus", "201703L");
464
    //      [C++14] The name __cplusplus is defined to the value 201402L when
465
    //      compiling a C++ translation unit.
466
0
    else if (LangOpts.CPlusPlus14)
467
0
      Builder.defineMacro("__cplusplus", "201402L");
468
    //      [C++11] The name __cplusplus is defined to the value 201103L when
469
    //      compiling a C++ translation unit.
470
0
    else if (LangOpts.CPlusPlus11)
471
0
      Builder.defineMacro("__cplusplus", "201103L");
472
    //      [C++03] The name __cplusplus is defined to the value 199711L when
473
    //      compiling a C++ translation unit.
474
0
    else
475
0
      Builder.defineMacro("__cplusplus", "199711L");
476
477
    //   -- __STDCPP_DEFAULT_NEW_ALIGNMENT__
478
    //      [C++17] An integer literal of type std::size_t whose value is the
479
    //      alignment guaranteed by a call to operator new(std::size_t)
480
    //
481
    // We provide this in all language modes, since it seems generally useful.
482
23
    Builder.defineMacro("__STDCPP_DEFAULT_NEW_ALIGNMENT__",
483
23
                        Twine(TI.getNewAlign() / TI.getCharWidth()) +
484
23
                            TI.getTypeConstantSuffix(TI.getSizeType()));
485
486
    //   -- __STDCPP_­THREADS__
487
    //      Defined, and has the value integer literal 1, if and only if a
488
    //      program can have more than one thread of execution.
489
23
    if (LangOpts.getThreadModel() == LangOptions::ThreadModelKind::POSIX)
490
23
      Builder.defineMacro("__STDCPP_THREADS__", "1");
491
23
  }
492
493
  // In C11 these are environment macros. In C++11 they are only defined
494
  // as part of <cuchar>. To prevent breakage when mixing C and C++
495
  // code, define these macros unconditionally. We can define them
496
  // unconditionally, as Clang always uses UTF-16 and UTF-32 for 16-bit
497
  // and 32-bit character literals.
498
46
  Builder.defineMacro("__STDC_UTF_16__", "1");
499
46
  Builder.defineMacro("__STDC_UTF_32__", "1");
500
501
46
  if (LangOpts.ObjC)
502
23
    Builder.defineMacro("__OBJC__");
503
504
  // OpenCL v1.0/1.1 s6.9, v1.2/2.0 s6.10: Preprocessor Directives and Macros.
505
46
  if (LangOpts.OpenCL) {
506
0
    if (LangOpts.CPlusPlus) {
507
0
      switch (LangOpts.OpenCLCPlusPlusVersion) {
508
0
      case 100:
509
0
        Builder.defineMacro("__OPENCL_CPP_VERSION__", "100");
510
0
        break;
511
0
      case 202100:
512
0
        Builder.defineMacro("__OPENCL_CPP_VERSION__", "202100");
513
0
        break;
514
0
      default:
515
0
        llvm_unreachable("Unsupported C++ version for OpenCL");
516
0
      }
517
0
      Builder.defineMacro("__CL_CPP_VERSION_1_0__", "100");
518
0
      Builder.defineMacro("__CL_CPP_VERSION_2021__", "202100");
519
0
    } else {
520
      // OpenCL v1.0 and v1.1 do not have a predefined macro to indicate the
521
      // language standard with which the program is compiled. __OPENCL_VERSION__
522
      // is for the OpenCL version supported by the OpenCL device, which is not
523
      // necessarily the language standard with which the program is compiled.
524
      // A shared OpenCL header file requires a macro to indicate the language
525
      // standard. As a workaround, __OPENCL_C_VERSION__ is defined for
526
      // OpenCL v1.0 and v1.1.
527
0
      switch (LangOpts.OpenCLVersion) {
528
0
      case 100:
529
0
        Builder.defineMacro("__OPENCL_C_VERSION__", "100");
530
0
        break;
531
0
      case 110:
532
0
        Builder.defineMacro("__OPENCL_C_VERSION__", "110");
533
0
        break;
534
0
      case 120:
535
0
        Builder.defineMacro("__OPENCL_C_VERSION__", "120");
536
0
        break;
537
0
      case 200:
538
0
        Builder.defineMacro("__OPENCL_C_VERSION__", "200");
539
0
        break;
540
0
      case 300:
541
0
        Builder.defineMacro("__OPENCL_C_VERSION__", "300");
542
0
        break;
543
0
      default:
544
0
        llvm_unreachable("Unsupported OpenCL version");
545
0
      }
546
0
    }
547
0
    Builder.defineMacro("CL_VERSION_1_0", "100");
548
0
    Builder.defineMacro("CL_VERSION_1_1", "110");
549
0
    Builder.defineMacro("CL_VERSION_1_2", "120");
550
0
    Builder.defineMacro("CL_VERSION_2_0", "200");
551
0
    Builder.defineMacro("CL_VERSION_3_0", "300");
552
553
0
    if (TI.isLittleEndian())
554
0
      Builder.defineMacro("__ENDIAN_LITTLE__");
555
556
0
    if (LangOpts.FastRelaxedMath)
557
0
      Builder.defineMacro("__FAST_RELAXED_MATH__");
558
0
  }
559
560
46
  if (LangOpts.SYCLIsDevice || LangOpts.SYCLIsHost) {
561
    // SYCL Version is set to a value when building SYCL applications
562
0
    if (LangOpts.getSYCLVersion() == LangOptions::SYCL_2017)
563
0
      Builder.defineMacro("CL_SYCL_LANGUAGE_VERSION", "121");
564
0
    else if (LangOpts.getSYCLVersion() == LangOptions::SYCL_2020)
565
0
      Builder.defineMacro("SYCL_LANGUAGE_VERSION", "202001");
566
0
  }
567
568
  // Not "standard" per se, but available even with the -undef flag.
569
46
  if (LangOpts.AsmPreprocessor)
570
0
    Builder.defineMacro("__ASSEMBLER__");
571
46
  if (LangOpts.CUDA) {
572
0
    if (LangOpts.GPURelocatableDeviceCode)
573
0
      Builder.defineMacro("__CLANG_RDC__");
574
0
    if (!LangOpts.HIP)
575
0
      Builder.defineMacro("__CUDA__");
576
0
    if (LangOpts.GPUDefaultStream ==
577
0
        LangOptions::GPUDefaultStreamKind::PerThread)
578
0
      Builder.defineMacro("CUDA_API_PER_THREAD_DEFAULT_STREAM");
579
0
  }
580
46
  if (LangOpts.HIP) {
581
0
    Builder.defineMacro("__HIP__");
582
0
    Builder.defineMacro("__HIPCC__");
583
0
    Builder.defineMacro("__HIP_MEMORY_SCOPE_SINGLETHREAD", "1");
584
0
    Builder.defineMacro("__HIP_MEMORY_SCOPE_WAVEFRONT", "2");
585
0
    Builder.defineMacro("__HIP_MEMORY_SCOPE_WORKGROUP", "3");
586
0
    Builder.defineMacro("__HIP_MEMORY_SCOPE_AGENT", "4");
587
0
    Builder.defineMacro("__HIP_MEMORY_SCOPE_SYSTEM", "5");
588
0
    if (LangOpts.HIPStdPar) {
589
0
      Builder.defineMacro("__HIPSTDPAR__");
590
0
      if (LangOpts.HIPStdParInterposeAlloc)
591
0
        Builder.defineMacro("__HIPSTDPAR_INTERPOSE_ALLOC__");
592
0
    }
593
0
    if (LangOpts.CUDAIsDevice) {
594
0
      Builder.defineMacro("__HIP_DEVICE_COMPILE__");
595
0
      if (!TI.hasHIPImageSupport()) {
596
0
        Builder.defineMacro("__HIP_NO_IMAGE_SUPPORT__", "1");
597
        // Deprecated.
598
0
        Builder.defineMacro("__HIP_NO_IMAGE_SUPPORT", "1");
599
0
      }
600
0
    }
601
0
    if (LangOpts.GPUDefaultStream ==
602
0
        LangOptions::GPUDefaultStreamKind::PerThread) {
603
0
      Builder.defineMacro("__HIP_API_PER_THREAD_DEFAULT_STREAM__");
604
      // Deprecated.
605
0
      Builder.defineMacro("HIP_API_PER_THREAD_DEFAULT_STREAM");
606
0
    }
607
0
  }
608
609
46
  if (LangOpts.OpenACC) {
610
    // FIXME: When we have full support for OpenACC, we should set this to the
611
    // version we support. Until then, set as '1' by default, but provide a
612
    // temporary mechanism for users to override this so real-world examples can
613
    // be tested against.
614
0
    if (!LangOpts.OpenACCMacroOverride.empty())
615
0
      Builder.defineMacro("_OPENACC", LangOpts.OpenACCMacroOverride);
616
0
    else
617
0
      Builder.defineMacro("_OPENACC", "1");
618
0
  }
619
46
}
620
621
/// Initialize the predefined C++ language feature test macros defined in
622
/// ISO/IEC JTC1/SC22/WG21 (C++) SD-6: "SG10 Feature Test Recommendations".
623
static void InitializeCPlusPlusFeatureTestMacros(const LangOptions &LangOpts,
624
23
                                                 MacroBuilder &Builder) {
625
  // C++98 features.
626
23
  if (LangOpts.RTTI)
627
23
    Builder.defineMacro("__cpp_rtti", "199711L");
628
23
  if (LangOpts.CXXExceptions)
629
0
    Builder.defineMacro("__cpp_exceptions", "199711L");
630
631
  // C++11 features.
632
23
  if (LangOpts.CPlusPlus11) {
633
23
    Builder.defineMacro("__cpp_unicode_characters", "200704L");
634
23
    Builder.defineMacro("__cpp_raw_strings", "200710L");
635
23
    Builder.defineMacro("__cpp_unicode_literals", "200710L");
636
23
    Builder.defineMacro("__cpp_user_defined_literals", "200809L");
637
23
    Builder.defineMacro("__cpp_lambdas", "200907L");
638
23
    Builder.defineMacro("__cpp_constexpr", LangOpts.CPlusPlus26   ? "202306L"
639
23
                                           : LangOpts.CPlusPlus23 ? "202211L"
640
23
                                           : LangOpts.CPlusPlus20 ? "201907L"
641
23
                                           : LangOpts.CPlusPlus17 ? "201603L"
642
23
                                           : LangOpts.CPlusPlus14 ? "201304L"
643
0
                                                                  : "200704");
644
23
    Builder.defineMacro("__cpp_constexpr_in_decltype", "201711L");
645
23
    Builder.defineMacro("__cpp_range_based_for",
646
23
                        LangOpts.CPlusPlus17 ? "201603L" : "200907");
647
23
    Builder.defineMacro("__cpp_static_assert", LangOpts.CPlusPlus26 ? "202306L"
648
23
                                               : LangOpts.CPlusPlus17
649
23
                                                   ? "201411L"
650
23
                                                   : "200410");
651
23
    Builder.defineMacro("__cpp_decltype", "200707L");
652
23
    Builder.defineMacro("__cpp_attributes", "200809L");
653
23
    Builder.defineMacro("__cpp_rvalue_references", "200610L");
654
23
    Builder.defineMacro("__cpp_variadic_templates", "200704L");
655
23
    Builder.defineMacro("__cpp_initializer_lists", "200806L");
656
23
    Builder.defineMacro("__cpp_delegating_constructors", "200604L");
657
23
    Builder.defineMacro("__cpp_nsdmi", "200809L");
658
23
    Builder.defineMacro("__cpp_inheriting_constructors", "201511L");
659
23
    Builder.defineMacro("__cpp_ref_qualifiers", "200710L");
660
23
    Builder.defineMacro("__cpp_alias_templates", "200704L");
661
23
  }
662
23
  if (LangOpts.ThreadsafeStatics)
663
23
    Builder.defineMacro("__cpp_threadsafe_static_init", "200806L");
664
665
  // C++14 features.
666
23
  if (LangOpts.CPlusPlus14) {
667
23
    Builder.defineMacro("__cpp_binary_literals", "201304L");
668
23
    Builder.defineMacro("__cpp_digit_separators", "201309L");
669
23
    Builder.defineMacro("__cpp_init_captures",
670
23
                        LangOpts.CPlusPlus20 ? "201803L" : "201304L");
671
23
    Builder.defineMacro("__cpp_generic_lambdas",
672
23
                        LangOpts.CPlusPlus20 ? "201707L" : "201304L");
673
23
    Builder.defineMacro("__cpp_decltype_auto", "201304L");
674
23
    Builder.defineMacro("__cpp_return_type_deduction", "201304L");
675
23
    Builder.defineMacro("__cpp_aggregate_nsdmi", "201304L");
676
23
    Builder.defineMacro("__cpp_variable_templates", "201304L");
677
23
  }
678
23
  if (LangOpts.SizedDeallocation)
679
0
    Builder.defineMacro("__cpp_sized_deallocation", "201309L");
680
681
  // C++17 features.
682
23
  if (LangOpts.CPlusPlus17) {
683
23
    Builder.defineMacro("__cpp_hex_float", "201603L");
684
23
    Builder.defineMacro("__cpp_inline_variables", "201606L");
685
23
    Builder.defineMacro("__cpp_noexcept_function_type", "201510L");
686
23
    Builder.defineMacro("__cpp_capture_star_this", "201603L");
687
23
    Builder.defineMacro("__cpp_if_constexpr", "201606L");
688
23
    Builder.defineMacro("__cpp_deduction_guides", "201703L"); // (not latest)
689
23
    Builder.defineMacro("__cpp_template_auto", "201606L"); // (old name)
690
23
    Builder.defineMacro("__cpp_namespace_attributes", "201411L");
691
23
    Builder.defineMacro("__cpp_enumerator_attributes", "201411L");
692
23
    Builder.defineMacro("__cpp_nested_namespace_definitions", "201411L");
693
23
    Builder.defineMacro("__cpp_variadic_using", "201611L");
694
23
    Builder.defineMacro("__cpp_aggregate_bases", "201603L");
695
23
    Builder.defineMacro("__cpp_structured_bindings", "201606L");
696
23
    Builder.defineMacro("__cpp_nontype_template_args",
697
23
                        "201411L"); // (not latest)
698
23
    Builder.defineMacro("__cpp_fold_expressions", "201603L");
699
23
    Builder.defineMacro("__cpp_guaranteed_copy_elision", "201606L");
700
23
    Builder.defineMacro("__cpp_nontype_template_parameter_auto", "201606L");
701
23
  }
702
23
  if (LangOpts.AlignedAllocation && !LangOpts.AlignedAllocationUnavailable)
703
23
    Builder.defineMacro("__cpp_aligned_new", "201606L");
704
23
  if (LangOpts.RelaxedTemplateTemplateArgs)
705
0
    Builder.defineMacro("__cpp_template_template_args", "201611L");
706
707
  // C++20 features.
708
23
  if (LangOpts.CPlusPlus20) {
709
0
    Builder.defineMacro("__cpp_aggregate_paren_init", "201902L");
710
711
    // P0848 is implemented, but we're still waiting for other concepts
712
    // issues to be addressed before bumping __cpp_concepts up to 202002L.
713
    // Refer to the discussion of this at https://reviews.llvm.org/D128619.
714
0
    Builder.defineMacro("__cpp_concepts", "201907L");
715
0
    Builder.defineMacro("__cpp_conditional_explicit", "201806L");
716
0
    Builder.defineMacro("__cpp_consteval", "202211L");
717
0
    Builder.defineMacro("__cpp_constexpr_dynamic_alloc", "201907L");
718
0
    Builder.defineMacro("__cpp_constinit", "201907L");
719
0
    Builder.defineMacro("__cpp_impl_coroutine", "201902L");
720
0
    Builder.defineMacro("__cpp_designated_initializers", "201707L");
721
0
    Builder.defineMacro("__cpp_impl_three_way_comparison", "201907L");
722
    //Builder.defineMacro("__cpp_modules", "201907L");
723
0
    Builder.defineMacro("__cpp_using_enum", "201907L");
724
0
  }
725
  // C++23 features.
726
23
  if (LangOpts.CPlusPlus23) {
727
0
    Builder.defineMacro("__cpp_implicit_move", "202011L");
728
0
    Builder.defineMacro("__cpp_size_t_suffix", "202011L");
729
0
    Builder.defineMacro("__cpp_if_consteval", "202106L");
730
0
    Builder.defineMacro("__cpp_multidimensional_subscript", "202211L");
731
0
  }
732
733
  // We provide those C++23 features as extensions in earlier language modes, so
734
  // we also define their feature test macros.
735
23
  if (LangOpts.CPlusPlus11)
736
23
    Builder.defineMacro("__cpp_static_call_operator", "202207L");
737
23
  Builder.defineMacro("__cpp_named_character_escapes", "202207L");
738
23
  Builder.defineMacro("__cpp_placeholder_variables", "202306L");
739
740
23
  if (LangOpts.Char8)
741
0
    Builder.defineMacro("__cpp_char8_t", "202207L");
742
23
  Builder.defineMacro("__cpp_impl_destroying_delete", "201806L");
743
23
}
744
745
/// InitializeOpenCLFeatureTestMacros - Define OpenCL macros based on target
746
/// settings and language version
747
void InitializeOpenCLFeatureTestMacros(const TargetInfo &TI,
748
                                       const LangOptions &Opts,
749
0
                                       MacroBuilder &Builder) {
750
0
  const llvm::StringMap<bool> &OpenCLFeaturesMap = TI.getSupportedOpenCLOpts();
751
  // FIXME: OpenCL options which affect language semantics/syntax
752
  // should be moved into LangOptions.
753
0
  auto defineOpenCLExtMacro = [&](llvm::StringRef Name, auto... OptArgs) {
754
    // Check if extension is supported by target and is available in this
755
    // OpenCL version
756
0
    if (TI.hasFeatureEnabled(OpenCLFeaturesMap, Name) &&
757
0
        OpenCLOptions::isOpenCLOptionAvailableIn(Opts, OptArgs...))
758
0
      Builder.defineMacro(Name);
759
0
  };
Unexecuted instantiation: InitPreprocessor.cpp:auto InitializeOpenCLFeatureTestMacros(clang::TargetInfo const&, clang::LangOptions const&, clang::MacroBuilder&)::$_0::operator()<bool, int, clang::(anonymous namespace)::OpenCLVersionID, unsigned int>(llvm::StringRef, bool, int, clang::(anonymous namespace)::OpenCLVersionID, unsigned int) const
Unexecuted instantiation: InitPreprocessor.cpp:auto InitializeOpenCLFeatureTestMacros(clang::TargetInfo const&, clang::LangOptions const&, clang::MacroBuilder&)::$_0::operator()<bool, int, unsigned int, clang::(anonymous namespace)::OpenCLVersionID>(llvm::StringRef, bool, int, unsigned int, clang::(anonymous namespace)::OpenCLVersionID) const
Unexecuted instantiation: InitPreprocessor.cpp:auto InitializeOpenCLFeatureTestMacros(clang::TargetInfo const&, clang::LangOptions const&, clang::MacroBuilder&)::$_0::operator()<bool, int, unsigned int, unsigned int>(llvm::StringRef, bool, int, unsigned int, unsigned int) const
Unexecuted instantiation: InitPreprocessor.cpp:auto InitializeOpenCLFeatureTestMacros(clang::TargetInfo const&, clang::LangOptions const&, clang::MacroBuilder&)::$_0::operator()<bool, int, clang::(anonymous namespace)::OpenCLVersionID, clang::(anonymous namespace)::OpenCLVersionID>(llvm::StringRef, bool, int, clang::(anonymous namespace)::OpenCLVersionID, clang::(anonymous namespace)::OpenCLVersionID) const
760
0
#define OPENCL_GENERIC_EXTENSION(Ext, ...)                                     \
761
0
  defineOpenCLExtMacro(#Ext, __VA_ARGS__);
762
0
#include "clang/Basic/OpenCLExtensions.def"
763
764
  // Assume compiling for FULL profile
765
0
  Builder.defineMacro("__opencl_c_int64");
766
0
}
767
768
static void InitializePredefinedMacros(const TargetInfo &TI,
769
                                       const LangOptions &LangOpts,
770
                                       const FrontendOptions &FEOpts,
771
                                       const PreprocessorOptions &PPOpts,
772
46
                                       MacroBuilder &Builder) {
773
  // Compiler version introspection macros.
774
46
  Builder.defineMacro("__llvm__");  // LLVM Backend
775
46
  Builder.defineMacro("__clang__"); // Clang Frontend
776
138
#define TOSTR2(X) #X
777
138
#define TOSTR(X) TOSTR2(X)
778
46
  Builder.defineMacro("__clang_major__", TOSTR(CLANG_VERSION_MAJOR));
779
46
  Builder.defineMacro("__clang_minor__", TOSTR(CLANG_VERSION_MINOR));
780
46
  Builder.defineMacro("__clang_patchlevel__", TOSTR(CLANG_VERSION_PATCHLEVEL));
781
46
#undef TOSTR
782
46
#undef TOSTR2
783
46
  Builder.defineMacro("__clang_version__",
784
46
                      "\"" CLANG_VERSION_STRING " "
785
46
                      + getClangFullRepositoryVersion() + "\"");
786
787
46
  if (LangOpts.GNUCVersion != 0) {
788
    // Major, minor, patch, are given two decimal places each, so 4.2.1 becomes
789
    // 40201.
790
0
    unsigned GNUCMajor = LangOpts.GNUCVersion / 100 / 100;
791
0
    unsigned GNUCMinor = LangOpts.GNUCVersion / 100 % 100;
792
0
    unsigned GNUCPatch = LangOpts.GNUCVersion % 100;
793
0
    Builder.defineMacro("__GNUC__", Twine(GNUCMajor));
794
0
    Builder.defineMacro("__GNUC_MINOR__", Twine(GNUCMinor));
795
0
    Builder.defineMacro("__GNUC_PATCHLEVEL__", Twine(GNUCPatch));
796
0
    Builder.defineMacro("__GXX_ABI_VERSION", "1002");
797
798
0
    if (LangOpts.CPlusPlus) {
799
0
      Builder.defineMacro("__GNUG__", Twine(GNUCMajor));
800
0
      Builder.defineMacro("__GXX_WEAK__");
801
0
    }
802
0
  }
803
804
  // Define macros for the C11 / C++11 memory orderings
805
46
  Builder.defineMacro("__ATOMIC_RELAXED", "0");
806
46
  Builder.defineMacro("__ATOMIC_CONSUME", "1");
807
46
  Builder.defineMacro("__ATOMIC_ACQUIRE", "2");
808
46
  Builder.defineMacro("__ATOMIC_RELEASE", "3");
809
46
  Builder.defineMacro("__ATOMIC_ACQ_REL", "4");
810
46
  Builder.defineMacro("__ATOMIC_SEQ_CST", "5");
811
812
  // Define macros for the clang atomic scopes.
813
46
  Builder.defineMacro("__MEMORY_SCOPE_SYSTEM", "0");
814
46
  Builder.defineMacro("__MEMORY_SCOPE_DEVICE", "1");
815
46
  Builder.defineMacro("__MEMORY_SCOPE_WRKGRP", "2");
816
46
  Builder.defineMacro("__MEMORY_SCOPE_WVFRNT", "3");
817
46
  Builder.defineMacro("__MEMORY_SCOPE_SINGLE", "4");
818
819
  // Define macros for the OpenCL memory scope.
820
  // The values should match AtomicScopeOpenCLModel::ID enum.
821
46
  static_assert(
822
46
      static_cast<unsigned>(AtomicScopeOpenCLModel::WorkGroup) == 1 &&
823
46
          static_cast<unsigned>(AtomicScopeOpenCLModel::Device) == 2 &&
824
46
          static_cast<unsigned>(AtomicScopeOpenCLModel::AllSVMDevices) == 3 &&
825
46
          static_cast<unsigned>(AtomicScopeOpenCLModel::SubGroup) == 4,
826
46
      "Invalid OpenCL memory scope enum definition");
827
46
  Builder.defineMacro("__OPENCL_MEMORY_SCOPE_WORK_ITEM", "0");
828
46
  Builder.defineMacro("__OPENCL_MEMORY_SCOPE_WORK_GROUP", "1");
829
46
  Builder.defineMacro("__OPENCL_MEMORY_SCOPE_DEVICE", "2");
830
46
  Builder.defineMacro("__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES", "3");
831
46
  Builder.defineMacro("__OPENCL_MEMORY_SCOPE_SUB_GROUP", "4");
832
833
  // Define macros for floating-point data classes, used in __builtin_isfpclass.
834
46
  Builder.defineMacro("__FPCLASS_SNAN", "0x0001");
835
46
  Builder.defineMacro("__FPCLASS_QNAN", "0x0002");
836
46
  Builder.defineMacro("__FPCLASS_NEGINF", "0x0004");
837
46
  Builder.defineMacro("__FPCLASS_NEGNORMAL", "0x0008");
838
46
  Builder.defineMacro("__FPCLASS_NEGSUBNORMAL", "0x0010");
839
46
  Builder.defineMacro("__FPCLASS_NEGZERO", "0x0020");
840
46
  Builder.defineMacro("__FPCLASS_POSZERO", "0x0040");
841
46
  Builder.defineMacro("__FPCLASS_POSSUBNORMAL", "0x0080");
842
46
  Builder.defineMacro("__FPCLASS_POSNORMAL", "0x0100");
843
46
  Builder.defineMacro("__FPCLASS_POSINF", "0x0200");
844
845
  // Support for #pragma redefine_extname (Sun compatibility)
846
46
  Builder.defineMacro("__PRAGMA_REDEFINE_EXTNAME", "1");
847
848
  // Previously this macro was set to a string aiming to achieve compatibility
849
  // with GCC 4.2.1. Now, just return the full Clang version
850
46
  Builder.defineMacro("__VERSION__", "\"" +
851
46
                      Twine(getClangFullCPPVersion()) + "\"");
852
853
  // Initialize language-specific preprocessor defines.
854
855
  // Standard conforming mode?
856
46
  if (!LangOpts.GNUMode && !LangOpts.MSVCCompat)
857
0
    Builder.defineMacro("__STRICT_ANSI__");
858
859
46
  if (LangOpts.GNUCVersion && LangOpts.CPlusPlus11)
860
0
    Builder.defineMacro("__GXX_EXPERIMENTAL_CXX0X__");
861
862
46
  if (LangOpts.ObjC) {
863
23
    if (LangOpts.ObjCRuntime.isNonFragile()) {
864
23
      Builder.defineMacro("__OBJC2__");
865
866
23
      if (LangOpts.ObjCExceptions)
867
0
        Builder.defineMacro("OBJC_ZEROCOST_EXCEPTIONS");
868
23
    }
869
870
23
    if (LangOpts.getGC() != LangOptions::NonGC)
871
0
      Builder.defineMacro("__OBJC_GC__");
872
873
23
    if (LangOpts.ObjCRuntime.isNeXTFamily())
874
23
      Builder.defineMacro("__NEXT_RUNTIME__");
875
876
23
    if (LangOpts.ObjCRuntime.getKind() == ObjCRuntime::GNUstep) {
877
0
      auto version = LangOpts.ObjCRuntime.getVersion();
878
0
      std::string versionString = "1";
879
      // Don't rely on the tuple argument, because we can be asked to target
880
      // later ABIs than we actually support, so clamp these values to those
881
      // currently supported
882
0
      if (version >= VersionTuple(2, 0))
883
0
        Builder.defineMacro("__OBJC_GNUSTEP_RUNTIME_ABI__", "20");
884
0
      else
885
0
        Builder.defineMacro(
886
0
            "__OBJC_GNUSTEP_RUNTIME_ABI__",
887
0
            "1" + Twine(std::min(8U, version.getMinor().value_or(0))));
888
0
    }
889
890
23
    if (LangOpts.ObjCRuntime.getKind() == ObjCRuntime::ObjFW) {
891
0
      VersionTuple tuple = LangOpts.ObjCRuntime.getVersion();
892
0
      unsigned minor = tuple.getMinor().value_or(0);
893
0
      unsigned subminor = tuple.getSubminor().value_or(0);
894
0
      Builder.defineMacro("__OBJFW_RUNTIME_ABI__",
895
0
                          Twine(tuple.getMajor() * 10000 + minor * 100 +
896
0
                                subminor));
897
0
    }
898
899
23
    Builder.defineMacro("IBOutlet", "__attribute__((iboutlet))");
900
23
    Builder.defineMacro("IBOutletCollection(ClassName)",
901
23
                        "__attribute__((iboutletcollection(ClassName)))");
902
23
    Builder.defineMacro("IBAction", "void)__attribute__((ibaction)");
903
23
    Builder.defineMacro("IBInspectable", "");
904
23
    Builder.defineMacro("IB_DESIGNABLE", "");
905
23
  }
906
907
  // Define a macro that describes the Objective-C boolean type even for C
908
  // and C++ since BOOL can be used from non Objective-C code.
909
46
  Builder.defineMacro("__OBJC_BOOL_IS_BOOL",
910
46
                      Twine(TI.useSignedCharForObjCBool() ? "0" : "1"));
911
912
46
  if (LangOpts.CPlusPlus)
913
23
    InitializeCPlusPlusFeatureTestMacros(LangOpts, Builder);
914
915
  // darwin_constant_cfstrings controls this. This is also dependent
916
  // on other things like the runtime I believe.  This is set even for C code.
917
46
  if (!LangOpts.NoConstantCFStrings)
918
46
      Builder.defineMacro("__CONSTANT_CFSTRINGS__");
919
920
46
  if (LangOpts.ObjC)
921
23
    Builder.defineMacro("OBJC_NEW_PROPERTIES");
922
923
46
  if (LangOpts.PascalStrings)
924
0
    Builder.defineMacro("__PASCAL_STRINGS__");
925
926
46
  if (LangOpts.Blocks) {
927
0
    Builder.defineMacro("__block", "__attribute__((__blocks__(byref)))");
928
0
    Builder.defineMacro("__BLOCKS__");
929
0
  }
930
931
46
  if (!LangOpts.MSVCCompat && LangOpts.Exceptions)
932
0
    Builder.defineMacro("__EXCEPTIONS");
933
46
  if (LangOpts.GNUCVersion && LangOpts.RTTI)
934
0
    Builder.defineMacro("__GXX_RTTI");
935
936
46
  if (LangOpts.hasSjLjExceptions())
937
0
    Builder.defineMacro("__USING_SJLJ_EXCEPTIONS__");
938
46
  else if (LangOpts.hasSEHExceptions())
939
0
    Builder.defineMacro("__SEH__");
940
46
  else if (LangOpts.hasDWARFExceptions() &&
941
46
           (TI.getTriple().isThumb() || TI.getTriple().isARM()))
942
0
    Builder.defineMacro("__ARM_DWARF_EH__");
943
944
46
  if (LangOpts.Deprecated)
945
0
    Builder.defineMacro("__DEPRECATED");
946
947
46
  if (!LangOpts.MSVCCompat && LangOpts.CPlusPlus)
948
23
    Builder.defineMacro("__private_extern__", "extern");
949
950
46
  if (LangOpts.MicrosoftExt) {
951
0
    if (LangOpts.WChar) {
952
      // wchar_t supported as a keyword.
953
0
      Builder.defineMacro("_WCHAR_T_DEFINED");
954
0
      Builder.defineMacro("_NATIVE_WCHAR_T_DEFINED");
955
0
    }
956
0
  }
957
958
  // Macros to help identify the narrow and wide character sets
959
  // FIXME: clang currently ignores -fexec-charset=. If this changes,
960
  // then this may need to be updated.
961
46
  Builder.defineMacro("__clang_literal_encoding__", "\"UTF-8\"");
962
46
  if (TI.getTypeWidth(TI.getWCharType()) >= 32) {
963
    // FIXME: 32-bit wchar_t signals UTF-32. This may change
964
    // if -fwide-exec-charset= is ever supported.
965
46
    Builder.defineMacro("__clang_wide_literal_encoding__", "\"UTF-32\"");
966
46
  } else {
967
    // FIXME: Less-than 32-bit wchar_t generally means UTF-16
968
    // (e.g., Windows, 32-bit IBM). This may need to be
969
    // updated if -fwide-exec-charset= is ever supported.
970
0
    Builder.defineMacro("__clang_wide_literal_encoding__", "\"UTF-16\"");
971
0
  }
972
973
46
  if (LangOpts.Optimize)
974
46
    Builder.defineMacro("__OPTIMIZE__");
975
46
  if (LangOpts.OptimizeSize)
976
0
    Builder.defineMacro("__OPTIMIZE_SIZE__");
977
978
46
  if (LangOpts.FastMath)
979
0
    Builder.defineMacro("__FAST_MATH__");
980
981
  // Initialize target-specific preprocessor defines.
982
983
  // __BYTE_ORDER__ was added in GCC 4.6. It's analogous
984
  // to the macro __BYTE_ORDER (no trailing underscores)
985
  // from glibc's <endian.h> header.
986
  // We don't support the PDP-11 as a target, but include
987
  // the define so it can still be compared against.
988
46
  Builder.defineMacro("__ORDER_LITTLE_ENDIAN__", "1234");
989
46
  Builder.defineMacro("__ORDER_BIG_ENDIAN__",    "4321");
990
46
  Builder.defineMacro("__ORDER_PDP_ENDIAN__",    "3412");
991
46
  if (TI.isBigEndian()) {
992
0
    Builder.defineMacro("__BYTE_ORDER__", "__ORDER_BIG_ENDIAN__");
993
0
    Builder.defineMacro("__BIG_ENDIAN__");
994
46
  } else {
995
46
    Builder.defineMacro("__BYTE_ORDER__", "__ORDER_LITTLE_ENDIAN__");
996
46
    Builder.defineMacro("__LITTLE_ENDIAN__");
997
46
  }
998
999
46
  if (TI.getPointerWidth(LangAS::Default) == 64 && TI.getLongWidth() == 64 &&
1000
46
      TI.getIntWidth() == 32) {
1001
46
    Builder.defineMacro("_LP64");
1002
46
    Builder.defineMacro("__LP64__");
1003
46
  }
1004
1005
46
  if (TI.getPointerWidth(LangAS::Default) == 32 && TI.getLongWidth() == 32 &&
1006
46
      TI.getIntWidth() == 32) {
1007
0
    Builder.defineMacro("_ILP32");
1008
0
    Builder.defineMacro("__ILP32__");
1009
0
  }
1010
1011
  // Define type sizing macros based on the target properties.
1012
46
  assert(TI.getCharWidth() == 8 && "Only support 8-bit char so far");
1013
0
  Builder.defineMacro("__CHAR_BIT__", Twine(TI.getCharWidth()));
1014
1015
46
  Builder.defineMacro("__BOOL_WIDTH__", Twine(TI.getBoolWidth()));
1016
46
  Builder.defineMacro("__SHRT_WIDTH__", Twine(TI.getShortWidth()));
1017
46
  Builder.defineMacro("__INT_WIDTH__", Twine(TI.getIntWidth()));
1018
46
  Builder.defineMacro("__LONG_WIDTH__", Twine(TI.getLongWidth()));
1019
46
  Builder.defineMacro("__LLONG_WIDTH__", Twine(TI.getLongLongWidth()));
1020
1021
46
  size_t BitIntMaxWidth = TI.getMaxBitIntWidth();
1022
46
  assert(BitIntMaxWidth <= llvm::IntegerType::MAX_INT_BITS &&
1023
46
         "Target defined a max bit width larger than LLVM can support!");
1024
0
  assert(BitIntMaxWidth >= TI.getLongLongWidth() &&
1025
46
         "Target defined a max bit width smaller than the C standard allows!");
1026
0
  Builder.defineMacro("__BITINT_MAXWIDTH__", Twine(BitIntMaxWidth));
1027
1028
46
  DefineTypeSize("__SCHAR_MAX__", TargetInfo::SignedChar, TI, Builder);
1029
46
  DefineTypeSize("__SHRT_MAX__", TargetInfo::SignedShort, TI, Builder);
1030
46
  DefineTypeSize("__INT_MAX__", TargetInfo::SignedInt, TI, Builder);
1031
46
  DefineTypeSize("__LONG_MAX__", TargetInfo::SignedLong, TI, Builder);
1032
46
  DefineTypeSize("__LONG_LONG_MAX__", TargetInfo::SignedLongLong, TI, Builder);
1033
46
  DefineTypeSizeAndWidth("__WCHAR", TI.getWCharType(), TI, Builder);
1034
46
  DefineTypeSizeAndWidth("__WINT", TI.getWIntType(), TI, Builder);
1035
46
  DefineTypeSizeAndWidth("__INTMAX", TI.getIntMaxType(), TI, Builder);
1036
46
  DefineTypeSizeAndWidth("__SIZE", TI.getSizeType(), TI, Builder);
1037
1038
46
  DefineTypeSizeAndWidth("__UINTMAX", TI.getUIntMaxType(), TI, Builder);
1039
46
  DefineTypeSizeAndWidth("__PTRDIFF", TI.getPtrDiffType(LangAS::Default), TI,
1040
46
                         Builder);
1041
46
  DefineTypeSizeAndWidth("__INTPTR", TI.getIntPtrType(), TI, Builder);
1042
46
  DefineTypeSizeAndWidth("__UINTPTR", TI.getUIntPtrType(), TI, Builder);
1043
1044
46
  DefineTypeSizeof("__SIZEOF_DOUBLE__", TI.getDoubleWidth(), TI, Builder);
1045
46
  DefineTypeSizeof("__SIZEOF_FLOAT__", TI.getFloatWidth(), TI, Builder);
1046
46
  DefineTypeSizeof("__SIZEOF_INT__", TI.getIntWidth(), TI, Builder);
1047
46
  DefineTypeSizeof("__SIZEOF_LONG__", TI.getLongWidth(), TI, Builder);
1048
46
  DefineTypeSizeof("__SIZEOF_LONG_DOUBLE__",TI.getLongDoubleWidth(),TI,Builder);
1049
46
  DefineTypeSizeof("__SIZEOF_LONG_LONG__", TI.getLongLongWidth(), TI, Builder);
1050
46
  DefineTypeSizeof("__SIZEOF_POINTER__", TI.getPointerWidth(LangAS::Default),
1051
46
                   TI, Builder);
1052
46
  DefineTypeSizeof("__SIZEOF_SHORT__", TI.getShortWidth(), TI, Builder);
1053
46
  DefineTypeSizeof("__SIZEOF_PTRDIFF_T__",
1054
46
                   TI.getTypeWidth(TI.getPtrDiffType(LangAS::Default)), TI,
1055
46
                   Builder);
1056
46
  DefineTypeSizeof("__SIZEOF_SIZE_T__",
1057
46
                   TI.getTypeWidth(TI.getSizeType()), TI, Builder);
1058
46
  DefineTypeSizeof("__SIZEOF_WCHAR_T__",
1059
46
                   TI.getTypeWidth(TI.getWCharType()), TI, Builder);
1060
46
  DefineTypeSizeof("__SIZEOF_WINT_T__",
1061
46
                   TI.getTypeWidth(TI.getWIntType()), TI, Builder);
1062
46
  if (TI.hasInt128Type())
1063
46
    DefineTypeSizeof("__SIZEOF_INT128__", 128, TI, Builder);
1064
1065
46
  DefineType("__INTMAX_TYPE__", TI.getIntMaxType(), Builder);
1066
46
  DefineFmt("__INTMAX", TI.getIntMaxType(), TI, Builder);
1067
46
  Builder.defineMacro("__INTMAX_C_SUFFIX__",
1068
46
                      TI.getTypeConstantSuffix(TI.getIntMaxType()));
1069
46
  DefineType("__UINTMAX_TYPE__", TI.getUIntMaxType(), Builder);
1070
46
  DefineFmt("__UINTMAX", TI.getUIntMaxType(), TI, Builder);
1071
46
  Builder.defineMacro("__UINTMAX_C_SUFFIX__",
1072
46
                      TI.getTypeConstantSuffix(TI.getUIntMaxType()));
1073
46
  DefineType("__PTRDIFF_TYPE__", TI.getPtrDiffType(LangAS::Default), Builder);
1074
46
  DefineFmt("__PTRDIFF", TI.getPtrDiffType(LangAS::Default), TI, Builder);
1075
46
  DefineType("__INTPTR_TYPE__", TI.getIntPtrType(), Builder);
1076
46
  DefineFmt("__INTPTR", TI.getIntPtrType(), TI, Builder);
1077
46
  DefineType("__SIZE_TYPE__", TI.getSizeType(), Builder);
1078
46
  DefineFmt("__SIZE", TI.getSizeType(), TI, Builder);
1079
46
  DefineType("__WCHAR_TYPE__", TI.getWCharType(), Builder);
1080
46
  DefineType("__WINT_TYPE__", TI.getWIntType(), Builder);
1081
46
  DefineTypeSizeAndWidth("__SIG_ATOMIC", TI.getSigAtomicType(), TI, Builder);
1082
46
  DefineType("__CHAR16_TYPE__", TI.getChar16Type(), Builder);
1083
46
  DefineType("__CHAR32_TYPE__", TI.getChar32Type(), Builder);
1084
1085
46
  DefineType("__UINTPTR_TYPE__", TI.getUIntPtrType(), Builder);
1086
46
  DefineFmt("__UINTPTR", TI.getUIntPtrType(), TI, Builder);
1087
1088
  // The C standard requires the width of uintptr_t and intptr_t to be the same,
1089
  // per 7.20.2.4p1. Same for intmax_t and uintmax_t, per 7.20.2.5p1.
1090
46
  assert(TI.getTypeWidth(TI.getUIntPtrType()) ==
1091
46
             TI.getTypeWidth(TI.getIntPtrType()) &&
1092
46
         "uintptr_t and intptr_t have different widths?");
1093
0
  assert(TI.getTypeWidth(TI.getUIntMaxType()) ==
1094
46
             TI.getTypeWidth(TI.getIntMaxType()) &&
1095
46
         "uintmax_t and intmax_t have different widths?");
1096
1097
46
  if (TI.hasFloat16Type())
1098
46
    DefineFloatMacros(Builder, "FLT16", &TI.getHalfFormat(), "F16");
1099
46
  DefineFloatMacros(Builder, "FLT", &TI.getFloatFormat(), "F");
1100
46
  DefineFloatMacros(Builder, "DBL", &TI.getDoubleFormat(), "");
1101
46
  DefineFloatMacros(Builder, "LDBL", &TI.getLongDoubleFormat(), "L");
1102
1103
  // Define a __POINTER_WIDTH__ macro for stdint.h.
1104
46
  Builder.defineMacro("__POINTER_WIDTH__",
1105
46
                      Twine((int)TI.getPointerWidth(LangAS::Default)));
1106
1107
  // Define __BIGGEST_ALIGNMENT__ to be compatible with gcc.
1108
46
  Builder.defineMacro("__BIGGEST_ALIGNMENT__",
1109
46
                      Twine(TI.getSuitableAlign() / TI.getCharWidth()) );
1110
1111
46
  if (!LangOpts.CharIsSigned)
1112
0
    Builder.defineMacro("__CHAR_UNSIGNED__");
1113
1114
46
  if (!TargetInfo::isTypeSigned(TI.getWCharType()))
1115
0
    Builder.defineMacro("__WCHAR_UNSIGNED__");
1116
1117
46
  if (!TargetInfo::isTypeSigned(TI.getWIntType()))
1118
46
    Builder.defineMacro("__WINT_UNSIGNED__");
1119
1120
  // Define exact-width integer types for stdint.h
1121
46
  DefineExactWidthIntType(TargetInfo::SignedChar, TI, Builder);
1122
1123
46
  if (TI.getShortWidth() > TI.getCharWidth())
1124
46
    DefineExactWidthIntType(TargetInfo::SignedShort, TI, Builder);
1125
1126
46
  if (TI.getIntWidth() > TI.getShortWidth())
1127
46
    DefineExactWidthIntType(TargetInfo::SignedInt, TI, Builder);
1128
1129
46
  if (TI.getLongWidth() > TI.getIntWidth())
1130
46
    DefineExactWidthIntType(TargetInfo::SignedLong, TI, Builder);
1131
1132
46
  if (TI.getLongLongWidth() > TI.getLongWidth())
1133
0
    DefineExactWidthIntType(TargetInfo::SignedLongLong, TI, Builder);
1134
1135
46
  DefineExactWidthIntType(TargetInfo::UnsignedChar, TI, Builder);
1136
46
  DefineExactWidthIntTypeSize(TargetInfo::UnsignedChar, TI, Builder);
1137
46
  DefineExactWidthIntTypeSize(TargetInfo::SignedChar, TI, Builder);
1138
1139
46
  if (TI.getShortWidth() > TI.getCharWidth()) {
1140
46
    DefineExactWidthIntType(TargetInfo::UnsignedShort, TI, Builder);
1141
46
    DefineExactWidthIntTypeSize(TargetInfo::UnsignedShort, TI, Builder);
1142
46
    DefineExactWidthIntTypeSize(TargetInfo::SignedShort, TI, Builder);
1143
46
  }
1144
1145
46
  if (TI.getIntWidth() > TI.getShortWidth()) {
1146
46
    DefineExactWidthIntType(TargetInfo::UnsignedInt, TI, Builder);
1147
46
    DefineExactWidthIntTypeSize(TargetInfo::UnsignedInt, TI, Builder);
1148
46
    DefineExactWidthIntTypeSize(TargetInfo::SignedInt, TI, Builder);
1149
46
  }
1150
1151
46
  if (TI.getLongWidth() > TI.getIntWidth()) {
1152
46
    DefineExactWidthIntType(TargetInfo::UnsignedLong, TI, Builder);
1153
46
    DefineExactWidthIntTypeSize(TargetInfo::UnsignedLong, TI, Builder);
1154
46
    DefineExactWidthIntTypeSize(TargetInfo::SignedLong, TI, Builder);
1155
46
  }
1156
1157
46
  if (TI.getLongLongWidth() > TI.getLongWidth()) {
1158
0
    DefineExactWidthIntType(TargetInfo::UnsignedLongLong, TI, Builder);
1159
0
    DefineExactWidthIntTypeSize(TargetInfo::UnsignedLongLong, TI, Builder);
1160
0
    DefineExactWidthIntTypeSize(TargetInfo::SignedLongLong, TI, Builder);
1161
0
  }
1162
1163
46
  DefineLeastWidthIntType(8, true, TI, Builder);
1164
46
  DefineLeastWidthIntType(8, false, TI, Builder);
1165
46
  DefineLeastWidthIntType(16, true, TI, Builder);
1166
46
  DefineLeastWidthIntType(16, false, TI, Builder);
1167
46
  DefineLeastWidthIntType(32, true, TI, Builder);
1168
46
  DefineLeastWidthIntType(32, false, TI, Builder);
1169
46
  DefineLeastWidthIntType(64, true, TI, Builder);
1170
46
  DefineLeastWidthIntType(64, false, TI, Builder);
1171
1172
46
  DefineFastIntType(8, true, TI, Builder);
1173
46
  DefineFastIntType(8, false, TI, Builder);
1174
46
  DefineFastIntType(16, true, TI, Builder);
1175
46
  DefineFastIntType(16, false, TI, Builder);
1176
46
  DefineFastIntType(32, true, TI, Builder);
1177
46
  DefineFastIntType(32, false, TI, Builder);
1178
46
  DefineFastIntType(64, true, TI, Builder);
1179
46
  DefineFastIntType(64, false, TI, Builder);
1180
1181
46
  Builder.defineMacro("__USER_LABEL_PREFIX__", TI.getUserLabelPrefix());
1182
1183
46
  if (!LangOpts.MathErrno)
1184
46
    Builder.defineMacro("__NO_MATH_ERRNO__");
1185
1186
46
  if (LangOpts.FastMath || LangOpts.FiniteMathOnly)
1187
0
    Builder.defineMacro("__FINITE_MATH_ONLY__", "1");
1188
46
  else
1189
46
    Builder.defineMacro("__FINITE_MATH_ONLY__", "0");
1190
1191
46
  if (LangOpts.GNUCVersion) {
1192
0
    if (LangOpts.GNUInline || LangOpts.CPlusPlus)
1193
0
      Builder.defineMacro("__GNUC_GNU_INLINE__");
1194
0
    else
1195
0
      Builder.defineMacro("__GNUC_STDC_INLINE__");
1196
1197
    // The value written by __atomic_test_and_set.
1198
    // FIXME: This is target-dependent.
1199
0
    Builder.defineMacro("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL", "1");
1200
0
  }
1201
1202
46
  auto addLockFreeMacros = [&](const llvm::Twine &Prefix) {
1203
    // Used by libc++ and libstdc++ to implement ATOMIC_<foo>_LOCK_FREE.
1204
46
#define DEFINE_LOCK_FREE_MACRO(TYPE, Type)                                     \
1205
46
  Builder.defineMacro(Prefix + #TYPE "_LOCK_FREE",                             \
1206
0
                      getLockFreeValue(TI.get##Type##Width(), TI));
1207
46
    DEFINE_LOCK_FREE_MACRO(BOOL, Bool);
1208
46
    DEFINE_LOCK_FREE_MACRO(CHAR, Char);
1209
46
    if (LangOpts.Char8)
1210
0
      DEFINE_LOCK_FREE_MACRO(CHAR8_T, Char); // Treat char8_t like char.
1211
46
    DEFINE_LOCK_FREE_MACRO(CHAR16_T, Char16);
1212
46
    DEFINE_LOCK_FREE_MACRO(CHAR32_T, Char32);
1213
46
    DEFINE_LOCK_FREE_MACRO(WCHAR_T, WChar);
1214
46
    DEFINE_LOCK_FREE_MACRO(SHORT, Short);
1215
46
    DEFINE_LOCK_FREE_MACRO(INT, Int);
1216
46
    DEFINE_LOCK_FREE_MACRO(LONG, Long);
1217
46
    DEFINE_LOCK_FREE_MACRO(LLONG, LongLong);
1218
46
    Builder.defineMacro(
1219
46
        Prefix + "POINTER_LOCK_FREE",
1220
46
        getLockFreeValue(TI.getPointerWidth(LangAS::Default), TI));
1221
46
#undef DEFINE_LOCK_FREE_MACRO
1222
46
  };
1223
46
  addLockFreeMacros("__CLANG_ATOMIC_");
1224
46
  if (LangOpts.GNUCVersion)
1225
0
    addLockFreeMacros("__GCC_ATOMIC_");
1226
1227
46
  if (LangOpts.NoInlineDefine)
1228
0
    Builder.defineMacro("__NO_INLINE__");
1229
1230
46
  if (unsigned PICLevel = LangOpts.PICLevel) {
1231
0
    Builder.defineMacro("__PIC__", Twine(PICLevel));
1232
0
    Builder.defineMacro("__pic__", Twine(PICLevel));
1233
0
    if (LangOpts.PIE) {
1234
0
      Builder.defineMacro("__PIE__", Twine(PICLevel));
1235
0
      Builder.defineMacro("__pie__", Twine(PICLevel));
1236
0
    }
1237
0
  }
1238
1239
  // Macros to control C99 numerics and <float.h>
1240
46
  Builder.defineMacro("__FLT_RADIX__", "2");
1241
46
  Builder.defineMacro("__DECIMAL_DIG__", "__LDBL_DECIMAL_DIG__");
1242
1243
46
  if (LangOpts.getStackProtector() == LangOptions::SSPOn)
1244
0
    Builder.defineMacro("__SSP__");
1245
46
  else if (LangOpts.getStackProtector() == LangOptions::SSPStrong)
1246
0
    Builder.defineMacro("__SSP_STRONG__", "2");
1247
46
  else if (LangOpts.getStackProtector() == LangOptions::SSPReq)
1248
0
    Builder.defineMacro("__SSP_ALL__", "3");
1249
1250
46
  if (PPOpts.SetUpStaticAnalyzer)
1251
0
    Builder.defineMacro("__clang_analyzer__");
1252
1253
46
  if (LangOpts.FastRelaxedMath)
1254
0
    Builder.defineMacro("__FAST_RELAXED_MATH__");
1255
1256
46
  if (FEOpts.ProgramAction == frontend::RewriteObjC ||
1257
46
      LangOpts.getGC() != LangOptions::NonGC) {
1258
0
    Builder.defineMacro("__weak", "__attribute__((objc_gc(weak)))");
1259
0
    Builder.defineMacro("__strong", "__attribute__((objc_gc(strong)))");
1260
0
    Builder.defineMacro("__autoreleasing", "");
1261
0
    Builder.defineMacro("__unsafe_unretained", "");
1262
46
  } else if (LangOpts.ObjC) {
1263
23
    Builder.defineMacro("__weak", "__attribute__((objc_ownership(weak)))");
1264
23
    Builder.defineMacro("__strong", "__attribute__((objc_ownership(strong)))");
1265
23
    Builder.defineMacro("__autoreleasing",
1266
23
                        "__attribute__((objc_ownership(autoreleasing)))");
1267
23
    Builder.defineMacro("__unsafe_unretained",
1268
23
                        "__attribute__((objc_ownership(none)))");
1269
23
  }
1270
1271
  // On Darwin, there are __double_underscored variants of the type
1272
  // nullability qualifiers.
1273
46
  if (TI.getTriple().isOSDarwin()) {
1274
0
    Builder.defineMacro("__nonnull", "_Nonnull");
1275
0
    Builder.defineMacro("__null_unspecified", "_Null_unspecified");
1276
0
    Builder.defineMacro("__nullable", "_Nullable");
1277
0
  }
1278
1279
  // Add a macro to differentiate between regular iOS/tvOS/watchOS targets and
1280
  // the corresponding simulator targets.
1281
46
  if (TI.getTriple().isOSDarwin() && TI.getTriple().isSimulatorEnvironment())
1282
0
    Builder.defineMacro("__APPLE_EMBEDDED_SIMULATOR__", "1");
1283
1284
  // OpenMP definition
1285
  // OpenMP 2.2:
1286
  //   In implementations that support a preprocessor, the _OPENMP
1287
  //   macro name is defined to have the decimal value yyyymm where
1288
  //   yyyy and mm are the year and the month designations of the
1289
  //   version of the OpenMP API that the implementation support.
1290
46
  if (!LangOpts.OpenMPSimd) {
1291
46
    switch (LangOpts.OpenMP) {
1292
46
    case 0:
1293
46
      break;
1294
0
    case 31:
1295
0
      Builder.defineMacro("_OPENMP", "201107");
1296
0
      break;
1297
0
    case 40:
1298
0
      Builder.defineMacro("_OPENMP", "201307");
1299
0
      break;
1300
0
    case 45:
1301
0
      Builder.defineMacro("_OPENMP", "201511");
1302
0
      break;
1303
0
    case 50:
1304
0
      Builder.defineMacro("_OPENMP", "201811");
1305
0
      break;
1306
0
    case 52:
1307
0
      Builder.defineMacro("_OPENMP", "202111");
1308
0
      break;
1309
0
    default: // case 51:
1310
      // Default version is OpenMP 5.1
1311
0
      Builder.defineMacro("_OPENMP", "202011");
1312
0
      break;
1313
46
    }
1314
46
  }
1315
1316
  // CUDA device path compilaton
1317
46
  if (LangOpts.CUDAIsDevice && !LangOpts.HIP) {
1318
    // The CUDA_ARCH value is set for the GPU target specified in the NVPTX
1319
    // backend's target defines.
1320
0
    Builder.defineMacro("__CUDA_ARCH__");
1321
0
  }
1322
1323
  // We need to communicate this to our CUDA/HIP header wrapper, which in turn
1324
  // informs the proper CUDA/HIP headers of this choice.
1325
46
  if (LangOpts.GPUDeviceApproxTranscendentals)
1326
0
    Builder.defineMacro("__CLANG_GPU_APPROX_TRANSCENDENTALS__");
1327
1328
  // Define a macro indicating that the source file is being compiled with a
1329
  // SYCL device compiler which doesn't produce host binary.
1330
46
  if (LangOpts.SYCLIsDevice) {
1331
0
    Builder.defineMacro("__SYCL_DEVICE_ONLY__", "1");
1332
0
  }
1333
1334
  // OpenCL definitions.
1335
46
  if (LangOpts.OpenCL) {
1336
0
    InitializeOpenCLFeatureTestMacros(TI, LangOpts, Builder);
1337
1338
0
    if (TI.getTriple().isSPIR() || TI.getTriple().isSPIRV())
1339
0
      Builder.defineMacro("__IMAGE_SUPPORT__");
1340
0
  }
1341
1342
46
  if (TI.hasInt128Type() && LangOpts.CPlusPlus && LangOpts.GNUMode) {
1343
    // For each extended integer type, g++ defines a macro mapping the
1344
    // index of the type (0 in this case) in some list of extended types
1345
    // to the type.
1346
23
    Builder.defineMacro("__GLIBCXX_TYPE_INT_N_0", "__int128");
1347
23
    Builder.defineMacro("__GLIBCXX_BITSIZE_INT_N_0", "128");
1348
23
  }
1349
1350
  // ELF targets define __ELF__
1351
46
  if (TI.getTriple().isOSBinFormatELF())
1352
46
    Builder.defineMacro("__ELF__");
1353
1354
  // Target OS macro definitions.
1355
46
  if (PPOpts.DefineTargetOSMacros) {
1356
0
    const llvm::Triple &Triple = TI.getTriple();
1357
0
#define TARGET_OS(Name, Predicate)                                             \
1358
0
  Builder.defineMacro(#Name, (Predicate) ? "1" : "0");
1359
0
#include "clang/Basic/TargetOSMacros.def"
1360
0
#undef TARGET_OS
1361
0
  }
1362
1363
  // Get other target #defines.
1364
46
  TI.getTargetDefines(LangOpts, Builder);
1365
46
}
1366
1367
/// InitializePreprocessor - Initialize the preprocessor getting it and the
1368
/// environment ready to process a single file.
1369
void clang::InitializePreprocessor(
1370
    Preprocessor &PP, const PreprocessorOptions &InitOpts,
1371
    const PCHContainerReader &PCHContainerRdr,
1372
46
    const FrontendOptions &FEOpts) {
1373
46
  const LangOptions &LangOpts = PP.getLangOpts();
1374
46
  std::string PredefineBuffer;
1375
46
  PredefineBuffer.reserve(4080);
1376
46
  llvm::raw_string_ostream Predefines(PredefineBuffer);
1377
46
  MacroBuilder Builder(Predefines);
1378
1379
  // Emit line markers for various builtin sections of the file. The 3 here
1380
  // marks <built-in> as being a system header, which suppresses warnings when
1381
  // the same macro is defined multiple times.
1382
46
  Builder.append("# 1 \"<built-in>\" 3");
1383
1384
  // Install things like __POWERPC__, __GNUC__, etc into the macro table.
1385
46
  if (InitOpts.UsePredefines) {
1386
    // FIXME: This will create multiple definitions for most of the predefined
1387
    // macros. This is not the right way to handle this.
1388
46
    if ((LangOpts.CUDA || LangOpts.OpenMPIsTargetDevice ||
1389
46
         LangOpts.SYCLIsDevice) &&
1390
46
        PP.getAuxTargetInfo())
1391
0
      InitializePredefinedMacros(*PP.getAuxTargetInfo(), LangOpts, FEOpts,
1392
0
                                 PP.getPreprocessorOpts(), Builder);
1393
1394
46
    InitializePredefinedMacros(PP.getTargetInfo(), LangOpts, FEOpts,
1395
46
                               PP.getPreprocessorOpts(), Builder);
1396
1397
    // Install definitions to make Objective-C++ ARC work well with various
1398
    // C++ Standard Library implementations.
1399
46
    if (LangOpts.ObjC && LangOpts.CPlusPlus &&
1400
46
        (LangOpts.ObjCAutoRefCount || LangOpts.ObjCWeak)) {
1401
0
      switch (InitOpts.ObjCXXARCStandardLibrary) {
1402
0
      case ARCXX_nolib:
1403
0
      case ARCXX_libcxx:
1404
0
        break;
1405
1406
0
      case ARCXX_libstdcxx:
1407
0
        AddObjCXXARCLibstdcxxDefines(LangOpts, Builder);
1408
0
        break;
1409
0
      }
1410
0
    }
1411
46
  }
1412
1413
  // Even with predefines off, some macros are still predefined.
1414
  // These should all be defined in the preprocessor according to the
1415
  // current language configuration.
1416
46
  InitializeStandardPredefinedMacros(PP.getTargetInfo(), PP.getLangOpts(),
1417
46
                                     FEOpts, Builder);
1418
1419
  // Add on the predefines from the driver.  Wrap in a #line directive to report
1420
  // that they come from the command line.
1421
46
  Builder.append("# 1 \"<command line>\" 1");
1422
1423
  // Process #define's and #undef's in the order they are given.
1424
46
  for (unsigned i = 0, e = InitOpts.Macros.size(); i != e; ++i) {
1425
0
    if (InitOpts.Macros[i].second)  // isUndef
1426
0
      Builder.undefineMacro(InitOpts.Macros[i].first);
1427
0
    else
1428
0
      DefineBuiltinMacro(Builder, InitOpts.Macros[i].first,
1429
0
                         PP.getDiagnostics());
1430
0
  }
1431
1432
  // Exit the command line and go back to <built-in> (2 is LC_LEAVE).
1433
46
  Builder.append("# 1 \"<built-in>\" 2");
1434
1435
  // If -imacros are specified, include them now.  These are processed before
1436
  // any -include directives.
1437
46
  for (unsigned i = 0, e = InitOpts.MacroIncludes.size(); i != e; ++i)
1438
0
    AddImplicitIncludeMacros(Builder, InitOpts.MacroIncludes[i]);
1439
1440
  // Process -include-pch/-include-pth directives.
1441
46
  if (!InitOpts.ImplicitPCHInclude.empty())
1442
0
    AddImplicitIncludePCH(Builder, PP, PCHContainerRdr,
1443
0
                          InitOpts.ImplicitPCHInclude);
1444
1445
  // Process -include directives.
1446
46
  for (unsigned i = 0, e = InitOpts.Includes.size(); i != e; ++i) {
1447
0
    const std::string &Path = InitOpts.Includes[i];
1448
0
    AddImplicitInclude(Builder, Path);
1449
0
  }
1450
1451
  // Instruct the preprocessor to skip the preamble.
1452
46
  PP.setSkipMainFilePreamble(InitOpts.PrecompiledPreambleBytes.first,
1453
46
                             InitOpts.PrecompiledPreambleBytes.second);
1454
1455
  // Copy PredefinedBuffer into the Preprocessor.
1456
46
  PP.setPredefines(std::move(PredefineBuffer));
1457
46
}