1 //===--- PPMacroExpansion.cpp - Top level Macro Expansion -----------------===//
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
7 //===----------------------------------------------------------------------===//
9 // This file implements the top level handling of macro expansion for the
12 //===----------------------------------------------------------------------===//
14 #include "clang/Basic/AttributeCommonInfo.h"
15 #include "clang/Basic/Attributes.h"
16 #include "clang/Basic/Builtins.h"
17 #include "clang/Basic/FileManager.h"
18 #include "clang/Basic/IdentifierTable.h"
19 #include "clang/Basic/LLVM.h"
20 #include "clang/Basic/LangOptions.h"
21 #include "clang/Basic/ObjCRuntime.h"
22 #include "clang/Basic/SourceLocation.h"
23 #include "clang/Basic/TargetInfo.h"
24 #include "clang/Lex/CodeCompletionHandler.h"
25 #include "clang/Lex/DirectoryLookup.h"
26 #include "clang/Lex/ExternalPreprocessorSource.h"
27 #include "clang/Lex/HeaderSearch.h"
28 #include "clang/Lex/LexDiagnostic.h"
29 #include "clang/Lex/LiteralSupport.h"
30 #include "clang/Lex/MacroArgs.h"
31 #include "clang/Lex/MacroInfo.h"
32 #include "clang/Lex/Preprocessor.h"
33 #include "clang/Lex/PreprocessorLexer.h"
34 #include "clang/Lex/PreprocessorOptions.h"
35 #include "clang/Lex/Token.h"
36 #include "llvm/ADT/ArrayRef.h"
37 #include "llvm/ADT/DenseMap.h"
38 #include "llvm/ADT/DenseSet.h"
39 #include "llvm/ADT/FoldingSet.h"
40 #include "llvm/ADT/STLExtras.h"
41 #include "llvm/ADT/SmallString.h"
42 #include "llvm/ADT/SmallVector.h"
43 #include "llvm/ADT/StringRef.h"
44 #include "llvm/ADT/StringSwitch.h"
45 #include "llvm/Support/Casting.h"
46 #include "llvm/Support/ErrorHandling.h"
47 #include "llvm/Support/Format.h"
48 #include "llvm/Support/Path.h"
49 #include "llvm/Support/raw_ostream.h"
60 using namespace clang
;
63 Preprocessor::getLocalMacroDirectiveHistory(const IdentifierInfo
*II
) const {
64 if (!II
->hadMacroDefinition())
66 auto Pos
= CurSubmoduleState
->Macros
.find(II
);
67 return Pos
== CurSubmoduleState
->Macros
.end() ? nullptr
68 : Pos
->second
.getLatest();
71 void Preprocessor::appendMacroDirective(IdentifierInfo
*II
, MacroDirective
*MD
){
72 assert(MD
&& "MacroDirective should be non-zero!");
73 assert(!MD
->getPrevious() && "Already attached to a MacroDirective history.");
75 MacroState
&StoredMD
= CurSubmoduleState
->Macros
[II
];
76 auto *OldMD
= StoredMD
.getLatest();
77 MD
->setPrevious(OldMD
);
78 StoredMD
.setLatest(MD
);
79 StoredMD
.overrideActiveModuleMacros(*this, II
);
81 if (needModuleMacros()) {
82 // Track that we created a new macro directive, so we know we should
83 // consider building a ModuleMacro for it when we get to the end of
85 PendingModuleMacroNames
.push_back(II
);
88 // Set up the identifier as having associated macro history.
89 II
->setHasMacroDefinition(true);
90 if (!MD
->isDefined() && LeafModuleMacros
.find(II
) == LeafModuleMacros
.end())
91 II
->setHasMacroDefinition(false);
93 II
->setChangedSinceDeserialization();
96 void Preprocessor::setLoadedMacroDirective(IdentifierInfo
*II
,
99 // Normally, when a macro is defined, it goes through appendMacroDirective()
100 // above, which chains a macro to previous defines, undefs, etc.
101 // However, in a pch, the whole macro history up to the end of the pch is
102 // stored, so ASTReader goes through this function instead.
103 // However, built-in macros are already registered in the Preprocessor
104 // ctor, and ASTWriter stops writing the macro chain at built-in macros,
105 // so in that case the chain from the pch needs to be spliced to the existing
109 MacroState
&StoredMD
= CurSubmoduleState
->Macros
[II
];
111 if (auto *OldMD
= StoredMD
.getLatest()) {
112 // shouldIgnoreMacro() in ASTWriter also stops at macros from the
113 // predefines buffer in module builds. However, in module builds, modules
114 // are loaded completely before predefines are processed, so StoredMD
115 // will be nullptr for them when they're loaded. StoredMD should only be
116 // non-nullptr for builtins read from a pch file.
117 assert(OldMD
->getMacroInfo()->isBuiltinMacro() &&
118 "only built-ins should have an entry here");
119 assert(!OldMD
->getPrevious() && "builtin should only have a single entry");
120 ED
->setPrevious(OldMD
);
121 StoredMD
.setLatest(MD
);
126 // Setup the identifier as having associated macro history.
127 II
->setHasMacroDefinition(true);
128 if (!MD
->isDefined() && LeafModuleMacros
.find(II
) == LeafModuleMacros
.end())
129 II
->setHasMacroDefinition(false);
132 ModuleMacro
*Preprocessor::addModuleMacro(Module
*Mod
, IdentifierInfo
*II
,
134 ArrayRef
<ModuleMacro
*> Overrides
,
136 llvm::FoldingSetNodeID ID
;
137 ModuleMacro::Profile(ID
, Mod
, II
);
140 if (auto *MM
= ModuleMacros
.FindNodeOrInsertPos(ID
, InsertPos
)) {
145 auto *MM
= ModuleMacro::create(*this, Mod
, II
, Macro
, Overrides
);
146 ModuleMacros
.InsertNode(MM
, InsertPos
);
148 // Each overridden macro is now overridden by one more macro.
150 for (auto *O
: Overrides
) {
151 HidAny
|= (O
->NumOverriddenBy
== 0);
152 ++O
->NumOverriddenBy
;
155 // If we were the first overrider for any macro, it's no longer a leaf.
156 auto &LeafMacros
= LeafModuleMacros
[II
];
158 llvm::erase_if(LeafMacros
,
159 [](ModuleMacro
*MM
) { return MM
->NumOverriddenBy
!= 0; });
162 // The new macro is always a leaf macro.
163 LeafMacros
.push_back(MM
);
164 // The identifier now has defined macros (that may or may not be visible).
165 II
->setHasMacroDefinition(true);
171 ModuleMacro
*Preprocessor::getModuleMacro(Module
*Mod
,
172 const IdentifierInfo
*II
) {
173 llvm::FoldingSetNodeID ID
;
174 ModuleMacro::Profile(ID
, Mod
, II
);
177 return ModuleMacros
.FindNodeOrInsertPos(ID
, InsertPos
);
180 void Preprocessor::updateModuleMacroInfo(const IdentifierInfo
*II
,
181 ModuleMacroInfo
&Info
) {
182 assert(Info
.ActiveModuleMacrosGeneration
!=
183 CurSubmoduleState
->VisibleModules
.getGeneration() &&
184 "don't need to update this macro name info");
185 Info
.ActiveModuleMacrosGeneration
=
186 CurSubmoduleState
->VisibleModules
.getGeneration();
188 auto Leaf
= LeafModuleMacros
.find(II
);
189 if (Leaf
== LeafModuleMacros
.end()) {
190 // No imported macros at all: nothing to do.
194 Info
.ActiveModuleMacros
.clear();
196 // Every macro that's locally overridden is overridden by a visible macro.
197 llvm::DenseMap
<ModuleMacro
*, int> NumHiddenOverrides
;
198 for (auto *O
: Info
.OverriddenMacros
)
199 NumHiddenOverrides
[O
] = -1;
201 // Collect all macros that are not overridden by a visible macro.
202 llvm::SmallVector
<ModuleMacro
*, 16> Worklist
;
203 for (auto *LeafMM
: Leaf
->second
) {
204 assert(LeafMM
->getNumOverridingMacros() == 0 && "leaf macro overridden");
205 if (NumHiddenOverrides
.lookup(LeafMM
) == 0)
206 Worklist
.push_back(LeafMM
);
208 while (!Worklist
.empty()) {
209 auto *MM
= Worklist
.pop_back_val();
210 if (CurSubmoduleState
->VisibleModules
.isVisible(MM
->getOwningModule())) {
211 // We only care about collecting definitions; undefinitions only act
212 // to override other definitions.
213 if (MM
->getMacroInfo())
214 Info
.ActiveModuleMacros
.push_back(MM
);
216 for (auto *O
: MM
->overrides())
217 if ((unsigned)++NumHiddenOverrides
[O
] == O
->getNumOverridingMacros())
218 Worklist
.push_back(O
);
221 // Our reverse postorder walk found the macros in reverse order.
222 std::reverse(Info
.ActiveModuleMacros
.begin(), Info
.ActiveModuleMacros
.end());
224 // Determine whether the macro name is ambiguous.
225 MacroInfo
*MI
= nullptr;
226 bool IsSystemMacro
= true;
227 bool IsAmbiguous
= false;
228 if (auto *MD
= Info
.MD
) {
229 while (MD
&& isa
<VisibilityMacroDirective
>(MD
))
230 MD
= MD
->getPrevious();
231 if (auto *DMD
= dyn_cast_or_null
<DefMacroDirective
>(MD
)) {
233 IsSystemMacro
&= SourceMgr
.isInSystemHeader(DMD
->getLocation());
236 for (auto *Active
: Info
.ActiveModuleMacros
) {
237 auto *NewMI
= Active
->getMacroInfo();
239 // Before marking the macro as ambiguous, check if this is a case where
240 // both macros are in system headers. If so, we trust that the system
241 // did not get it wrong. This also handles cases where Clang's own
242 // headers have a different spelling of certain system macros:
243 // #define LONG_MAX __LONG_MAX__ (clang's limits.h)
244 // #define LONG_MAX 0x7fffffffffffffffL (system's limits.h)
246 // FIXME: Remove the defined-in-system-headers check. clang's limits.h
247 // overrides the system limits.h's macros, so there's no conflict here.
248 if (MI
&& NewMI
!= MI
&&
249 !MI
->isIdenticalTo(*NewMI
, *this, /*Syntactically=*/true))
251 IsSystemMacro
&= Active
->getOwningModule()->IsSystem
||
252 SourceMgr
.isInSystemHeader(NewMI
->getDefinitionLoc());
255 Info
.IsAmbiguous
= IsAmbiguous
&& !IsSystemMacro
;
258 void Preprocessor::dumpMacroInfo(const IdentifierInfo
*II
) {
259 ArrayRef
<ModuleMacro
*> Leaf
;
260 auto LeafIt
= LeafModuleMacros
.find(II
);
261 if (LeafIt
!= LeafModuleMacros
.end())
262 Leaf
= LeafIt
->second
;
263 const MacroState
*State
= nullptr;
264 auto Pos
= CurSubmoduleState
->Macros
.find(II
);
265 if (Pos
!= CurSubmoduleState
->Macros
.end())
266 State
= &Pos
->second
;
268 llvm::errs() << "MacroState " << State
<< " " << II
->getNameStart();
269 if (State
&& State
->isAmbiguous(*this, II
))
270 llvm::errs() << " ambiguous";
271 if (State
&& !State
->getOverriddenMacros().empty()) {
272 llvm::errs() << " overrides";
273 for (auto *O
: State
->getOverriddenMacros())
274 llvm::errs() << " " << O
->getOwningModule()->getFullModuleName();
276 llvm::errs() << "\n";
278 // Dump local macro directives.
279 for (auto *MD
= State
? State
->getLatest() : nullptr; MD
;
280 MD
= MD
->getPrevious()) {
285 // Dump module macros.
286 llvm::DenseSet
<ModuleMacro
*> Active
;
288 State
? State
->getActiveModuleMacros(*this, II
) : std::nullopt
)
290 llvm::DenseSet
<ModuleMacro
*> Visited
;
291 llvm::SmallVector
<ModuleMacro
*, 16> Worklist(Leaf
.begin(), Leaf
.end());
292 while (!Worklist
.empty()) {
293 auto *MM
= Worklist
.pop_back_val();
294 llvm::errs() << " ModuleMacro " << MM
<< " "
295 << MM
->getOwningModule()->getFullModuleName();
296 if (!MM
->getMacroInfo())
297 llvm::errs() << " undef";
299 if (Active
.count(MM
))
300 llvm::errs() << " active";
301 else if (!CurSubmoduleState
->VisibleModules
.isVisible(
302 MM
->getOwningModule()))
303 llvm::errs() << " hidden";
304 else if (MM
->getMacroInfo())
305 llvm::errs() << " overridden";
307 if (!MM
->overrides().empty()) {
308 llvm::errs() << " overrides";
309 for (auto *O
: MM
->overrides()) {
310 llvm::errs() << " " << O
->getOwningModule()->getFullModuleName();
311 if (Visited
.insert(O
).second
)
312 Worklist
.push_back(O
);
315 llvm::errs() << "\n";
316 if (auto *MI
= MM
->getMacroInfo()) {
319 llvm::errs() << "\n";
324 /// RegisterBuiltinMacro - Register the specified identifier in the identifier
325 /// table and mark it as a builtin macro to be expanded.
326 static IdentifierInfo
*RegisterBuiltinMacro(Preprocessor
&PP
, const char *Name
){
327 // Get the identifier.
328 IdentifierInfo
*Id
= PP
.getIdentifierInfo(Name
);
330 // Mark it as being a macro that is builtin.
331 MacroInfo
*MI
= PP
.AllocateMacroInfo(SourceLocation());
332 MI
->setIsBuiltinMacro();
333 PP
.appendDefMacroDirective(Id
, MI
);
337 /// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the
338 /// identifier table.
339 void Preprocessor::RegisterBuiltinMacros() {
340 Ident__LINE__
= RegisterBuiltinMacro(*this, "__LINE__");
341 Ident__FILE__
= RegisterBuiltinMacro(*this, "__FILE__");
342 Ident__DATE__
= RegisterBuiltinMacro(*this, "__DATE__");
343 Ident__TIME__
= RegisterBuiltinMacro(*this, "__TIME__");
344 Ident__COUNTER__
= RegisterBuiltinMacro(*this, "__COUNTER__");
345 Ident_Pragma
= RegisterBuiltinMacro(*this, "_Pragma");
346 Ident__FLT_EVAL_METHOD__
= RegisterBuiltinMacro(*this, "__FLT_EVAL_METHOD__");
348 // C++ Standing Document Extensions.
349 if (getLangOpts().CPlusPlus
)
350 Ident__has_cpp_attribute
=
351 RegisterBuiltinMacro(*this, "__has_cpp_attribute");
353 Ident__has_cpp_attribute
= nullptr;
356 Ident__BASE_FILE__
= RegisterBuiltinMacro(*this, "__BASE_FILE__");
357 Ident__INCLUDE_LEVEL__
= RegisterBuiltinMacro(*this, "__INCLUDE_LEVEL__");
358 Ident__TIMESTAMP__
= RegisterBuiltinMacro(*this, "__TIMESTAMP__");
360 // Microsoft Extensions.
361 if (getLangOpts().MicrosoftExt
) {
362 Ident__identifier
= RegisterBuiltinMacro(*this, "__identifier");
363 Ident__pragma
= RegisterBuiltinMacro(*this, "__pragma");
365 Ident__identifier
= nullptr;
366 Ident__pragma
= nullptr;
370 Ident__FILE_NAME__
= RegisterBuiltinMacro(*this, "__FILE_NAME__");
371 Ident__has_feature
= RegisterBuiltinMacro(*this, "__has_feature");
372 Ident__has_extension
= RegisterBuiltinMacro(*this, "__has_extension");
373 Ident__has_builtin
= RegisterBuiltinMacro(*this, "__has_builtin");
374 Ident__has_constexpr_builtin
=
375 RegisterBuiltinMacro(*this, "__has_constexpr_builtin");
376 Ident__has_attribute
= RegisterBuiltinMacro(*this, "__has_attribute");
377 if (!getLangOpts().CPlusPlus
)
378 Ident__has_c_attribute
= RegisterBuiltinMacro(*this, "__has_c_attribute");
380 Ident__has_c_attribute
= nullptr;
382 Ident__has_declspec
= RegisterBuiltinMacro(*this, "__has_declspec_attribute");
383 Ident__has_include
= RegisterBuiltinMacro(*this, "__has_include");
384 Ident__has_include_next
= RegisterBuiltinMacro(*this, "__has_include_next");
385 Ident__has_warning
= RegisterBuiltinMacro(*this, "__has_warning");
386 Ident__is_identifier
= RegisterBuiltinMacro(*this, "__is_identifier");
387 Ident__is_target_arch
= RegisterBuiltinMacro(*this, "__is_target_arch");
388 Ident__is_target_vendor
= RegisterBuiltinMacro(*this, "__is_target_vendor");
389 Ident__is_target_os
= RegisterBuiltinMacro(*this, "__is_target_os");
390 Ident__is_target_environment
=
391 RegisterBuiltinMacro(*this, "__is_target_environment");
392 Ident__is_target_variant_os
=
393 RegisterBuiltinMacro(*this, "__is_target_variant_os");
394 Ident__is_target_variant_environment
=
395 RegisterBuiltinMacro(*this, "__is_target_variant_environment");
398 Ident__building_module
= RegisterBuiltinMacro(*this, "__building_module");
399 if (!getLangOpts().CurrentModule
.empty())
400 Ident__MODULE__
= RegisterBuiltinMacro(*this, "__MODULE__");
402 Ident__MODULE__
= nullptr;
405 /// isTrivialSingleTokenExpansion - Return true if MI, which has a single token
406 /// in its expansion, currently expands to that token literally.
407 static bool isTrivialSingleTokenExpansion(const MacroInfo
*MI
,
408 const IdentifierInfo
*MacroIdent
,
410 IdentifierInfo
*II
= MI
->getReplacementToken(0).getIdentifierInfo();
412 // If the token isn't an identifier, it's always literally expanded.
413 if (!II
) return true;
415 // If the information about this identifier is out of date, update it from
416 // the external source.
417 if (II
->isOutOfDate())
418 PP
.getExternalSource()->updateOutOfDateIdentifier(*II
);
420 // If the identifier is a macro, and if that macro is enabled, it may be
421 // expanded so it's not a trivial expansion.
422 if (auto *ExpansionMI
= PP
.getMacroInfo(II
))
423 if (ExpansionMI
->isEnabled() &&
424 // Fast expanding "#define X X" is ok, because X would be disabled.
428 // If this is an object-like macro invocation, it is safe to trivially expand
430 if (MI
->isObjectLike()) return true;
432 // If this is a function-like macro invocation, it's safe to trivially expand
433 // as long as the identifier is not a macro argument.
434 return !llvm::is_contained(MI
->params(), II
);
437 /// isNextPPTokenLParen - Determine whether the next preprocessor token to be
438 /// lexed is a '('. If so, consume the token and return true, if not, this
439 /// method should have no observable side-effect on the lexed tokens.
440 bool Preprocessor::isNextPPTokenLParen() {
441 // Do some quick tests for rejection cases.
444 Val
= CurLexer
->isNextPPTokenLParen();
446 Val
= CurTokenLexer
->isNextTokenLParen();
449 // We have run off the end. If it's a source file we don't
450 // examine enclosing ones (C99 5.1.1.2p4). Otherwise walk up the
454 for (const IncludeStackInfo
&Entry
: llvm::reverse(IncludeMacroStack
)) {
456 Val
= Entry
.TheLexer
->isNextPPTokenLParen();
458 Val
= Entry
.TheTokenLexer
->isNextTokenLParen();
463 // Ran off the end of a source file?
464 if (Entry
.ThePPLexer
)
469 // Okay, if we know that the token is a '(', lex it and return. Otherwise we
470 // have found something that isn't a '(' or we found the end of the
471 // translation unit. In either case, return false.
475 /// HandleMacroExpandedIdentifier - If an identifier token is read that is to be
476 /// expanded as a macro, handle it and return the next token as 'Identifier'.
477 bool Preprocessor::HandleMacroExpandedIdentifier(Token
&Identifier
,
478 const MacroDefinition
&M
) {
479 emitMacroExpansionWarnings(Identifier
);
481 MacroInfo
*MI
= M
.getMacroInfo();
483 // If this is a macro expansion in the "#if !defined(x)" line for the file,
484 // then the macro could expand to different things in other contexts, we need
485 // to disable the optimization in this case.
486 if (CurPPLexer
) CurPPLexer
->MIOpt
.ExpandedMacro();
488 // If this is a builtin macro, like __LINE__ or _Pragma, handle it specially.
489 if (MI
->isBuiltinMacro()) {
491 Callbacks
->MacroExpands(Identifier
, M
, Identifier
.getLocation(),
493 ExpandBuiltinMacro(Identifier
);
497 /// Args - If this is a function-like macro expansion, this contains,
498 /// for each macro argument, the list of tokens that were provided to the
500 MacroArgs
*Args
= nullptr;
502 // Remember where the end of the expansion occurred. For an object-like
503 // macro, this is the identifier. For a function-like macro, this is the ')'.
504 SourceLocation ExpansionEnd
= Identifier
.getLocation();
506 // If this is a function-like macro, read the arguments.
507 if (MI
->isFunctionLike()) {
508 // Remember that we are now parsing the arguments to a macro invocation.
509 // Preprocessor directives used inside macro arguments are not portable, and
510 // this enables the warning.
512 ArgMacro
= &Identifier
;
514 Args
= ReadMacroCallArgumentList(Identifier
, MI
, ExpansionEnd
);
516 // Finished parsing args.
520 // If there was an error parsing the arguments, bail out.
521 if (!Args
) return true;
523 ++NumFnMacroExpanded
;
528 // Notice that this macro has been used.
531 // Remember where the token is expanded.
532 SourceLocation ExpandLoc
= Identifier
.getLocation();
533 SourceRange
ExpansionRange(ExpandLoc
, ExpansionEnd
);
537 // We can have macro expansion inside a conditional directive while
538 // reading the function macro arguments. To ensure, in that case, that
539 // MacroExpands callbacks still happen in source order, queue this
540 // callback to have it happen after the function macro callback.
541 DelayedMacroExpandsCallbacks
.push_back(
542 MacroExpandsInfo(Identifier
, M
, ExpansionRange
));
544 Callbacks
->MacroExpands(Identifier
, M
, ExpansionRange
, Args
);
545 if (!DelayedMacroExpandsCallbacks
.empty()) {
546 for (const MacroExpandsInfo
&Info
: DelayedMacroExpandsCallbacks
) {
547 // FIXME: We lose macro args info with delayed callback.
548 Callbacks
->MacroExpands(Info
.Tok
, Info
.MD
, Info
.Range
,
551 DelayedMacroExpandsCallbacks
.clear();
556 // If the macro definition is ambiguous, complain.
557 if (M
.isAmbiguous()) {
558 Diag(Identifier
, diag::warn_pp_ambiguous_macro
)
559 << Identifier
.getIdentifierInfo();
560 Diag(MI
->getDefinitionLoc(), diag::note_pp_ambiguous_macro_chosen
)
561 << Identifier
.getIdentifierInfo();
562 M
.forAllDefinitions([&](const MacroInfo
*OtherMI
) {
564 Diag(OtherMI
->getDefinitionLoc(), diag::note_pp_ambiguous_macro_other
)
565 << Identifier
.getIdentifierInfo();
569 // If we started lexing a macro, enter the macro expansion body.
571 // If this macro expands to no tokens, don't bother to push it onto the
572 // expansion stack, only to take it right back off.
573 if (MI
->getNumTokens() == 0) {
574 // No need for arg info.
575 if (Args
) Args
->destroy(*this);
577 // Propagate whitespace info as if we had pushed, then popped,
579 Identifier
.setFlag(Token::LeadingEmptyMacro
);
580 PropagateLineStartLeadingSpaceInfo(Identifier
);
581 ++NumFastMacroExpanded
;
583 } else if (MI
->getNumTokens() == 1 &&
584 isTrivialSingleTokenExpansion(MI
, Identifier
.getIdentifierInfo(),
586 // Otherwise, if this macro expands into a single trivially-expanded
587 // token: expand it now. This handles common cases like
590 // No need for arg info.
591 if (Args
) Args
->destroy(*this);
593 // Propagate the isAtStartOfLine/hasLeadingSpace markers of the macro
594 // identifier to the expanded token.
595 bool isAtStartOfLine
= Identifier
.isAtStartOfLine();
596 bool hasLeadingSpace
= Identifier
.hasLeadingSpace();
598 // Replace the result token.
599 Identifier
= MI
->getReplacementToken(0);
601 // Restore the StartOfLine/LeadingSpace markers.
602 Identifier
.setFlagValue(Token::StartOfLine
, isAtStartOfLine
);
603 Identifier
.setFlagValue(Token::LeadingSpace
, hasLeadingSpace
);
605 // Update the tokens location to include both its expansion and physical
608 SourceMgr
.createExpansionLoc(Identifier
.getLocation(), ExpandLoc
,
609 ExpansionEnd
,Identifier
.getLength());
610 Identifier
.setLocation(Loc
);
612 // If this is a disabled macro or #define X X, we must mark the result as
614 if (IdentifierInfo
*NewII
= Identifier
.getIdentifierInfo()) {
615 if (MacroInfo
*NewMI
= getMacroInfo(NewII
))
616 if (!NewMI
->isEnabled() || NewMI
== MI
) {
617 Identifier
.setFlag(Token::DisableExpand
);
618 // Don't warn for "#define X X" like "#define bool bool" from
620 if (NewMI
!= MI
|| MI
->isFunctionLike())
621 Diag(Identifier
, diag::pp_disabled_macro_expansion
);
625 // Since this is not an identifier token, it can't be macro expanded, so
627 ++NumFastMacroExpanded
;
631 // Start expanding the macro.
632 EnterMacro(Identifier
, ExpansionEnd
, MI
, Args
);
641 /// CheckMatchedBrackets - Returns true if the braces and parentheses in the
642 /// token vector are properly nested.
643 static bool CheckMatchedBrackets(const SmallVectorImpl
<Token
> &Tokens
) {
644 SmallVector
<Bracket
, 8> Brackets
;
645 for (SmallVectorImpl
<Token
>::const_iterator I
= Tokens
.begin(),
648 if (I
->is(tok::l_paren
)) {
649 Brackets
.push_back(Paren
);
650 } else if (I
->is(tok::r_paren
)) {
651 if (Brackets
.empty() || Brackets
.back() == Brace
)
654 } else if (I
->is(tok::l_brace
)) {
655 Brackets
.push_back(Brace
);
656 } else if (I
->is(tok::r_brace
)) {
657 if (Brackets
.empty() || Brackets
.back() == Paren
)
662 return Brackets
.empty();
665 /// GenerateNewArgTokens - Returns true if OldTokens can be converted to a new
666 /// vector of tokens in NewTokens. The new number of arguments will be placed
667 /// in NumArgs and the ranges which need to surrounded in parentheses will be
669 /// Returns false if the token stream cannot be changed. If this is because
670 /// of an initializer list starting a macro argument, the range of those
671 /// initializer lists will be place in InitLists.
672 static bool GenerateNewArgTokens(Preprocessor
&PP
,
673 SmallVectorImpl
<Token
> &OldTokens
,
674 SmallVectorImpl
<Token
> &NewTokens
,
676 SmallVectorImpl
<SourceRange
> &ParenHints
,
677 SmallVectorImpl
<SourceRange
> &InitLists
) {
678 if (!CheckMatchedBrackets(OldTokens
))
681 // Once it is known that the brackets are matched, only a simple count of the
685 // First token of a new macro argument.
686 SmallVectorImpl
<Token
>::iterator ArgStartIterator
= OldTokens
.begin();
688 // First closing brace in a new macro argument. Used to generate
689 // SourceRanges for InitLists.
690 SmallVectorImpl
<Token
>::iterator ClosingBrace
= OldTokens
.end();
693 // Set to true when a macro separator token is found inside a braced list.
694 // If true, the fixed argument spans multiple old arguments and ParenHints
696 bool FoundSeparatorToken
= false;
697 for (SmallVectorImpl
<Token
>::iterator I
= OldTokens
.begin(),
700 if (I
->is(tok::l_brace
)) {
702 } else if (I
->is(tok::r_brace
)) {
704 if (Braces
== 0 && ClosingBrace
== E
&& FoundSeparatorToken
)
706 } else if (I
->is(tok::eof
)) {
707 // EOF token is used to separate macro arguments
709 // Assume comma separator is actually braced list separator and change
710 // it back to a comma.
711 FoundSeparatorToken
= true;
712 I
->setKind(tok::comma
);
714 } else { // Braces == 0
715 // Separator token still separates arguments.
718 // If the argument starts with a brace, it can't be fixed with
719 // parentheses. A different diagnostic will be given.
720 if (FoundSeparatorToken
&& ArgStartIterator
->is(tok::l_brace
)) {
722 SourceRange(ArgStartIterator
->getLocation(),
723 PP
.getLocForEndOfToken(ClosingBrace
->getLocation())));
728 if (FoundSeparatorToken
) {
729 TempToken
.startToken();
730 TempToken
.setKind(tok::l_paren
);
731 TempToken
.setLocation(ArgStartIterator
->getLocation());
732 TempToken
.setLength(0);
733 NewTokens
.push_back(TempToken
);
736 // Copy over argument tokens
737 NewTokens
.insert(NewTokens
.end(), ArgStartIterator
, I
);
739 // Add right paren and store the paren locations in ParenHints
740 if (FoundSeparatorToken
) {
741 SourceLocation Loc
= PP
.getLocForEndOfToken((I
- 1)->getLocation());
742 TempToken
.startToken();
743 TempToken
.setKind(tok::r_paren
);
744 TempToken
.setLocation(Loc
);
745 TempToken
.setLength(0);
746 NewTokens
.push_back(TempToken
);
747 ParenHints
.push_back(SourceRange(ArgStartIterator
->getLocation(),
751 // Copy separator token
752 NewTokens
.push_back(*I
);
755 ArgStartIterator
= I
+ 1;
756 FoundSeparatorToken
= false;
761 return !ParenHints
.empty() && InitLists
.empty();
764 /// ReadFunctionLikeMacroArgs - After reading "MACRO" and knowing that the next
765 /// token is the '(' of the macro, this method is invoked to read all of the
766 /// actual arguments specified for the macro invocation. This returns null on
768 MacroArgs
*Preprocessor::ReadMacroCallArgumentList(Token
&MacroName
,
770 SourceLocation
&MacroEnd
) {
771 // The number of fixed arguments to parse.
772 unsigned NumFixedArgsLeft
= MI
->getNumParams();
773 bool isVariadic
= MI
->isVariadic();
775 // Outer loop, while there are more arguments, keep reading them.
778 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
779 // an argument value in a macro could expand to ',' or '(' or ')'.
780 LexUnexpandedToken(Tok
);
781 assert(Tok
.is(tok::l_paren
) && "Error computing l-paren-ness?");
783 // ArgTokens - Build up a list of tokens that make up each argument. Each
784 // argument is separated by an EOF token. Use a SmallVector so we can avoid
785 // heap allocations in the common case.
786 SmallVector
<Token
, 64> ArgTokens
;
787 bool ContainsCodeCompletionTok
= false;
788 bool FoundElidedComma
= false;
790 SourceLocation TooManyArgsLoc
;
792 unsigned NumActuals
= 0;
793 while (Tok
.isNot(tok::r_paren
)) {
794 if (ContainsCodeCompletionTok
&& Tok
.isOneOf(tok::eof
, tok::eod
))
797 assert(Tok
.isOneOf(tok::l_paren
, tok::comma
) &&
798 "only expect argument separators here");
800 size_t ArgTokenStart
= ArgTokens
.size();
801 SourceLocation ArgStartLoc
= Tok
.getLocation();
803 // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note
804 // that we already consumed the first one.
805 unsigned NumParens
= 0;
808 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
809 // an argument value in a macro could expand to ',' or '(' or ')'.
810 LexUnexpandedToken(Tok
);
812 if (Tok
.isOneOf(tok::eof
, tok::eod
)) { // "#if f(<eof>" & "#if f(\n"
813 if (!ContainsCodeCompletionTok
) {
814 Diag(MacroName
, diag::err_unterm_macro_invoc
);
815 Diag(MI
->getDefinitionLoc(), diag::note_macro_here
)
816 << MacroName
.getIdentifierInfo();
817 // Do not lose the EOF/EOD. Return it to the client.
821 // Do not lose the EOF/EOD.
822 auto Toks
= std::make_unique
<Token
[]>(1);
824 EnterTokenStream(std::move(Toks
), 1, true, /*IsReinject*/ false);
826 } else if (Tok
.is(tok::r_paren
)) {
827 // If we found the ) token, the macro arg list is done.
828 if (NumParens
-- == 0) {
829 MacroEnd
= Tok
.getLocation();
830 if (!ArgTokens
.empty() &&
831 ArgTokens
.back().commaAfterElided()) {
832 FoundElidedComma
= true;
836 } else if (Tok
.is(tok::l_paren
)) {
838 } else if (Tok
.is(tok::comma
)) {
839 // In Microsoft-compatibility mode, single commas from nested macro
840 // expansions should not be considered as argument separators. We test
841 // for this with the IgnoredComma token flag.
842 if (Tok
.getFlags() & Token::IgnoredComma
) {
843 // However, in MSVC's preprocessor, subsequent expansions do treat
844 // these commas as argument separators. This leads to a common
845 // workaround used in macros that need to work in both MSVC and
846 // compliant preprocessors. Therefore, the IgnoredComma flag can only
847 // apply once to any given token.
848 Tok
.clearFlag(Token::IgnoredComma
);
849 } else if (NumParens
== 0) {
850 // Comma ends this argument if there are more fixed arguments
851 // expected. However, if this is a variadic macro, and this is part of
852 // the variadic part, then the comma is just an argument token.
855 if (NumFixedArgsLeft
> 1)
858 } else if (Tok
.is(tok::comment
) && !KeepMacroComments
) {
859 // If this is a comment token in the argument list and we're just in
860 // -C mode (not -CC mode), discard the comment.
862 } else if (!Tok
.isAnnotation() && Tok
.getIdentifierInfo() != nullptr) {
863 // Reading macro arguments can cause macros that we are currently
864 // expanding from to be popped off the expansion stack. Doing so causes
865 // them to be reenabled for expansion. Here we record whether any
866 // identifiers we lex as macro arguments correspond to disabled macros.
867 // If so, we mark the token as noexpand. This is a subtle aspect of
869 if (MacroInfo
*MI
= getMacroInfo(Tok
.getIdentifierInfo()))
870 if (!MI
->isEnabled())
871 Tok
.setFlag(Token::DisableExpand
);
872 } else if (Tok
.is(tok::code_completion
)) {
873 ContainsCodeCompletionTok
= true;
875 CodeComplete
->CodeCompleteMacroArgument(MacroName
.getIdentifierInfo(),
877 // Don't mark that we reached the code-completion point because the
878 // parser is going to handle the token and there will be another
879 // code-completion callback.
882 ArgTokens
.push_back(Tok
);
885 // If this was an empty argument list foo(), don't add this as an empty
887 if (ArgTokens
.empty() && Tok
.getKind() == tok::r_paren
)
890 // If this is not a variadic macro, and too many args were specified, emit
892 if (!isVariadic
&& NumFixedArgsLeft
== 0 && TooManyArgsLoc
.isInvalid()) {
893 if (ArgTokens
.size() != ArgTokenStart
)
894 TooManyArgsLoc
= ArgTokens
[ArgTokenStart
].getLocation();
896 TooManyArgsLoc
= ArgStartLoc
;
899 // Empty arguments are standard in C99 and C++0x, and are supported as an
900 // extension in other modes.
901 if (ArgTokens
.size() == ArgTokenStart
&& !getLangOpts().C99
)
902 Diag(Tok
, getLangOpts().CPlusPlus11
903 ? diag::warn_cxx98_compat_empty_fnmacro_arg
904 : diag::ext_empty_fnmacro_arg
);
906 // Add a marker EOF token to the end of the token list for this argument.
909 EOFTok
.setKind(tok::eof
);
910 EOFTok
.setLocation(Tok
.getLocation());
912 ArgTokens
.push_back(EOFTok
);
914 if (!ContainsCodeCompletionTok
&& NumFixedArgsLeft
!= 0)
918 // Okay, we either found the r_paren. Check to see if we parsed too few
920 unsigned MinArgsExpected
= MI
->getNumParams();
922 // If this is not a variadic macro, and too many args were specified, emit
924 if (!isVariadic
&& NumActuals
> MinArgsExpected
&&
925 !ContainsCodeCompletionTok
) {
926 // Emit the diagnostic at the macro name in case there is a missing ).
927 // Emitting it at the , could be far away from the macro name.
928 Diag(TooManyArgsLoc
, diag::err_too_many_args_in_macro_invoc
);
929 Diag(MI
->getDefinitionLoc(), diag::note_macro_here
)
930 << MacroName
.getIdentifierInfo();
932 // Commas from braced initializer lists will be treated as argument
933 // separators inside macros. Attempt to correct for this with parentheses.
934 // TODO: See if this can be generalized to angle brackets for templates
935 // inside macro arguments.
937 SmallVector
<Token
, 4> FixedArgTokens
;
938 unsigned FixedNumArgs
= 0;
939 SmallVector
<SourceRange
, 4> ParenHints
, InitLists
;
940 if (!GenerateNewArgTokens(*this, ArgTokens
, FixedArgTokens
, FixedNumArgs
,
941 ParenHints
, InitLists
)) {
942 if (!InitLists
.empty()) {
943 DiagnosticBuilder DB
=
945 diag::note_init_list_at_beginning_of_macro_argument
);
946 for (SourceRange Range
: InitLists
)
951 if (FixedNumArgs
!= MinArgsExpected
)
954 DiagnosticBuilder DB
= Diag(MacroName
, diag::note_suggest_parens_for_macro
);
955 for (SourceRange ParenLocation
: ParenHints
) {
956 DB
<< FixItHint::CreateInsertion(ParenLocation
.getBegin(), "(");
957 DB
<< FixItHint::CreateInsertion(ParenLocation
.getEnd(), ")");
959 ArgTokens
.swap(FixedArgTokens
);
960 NumActuals
= FixedNumArgs
;
963 // See MacroArgs instance var for description of this.
964 bool isVarargsElided
= false;
966 if (ContainsCodeCompletionTok
) {
967 // Recover from not-fully-formed macro invocation during code-completion.
970 EOFTok
.setKind(tok::eof
);
971 EOFTok
.setLocation(Tok
.getLocation());
973 for (; NumActuals
< MinArgsExpected
; ++NumActuals
)
974 ArgTokens
.push_back(EOFTok
);
977 if (NumActuals
< MinArgsExpected
) {
978 // There are several cases where too few arguments is ok, handle them now.
979 if (NumActuals
== 0 && MinArgsExpected
== 1) {
980 // #define A(X) or #define A(...) ---> A()
982 // If there is exactly one argument, and that argument is missing,
983 // then we have an empty "()" argument empty list. This is fine, even if
984 // the macro expects one argument (the argument is just empty).
985 isVarargsElided
= MI
->isVariadic();
986 } else if ((FoundElidedComma
|| MI
->isVariadic()) &&
987 (NumActuals
+1 == MinArgsExpected
|| // A(x, ...) -> A(X)
988 (NumActuals
== 0 && MinArgsExpected
== 2))) {// A(x,...) -> A()
989 // Varargs where the named vararg parameter is missing: OK as extension.
993 // If the macro contains the comma pasting extension, the diagnostic
994 // is suppressed; we know we'll get another diagnostic later.
995 if (!MI
->hasCommaPasting()) {
996 // C++20 allows this construct, but standards before C++20 and all C
997 // standards do not allow the construct (we allow it as an extension).
998 Diag(Tok
, getLangOpts().CPlusPlus20
999 ? diag::warn_cxx17_compat_missing_varargs_arg
1000 : diag::ext_missing_varargs_arg
);
1001 Diag(MI
->getDefinitionLoc(), diag::note_macro_here
)
1002 << MacroName
.getIdentifierInfo();
1005 // Remember this occurred, allowing us to elide the comma when used for
1007 // #define A(x, foo...) blah(a, ## foo)
1008 // #define B(x, ...) blah(a, ## __VA_ARGS__)
1009 // #define C(...) blah(a, ## __VA_ARGS__)
1011 isVarargsElided
= true;
1012 } else if (!ContainsCodeCompletionTok
) {
1013 // Otherwise, emit the error.
1014 Diag(Tok
, diag::err_too_few_args_in_macro_invoc
);
1015 Diag(MI
->getDefinitionLoc(), diag::note_macro_here
)
1016 << MacroName
.getIdentifierInfo();
1020 // Add a marker EOF token to the end of the token list for this argument.
1021 SourceLocation EndLoc
= Tok
.getLocation();
1023 Tok
.setKind(tok::eof
);
1024 Tok
.setLocation(EndLoc
);
1026 ArgTokens
.push_back(Tok
);
1028 // If we expect two arguments, add both as empty.
1029 if (NumActuals
== 0 && MinArgsExpected
== 2)
1030 ArgTokens
.push_back(Tok
);
1032 } else if (NumActuals
> MinArgsExpected
&& !MI
->isVariadic() &&
1033 !ContainsCodeCompletionTok
) {
1034 // Emit the diagnostic at the macro name in case there is a missing ).
1035 // Emitting it at the , could be far away from the macro name.
1036 Diag(MacroName
, diag::err_too_many_args_in_macro_invoc
);
1037 Diag(MI
->getDefinitionLoc(), diag::note_macro_here
)
1038 << MacroName
.getIdentifierInfo();
1042 return MacroArgs::create(MI
, ArgTokens
, isVarargsElided
, *this);
1045 /// Keeps macro expanded tokens for TokenLexers.
1047 /// Works like a stack; a TokenLexer adds the macro expanded tokens that is
1048 /// going to lex in the cache and when it finishes the tokens are removed
1049 /// from the end of the cache.
1050 Token
*Preprocessor::cacheMacroExpandedTokens(TokenLexer
*tokLexer
,
1051 ArrayRef
<Token
> tokens
) {
1056 size_t newIndex
= MacroExpandedTokens
.size();
1057 bool cacheNeedsToGrow
= tokens
.size() >
1058 MacroExpandedTokens
.capacity()-MacroExpandedTokens
.size();
1059 MacroExpandedTokens
.append(tokens
.begin(), tokens
.end());
1061 if (cacheNeedsToGrow
) {
1062 // Go through all the TokenLexers whose 'Tokens' pointer points in the
1063 // buffer and update the pointers to the (potential) new buffer array.
1064 for (const auto &Lexer
: MacroExpandingLexersStack
) {
1065 TokenLexer
*prevLexer
;
1067 std::tie(prevLexer
, tokIndex
) = Lexer
;
1068 prevLexer
->Tokens
= MacroExpandedTokens
.data() + tokIndex
;
1072 MacroExpandingLexersStack
.push_back(std::make_pair(tokLexer
, newIndex
));
1073 return MacroExpandedTokens
.data() + newIndex
;
1076 void Preprocessor::removeCachedMacroExpandedTokensOfLastLexer() {
1077 assert(!MacroExpandingLexersStack
.empty());
1078 size_t tokIndex
= MacroExpandingLexersStack
.back().second
;
1079 assert(tokIndex
< MacroExpandedTokens
.size());
1080 // Pop the cached macro expanded tokens from the end.
1081 MacroExpandedTokens
.resize(tokIndex
);
1082 MacroExpandingLexersStack
.pop_back();
1085 /// ComputeDATE_TIME - Compute the current time, enter it into the specified
1086 /// scratch buffer, then return DATELoc/TIMELoc locations with the position of
1087 /// the identifier tokens inserted.
1088 static void ComputeDATE_TIME(SourceLocation
&DATELoc
, SourceLocation
&TIMELoc
,
1092 if (PP
.getPreprocessorOpts().SourceDateEpoch
) {
1093 TT
= *PP
.getPreprocessorOpts().SourceDateEpoch
;
1094 TM
= std::gmtime(&TT
);
1096 TT
= std::time(nullptr);
1097 TM
= std::localtime(&TT
);
1100 static const char * const Months
[] = {
1101 "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
1105 SmallString
<32> TmpBuffer
;
1106 llvm::raw_svector_ostream
TmpStream(TmpBuffer
);
1108 TmpStream
<< llvm::format("\"%s %2d %4d\"", Months
[TM
->tm_mon
],
1109 TM
->tm_mday
, TM
->tm_year
+ 1900);
1111 TmpStream
<< "??? ?? ????";
1113 TmpTok
.startToken();
1114 PP
.CreateString(TmpStream
.str(), TmpTok
);
1115 DATELoc
= TmpTok
.getLocation();
1119 SmallString
<32> TmpBuffer
;
1120 llvm::raw_svector_ostream
TmpStream(TmpBuffer
);
1122 TmpStream
<< llvm::format("\"%02d:%02d:%02d\"", TM
->tm_hour
, TM
->tm_min
,
1125 TmpStream
<< "??:??:??";
1127 TmpTok
.startToken();
1128 PP
.CreateString(TmpStream
.str(), TmpTok
);
1129 TIMELoc
= TmpTok
.getLocation();
1133 /// HasFeature - Return true if we recognize and implement the feature
1134 /// specified by the identifier as a standard language feature.
1135 static bool HasFeature(const Preprocessor
&PP
, StringRef Feature
) {
1136 const LangOptions
&LangOpts
= PP
.getLangOpts();
1138 // Normalize the feature name, __foo__ becomes foo.
1139 if (Feature
.startswith("__") && Feature
.endswith("__") && Feature
.size() >= 4)
1140 Feature
= Feature
.substr(2, Feature
.size() - 4);
1142 #define FEATURE(Name, Predicate) .Case(#Name, Predicate)
1143 return llvm::StringSwitch
<bool>(Feature
)
1144 #include "clang/Basic/Features.def"
1149 /// HasExtension - Return true if we recognize and implement the feature
1150 /// specified by the identifier, either as an extension or a standard language
1152 static bool HasExtension(const Preprocessor
&PP
, StringRef Extension
) {
1153 if (HasFeature(PP
, Extension
))
1156 // If the use of an extension results in an error diagnostic, extensions are
1157 // effectively unavailable, so just return false here.
1158 if (PP
.getDiagnostics().getExtensionHandlingBehavior() >=
1159 diag::Severity::Error
)
1162 const LangOptions
&LangOpts
= PP
.getLangOpts();
1164 // Normalize the extension name, __foo__ becomes foo.
1165 if (Extension
.startswith("__") && Extension
.endswith("__") &&
1166 Extension
.size() >= 4)
1167 Extension
= Extension
.substr(2, Extension
.size() - 4);
1169 // Because we inherit the feature list from HasFeature, this string switch
1170 // must be less restrictive than HasFeature's.
1171 #define EXTENSION(Name, Predicate) .Case(#Name, Predicate)
1172 return llvm::StringSwitch
<bool>(Extension
)
1173 #include "clang/Basic/Features.def"
1178 /// EvaluateHasIncludeCommon - Process a '__has_include("path")'
1179 /// or '__has_include_next("path")' expression.
1180 /// Returns true if successful.
1181 static bool EvaluateHasIncludeCommon(Token
&Tok
, IdentifierInfo
*II
,
1183 ConstSearchDirIterator LookupFrom
,
1184 const FileEntry
*LookupFromFile
) {
1185 // Save the location of the current token. If a '(' is later found, use
1186 // that location. If not, use the end of this location instead.
1187 SourceLocation LParenLoc
= Tok
.getLocation();
1189 // These expressions are only allowed within a preprocessor directive.
1190 if (!PP
.isParsingIfOrElifDirective()) {
1191 PP
.Diag(LParenLoc
, diag::err_pp_directive_required
) << II
;
1192 // Return a valid identifier token.
1193 assert(Tok
.is(tok::identifier
));
1194 Tok
.setIdentifierInfo(II
);
1198 // Get '('. If we don't have a '(', try to form a header-name token.
1200 if (PP
.LexHeaderName(Tok
))
1202 } while (Tok
.getKind() == tok::comment
);
1204 // Ensure we have a '('.
1205 if (Tok
.isNot(tok::l_paren
)) {
1206 // No '(', use end of last token.
1207 LParenLoc
= PP
.getLocForEndOfToken(LParenLoc
);
1208 PP
.Diag(LParenLoc
, diag::err_pp_expected_after
) << II
<< tok::l_paren
;
1209 // If the next token looks like a filename or the start of one,
1210 // assume it is and process it as such.
1211 if (Tok
.isNot(tok::header_name
))
1214 // Save '(' location for possible missing ')' message.
1215 LParenLoc
= Tok
.getLocation();
1216 if (PP
.LexHeaderName(Tok
))
1220 if (Tok
.isNot(tok::header_name
)) {
1221 PP
.Diag(Tok
.getLocation(), diag::err_pp_expects_filename
);
1225 // Reserve a buffer to get the spelling.
1226 SmallString
<128> FilenameBuffer
;
1227 bool Invalid
= false;
1228 StringRef Filename
= PP
.getSpelling(Tok
, FilenameBuffer
, &Invalid
);
1232 SourceLocation FilenameLoc
= Tok
.getLocation();
1235 PP
.LexNonComment(Tok
);
1237 // Ensure we have a trailing ).
1238 if (Tok
.isNot(tok::r_paren
)) {
1239 PP
.Diag(PP
.getLocForEndOfToken(FilenameLoc
), diag::err_pp_expected_after
)
1240 << II
<< tok::r_paren
;
1241 PP
.Diag(LParenLoc
, diag::note_matching
) << tok::l_paren
;
1245 bool isAngled
= PP
.GetIncludeFilenameSpelling(Tok
.getLocation(), Filename
);
1246 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1248 if (Filename
.empty())
1251 // Search include directories.
1252 OptionalFileEntryRef File
=
1253 PP
.LookupFile(FilenameLoc
, Filename
, isAngled
, LookupFrom
, LookupFromFile
,
1254 nullptr, nullptr, nullptr, nullptr, nullptr, nullptr);
1256 if (PPCallbacks
*Callbacks
= PP
.getPPCallbacks()) {
1257 SrcMgr::CharacteristicKind FileType
= SrcMgr::C_User
;
1260 PP
.getHeaderSearchInfo().getFileDirFlavor(&File
->getFileEntry());
1261 Callbacks
->HasInclude(FilenameLoc
, Filename
, isAngled
, File
, FileType
);
1264 // Get the result value. A result of true means the file exists.
1265 return File
.has_value();
1268 bool Preprocessor::EvaluateHasInclude(Token
&Tok
, IdentifierInfo
*II
) {
1269 return EvaluateHasIncludeCommon(Tok
, II
, *this, nullptr, nullptr);
1272 bool Preprocessor::EvaluateHasIncludeNext(Token
&Tok
, IdentifierInfo
*II
) {
1273 ConstSearchDirIterator Lookup
= nullptr;
1274 const FileEntry
*LookupFromFile
;
1275 std::tie(Lookup
, LookupFromFile
) = getIncludeNextStart(Tok
);
1277 return EvaluateHasIncludeCommon(Tok
, II
, *this, Lookup
, LookupFromFile
);
1280 /// Process single-argument builtin feature-like macros that return
1282 static void EvaluateFeatureLikeBuiltinMacro(llvm::raw_svector_ostream
& OS
,
1283 Token
&Tok
, IdentifierInfo
*II
,
1284 Preprocessor
&PP
, bool ExpandArgs
,
1287 bool &HasLexedNextTok
)> Op
) {
1288 // Parse the initial '('.
1289 PP
.LexUnexpandedToken(Tok
);
1290 if (Tok
.isNot(tok::l_paren
)) {
1291 PP
.Diag(Tok
.getLocation(), diag::err_pp_expected_after
) << II
1294 // Provide a dummy '0' value on output stream to elide further errors.
1295 if (!Tok
.isOneOf(tok::eof
, tok::eod
)) {
1297 Tok
.setKind(tok::numeric_constant
);
1302 unsigned ParenDepth
= 1;
1303 SourceLocation LParenLoc
= Tok
.getLocation();
1304 std::optional
<int> Result
;
1307 bool SuppressDiagnostic
= false;
1309 // Parse next token.
1313 PP
.LexUnexpandedToken(Tok
);
1316 switch (Tok
.getKind()) {
1319 // Don't provide even a dummy value if the eod or eof marker is
1320 // reached. Simply provide a diagnostic.
1321 PP
.Diag(Tok
.getLocation(), diag::err_unterm_macro_invoc
);
1325 if (!SuppressDiagnostic
) {
1326 PP
.Diag(Tok
.getLocation(), diag::err_too_many_args_in_macro_invoc
);
1327 SuppressDiagnostic
= true;
1335 if (!SuppressDiagnostic
) {
1336 PP
.Diag(Tok
.getLocation(), diag::err_pp_nested_paren
) << II
;
1337 SuppressDiagnostic
= true;
1342 if (--ParenDepth
> 0)
1345 // The last ')' has been reached; return the value if one found or
1346 // a diagnostic and a dummy value.
1349 // For strict conformance to __has_cpp_attribute rules, use 'L'
1350 // suffix for dated literals.
1355 if (!SuppressDiagnostic
)
1356 PP
.Diag(Tok
.getLocation(), diag::err_too_few_args_in_macro_invoc
);
1358 Tok
.setKind(tok::numeric_constant
);
1362 // Parse the macro argument, if one not found so far.
1366 bool HasLexedNextToken
= false;
1367 Result
= Op(Tok
, HasLexedNextToken
);
1369 if (HasLexedNextToken
)
1375 // Diagnose missing ')'.
1376 if (!SuppressDiagnostic
) {
1377 if (auto Diag
= PP
.Diag(Tok
.getLocation(), diag::err_pp_expected_after
)) {
1378 if (IdentifierInfo
*LastII
= ResultTok
.getIdentifierInfo())
1381 Diag
<< ResultTok
.getKind();
1382 Diag
<< tok::r_paren
<< ResultTok
.getLocation();
1384 PP
.Diag(LParenLoc
, diag::note_matching
) << tok::l_paren
;
1385 SuppressDiagnostic
= true;
1390 /// Helper function to return the IdentifierInfo structure of a Token
1391 /// or generate a diagnostic if none available.
1392 static IdentifierInfo
*ExpectFeatureIdentifierInfo(Token
&Tok
,
1396 if (!Tok
.isAnnotation() && (II
= Tok
.getIdentifierInfo()))
1399 PP
.Diag(Tok
.getLocation(), DiagID
);
1403 /// Implements the __is_target_arch builtin macro.
1404 static bool isTargetArch(const TargetInfo
&TI
, const IdentifierInfo
*II
) {
1405 std::string ArchName
= II
->getName().lower() + "--";
1406 llvm::Triple
Arch(ArchName
);
1407 const llvm::Triple
&TT
= TI
.getTriple();
1409 // arm matches thumb or thumbv7. armv7 matches thumbv7.
1410 if ((Arch
.getSubArch() == llvm::Triple::NoSubArch
||
1411 Arch
.getSubArch() == TT
.getSubArch()) &&
1412 ((TT
.getArch() == llvm::Triple::thumb
&&
1413 Arch
.getArch() == llvm::Triple::arm
) ||
1414 (TT
.getArch() == llvm::Triple::thumbeb
&&
1415 Arch
.getArch() == llvm::Triple::armeb
)))
1418 // Check the parsed arch when it has no sub arch to allow Clang to
1419 // match thumb to thumbv7 but to prohibit matching thumbv6 to thumbv7.
1420 return (Arch
.getSubArch() == llvm::Triple::NoSubArch
||
1421 Arch
.getSubArch() == TT
.getSubArch()) &&
1422 Arch
.getArch() == TT
.getArch();
1425 /// Implements the __is_target_vendor builtin macro.
1426 static bool isTargetVendor(const TargetInfo
&TI
, const IdentifierInfo
*II
) {
1427 StringRef VendorName
= TI
.getTriple().getVendorName();
1428 if (VendorName
.empty())
1429 VendorName
= "unknown";
1430 return VendorName
.equals_insensitive(II
->getName());
1433 /// Implements the __is_target_os builtin macro.
1434 static bool isTargetOS(const TargetInfo
&TI
, const IdentifierInfo
*II
) {
1435 std::string OSName
=
1436 (llvm::Twine("unknown-unknown-") + II
->getName().lower()).str();
1437 llvm::Triple
OS(OSName
);
1438 if (OS
.getOS() == llvm::Triple::Darwin
) {
1439 // Darwin matches macos, ios, etc.
1440 return TI
.getTriple().isOSDarwin();
1442 return TI
.getTriple().getOS() == OS
.getOS();
1445 /// Implements the __is_target_environment builtin macro.
1446 static bool isTargetEnvironment(const TargetInfo
&TI
,
1447 const IdentifierInfo
*II
) {
1448 std::string EnvName
= (llvm::Twine("---") + II
->getName().lower()).str();
1449 llvm::Triple
Env(EnvName
);
1450 // The unknown environment is matched only if
1451 // '__is_target_environment(unknown)' is used.
1452 if (Env
.getEnvironment() == llvm::Triple::UnknownEnvironment
&&
1453 EnvName
!= "---unknown")
1455 return TI
.getTriple().getEnvironment() == Env
.getEnvironment();
1458 /// Implements the __is_target_variant_os builtin macro.
1459 static bool isTargetVariantOS(const TargetInfo
&TI
, const IdentifierInfo
*II
) {
1460 if (TI
.getTriple().isOSDarwin()) {
1461 const llvm::Triple
*VariantTriple
= TI
.getDarwinTargetVariantTriple();
1465 std::string OSName
=
1466 (llvm::Twine("unknown-unknown-") + II
->getName().lower()).str();
1467 llvm::Triple
OS(OSName
);
1468 if (OS
.getOS() == llvm::Triple::Darwin
) {
1469 // Darwin matches macos, ios, etc.
1470 return VariantTriple
->isOSDarwin();
1472 return VariantTriple
->getOS() == OS
.getOS();
1477 /// Implements the __is_target_variant_environment builtin macro.
1478 static bool isTargetVariantEnvironment(const TargetInfo
&TI
,
1479 const IdentifierInfo
*II
) {
1480 if (TI
.getTriple().isOSDarwin()) {
1481 const llvm::Triple
*VariantTriple
= TI
.getDarwinTargetVariantTriple();
1484 std::string EnvName
= (llvm::Twine("---") + II
->getName().lower()).str();
1485 llvm::Triple
Env(EnvName
);
1486 return VariantTriple
->getEnvironment() == Env
.getEnvironment();
1491 /// ExpandBuiltinMacro - If an identifier token is read that is to be expanded
1492 /// as a builtin macro, handle it and return the next token as 'Tok'.
1493 void Preprocessor::ExpandBuiltinMacro(Token
&Tok
) {
1494 // Figure out which token this is.
1495 IdentifierInfo
*II
= Tok
.getIdentifierInfo();
1496 assert(II
&& "Can't be a macro without id info!");
1498 // If this is an _Pragma or Microsoft __pragma directive, expand it,
1499 // invoke the pragma handler, then lex the token after it.
1500 if (II
== Ident_Pragma
)
1501 return Handle_Pragma(Tok
);
1502 else if (II
== Ident__pragma
) // in non-MS mode this is null
1503 return HandleMicrosoft__pragma(Tok
);
1505 ++NumBuiltinMacroExpanded
;
1507 SmallString
<128> TmpBuffer
;
1508 llvm::raw_svector_ostream
OS(TmpBuffer
);
1510 // Set up the return result.
1511 Tok
.setIdentifierInfo(nullptr);
1512 Tok
.clearFlag(Token::NeedsCleaning
);
1513 bool IsAtStartOfLine
= Tok
.isAtStartOfLine();
1514 bool HasLeadingSpace
= Tok
.hasLeadingSpace();
1516 if (II
== Ident__LINE__
) {
1517 // C99 6.10.8: "__LINE__: The presumed line number (within the current
1518 // source file) of the current source line (an integer constant)". This can
1519 // be affected by #line.
1520 SourceLocation Loc
= Tok
.getLocation();
1522 // Advance to the location of the first _, this might not be the first byte
1523 // of the token if it starts with an escaped newline.
1524 Loc
= AdvanceToTokenCharacter(Loc
, 0);
1526 // One wrinkle here is that GCC expands __LINE__ to location of the *end* of
1527 // a macro expansion. This doesn't matter for object-like macros, but
1528 // can matter for a function-like macro that expands to contain __LINE__.
1529 // Skip down through expansion points until we find a file loc for the
1530 // end of the expansion history.
1531 Loc
= SourceMgr
.getExpansionRange(Loc
).getEnd();
1532 PresumedLoc PLoc
= SourceMgr
.getPresumedLoc(Loc
);
1534 // __LINE__ expands to a simple numeric value.
1535 OS
<< (PLoc
.isValid()? PLoc
.getLine() : 1);
1536 Tok
.setKind(tok::numeric_constant
);
1537 } else if (II
== Ident__FILE__
|| II
== Ident__BASE_FILE__
||
1538 II
== Ident__FILE_NAME__
) {
1539 // C99 6.10.8: "__FILE__: The presumed name of the current source file (a
1540 // character string literal)". This can be affected by #line.
1541 PresumedLoc PLoc
= SourceMgr
.getPresumedLoc(Tok
.getLocation());
1543 // __BASE_FILE__ is a GNU extension that returns the top of the presumed
1544 // #include stack instead of the current file.
1545 if (II
== Ident__BASE_FILE__
&& PLoc
.isValid()) {
1546 SourceLocation NextLoc
= PLoc
.getIncludeLoc();
1547 while (NextLoc
.isValid()) {
1548 PLoc
= SourceMgr
.getPresumedLoc(NextLoc
);
1549 if (PLoc
.isInvalid())
1552 NextLoc
= PLoc
.getIncludeLoc();
1556 // Escape this filename. Turn '\' -> '\\' '"' -> '\"'
1557 SmallString
<256> FN
;
1558 if (PLoc
.isValid()) {
1559 // __FILE_NAME__ is a Clang-specific extension that expands to the
1560 // the last part of __FILE__.
1561 if (II
== Ident__FILE_NAME__
) {
1562 // Try to get the last path component, failing that return the original
1563 // presumed location.
1564 StringRef PLFileName
= llvm::sys::path::filename(PLoc
.getFilename());
1565 if (PLFileName
!= "")
1568 FN
+= PLoc
.getFilename();
1570 FN
+= PLoc
.getFilename();
1572 processPathForFileMacro(FN
, getLangOpts(), getTargetInfo());
1573 Lexer::Stringify(FN
);
1574 OS
<< '"' << FN
<< '"';
1576 Tok
.setKind(tok::string_literal
);
1577 } else if (II
== Ident__DATE__
) {
1578 Diag(Tok
.getLocation(), diag::warn_pp_date_time
);
1579 if (!DATELoc
.isValid())
1580 ComputeDATE_TIME(DATELoc
, TIMELoc
, *this);
1581 Tok
.setKind(tok::string_literal
);
1582 Tok
.setLength(strlen("\"Mmm dd yyyy\""));
1583 Tok
.setLocation(SourceMgr
.createExpansionLoc(DATELoc
, Tok
.getLocation(),
1587 } else if (II
== Ident__TIME__
) {
1588 Diag(Tok
.getLocation(), diag::warn_pp_date_time
);
1589 if (!TIMELoc
.isValid())
1590 ComputeDATE_TIME(DATELoc
, TIMELoc
, *this);
1591 Tok
.setKind(tok::string_literal
);
1592 Tok
.setLength(strlen("\"hh:mm:ss\""));
1593 Tok
.setLocation(SourceMgr
.createExpansionLoc(TIMELoc
, Tok
.getLocation(),
1597 } else if (II
== Ident__INCLUDE_LEVEL__
) {
1598 // Compute the presumed include depth of this token. This can be affected
1599 // by GNU line markers.
1602 PresumedLoc PLoc
= SourceMgr
.getPresumedLoc(Tok
.getLocation());
1603 if (PLoc
.isValid()) {
1604 PLoc
= SourceMgr
.getPresumedLoc(PLoc
.getIncludeLoc());
1605 for (; PLoc
.isValid(); ++Depth
)
1606 PLoc
= SourceMgr
.getPresumedLoc(PLoc
.getIncludeLoc());
1609 // __INCLUDE_LEVEL__ expands to a simple numeric value.
1611 Tok
.setKind(tok::numeric_constant
);
1612 } else if (II
== Ident__TIMESTAMP__
) {
1613 Diag(Tok
.getLocation(), diag::warn_pp_date_time
);
1614 // MSVC, ICC, GCC, VisualAge C++ extension. The generated string should be
1615 // of the form "Ddd Mmm dd hh::mm::ss yyyy", which is returned by asctime.
1617 if (getPreprocessorOpts().SourceDateEpoch
) {
1618 time_t TT
= *getPreprocessorOpts().SourceDateEpoch
;
1619 std::tm
*TM
= std::gmtime(&TT
);
1620 Result
= asctime(TM
);
1622 // Get the file that we are lexing out of. If we're currently lexing from
1623 // a macro, dig into the include stack.
1624 const FileEntry
*CurFile
= nullptr;
1625 if (PreprocessorLexer
*TheLexer
= getCurrentFileLexer())
1626 CurFile
= SourceMgr
.getFileEntryForID(TheLexer
->getFileID());
1628 time_t TT
= CurFile
->getModificationTime();
1629 struct tm
*TM
= localtime(&TT
);
1630 Result
= asctime(TM
);
1632 Result
= "??? ??? ?? ??:??:?? ????\n";
1635 // Surround the string with " and strip the trailing newline.
1636 OS
<< '"' << StringRef(Result
).drop_back() << '"';
1637 Tok
.setKind(tok::string_literal
);
1638 } else if (II
== Ident__FLT_EVAL_METHOD__
) {
1639 // __FLT_EVAL_METHOD__ is set to the default value.
1640 if (getTUFPEvalMethod() ==
1641 LangOptions::FPEvalMethodKind::FEM_Indeterminable
) {
1642 // This is possible if `AllowFPReassoc` or `AllowReciprocal` is enabled.
1643 // These modes can be triggered via the command line option `-ffast-math`
1644 // or via a `pragam float_control`.
1645 // __FLT_EVAL_METHOD__ expands to -1.
1646 // The `minus` operator is the next token we read from the stream.
1647 auto Toks
= std::make_unique
<Token
[]>(1);
1649 Tok
.setKind(tok::minus
);
1650 // Push the token `1` to the stream.
1652 NumberToken
.startToken();
1653 NumberToken
.setKind(tok::numeric_constant
);
1654 NumberToken
.setLiteralData("1");
1655 NumberToken
.setLength(1);
1656 Toks
[0] = NumberToken
;
1657 EnterTokenStream(std::move(Toks
), 1, /*DisableMacroExpansion*/ false,
1658 /*IsReinject*/ false);
1660 OS
<< getTUFPEvalMethod();
1661 // __FLT_EVAL_METHOD__ expands to a simple numeric value.
1662 Tok
.setKind(tok::numeric_constant
);
1663 if (getLastFPEvalPragmaLocation().isValid()) {
1664 // The program is ill-formed. The value of __FLT_EVAL_METHOD__ is
1665 // altered by the pragma.
1666 Diag(Tok
, diag::err_illegal_use_of_flt_eval_macro
);
1667 Diag(getLastFPEvalPragmaLocation(), diag::note_pragma_entered_here
);
1670 } else if (II
== Ident__COUNTER__
) {
1671 // __COUNTER__ expands to a simple numeric value.
1672 OS
<< CounterValue
++;
1673 Tok
.setKind(tok::numeric_constant
);
1674 } else if (II
== Ident__has_feature
) {
1675 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, false,
1676 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1677 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1678 diag::err_feature_check_malformed
);
1679 return II
&& HasFeature(*this, II
->getName());
1681 } else if (II
== Ident__has_extension
) {
1682 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, false,
1683 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1684 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1685 diag::err_feature_check_malformed
);
1686 return II
&& HasExtension(*this, II
->getName());
1688 } else if (II
== Ident__has_builtin
) {
1689 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, false,
1690 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1691 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1692 diag::err_feature_check_malformed
);
1695 else if (II
->getBuiltinID() != 0) {
1696 switch (II
->getBuiltinID()) {
1697 case Builtin::BI__builtin_operator_new
:
1698 case Builtin::BI__builtin_operator_delete
:
1699 // denotes date of behavior change to support calling arbitrary
1700 // usual allocation and deallocation functions. Required by libc++
1703 return Builtin::evaluateRequiredTargetFeatures(
1704 getBuiltinInfo().getRequiredFeatures(II
->getBuiltinID()),
1705 getTargetInfo().getTargetOpts().FeatureMap
);
1708 } else if (II
->getTokenID() != tok::identifier
||
1709 II
->hasRevertedTokenIDToIdentifier()) {
1710 // Treat all keywords that introduce a custom syntax of the form
1712 // '__some_keyword' '(' [...] ')'
1714 // as being "builtin functions", even if the syntax isn't a valid
1715 // function call (for example, because the builtin takes a type
1717 if (II
->getName().startswith("__builtin_") ||
1718 II
->getName().startswith("__is_") ||
1719 II
->getName().startswith("__has_"))
1721 return llvm::StringSwitch
<bool>(II
->getName())
1722 .Case("__array_rank", true)
1723 .Case("__array_extent", true)
1724 .Case("__reference_binds_to_temporary", true)
1725 #define TRANSFORM_TYPE_TRAIT_DEF(_, Trait) .Case("__" #Trait, true)
1726 #include "clang/Basic/TransformTypeTraits.def"
1729 return llvm::StringSwitch
<bool>(II
->getName())
1730 // Report builtin templates as being builtins.
1731 .Case("__make_integer_seq", getLangOpts().CPlusPlus
)
1732 .Case("__type_pack_element", getLangOpts().CPlusPlus
)
1733 // Likewise for some builtin preprocessor macros.
1734 // FIXME: This is inconsistent; we usually suggest detecting
1735 // builtin macros via #ifdef. Don't add more cases here.
1736 .Case("__is_target_arch", true)
1737 .Case("__is_target_vendor", true)
1738 .Case("__is_target_os", true)
1739 .Case("__is_target_environment", true)
1740 .Case("__is_target_variant_os", true)
1741 .Case("__is_target_variant_environment", true)
1745 } else if (II
== Ident__has_constexpr_builtin
) {
1746 EvaluateFeatureLikeBuiltinMacro(
1747 OS
, Tok
, II
, *this, false,
1748 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1749 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1750 Tok
, *this, diag::err_feature_check_malformed
);
1753 unsigned BuiltinOp
= II
->getBuiltinID();
1754 return BuiltinOp
!= 0 &&
1755 this->getBuiltinInfo().isConstantEvaluated(BuiltinOp
);
1757 } else if (II
== Ident__is_identifier
) {
1758 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, false,
1759 [](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1760 return Tok
.is(tok::identifier
);
1762 } else if (II
== Ident__has_attribute
) {
1763 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, true,
1764 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1765 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1766 diag::err_feature_check_malformed
);
1767 return II
? hasAttribute(AttributeCommonInfo::Syntax::AS_GNU
, nullptr,
1768 II
, getTargetInfo(), getLangOpts())
1771 } else if (II
== Ident__has_declspec
) {
1772 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, true,
1773 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1774 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1775 diag::err_feature_check_malformed
);
1777 const LangOptions
&LangOpts
= getLangOpts();
1778 return LangOpts
.DeclSpecKeyword
&&
1779 hasAttribute(AttributeCommonInfo::Syntax::AS_Declspec
, nullptr,
1780 II
, getTargetInfo(), LangOpts
);
1785 } else if (II
== Ident__has_cpp_attribute
||
1786 II
== Ident__has_c_attribute
) {
1787 bool IsCXX
= II
== Ident__has_cpp_attribute
;
1788 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, true,
1789 [&](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1790 IdentifierInfo
*ScopeII
= nullptr;
1791 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1792 Tok
, *this, diag::err_feature_check_malformed
);
1796 // It is possible to receive a scope token. Read the "::", if it is
1797 // available, and the subsequent identifier.
1798 LexUnexpandedToken(Tok
);
1799 if (Tok
.isNot(tok::coloncolon
))
1800 HasLexedNextToken
= true;
1803 // Lex an expanded token for the attribute name.
1805 II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1806 diag::err_feature_check_malformed
);
1809 AttributeCommonInfo::Syntax Syntax
=
1810 IsCXX
? AttributeCommonInfo::Syntax::AS_CXX11
1811 : AttributeCommonInfo::Syntax::AS_C2x
;
1812 return II
? hasAttribute(Syntax
, ScopeII
, II
, getTargetInfo(),
1816 } else if (II
== Ident__has_include
||
1817 II
== Ident__has_include_next
) {
1818 // The argument to these two builtins should be a parenthesized
1819 // file name string literal using angle brackets (<>) or
1820 // double-quotes ("").
1822 if (II
== Ident__has_include
)
1823 Value
= EvaluateHasInclude(Tok
, II
);
1825 Value
= EvaluateHasIncludeNext(Tok
, II
);
1827 if (Tok
.isNot(tok::r_paren
))
1830 Tok
.setKind(tok::numeric_constant
);
1831 } else if (II
== Ident__has_warning
) {
1832 // The argument should be a parenthesized string literal.
1833 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, false,
1834 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1835 std::string WarningName
;
1836 SourceLocation StrStartLoc
= Tok
.getLocation();
1838 HasLexedNextToken
= Tok
.is(tok::string_literal
);
1839 if (!FinishLexStringLiteral(Tok
, WarningName
, "'__has_warning'",
1840 /*AllowMacroExpansion=*/false))
1843 // FIXME: Should we accept "-R..." flags here, or should that be
1844 // handled by a separate __has_remark?
1845 if (WarningName
.size() < 3 || WarningName
[0] != '-' ||
1846 WarningName
[1] != 'W') {
1847 Diag(StrStartLoc
, diag::warn_has_warning_invalid_option
);
1851 // Finally, check if the warning flags maps to a diagnostic group.
1852 // We construct a SmallVector here to talk to getDiagnosticIDs().
1853 // Although we don't use the result, this isn't a hot path, and not
1854 // worth special casing.
1855 SmallVector
<diag::kind
, 10> Diags
;
1856 return !getDiagnostics().getDiagnosticIDs()->
1857 getDiagnosticsInGroup(diag::Flavor::WarningOrError
,
1858 WarningName
.substr(2), Diags
);
1860 } else if (II
== Ident__building_module
) {
1861 // The argument to this builtin should be an identifier. The
1862 // builtin evaluates to 1 when that identifier names the module we are
1863 // currently building.
1864 EvaluateFeatureLikeBuiltinMacro(OS
, Tok
, II
, *this, false,
1865 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1866 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(Tok
, *this,
1867 diag::err_expected_id_building_module
);
1868 return getLangOpts().isCompilingModule() && II
&&
1869 (II
->getName() == getLangOpts().CurrentModule
);
1871 } else if (II
== Ident__MODULE__
) {
1872 // The current module as an identifier.
1873 OS
<< getLangOpts().CurrentModule
;
1874 IdentifierInfo
*ModuleII
= getIdentifierInfo(getLangOpts().CurrentModule
);
1875 Tok
.setIdentifierInfo(ModuleII
);
1876 Tok
.setKind(ModuleII
->getTokenID());
1877 } else if (II
== Ident__identifier
) {
1878 SourceLocation Loc
= Tok
.getLocation();
1880 // We're expecting '__identifier' '(' identifier ')'. Try to recover
1881 // if the parens are missing.
1883 if (Tok
.isNot(tok::l_paren
)) {
1884 // No '(', use end of last token.
1885 Diag(getLocForEndOfToken(Loc
), diag::err_pp_expected_after
)
1886 << II
<< tok::l_paren
;
1887 // If the next token isn't valid as our argument, we can't recover.
1888 if (!Tok
.isAnnotation() && Tok
.getIdentifierInfo())
1889 Tok
.setKind(tok::identifier
);
1893 SourceLocation LParenLoc
= Tok
.getLocation();
1896 if (!Tok
.isAnnotation() && Tok
.getIdentifierInfo())
1897 Tok
.setKind(tok::identifier
);
1898 else if (Tok
.is(tok::string_literal
) && !Tok
.hasUDSuffix()) {
1899 StringLiteralParser
Literal(Tok
, *this);
1900 if (Literal
.hadError
)
1903 Tok
.setIdentifierInfo(getIdentifierInfo(Literal
.GetString()));
1904 Tok
.setKind(tok::identifier
);
1906 Diag(Tok
.getLocation(), diag::err_pp_identifier_arg_not_identifier
)
1908 // Don't walk past anything that's not a real token.
1909 if (Tok
.isOneOf(tok::eof
, tok::eod
) || Tok
.isAnnotation())
1913 // Discard the ')', preserving 'Tok' as our result.
1915 LexNonComment(RParen
);
1916 if (RParen
.isNot(tok::r_paren
)) {
1917 Diag(getLocForEndOfToken(Tok
.getLocation()), diag::err_pp_expected_after
)
1918 << Tok
.getKind() << tok::r_paren
;
1919 Diag(LParenLoc
, diag::note_matching
) << tok::l_paren
;
1922 } else if (II
== Ident__is_target_arch
) {
1923 EvaluateFeatureLikeBuiltinMacro(
1924 OS
, Tok
, II
, *this, false,
1925 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1926 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1927 Tok
, *this, diag::err_feature_check_malformed
);
1928 return II
&& isTargetArch(getTargetInfo(), II
);
1930 } else if (II
== Ident__is_target_vendor
) {
1931 EvaluateFeatureLikeBuiltinMacro(
1932 OS
, Tok
, II
, *this, false,
1933 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1934 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1935 Tok
, *this, diag::err_feature_check_malformed
);
1936 return II
&& isTargetVendor(getTargetInfo(), II
);
1938 } else if (II
== Ident__is_target_os
) {
1939 EvaluateFeatureLikeBuiltinMacro(
1940 OS
, Tok
, II
, *this, false,
1941 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1942 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1943 Tok
, *this, diag::err_feature_check_malformed
);
1944 return II
&& isTargetOS(getTargetInfo(), II
);
1946 } else if (II
== Ident__is_target_environment
) {
1947 EvaluateFeatureLikeBuiltinMacro(
1948 OS
, Tok
, II
, *this, false,
1949 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1950 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1951 Tok
, *this, diag::err_feature_check_malformed
);
1952 return II
&& isTargetEnvironment(getTargetInfo(), II
);
1954 } else if (II
== Ident__is_target_variant_os
) {
1955 EvaluateFeatureLikeBuiltinMacro(
1956 OS
, Tok
, II
, *this, false,
1957 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1958 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1959 Tok
, *this, diag::err_feature_check_malformed
);
1960 return II
&& isTargetVariantOS(getTargetInfo(), II
);
1962 } else if (II
== Ident__is_target_variant_environment
) {
1963 EvaluateFeatureLikeBuiltinMacro(
1964 OS
, Tok
, II
, *this, false,
1965 [this](Token
&Tok
, bool &HasLexedNextToken
) -> int {
1966 IdentifierInfo
*II
= ExpectFeatureIdentifierInfo(
1967 Tok
, *this, diag::err_feature_check_malformed
);
1968 return II
&& isTargetVariantEnvironment(getTargetInfo(), II
);
1971 llvm_unreachable("Unknown identifier!");
1973 CreateString(OS
.str(), Tok
, Tok
.getLocation(), Tok
.getLocation());
1974 Tok
.setFlagValue(Token::StartOfLine
, IsAtStartOfLine
);
1975 Tok
.setFlagValue(Token::LeadingSpace
, HasLeadingSpace
);
1978 void Preprocessor::markMacroAsUsed(MacroInfo
*MI
) {
1979 // If the 'used' status changed, and the macro requires 'unused' warning,
1980 // remove its SourceLocation from the warn-for-unused-macro locations.
1981 if (MI
->isWarnIfUnused() && !MI
->isUsed())
1982 WarnUnusedMacroLocs
.erase(MI
->getDefinitionLoc());
1983 MI
->setIsUsed(true);
1986 void Preprocessor::processPathForFileMacro(SmallVectorImpl
<char> &Path
,
1987 const LangOptions
&LangOpts
,
1988 const TargetInfo
&TI
) {
1989 LangOpts
.remapPathPrefix(Path
);
1990 if (LangOpts
.UseTargetPathSeparator
) {
1991 if (TI
.getTriple().isOSWindows())
1992 llvm::sys::path::remove_dots(Path
, false,
1993 llvm::sys::path::Style::windows_backslash
);
1995 llvm::sys::path::remove_dots(Path
, false, llvm::sys::path::Style::posix
);