blob: c22b05922189f4b2168a4ea2d15e20a3091602c6 [file] [log] [blame]
Chris Lattner89620152008-03-09 03:13:06 +00001//===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
Chris Lattnerf64b3522008-03-09 01:54:53 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
James Dennettf6333ac2012-06-22 05:46:07 +00009///
10/// \file
11/// \brief Implements # directive processing for the Preprocessor.
12///
Chris Lattnerf64b3522008-03-09 01:54:53 +000013//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Preprocessor.h"
Chris Lattner710bb872009-11-30 04:18:44 +000016#include "clang/Basic/FileManager.h"
Chris Lattnerf64b3522008-03-09 01:54:53 +000017#include "clang/Basic/SourceManager.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/Lex/CodeCompletionHandler.h"
19#include "clang/Lex/HeaderSearch.h"
Daniel Jasper07e6c402013-08-05 20:26:17 +000020#include "clang/Lex/HeaderSearchOptions.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Lex/LexDiagnostic.h"
22#include "clang/Lex/LiteralSupport.h"
23#include "clang/Lex/MacroInfo.h"
24#include "clang/Lex/ModuleLoader.h"
25#include "clang/Lex/Pragma.h"
Chris Lattner100c65e2009-01-26 05:29:08 +000026#include "llvm/ADT/APInt.h"
Douglas Gregor41e115a2011-11-30 18:02:36 +000027#include "llvm/Support/ErrorHandling.h"
Rafael Espindolaf6002232014-08-08 21:31:04 +000028#include "llvm/Support/Path.h"
Aaron Ballman6ce00002013-01-16 19:32:21 +000029#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerf64b3522008-03-09 01:54:53 +000030using namespace clang;
31
32//===----------------------------------------------------------------------===//
33// Utility Methods for Preprocessor Directive Handling.
34//===----------------------------------------------------------------------===//
35
Chris Lattnerc0a585d2010-08-17 15:55:45 +000036MacroInfo *Preprocessor::AllocateMacroInfo() {
Richard Smithee0c4c12014-07-24 01:13:23 +000037 MacroInfoChain *MIChain = BP.Allocate<MacroInfoChain>();
Ted Kremenekc8456f82010-10-19 22:15:20 +000038 MIChain->Next = MIChainHead;
Ted Kremenekc8456f82010-10-19 22:15:20 +000039 MIChainHead = MIChain;
Richard Smithee0c4c12014-07-24 01:13:23 +000040 return &MIChain->MI;
Chris Lattnerc0a585d2010-08-17 15:55:45 +000041}
42
43MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) {
44 MacroInfo *MI = AllocateMacroInfo();
Ted Kremenek6c7ea112008-12-15 19:56:42 +000045 new (MI) MacroInfo(L);
46 return MI;
47}
48
Argyrios Kyrtzidis4f32da12013-03-22 21:12:51 +000049MacroInfo *Preprocessor::AllocateDeserializedMacroInfo(SourceLocation L,
50 unsigned SubModuleID) {
Chandler Carruth06dde922014-03-02 13:02:01 +000051 static_assert(llvm::AlignOf<MacroInfo>::Alignment >= sizeof(SubModuleID),
52 "alignment for MacroInfo is less than the ID");
Argyrios Kyrtzidisd48b91d2013-04-30 05:05:35 +000053 DeserializedMacroInfoChain *MIChain =
54 BP.Allocate<DeserializedMacroInfoChain>();
55 MIChain->Next = DeserialMIChainHead;
56 DeserialMIChainHead = MIChain;
57
58 MacroInfo *MI = &MIChain->MI;
Argyrios Kyrtzidis4f32da12013-03-22 21:12:51 +000059 new (MI) MacroInfo(L);
60 MI->FromASTFile = true;
61 MI->setOwningModuleID(SubModuleID);
62 return MI;
63}
64
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000065DefMacroDirective *
66Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc,
Richard Smithdaa69e02014-07-25 04:40:03 +000067 unsigned ImportedFromModuleID,
68 ArrayRef<unsigned> Overrides) {
69 unsigned NumExtra = (ImportedFromModuleID ? 1 : 0) + Overrides.size();
70 return new (BP.Allocate(sizeof(DefMacroDirective) +
71 sizeof(unsigned) * NumExtra,
72 llvm::alignOf<DefMacroDirective>()))
73 DefMacroDirective(MI, Loc, ImportedFromModuleID, Overrides);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000074}
75
76UndefMacroDirective *
Richard Smithdaa69e02014-07-25 04:40:03 +000077Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc,
78 unsigned ImportedFromModuleID,
79 ArrayRef<unsigned> Overrides) {
80 unsigned NumExtra = (ImportedFromModuleID ? 1 : 0) + Overrides.size();
81 return new (BP.Allocate(sizeof(UndefMacroDirective) +
82 sizeof(unsigned) * NumExtra,
83 llvm::alignOf<UndefMacroDirective>()))
84 UndefMacroDirective(UndefLoc, ImportedFromModuleID, Overrides);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000085}
86
87VisibilityMacroDirective *
88Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc,
89 bool isPublic) {
Richard Smithdaa69e02014-07-25 04:40:03 +000090 return new (BP) VisibilityMacroDirective(Loc, isPublic);
Chris Lattnerc0a585d2010-08-17 15:55:45 +000091}
92
James Dennettf6333ac2012-06-22 05:46:07 +000093/// \brief Read and discard all tokens remaining on the current line until
94/// the tok::eod token is found.
Chris Lattnerf64b3522008-03-09 01:54:53 +000095void Preprocessor::DiscardUntilEndOfDirective() {
96 Token Tmp;
97 do {
98 LexUnexpandedToken(Tmp);
Peter Collingbournef29ce972011-02-22 13:49:06 +000099 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000100 } while (Tmp.isNot(tok::eod));
Chris Lattnerf64b3522008-03-09 01:54:53 +0000101}
102
Serge Pavlov07c0f042014-12-18 11:14:21 +0000103/// \brief Enumerates possible cases of #define/#undef a reserved identifier.
104enum MacroDiag {
105 MD_NoWarn, //> Not a reserved identifier
106 MD_KeywordDef, //> Macro hides keyword, enabled by default
107 MD_ReservedMacro //> #define of #undef reserved id, disabled by default
108};
109
110/// \brief Checks if the specified identifier is reserved in the specified
111/// language.
112/// This function does not check if the identifier is a keyword.
113static bool isReservedId(StringRef Text, const LangOptions &Lang) {
114 // C++ [macro.names], C11 7.1.3:
115 // All identifiers that begin with an underscore and either an uppercase
116 // letter or another underscore are always reserved for any use.
117 if (Text.size() >= 2 && Text[0] == '_' &&
118 (isUppercase(Text[1]) || Text[1] == '_'))
119 return true;
120 // C++ [global.names]
121 // Each name that contains a double underscore ... is reserved to the
122 // implementation for any use.
123 if (Lang.CPlusPlus) {
124 if (Text.find("__") != StringRef::npos)
125 return true;
126 }
Nico Weber92c14bb2014-12-16 21:16:10 +0000127 return false;
Serge Pavlov83cf0782014-12-11 12:18:08 +0000128}
129
Serge Pavlov07c0f042014-12-18 11:14:21 +0000130static MacroDiag shouldWarnOnMacroDef(Preprocessor &PP, IdentifierInfo *II) {
131 const LangOptions &Lang = PP.getLangOpts();
132 StringRef Text = II->getName();
133 if (isReservedId(Text, Lang))
134 return MD_ReservedMacro;
135 if (II->isKeyword(Lang))
136 return MD_KeywordDef;
137 if (Lang.CPlusPlus11 && (Text.equals("override") || Text.equals("final")))
138 return MD_KeywordDef;
139 return MD_NoWarn;
140}
141
142static MacroDiag shouldWarnOnMacroUndef(Preprocessor &PP, IdentifierInfo *II) {
143 const LangOptions &Lang = PP.getLangOpts();
144 StringRef Text = II->getName();
145 // Do not warn on keyword undef. It is generally harmless and widely used.
146 if (isReservedId(Text, Lang))
147 return MD_ReservedMacro;
148 return MD_NoWarn;
149}
150
151bool Preprocessor::CheckMacroName(Token &MacroNameTok, MacroUse isDefineUndef,
152 bool *ShadowFlag) {
Alp Tokerb05e0b52014-05-21 06:13:51 +0000153 // Missing macro name?
154 if (MacroNameTok.is(tok::eod))
155 return Diag(MacroNameTok, diag::err_pp_missing_macro_name);
156
157 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
158 if (!II) {
159 bool Invalid = false;
160 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
161 if (Invalid)
162 return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
Alp Tokerf33619c2014-05-31 03:38:08 +0000163 II = getIdentifierInfo(Spelling);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000164
Alp Tokerf33619c2014-05-31 03:38:08 +0000165 if (!II->isCPlusPlusOperatorKeyword())
166 return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000167
Alp Tokere03e9e12014-05-31 16:32:22 +0000168 // C++ 2.5p2: Alternative tokens behave the same as its primary token
169 // except for their spellings.
170 Diag(MacroNameTok, getLangOpts().MicrosoftExt
171 ? diag::ext_pp_operator_used_as_macro_name
172 : diag::err_pp_operator_used_as_macro_name)
173 << II << MacroNameTok.getKind();
Alp Tokerb05e0b52014-05-21 06:13:51 +0000174
Alp Tokerc5d194fc2014-05-31 03:38:17 +0000175 // Allow #defining |and| and friends for Microsoft compatibility or
176 // recovery when legacy C headers are included in C++.
Alp Tokerf33619c2014-05-31 03:38:08 +0000177 MacroNameTok.setIdentifierInfo(II);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000178 }
179
Serge Pavlovd024f522014-10-24 17:31:32 +0000180 if ((isDefineUndef != MU_Other) && II->getPPKeywordID() == tok::pp_defined) {
Alp Tokerb05e0b52014-05-21 06:13:51 +0000181 // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4.
182 return Diag(MacroNameTok, diag::err_defined_macro_name);
183 }
184
Serge Pavlovd024f522014-10-24 17:31:32 +0000185 if (isDefineUndef == MU_Undef && II->hasMacroDefinition() &&
Alp Tokerb05e0b52014-05-21 06:13:51 +0000186 getMacroInfo(II)->isBuiltinMacro()) {
187 // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4
188 // and C++ [cpp.predefined]p4], but allow it as an extension.
189 Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro);
190 }
191
Serge Pavlov07c0f042014-12-18 11:14:21 +0000192 // If defining/undefining reserved identifier or a keyword, we need to issue
193 // a warning.
Serge Pavlov83cf0782014-12-11 12:18:08 +0000194 SourceLocation MacroNameLoc = MacroNameTok.getLocation();
Serge Pavlov07c0f042014-12-18 11:14:21 +0000195 if (ShadowFlag)
196 *ShadowFlag = false;
Serge Pavlov83cf0782014-12-11 12:18:08 +0000197 if (!SourceMgr.isInSystemHeader(MacroNameLoc) &&
198 (strcmp(SourceMgr.getBufferName(MacroNameLoc), "<built-in>") != 0)) {
Serge Pavlov07c0f042014-12-18 11:14:21 +0000199 MacroDiag D = MD_NoWarn;
200 if (isDefineUndef == MU_Define) {
201 D = shouldWarnOnMacroDef(*this, II);
202 }
203 else if (isDefineUndef == MU_Undef)
204 D = shouldWarnOnMacroUndef(*this, II);
205 if (D == MD_KeywordDef) {
206 // We do not want to warn on some patterns widely used in configuration
207 // scripts. This requires analyzing next tokens, so do not issue warnings
208 // now, only inform caller.
209 if (ShadowFlag)
210 *ShadowFlag = true;
211 }
212 if (D == MD_ReservedMacro)
213 Diag(MacroNameTok, diag::warn_pp_macro_is_reserved_id);
Serge Pavlov83cf0782014-12-11 12:18:08 +0000214 }
215
Alp Tokerb05e0b52014-05-21 06:13:51 +0000216 // Okay, we got a good identifier.
217 return false;
218}
219
James Dennettf6333ac2012-06-22 05:46:07 +0000220/// \brief Lex and validate a macro name, which occurs after a
221/// \#define or \#undef.
222///
Serge Pavlovd024f522014-10-24 17:31:32 +0000223/// This sets the token kind to eod and discards the rest of the macro line if
224/// the macro name is invalid.
225///
226/// \param MacroNameTok Token that is expected to be a macro name.
Serge Pavlov07c0f042014-12-18 11:14:21 +0000227/// \param isDefineUndef Context in which macro is used.
228/// \param ShadowFlag Points to a flag that is set if macro shadows a keyword.
229void Preprocessor::ReadMacroName(Token &MacroNameTok, MacroUse isDefineUndef,
230 bool *ShadowFlag) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000231 // Read the token, don't allow macro expansion on it.
232 LexUnexpandedToken(MacroNameTok);
Mike Stump11289f42009-09-09 15:08:12 +0000233
Douglas Gregor12785102010-08-24 20:21:13 +0000234 if (MacroNameTok.is(tok::code_completion)) {
235 if (CodeComplete)
Serge Pavlovd024f522014-10-24 17:31:32 +0000236 CodeComplete->CodeCompleteMacroName(isDefineUndef == MU_Define);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000237 setCodeCompletionReached();
Douglas Gregor12785102010-08-24 20:21:13 +0000238 LexUnexpandedToken(MacroNameTok);
Douglas Gregor12785102010-08-24 20:21:13 +0000239 }
Alp Tokerb05e0b52014-05-21 06:13:51 +0000240
Serge Pavlov07c0f042014-12-18 11:14:21 +0000241 if (!CheckMacroName(MacroNameTok, isDefineUndef, ShadowFlag))
Chris Lattner907dfe92008-11-18 07:59:24 +0000242 return;
Alp Tokerb05e0b52014-05-21 06:13:51 +0000243
244 // Invalid macro name, read and discard the rest of the line and set the
245 // token kind to tok::eod if necessary.
246 if (MacroNameTok.isNot(tok::eod)) {
247 MacroNameTok.setKind(tok::eod);
248 DiscardUntilEndOfDirective();
Chris Lattner907dfe92008-11-18 07:59:24 +0000249 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000250}
251
James Dennettf6333ac2012-06-22 05:46:07 +0000252/// \brief Ensure that the next token is a tok::eod token.
253///
254/// If not, emit a diagnostic and consume up until the eod. If EnableMacros is
Chris Lattner0003c272009-04-17 23:30:53 +0000255/// true, then we consider macros that expand to zero tokens as being ok.
256void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000257 Token Tmp;
Chris Lattner0003c272009-04-17 23:30:53 +0000258 // Lex unexpanded tokens for most directives: macros might expand to zero
259 // tokens, causing us to miss diagnosing invalid lines. Some directives (like
260 // #line) allow empty macros.
261 if (EnableMacros)
262 Lex(Tmp);
263 else
264 LexUnexpandedToken(Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000265
Chris Lattnerf64b3522008-03-09 01:54:53 +0000266 // There should be no tokens after the directive, but we allow them as an
267 // extension.
268 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
269 LexUnexpandedToken(Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000270
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000271 if (Tmp.isNot(tok::eod)) {
Chris Lattner825676a2009-04-14 05:15:20 +0000272 // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89,
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000273 // or if this is a macro-style preprocessing directive, because it is more
274 // trouble than it is worth to insert /**/ and check that there is no /**/
275 // in the range also.
Douglas Gregora771f462010-03-31 17:46:05 +0000276 FixItHint Hint;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000277 if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) &&
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000278 !CurTokenLexer)
Douglas Gregora771f462010-03-31 17:46:05 +0000279 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
280 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000281 DiscardUntilEndOfDirective();
282 }
283}
284
285
286
James Dennettf6333ac2012-06-22 05:46:07 +0000287/// SkipExcludedConditionalBlock - We just read a \#if or related directive and
288/// decided that the subsequent tokens are in the \#if'd out portion of the
289/// file. Lex the rest of the file, until we see an \#endif. If
Chris Lattnerf64b3522008-03-09 01:54:53 +0000290/// FoundNonSkipPortion is true, then we have already emitted code for part of
James Dennettf6333ac2012-06-22 05:46:07 +0000291/// this \#if directive, so \#else/\#elif blocks should never be entered.
292/// If ElseOk is true, then \#else directives are ok, if not, then we have
293/// already seen one so a \#else directive is a duplicate. When this returns,
294/// the caller can lex the first valid token.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000295void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
296 bool FoundNonSkipPortion,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +0000297 bool FoundElse,
298 SourceLocation ElseLoc) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000299 ++NumSkipped;
David Blaikie7d170102013-05-15 07:37:26 +0000300 assert(!CurTokenLexer && CurPPLexer && "Lexing a macro, not a file?");
Chris Lattnerf64b3522008-03-09 01:54:53 +0000301
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000302 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +0000303 FoundNonSkipPortion, FoundElse);
Mike Stump11289f42009-09-09 15:08:12 +0000304
Ted Kremenek56572ab2008-12-12 18:34:08 +0000305 if (CurPTHLexer) {
306 PTHSkipExcludedConditionalBlock();
307 return;
308 }
Mike Stump11289f42009-09-09 15:08:12 +0000309
Chris Lattnerf64b3522008-03-09 01:54:53 +0000310 // Enter raw mode to disable identifier lookup (and thus macro expansion),
311 // disabling warnings, etc.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000312 CurPPLexer->LexingRawMode = true;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000313 Token Tok;
314 while (1) {
Chris Lattnerf406b242010-01-18 22:33:01 +0000315 CurLexer->Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000316
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000317 if (Tok.is(tok::code_completion)) {
318 if (CodeComplete)
319 CodeComplete->CodeCompleteInConditionalExclusion();
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000320 setCodeCompletionReached();
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000321 continue;
322 }
323
Chris Lattnerf64b3522008-03-09 01:54:53 +0000324 // If this is the end of the buffer, we have an error.
325 if (Tok.is(tok::eof)) {
326 // Emit errors for each unterminated conditional on the stack, including
327 // the current one.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000328 while (!CurPPLexer->ConditionalStack.empty()) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000329 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
Douglas Gregor02690ba2010-08-12 17:04:55 +0000330 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
331 diag::err_pp_unterminated_conditional);
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000332 CurPPLexer->ConditionalStack.pop_back();
Mike Stump11289f42009-09-09 15:08:12 +0000333 }
334
Chris Lattnerf64b3522008-03-09 01:54:53 +0000335 // Just return and let the caller lex after this #include.
336 break;
337 }
Mike Stump11289f42009-09-09 15:08:12 +0000338
Chris Lattnerf64b3522008-03-09 01:54:53 +0000339 // If this token is not a preprocessor directive, just skip it.
340 if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
341 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000342
Chris Lattnerf64b3522008-03-09 01:54:53 +0000343 // We just parsed a # character at the start of a line, so we're in
344 // directive mode. Tell the lexer this so any newlines we see will be
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000345 // converted into an EOD token (this terminates the macro).
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000346 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rose176057b2013-02-22 00:32:00 +0000347 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000348
Mike Stump11289f42009-09-09 15:08:12 +0000349
Chris Lattnerf64b3522008-03-09 01:54:53 +0000350 // Read the next token, the directive flavor.
351 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000352
Chris Lattnerf64b3522008-03-09 01:54:53 +0000353 // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
354 // something bogus), skip it.
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000355 if (Tok.isNot(tok::raw_identifier)) {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000356 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000357 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000358 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000359 continue;
360 }
361
362 // If the first letter isn't i or e, it isn't intesting to us. We know that
363 // this is safe in the face of spelling differences, because there is no way
364 // to spell an i/e in a strange way that is another letter. Skipping this
365 // allows us to avoid looking up the identifier info for #define/#undef and
366 // other common directives.
Alp Toker2d57cea2014-05-17 04:53:25 +0000367 StringRef RI = Tok.getRawIdentifier();
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000368
Alp Toker2d57cea2014-05-17 04:53:25 +0000369 char FirstChar = RI[0];
Mike Stump11289f42009-09-09 15:08:12 +0000370 if (FirstChar >= 'a' && FirstChar <= 'z' &&
Chris Lattnerf64b3522008-03-09 01:54:53 +0000371 FirstChar != 'i' && FirstChar != 'e') {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000372 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000373 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000374 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000375 continue;
376 }
Mike Stump11289f42009-09-09 15:08:12 +0000377
Chris Lattnerf64b3522008-03-09 01:54:53 +0000378 // Get the identifier name without trigraphs or embedded newlines. Note
379 // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
380 // when skipping.
Benjamin Kramer144884642009-12-31 13:32:38 +0000381 char DirectiveBuf[20];
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000382 StringRef Directive;
Alp Toker2d57cea2014-05-17 04:53:25 +0000383 if (!Tok.needsCleaning() && RI.size() < 20) {
384 Directive = RI;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000385 } else {
386 std::string DirectiveStr = getSpelling(Tok);
Benjamin Kramer144884642009-12-31 13:32:38 +0000387 unsigned IdLen = DirectiveStr.size();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000388 if (IdLen >= 20) {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000389 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000390 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000391 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000392 continue;
393 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000394 memcpy(DirectiveBuf, &DirectiveStr[0], IdLen);
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000395 Directive = StringRef(DirectiveBuf, IdLen);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000396 }
Mike Stump11289f42009-09-09 15:08:12 +0000397
Benjamin Kramer144884642009-12-31 13:32:38 +0000398 if (Directive.startswith("if")) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000399 StringRef Sub = Directive.substr(2);
Benjamin Kramer144884642009-12-31 13:32:38 +0000400 if (Sub.empty() || // "if"
401 Sub == "def" || // "ifdef"
402 Sub == "ndef") { // "ifndef"
Chris Lattnerf64b3522008-03-09 01:54:53 +0000403 // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
404 // bother parsing the condition.
405 DiscardUntilEndOfDirective();
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000406 CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
Chris Lattnerf64b3522008-03-09 01:54:53 +0000407 /*foundnonskip*/false,
Chandler Carruth540960f2011-01-03 17:40:17 +0000408 /*foundelse*/false);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000409 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000410 } else if (Directive[0] == 'e') {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000411 StringRef Sub = Directive.substr(1);
Benjamin Kramer144884642009-12-31 13:32:38 +0000412 if (Sub == "ndif") { // "endif"
Chris Lattnerf64b3522008-03-09 01:54:53 +0000413 PPConditionalInfo CondInfo;
414 CondInfo.WasSkipping = true; // Silence bogus warning.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000415 bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +0000416 (void)InCond; // Silence warning in no-asserts mode.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000417 assert(!InCond && "Can't be skipping if not in a conditional!");
Mike Stump11289f42009-09-09 15:08:12 +0000418
Chris Lattnerf64b3522008-03-09 01:54:53 +0000419 // If we popped the outermost skipping block, we're done skipping!
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000420 if (!CondInfo.WasSkipping) {
Richard Smith87d8fb92012-06-24 23:56:26 +0000421 // Restore the value of LexingRawMode so that trailing comments
422 // are handled correctly, if we've reached the outermost block.
423 CurPPLexer->LexingRawMode = false;
Richard Smithd0124572012-06-21 00:35:03 +0000424 CheckEndOfDirective("endif");
Richard Smith87d8fb92012-06-24 23:56:26 +0000425 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000426 if (Callbacks)
427 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000428 break;
Richard Smithd0124572012-06-21 00:35:03 +0000429 } else {
430 DiscardUntilEndOfDirective();
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000431 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000432 } else if (Sub == "lse") { // "else".
Chris Lattnerf64b3522008-03-09 01:54:53 +0000433 // #else directive in a skipping conditional. If not in some other
434 // skipping conditional, and if #else hasn't already been seen, enter it
435 // as a non-skipping conditional.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000436 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Mike Stump11289f42009-09-09 15:08:12 +0000437
Chris Lattnerf64b3522008-03-09 01:54:53 +0000438 // If this is a #else with a #else before it, report the error.
439 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
Mike Stump11289f42009-09-09 15:08:12 +0000440
Chris Lattnerf64b3522008-03-09 01:54:53 +0000441 // Note that we've seen a #else in this conditional.
442 CondInfo.FoundElse = true;
Mike Stump11289f42009-09-09 15:08:12 +0000443
Chris Lattnerf64b3522008-03-09 01:54:53 +0000444 // If the conditional is at the top level, and the #if block wasn't
445 // entered, enter the #else block now.
446 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
447 CondInfo.FoundNonSkip = true;
Richard Smith87d8fb92012-06-24 23:56:26 +0000448 // Restore the value of LexingRawMode so that trailing comments
449 // are handled correctly.
450 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis627c14a2011-05-21 04:26:04 +0000451 CheckEndOfDirective("else");
Richard Smith87d8fb92012-06-24 23:56:26 +0000452 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000453 if (Callbacks)
454 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000455 break;
Argyrios Kyrtzidis627c14a2011-05-21 04:26:04 +0000456 } else {
457 DiscardUntilEndOfDirective(); // C99 6.10p4.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000458 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000459 } else if (Sub == "lif") { // "elif".
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000460 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000461
John Thompson17c35732013-12-04 20:19:30 +0000462 // If this is a #elif with a #else before it, report the error.
463 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
464
Chris Lattnerf64b3522008-03-09 01:54:53 +0000465 // If this is in a skipping block or if we're already handled this #if
466 // block, don't bother parsing the condition.
467 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
468 DiscardUntilEndOfDirective();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000469 } else {
John Thompson17c35732013-12-04 20:19:30 +0000470 const SourceLocation CondBegin = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000471 // Restore the value of LexingRawMode so that identifiers are
472 // looked up, etc, inside the #elif expression.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000473 assert(CurPPLexer->LexingRawMode && "We have to be skipping here!");
474 CurPPLexer->LexingRawMode = false;
Craig Topperd2d442c2014-05-17 23:10:59 +0000475 IdentifierInfo *IfNDefMacro = nullptr;
John Thompson17c35732013-12-04 20:19:30 +0000476 const bool CondValue = EvaluateDirectiveExpression(IfNDefMacro);
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000477 CurPPLexer->LexingRawMode = true;
John Thompson17c35732013-12-04 20:19:30 +0000478 if (Callbacks) {
479 const SourceLocation CondEnd = CurPPLexer->getSourceLocation();
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000480 Callbacks->Elif(Tok.getLocation(),
John Thompson17c35732013-12-04 20:19:30 +0000481 SourceRange(CondBegin, CondEnd),
John Thompson87f9fef2013-12-07 08:41:15 +0000482 (CondValue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False), CondInfo.IfLoc);
John Thompson17c35732013-12-04 20:19:30 +0000483 }
484 // If this condition is true, enter it!
485 if (CondValue) {
486 CondInfo.FoundNonSkip = true;
487 break;
488 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000489 }
490 }
491 }
Mike Stump11289f42009-09-09 15:08:12 +0000492
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000493 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000494 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000495 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000496 }
497
498 // Finally, if we are out of the conditional (saw an #endif or ran off the end
499 // of the file, just stop skipping and return to lexing whatever came after
500 // the #if block.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000501 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +0000502
503 if (Callbacks) {
504 SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc;
505 Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation()));
506 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000507}
508
Ted Kremenek56572ab2008-12-12 18:34:08 +0000509void Preprocessor::PTHSkipExcludedConditionalBlock() {
Mike Stump11289f42009-09-09 15:08:12 +0000510
511 while (1) {
Ted Kremenek56572ab2008-12-12 18:34:08 +0000512 assert(CurPTHLexer);
513 assert(CurPTHLexer->LexingRawMode == false);
Mike Stump11289f42009-09-09 15:08:12 +0000514
Ted Kremenek56572ab2008-12-12 18:34:08 +0000515 // Skip to the next '#else', '#elif', or #endif.
516 if (CurPTHLexer->SkipBlock()) {
517 // We have reached an #endif. Both the '#' and 'endif' tokens
518 // have been consumed by the PTHLexer. Just pop off the condition level.
519 PPConditionalInfo CondInfo;
520 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +0000521 (void)InCond; // Silence warning in no-asserts mode.
Ted Kremenek56572ab2008-12-12 18:34:08 +0000522 assert(!InCond && "Can't be skipping if not in a conditional!");
523 break;
524 }
Mike Stump11289f42009-09-09 15:08:12 +0000525
Ted Kremenek56572ab2008-12-12 18:34:08 +0000526 // We have reached a '#else' or '#elif'. Lex the next token to get
527 // the directive flavor.
528 Token Tok;
529 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000530
Ted Kremenek56572ab2008-12-12 18:34:08 +0000531 // We can actually look up the IdentifierInfo here since we aren't in
532 // raw mode.
533 tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID();
534
535 if (K == tok::pp_else) {
536 // #else: Enter the else condition. We aren't in a nested condition
537 // since we skip those. We're always in the one matching the last
538 // blocked we skipped.
539 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
540 // Note that we've seen a #else in this conditional.
541 CondInfo.FoundElse = true;
Mike Stump11289f42009-09-09 15:08:12 +0000542
Ted Kremenek56572ab2008-12-12 18:34:08 +0000543 // If the #if block wasn't entered then enter the #else block now.
544 if (!CondInfo.FoundNonSkip) {
545 CondInfo.FoundNonSkip = true;
Mike Stump11289f42009-09-09 15:08:12 +0000546
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000547 // Scan until the eod token.
Ted Kremenek1b18ad22008-12-23 01:30:52 +0000548 CurPTHLexer->ParsingPreprocessorDirective = true;
Daniel Dunbar2cba6be2009-04-13 17:57:49 +0000549 DiscardUntilEndOfDirective();
Ted Kremenek1b18ad22008-12-23 01:30:52 +0000550 CurPTHLexer->ParsingPreprocessorDirective = false;
Mike Stump11289f42009-09-09 15:08:12 +0000551
Ted Kremenek56572ab2008-12-12 18:34:08 +0000552 break;
553 }
Mike Stump11289f42009-09-09 15:08:12 +0000554
Ted Kremenek56572ab2008-12-12 18:34:08 +0000555 // Otherwise skip this block.
556 continue;
557 }
Mike Stump11289f42009-09-09 15:08:12 +0000558
Ted Kremenek56572ab2008-12-12 18:34:08 +0000559 assert(K == tok::pp_elif);
560 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
561
562 // If this is a #elif with a #else before it, report the error.
563 if (CondInfo.FoundElse)
564 Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump11289f42009-09-09 15:08:12 +0000565
Ted Kremenek56572ab2008-12-12 18:34:08 +0000566 // If this is in a skipping block or if we're already handled this #if
Mike Stump11289f42009-09-09 15:08:12 +0000567 // block, don't bother parsing the condition. We just skip this block.
Ted Kremenek56572ab2008-12-12 18:34:08 +0000568 if (CondInfo.FoundNonSkip)
569 continue;
570
571 // Evaluate the condition of the #elif.
Craig Topperd2d442c2014-05-17 23:10:59 +0000572 IdentifierInfo *IfNDefMacro = nullptr;
Ted Kremenek56572ab2008-12-12 18:34:08 +0000573 CurPTHLexer->ParsingPreprocessorDirective = true;
574 bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
575 CurPTHLexer->ParsingPreprocessorDirective = false;
576
577 // If this condition is true, enter it!
578 if (ShouldEnter) {
579 CondInfo.FoundNonSkip = true;
580 break;
581 }
582
583 // Otherwise, skip this block and go to the next one.
584 continue;
585 }
586}
587
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000588Module *Preprocessor::getModuleForLocation(SourceLocation FilenameLoc) {
589 ModuleMap &ModMap = HeaderInfo.getModuleMap();
590 if (SourceMgr.isInMainFile(FilenameLoc)) {
591 if (Module *CurMod = getCurrentModule())
592 return CurMod; // Compiling a module.
593 return HeaderInfo.getModuleMap().SourceModule; // Compiling a source.
594 }
595 // Try to determine the module of the include directive.
Daniel Jasper88d86952013-12-03 20:30:36 +0000596 // FIXME: Look into directly passing the FileEntry from LookupFile instead.
Manuel Klimek98a9a6c2014-03-19 10:22:36 +0000597 FileID IDOfIncl = SourceMgr.getFileID(SourceMgr.getExpansionLoc(FilenameLoc));
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000598 if (const FileEntry *EntryOfIncl = SourceMgr.getFileEntryForID(IDOfIncl)) {
599 // The include comes from a file.
600 return ModMap.findModuleForHeader(EntryOfIncl).getModule();
601 } else {
602 // The include does not come from a file,
603 // so it is probably a module compilation.
604 return getCurrentModule();
605 }
606}
607
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000608const FileEntry *Preprocessor::LookupFile(
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000609 SourceLocation FilenameLoc,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000610 StringRef Filename,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000611 bool isAngled,
612 const DirectoryLookup *FromDir,
Richard Smith25d50752014-10-20 00:15:49 +0000613 const FileEntry *FromFile,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000614 const DirectoryLookup *&CurDir,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000615 SmallVectorImpl<char> *SearchPath,
Douglas Gregor97eec242011-09-15 22:00:41 +0000616 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000617 ModuleMap::KnownHeader *SuggestedModule,
Douglas Gregor8ad31c22011-11-20 17:46:46 +0000618 bool SkipCache) {
Will Wilson0fafd342013-12-27 19:46:16 +0000619 // If the header lookup mechanism may be relative to the current inclusion
620 // stack, record the parent #includes.
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000621 SmallVector<std::pair<const FileEntry *, const DirectoryEntry *>, 16>
622 Includers;
Richard Smith25d50752014-10-20 00:15:49 +0000623 if (!FromDir && !FromFile) {
Chris Lattnerd32480d2009-01-17 06:22:33 +0000624 FileID FID = getCurrentFileLexer()->getFileID();
Will Wilson0fafd342013-12-27 19:46:16 +0000625 const FileEntry *FileEnt = SourceMgr.getFileEntryForID(FID);
Mike Stump11289f42009-09-09 15:08:12 +0000626
Chris Lattner022923a2009-02-04 19:45:07 +0000627 // If there is no file entry associated with this file, it must be the
Richard Smith3c1a41a2014-12-02 00:08:08 +0000628 // predefines buffer or the module includes buffer. Any other file is not
629 // lexed with a normal lexer, so it won't be scanned for preprocessor
630 // directives.
631 //
632 // If we have the predefines buffer, resolve #include references (which come
633 // from the -include command line argument) from the current working
634 // directory instead of relative to the main file.
635 //
636 // If we have the module includes buffer, resolve #include references (which
637 // come from header declarations in the module map) relative to the module
638 // map file.
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000639 if (!FileEnt) {
Richard Smith3c1a41a2014-12-02 00:08:08 +0000640 if (FID == SourceMgr.getMainFileID() && MainFileDir)
641 Includers.push_back(std::make_pair(nullptr, MainFileDir));
642 else if ((FileEnt =
643 SourceMgr.getFileEntryForID(SourceMgr.getMainFileID())))
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000644 Includers.push_back(std::make_pair(FileEnt, FileMgr.getDirectory(".")));
645 } else {
646 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
647 }
Will Wilson0fafd342013-12-27 19:46:16 +0000648
649 // MSVC searches the current include stack from top to bottom for
650 // headers included by quoted include directives.
651 // See: http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx
Alp Tokerbfa39342014-01-14 12:51:41 +0000652 if (LangOpts.MSVCCompat && !isAngled) {
Will Wilson0fafd342013-12-27 19:46:16 +0000653 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
654 IncludeStackInfo &ISEntry = IncludeMacroStack[e - i - 1];
655 if (IsFileLexer(ISEntry))
656 if ((FileEnt = SourceMgr.getFileEntryForID(
657 ISEntry.ThePPLexer->getFileID())))
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000658 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
Will Wilson0fafd342013-12-27 19:46:16 +0000659 }
Chris Lattner022923a2009-02-04 19:45:07 +0000660 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000661 }
Mike Stump11289f42009-09-09 15:08:12 +0000662
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000663 CurDir = CurDirLookup;
Richard Smith25d50752014-10-20 00:15:49 +0000664
665 if (FromFile) {
666 // We're supposed to start looking from after a particular file. Search
667 // the include path until we find that file or run out of files.
668 const DirectoryLookup *TmpCurDir = CurDir;
669 const DirectoryLookup *TmpFromDir = nullptr;
670 while (const FileEntry *FE = HeaderInfo.LookupFile(
671 Filename, FilenameLoc, isAngled, TmpFromDir, TmpCurDir,
672 Includers, SearchPath, RelativePath, SuggestedModule,
673 SkipCache)) {
674 // Keep looking as if this file did a #include_next.
675 TmpFromDir = TmpCurDir;
676 ++TmpFromDir;
677 if (FE == FromFile) {
678 // Found it.
679 FromDir = TmpFromDir;
680 CurDir = TmpCurDir;
681 break;
682 }
683 }
684 }
685
686 // Do a standard file entry lookup.
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000687 const FileEntry *FE = HeaderInfo.LookupFile(
Will Wilson0fafd342013-12-27 19:46:16 +0000688 Filename, FilenameLoc, isAngled, FromDir, CurDir, Includers, SearchPath,
689 RelativePath, SuggestedModule, SkipCache);
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000690 if (FE) {
Daniel Jasper5c77e392014-03-14 14:53:17 +0000691 if (SuggestedModule && !LangOpts.AsmPreprocessor)
Daniel Jasper92669ee2013-12-20 12:09:36 +0000692 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
693 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000694 return FE;
695 }
Mike Stump11289f42009-09-09 15:08:12 +0000696
Will Wilson0fafd342013-12-27 19:46:16 +0000697 const FileEntry *CurFileEnt;
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000698 // Otherwise, see if this is a subframework header. If so, this is relative
699 // to one of the headers on the #include stack. Walk the list of the current
700 // headers on the #include stack and pass them to HeaderInfo.
Ted Kremenek6bc5f3e2008-11-20 16:19:53 +0000701 if (IsFileLexer()) {
Ben Langmuir71e1a642014-05-05 21:44:13 +0000702 if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID()))) {
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000703 if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt,
Douglas Gregorf5f94522013-02-08 00:10:48 +0000704 SearchPath, RelativePath,
Ben Langmuir71e1a642014-05-05 21:44:13 +0000705 SuggestedModule))) {
706 if (SuggestedModule && !LangOpts.AsmPreprocessor)
707 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
708 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000709 return FE;
Ben Langmuir71e1a642014-05-05 21:44:13 +0000710 }
711 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000712 }
Mike Stump11289f42009-09-09 15:08:12 +0000713
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000714 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
715 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
Ted Kremenek6bc5f3e2008-11-20 16:19:53 +0000716 if (IsFileLexer(ISEntry)) {
Mike Stump11289f42009-09-09 15:08:12 +0000717 if ((CurFileEnt =
Ben Langmuir71e1a642014-05-05 21:44:13 +0000718 SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID()))) {
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000719 if ((FE = HeaderInfo.LookupSubframeworkHeader(
Douglas Gregorf5f94522013-02-08 00:10:48 +0000720 Filename, CurFileEnt, SearchPath, RelativePath,
Ben Langmuir71e1a642014-05-05 21:44:13 +0000721 SuggestedModule))) {
722 if (SuggestedModule && !LangOpts.AsmPreprocessor)
723 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
724 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000725 return FE;
Ben Langmuir71e1a642014-05-05 21:44:13 +0000726 }
727 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000728 }
729 }
Mike Stump11289f42009-09-09 15:08:12 +0000730
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000731 // Otherwise, we really couldn't find the file.
Craig Topperd2d442c2014-05-17 23:10:59 +0000732 return nullptr;
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000733}
734
Chris Lattnerf64b3522008-03-09 01:54:53 +0000735
736//===----------------------------------------------------------------------===//
737// Preprocessor Directive Handling.
738//===----------------------------------------------------------------------===//
739
David Blaikied5321242012-06-06 18:52:13 +0000740class Preprocessor::ResetMacroExpansionHelper {
741public:
742 ResetMacroExpansionHelper(Preprocessor *pp)
743 : PP(pp), save(pp->DisableMacroExpansion) {
744 if (pp->MacroExpansionInDirectivesOverride)
745 pp->DisableMacroExpansion = false;
746 }
747 ~ResetMacroExpansionHelper() {
748 PP->DisableMacroExpansion = save;
749 }
750private:
751 Preprocessor *PP;
752 bool save;
753};
754
Chris Lattnerf64b3522008-03-09 01:54:53 +0000755/// HandleDirective - This callback is invoked when the lexer sees a # token
Mike Stump11289f42009-09-09 15:08:12 +0000756/// at the start of a line. This consumes the directive, modifies the
Chris Lattnerf64b3522008-03-09 01:54:53 +0000757/// lexer/preprocessor state, and advances the lexer(s) so that the next token
758/// read is the correct one.
759void Preprocessor::HandleDirective(Token &Result) {
760 // FIXME: Traditional: # with whitespace before it not recognized by K&R?
Mike Stump11289f42009-09-09 15:08:12 +0000761
Chris Lattnerf64b3522008-03-09 01:54:53 +0000762 // We just parsed a # character at the start of a line, so we're in directive
763 // mode. Tell the lexer this so any newlines we see will be converted into an
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000764 // EOD token (which terminates the directive).
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000765 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000766 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Mike Stump11289f42009-09-09 15:08:12 +0000767
Richard Trieu33a4b3d2013-06-12 21:20:57 +0000768 bool ImmediatelyAfterTopLevelIfndef =
769 CurPPLexer->MIOpt.getImmediatelyAfterTopLevelIfndef();
770 CurPPLexer->MIOpt.resetImmediatelyAfterTopLevelIfndef();
771
Chris Lattnerf64b3522008-03-09 01:54:53 +0000772 ++NumDirectives;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000773
Chris Lattnerf64b3522008-03-09 01:54:53 +0000774 // We are about to read a token. For the multiple-include optimization FA to
Mike Stump11289f42009-09-09 15:08:12 +0000775 // work, we have to remember if we had read any tokens *before* this
Chris Lattnerf64b3522008-03-09 01:54:53 +0000776 // pp-directive.
Chris Lattner8cf1f932009-12-14 04:54:40 +0000777 bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal();
Mike Stump11289f42009-09-09 15:08:12 +0000778
Chris Lattner2d17ab72009-03-18 21:00:25 +0000779 // Save the '#' token in case we need to return it later.
780 Token SavedHash = Result;
Mike Stump11289f42009-09-09 15:08:12 +0000781
Chris Lattnerf64b3522008-03-09 01:54:53 +0000782 // Read the next token, the directive flavor. This isn't expanded due to
783 // C99 6.10.3p8.
784 LexUnexpandedToken(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000785
Chris Lattnerf64b3522008-03-09 01:54:53 +0000786 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
787 // #define A(x) #x
788 // A(abc
789 // #warning blah
790 // def)
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000791 // If so, the user is relying on undefined behavior, emit a diagnostic. Do
792 // not support this for #include-like directives, since that can result in
793 // terrible diagnostics, and does not work in GCC.
794 if (InMacroArgs) {
795 if (IdentifierInfo *II = Result.getIdentifierInfo()) {
796 switch (II->getPPKeywordID()) {
797 case tok::pp_include:
798 case tok::pp_import:
799 case tok::pp_include_next:
800 case tok::pp___include_macros:
David Majnemerf2d3bc02014-12-28 07:42:49 +0000801 case tok::pp_pragma:
802 Diag(Result, diag::err_embedded_directive) << II->getName();
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000803 DiscardUntilEndOfDirective();
804 return;
805 default:
806 break;
807 }
808 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000809 Diag(Result, diag::ext_embedded_directive);
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000810 }
Mike Stump11289f42009-09-09 15:08:12 +0000811
David Blaikied5321242012-06-06 18:52:13 +0000812 // Temporarily enable macro expansion if set so
813 // and reset to previous state when returning from this function.
814 ResetMacroExpansionHelper helper(this);
815
Chris Lattnerf64b3522008-03-09 01:54:53 +0000816 switch (Result.getKind()) {
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000817 case tok::eod:
Chris Lattnerf64b3522008-03-09 01:54:53 +0000818 return; // null directive.
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000819 case tok::code_completion:
820 if (CodeComplete)
821 CodeComplete->CodeCompleteDirective(
822 CurPPLexer->getConditionalStackDepth() > 0);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000823 setCodeCompletionReached();
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000824 return;
Chris Lattner76e68962009-01-26 06:19:46 +0000825 case tok::numeric_constant: // # 7 GNU line marker directive.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000826 if (getLangOpts().AsmPreprocessor)
Chris Lattner5eb8ae22009-03-18 20:41:10 +0000827 break; // # 4 is not a preprocessor directive in .S files.
Chris Lattner76e68962009-01-26 06:19:46 +0000828 return HandleDigitDirective(Result);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000829 default:
830 IdentifierInfo *II = Result.getIdentifierInfo();
Craig Topperd2d442c2014-05-17 23:10:59 +0000831 if (!II) break; // Not an identifier.
Mike Stump11289f42009-09-09 15:08:12 +0000832
Chris Lattnerf64b3522008-03-09 01:54:53 +0000833 // Ask what the preprocessor keyword ID is.
834 switch (II->getPPKeywordID()) {
835 default: break;
836 // C99 6.10.1 - Conditional Inclusion.
837 case tok::pp_if:
838 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
839 case tok::pp_ifdef:
840 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
841 case tok::pp_ifndef:
842 return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
843 case tok::pp_elif:
844 return HandleElifDirective(Result);
845 case tok::pp_else:
846 return HandleElseDirective(Result);
847 case tok::pp_endif:
848 return HandleEndifDirective(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000849
Chris Lattnerf64b3522008-03-09 01:54:53 +0000850 // C99 6.10.2 - Source File Inclusion.
851 case tok::pp_include:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000852 // Handle #include.
853 return HandleIncludeDirective(SavedHash.getLocation(), Result);
Chris Lattner14a7f392009-04-08 18:24:34 +0000854 case tok::pp___include_macros:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000855 // Handle -imacros.
856 return HandleIncludeMacrosDirective(SavedHash.getLocation(), Result);
Mike Stump11289f42009-09-09 15:08:12 +0000857
Chris Lattnerf64b3522008-03-09 01:54:53 +0000858 // C99 6.10.3 - Macro Replacement.
859 case tok::pp_define:
Richard Trieu33a4b3d2013-06-12 21:20:57 +0000860 return HandleDefineDirective(Result, ImmediatelyAfterTopLevelIfndef);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000861 case tok::pp_undef:
862 return HandleUndefDirective(Result);
863
864 // C99 6.10.4 - Line Control.
865 case tok::pp_line:
Chris Lattner100c65e2009-01-26 05:29:08 +0000866 return HandleLineDirective(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000867
Chris Lattnerf64b3522008-03-09 01:54:53 +0000868 // C99 6.10.5 - Error Directive.
869 case tok::pp_error:
870 return HandleUserDiagnosticDirective(Result, false);
Mike Stump11289f42009-09-09 15:08:12 +0000871
Chris Lattnerf64b3522008-03-09 01:54:53 +0000872 // C99 6.10.6 - Pragma Directive.
873 case tok::pp_pragma:
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000874 return HandlePragmaDirective(SavedHash.getLocation(), PIK_HashPragma);
Mike Stump11289f42009-09-09 15:08:12 +0000875
Chris Lattnerf64b3522008-03-09 01:54:53 +0000876 // GNU Extensions.
877 case tok::pp_import:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000878 return HandleImportDirective(SavedHash.getLocation(), Result);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000879 case tok::pp_include_next:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000880 return HandleIncludeNextDirective(SavedHash.getLocation(), Result);
Mike Stump11289f42009-09-09 15:08:12 +0000881
Chris Lattnerf64b3522008-03-09 01:54:53 +0000882 case tok::pp_warning:
883 Diag(Result, diag::ext_pp_warning_directive);
884 return HandleUserDiagnosticDirective(Result, true);
885 case tok::pp_ident:
886 return HandleIdentSCCSDirective(Result);
887 case tok::pp_sccs:
888 return HandleIdentSCCSDirective(Result);
889 case tok::pp_assert:
890 //isExtension = true; // FIXME: implement #assert
891 break;
892 case tok::pp_unassert:
893 //isExtension = true; // FIXME: implement #unassert
894 break;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +0000895
Douglas Gregor663b48f2012-01-03 19:48:16 +0000896 case tok::pp___public_macro:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000897 if (getLangOpts().Modules)
Douglas Gregor0bf886d2012-01-03 18:24:14 +0000898 return HandleMacroPublicDirective(Result);
899 break;
900
Douglas Gregor663b48f2012-01-03 19:48:16 +0000901 case tok::pp___private_macro:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000902 if (getLangOpts().Modules)
Douglas Gregor0bf886d2012-01-03 18:24:14 +0000903 return HandleMacroPrivateDirective(Result);
904 break;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000905 }
906 break;
907 }
Mike Stump11289f42009-09-09 15:08:12 +0000908
Chris Lattner2d17ab72009-03-18 21:00:25 +0000909 // If this is a .S file, treat unknown # directives as non-preprocessor
910 // directives. This is important because # may be a comment or introduce
911 // various pseudo-ops. Just return the # token and push back the following
912 // token to be lexed next time.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000913 if (getLangOpts().AsmPreprocessor) {
Daniel Dunbar48b4d1e2009-07-13 21:48:50 +0000914 Token *Toks = new Token[2];
Chris Lattner2d17ab72009-03-18 21:00:25 +0000915 // Return the # and the token after it.
Mike Stump11289f42009-09-09 15:08:12 +0000916 Toks[0] = SavedHash;
Chris Lattner2d17ab72009-03-18 21:00:25 +0000917 Toks[1] = Result;
Chris Lattner56f64c12011-01-06 05:01:51 +0000918
919 // If the second token is a hashhash token, then we need to translate it to
920 // unknown so the token lexer doesn't try to perform token pasting.
921 if (Result.is(tok::hashhash))
922 Toks[1].setKind(tok::unknown);
923
Chris Lattner2d17ab72009-03-18 21:00:25 +0000924 // Enter this token stream so that we re-lex the tokens. Make sure to
925 // enable macro expansion, in case the token after the # is an identifier
926 // that is expanded.
927 EnterTokenStream(Toks, 2, false, true);
928 return;
929 }
Mike Stump11289f42009-09-09 15:08:12 +0000930
Chris Lattnerf64b3522008-03-09 01:54:53 +0000931 // If we reached here, the preprocessing token is not valid!
932 Diag(Result, diag::err_pp_invalid_directive);
Mike Stump11289f42009-09-09 15:08:12 +0000933
Chris Lattnerf64b3522008-03-09 01:54:53 +0000934 // Read the rest of the PP line.
935 DiscardUntilEndOfDirective();
Mike Stump11289f42009-09-09 15:08:12 +0000936
Chris Lattnerf64b3522008-03-09 01:54:53 +0000937 // Okay, we're done parsing the directive.
938}
939
Chris Lattner76e68962009-01-26 06:19:46 +0000940/// GetLineValue - Convert a numeric token into an unsigned value, emitting
941/// Diagnostic DiagID if it is invalid, and returning the value in Val.
942static bool GetLineValue(Token &DigitTok, unsigned &Val,
Michael Ilsemane910cc82013-04-10 01:04:18 +0000943 unsigned DiagID, Preprocessor &PP,
944 bool IsGNULineDirective=false) {
Chris Lattner76e68962009-01-26 06:19:46 +0000945 if (DigitTok.isNot(tok::numeric_constant)) {
946 PP.Diag(DigitTok, DiagID);
Mike Stump11289f42009-09-09 15:08:12 +0000947
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000948 if (DigitTok.isNot(tok::eod))
Chris Lattner76e68962009-01-26 06:19:46 +0000949 PP.DiscardUntilEndOfDirective();
950 return true;
951 }
Mike Stump11289f42009-09-09 15:08:12 +0000952
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000953 SmallString<64> IntegerBuffer;
Chris Lattner76e68962009-01-26 06:19:46 +0000954 IntegerBuffer.resize(DigitTok.getLength());
955 const char *DigitTokBegin = &IntegerBuffer[0];
Douglas Gregordc970f02010-03-16 22:30:13 +0000956 bool Invalid = false;
957 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid);
958 if (Invalid)
959 return true;
960
Chris Lattnerd66f1722009-04-18 18:35:15 +0000961 // Verify that we have a simple digit-sequence, and compute the value. This
962 // is always a simple digit string computed in decimal, so we do this manually
963 // here.
964 Val = 0;
965 for (unsigned i = 0; i != ActualLength; ++i) {
Richard Smith7f2707a2013-09-26 18:13:20 +0000966 // C++1y [lex.fcon]p1:
967 // Optional separating single quotes in a digit-sequence are ignored
968 if (DigitTokBegin[i] == '\'')
969 continue;
970
Jordan Rosea7d03842013-02-08 22:30:41 +0000971 if (!isDigit(DigitTokBegin[i])) {
Chris Lattnerd66f1722009-04-18 18:35:15 +0000972 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i),
Michael Ilsemane910cc82013-04-10 01:04:18 +0000973 diag::err_pp_line_digit_sequence) << IsGNULineDirective;
Chris Lattnerd66f1722009-04-18 18:35:15 +0000974 PP.DiscardUntilEndOfDirective();
975 return true;
976 }
Mike Stump11289f42009-09-09 15:08:12 +0000977
Chris Lattnerd66f1722009-04-18 18:35:15 +0000978 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0');
979 if (NextVal < Val) { // overflow.
980 PP.Diag(DigitTok, DiagID);
981 PP.DiscardUntilEndOfDirective();
982 return true;
983 }
984 Val = NextVal;
Chris Lattner76e68962009-01-26 06:19:46 +0000985 }
Mike Stump11289f42009-09-09 15:08:12 +0000986
Fariborz Jahanian0638c152012-06-26 21:19:20 +0000987 if (DigitTokBegin[0] == '0' && Val)
Michael Ilsemane910cc82013-04-10 01:04:18 +0000988 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal)
989 << IsGNULineDirective;
Mike Stump11289f42009-09-09 15:08:12 +0000990
Chris Lattner76e68962009-01-26 06:19:46 +0000991 return false;
992}
993
James Dennettf6333ac2012-06-22 05:46:07 +0000994/// \brief Handle a \#line directive: C99 6.10.4.
995///
996/// The two acceptable forms are:
997/// \verbatim
Chris Lattner100c65e2009-01-26 05:29:08 +0000998/// # line digit-sequence
999/// # line digit-sequence "s-char-sequence"
James Dennettf6333ac2012-06-22 05:46:07 +00001000/// \endverbatim
Chris Lattner100c65e2009-01-26 05:29:08 +00001001void Preprocessor::HandleLineDirective(Token &Tok) {
1002 // Read the line # and string argument. Per C99 6.10.4p5, these tokens are
1003 // expanded.
1004 Token DigitTok;
1005 Lex(DigitTok);
1006
Chris Lattner100c65e2009-01-26 05:29:08 +00001007 // Validate the number and convert it to an unsigned.
Chris Lattner76e68962009-01-26 06:19:46 +00001008 unsigned LineNo;
Chris Lattnerd66f1722009-04-18 18:35:15 +00001009 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
Chris Lattner100c65e2009-01-26 05:29:08 +00001010 return;
Fariborz Jahanian0638c152012-06-26 21:19:20 +00001011
1012 if (LineNo == 0)
1013 Diag(DigitTok, diag::ext_pp_line_zero);
Chris Lattner100c65e2009-01-26 05:29:08 +00001014
Chris Lattner76e68962009-01-26 06:19:46 +00001015 // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a
1016 // number greater than 2147483647". C90 requires that the line # be <= 32767.
Eli Friedman192e0342011-10-10 23:35:28 +00001017 unsigned LineLimit = 32768U;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001018 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Eli Friedman192e0342011-10-10 23:35:28 +00001019 LineLimit = 2147483648U;
Chris Lattner100c65e2009-01-26 05:29:08 +00001020 if (LineNo >= LineLimit)
1021 Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001022 else if (LangOpts.CPlusPlus11 && LineNo >= 32768U)
Richard Smithacd4d3d2011-10-15 01:18:56 +00001023 Diag(DigitTok, diag::warn_cxx98_compat_pp_line_too_big);
Mike Stump11289f42009-09-09 15:08:12 +00001024
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001025 int FilenameID = -1;
Chris Lattner100c65e2009-01-26 05:29:08 +00001026 Token StrTok;
1027 Lex(StrTok);
1028
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001029 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1030 // string followed by eod.
1031 if (StrTok.is(tok::eod))
Chris Lattner100c65e2009-01-26 05:29:08 +00001032 ; // ok
1033 else if (StrTok.isNot(tok::string_literal)) {
1034 Diag(StrTok, diag::err_pp_line_invalid_filename);
Richard Smithd67aea22012-03-06 03:21:47 +00001035 return DiscardUntilEndOfDirective();
1036 } else if (StrTok.hasUDSuffix()) {
1037 Diag(StrTok, diag::err_invalid_string_udl);
1038 return DiscardUntilEndOfDirective();
Chris Lattner100c65e2009-01-26 05:29:08 +00001039 } else {
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001040 // Parse and validate the string, converting it into a unique ID.
Craig Topper9d5583e2014-06-26 04:58:39 +00001041 StringLiteralParser Literal(StrTok, *this);
Douglas Gregorfb65e592011-07-27 05:40:30 +00001042 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001043 if (Literal.hadError)
1044 return DiscardUntilEndOfDirective();
1045 if (Literal.Pascal) {
1046 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1047 return DiscardUntilEndOfDirective();
1048 }
Jay Foad9a6b0982011-06-21 15:13:30 +00001049 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump11289f42009-09-09 15:08:12 +00001050
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001051 // Verify that there is nothing after the string, other than EOD. Because
Chris Lattner0003c272009-04-17 23:30:53 +00001052 // of C99 6.10.4p5, macros that expand to empty tokens are ok.
1053 CheckEndOfDirective("line", true);
Chris Lattner100c65e2009-01-26 05:29:08 +00001054 }
Mike Stump11289f42009-09-09 15:08:12 +00001055
Chris Lattner1eaa70a2009-02-03 21:52:55 +00001056 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID);
Mike Stump11289f42009-09-09 15:08:12 +00001057
Chris Lattner839150e2009-03-27 17:13:49 +00001058 if (Callbacks)
Chris Lattnerc745cec2010-04-14 04:28:50 +00001059 Callbacks->FileChanged(CurPPLexer->getSourceLocation(),
1060 PPCallbacks::RenameFile,
Chris Lattner839150e2009-03-27 17:13:49 +00001061 SrcMgr::C_User);
Chris Lattner100c65e2009-01-26 05:29:08 +00001062}
1063
Chris Lattner76e68962009-01-26 06:19:46 +00001064/// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line
1065/// marker directive.
1066static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit,
1067 bool &IsSystemHeader, bool &IsExternCHeader,
1068 Preprocessor &PP) {
1069 unsigned FlagVal;
1070 Token FlagTok;
1071 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001072 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001073 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
1074 return true;
1075
1076 if (FlagVal == 1) {
1077 IsFileEntry = true;
Mike Stump11289f42009-09-09 15:08:12 +00001078
Chris Lattner76e68962009-01-26 06:19:46 +00001079 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001080 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001081 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1082 return true;
1083 } else if (FlagVal == 2) {
1084 IsFileExit = true;
Mike Stump11289f42009-09-09 15:08:12 +00001085
Chris Lattner1c967782009-02-04 06:25:26 +00001086 SourceManager &SM = PP.getSourceManager();
1087 // If we are leaving the current presumed file, check to make sure the
1088 // presumed include stack isn't empty!
1089 FileID CurFileID =
Chandler Carruthc7ca5212011-07-25 20:52:32 +00001090 SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first;
Chris Lattner1c967782009-02-04 06:25:26 +00001091 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
Douglas Gregor453b0122010-11-12 07:15:47 +00001092 if (PLoc.isInvalid())
1093 return true;
1094
Chris Lattner1c967782009-02-04 06:25:26 +00001095 // If there is no include loc (main file) or if the include loc is in a
1096 // different physical file, then we aren't in a "1" line marker flag region.
1097 SourceLocation IncLoc = PLoc.getIncludeLoc();
1098 if (IncLoc.isInvalid() ||
Chandler Carruthc7ca5212011-07-25 20:52:32 +00001099 SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) {
Chris Lattner1c967782009-02-04 06:25:26 +00001100 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop);
1101 PP.DiscardUntilEndOfDirective();
1102 return true;
1103 }
Mike Stump11289f42009-09-09 15:08:12 +00001104
Chris Lattner76e68962009-01-26 06:19:46 +00001105 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001106 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001107 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1108 return true;
1109 }
1110
1111 // We must have 3 if there are still flags.
1112 if (FlagVal != 3) {
1113 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001114 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001115 return true;
1116 }
Mike Stump11289f42009-09-09 15:08:12 +00001117
Chris Lattner76e68962009-01-26 06:19:46 +00001118 IsSystemHeader = true;
Mike Stump11289f42009-09-09 15:08:12 +00001119
Chris Lattner76e68962009-01-26 06:19:46 +00001120 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001121 if (FlagTok.is(tok::eod)) return false;
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001122 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
Chris Lattner76e68962009-01-26 06:19:46 +00001123 return true;
1124
1125 // We must have 4 if there is yet another flag.
1126 if (FlagVal != 4) {
1127 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001128 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001129 return true;
1130 }
Mike Stump11289f42009-09-09 15:08:12 +00001131
Chris Lattner76e68962009-01-26 06:19:46 +00001132 IsExternCHeader = true;
Mike Stump11289f42009-09-09 15:08:12 +00001133
Chris Lattner76e68962009-01-26 06:19:46 +00001134 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001135 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001136
1137 // There are no more valid flags here.
1138 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001139 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001140 return true;
1141}
1142
1143/// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is
1144/// one of the following forms:
1145///
1146/// # 42
Mike Stump11289f42009-09-09 15:08:12 +00001147/// # 42 "file" ('1' | '2')?
Chris Lattner76e68962009-01-26 06:19:46 +00001148/// # 42 "file" ('1' | '2')? '3' '4'?
1149///
1150void Preprocessor::HandleDigitDirective(Token &DigitTok) {
1151 // Validate the number and convert it to an unsigned. GNU does not have a
1152 // line # limit other than it fit in 32-bits.
1153 unsigned LineNo;
1154 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
Michael Ilsemane910cc82013-04-10 01:04:18 +00001155 *this, true))
Chris Lattner76e68962009-01-26 06:19:46 +00001156 return;
Mike Stump11289f42009-09-09 15:08:12 +00001157
Chris Lattner76e68962009-01-26 06:19:46 +00001158 Token StrTok;
1159 Lex(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +00001160
Chris Lattner76e68962009-01-26 06:19:46 +00001161 bool IsFileEntry = false, IsFileExit = false;
1162 bool IsSystemHeader = false, IsExternCHeader = false;
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001163 int FilenameID = -1;
1164
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001165 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1166 // string followed by eod.
1167 if (StrTok.is(tok::eod))
Chris Lattner76e68962009-01-26 06:19:46 +00001168 ; // ok
1169 else if (StrTok.isNot(tok::string_literal)) {
1170 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001171 return DiscardUntilEndOfDirective();
Richard Smithd67aea22012-03-06 03:21:47 +00001172 } else if (StrTok.hasUDSuffix()) {
1173 Diag(StrTok, diag::err_invalid_string_udl);
1174 return DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001175 } else {
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001176 // Parse and validate the string, converting it into a unique ID.
Craig Topper9d5583e2014-06-26 04:58:39 +00001177 StringLiteralParser Literal(StrTok, *this);
Douglas Gregorfb65e592011-07-27 05:40:30 +00001178 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001179 if (Literal.hadError)
1180 return DiscardUntilEndOfDirective();
1181 if (Literal.Pascal) {
1182 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1183 return DiscardUntilEndOfDirective();
1184 }
Jay Foad9a6b0982011-06-21 15:13:30 +00001185 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump11289f42009-09-09 15:08:12 +00001186
Chris Lattner76e68962009-01-26 06:19:46 +00001187 // If a filename was present, read any flags that are present.
Mike Stump11289f42009-09-09 15:08:12 +00001188 if (ReadLineMarkerFlags(IsFileEntry, IsFileExit,
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001189 IsSystemHeader, IsExternCHeader, *this))
Chris Lattner76e68962009-01-26 06:19:46 +00001190 return;
Chris Lattner76e68962009-01-26 06:19:46 +00001191 }
Mike Stump11289f42009-09-09 15:08:12 +00001192
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001193 // Create a line note with this information.
1194 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID,
Mike Stump11289f42009-09-09 15:08:12 +00001195 IsFileEntry, IsFileExit,
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001196 IsSystemHeader, IsExternCHeader);
Mike Stump11289f42009-09-09 15:08:12 +00001197
Chris Lattner839150e2009-03-27 17:13:49 +00001198 // If the preprocessor has callbacks installed, notify them of the #line
1199 // change. This is used so that the line marker comes out in -E mode for
1200 // example.
1201 if (Callbacks) {
1202 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile;
1203 if (IsFileEntry)
1204 Reason = PPCallbacks::EnterFile;
1205 else if (IsFileExit)
1206 Reason = PPCallbacks::ExitFile;
1207 SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User;
1208 if (IsExternCHeader)
1209 FileKind = SrcMgr::C_ExternCSystem;
1210 else if (IsSystemHeader)
1211 FileKind = SrcMgr::C_System;
Mike Stump11289f42009-09-09 15:08:12 +00001212
Chris Lattnerc745cec2010-04-14 04:28:50 +00001213 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
Chris Lattner839150e2009-03-27 17:13:49 +00001214 }
Chris Lattner76e68962009-01-26 06:19:46 +00001215}
1216
1217
Chris Lattner38d7fd22009-01-26 05:30:54 +00001218/// HandleUserDiagnosticDirective - Handle a #warning or #error directive.
1219///
Mike Stump11289f42009-09-09 15:08:12 +00001220void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001221 bool isWarning) {
Chris Lattner38d7fd22009-01-26 05:30:54 +00001222 // PTH doesn't emit #warning or #error directives.
1223 if (CurPTHLexer)
Chris Lattner100c65e2009-01-26 05:29:08 +00001224 return CurPTHLexer->DiscardToEndOfLine();
1225
Chris Lattnerf64b3522008-03-09 01:54:53 +00001226 // Read the rest of the line raw. We do this because we don't want macros
1227 // to be expanded and we don't require that the tokens be valid preprocessing
1228 // tokens. For example, this is allowed: "#warning ` 'foo". GCC does
1229 // collapse multiple consequtive white space between tokens, but this isn't
1230 // specified by the standard.
Benjamin Kramere5fbc6c2012-05-18 19:32:16 +00001231 SmallString<128> Message;
1232 CurLexer->ReadToEndOfLine(&Message);
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001233
1234 // Find the first non-whitespace character, so that we can make the
1235 // diagnostic more succinct.
Yaron Keren92e1b622015-03-18 10:17:07 +00001236 StringRef Msg = StringRef(Message).ltrim(" ");
Benjamin Kramere5fbc6c2012-05-18 19:32:16 +00001237
Chris Lattner100c65e2009-01-26 05:29:08 +00001238 if (isWarning)
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001239 Diag(Tok, diag::pp_hash_warning) << Msg;
Chris Lattner100c65e2009-01-26 05:29:08 +00001240 else
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001241 Diag(Tok, diag::err_pp_hash_error) << Msg;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001242}
1243
1244/// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
1245///
1246void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
1247 // Yes, this directive is an extension.
1248 Diag(Tok, diag::ext_pp_ident_directive);
Mike Stump11289f42009-09-09 15:08:12 +00001249
Chris Lattnerf64b3522008-03-09 01:54:53 +00001250 // Read the string argument.
1251 Token StrTok;
1252 Lex(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +00001253
Chris Lattnerf64b3522008-03-09 01:54:53 +00001254 // If the token kind isn't a string, it's a malformed directive.
1255 if (StrTok.isNot(tok::string_literal) &&
Chris Lattner907dfe92008-11-18 07:59:24 +00001256 StrTok.isNot(tok::wide_string_literal)) {
1257 Diag(StrTok, diag::err_pp_malformed_ident);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001258 if (StrTok.isNot(tok::eod))
Chris Lattner38d7fd22009-01-26 05:30:54 +00001259 DiscardUntilEndOfDirective();
Chris Lattner907dfe92008-11-18 07:59:24 +00001260 return;
1261 }
Mike Stump11289f42009-09-09 15:08:12 +00001262
Richard Smithd67aea22012-03-06 03:21:47 +00001263 if (StrTok.hasUDSuffix()) {
1264 Diag(StrTok, diag::err_invalid_string_udl);
1265 return DiscardUntilEndOfDirective();
1266 }
1267
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001268 // Verify that there is nothing after the string, other than EOD.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00001269 CheckEndOfDirective("ident");
Chris Lattnerf64b3522008-03-09 01:54:53 +00001270
Douglas Gregordc970f02010-03-16 22:30:13 +00001271 if (Callbacks) {
1272 bool Invalid = false;
1273 std::string Str = getSpelling(StrTok, &Invalid);
1274 if (!Invalid)
1275 Callbacks->Ident(Tok.getLocation(), Str);
1276 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001277}
1278
Douglas Gregor0bf886d2012-01-03 18:24:14 +00001279/// \brief Handle a #public directive.
1280void Preprocessor::HandleMacroPublicDirective(Token &Tok) {
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001281 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001282 ReadMacroName(MacroNameTok, MU_Undef);
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001283
1284 // Error reading macro name? If so, diagnostic already issued.
1285 if (MacroNameTok.is(tok::eod))
1286 return;
1287
Douglas Gregor663b48f2012-01-03 19:48:16 +00001288 // Check to see if this is the last token on the #__public_macro line.
1289 CheckEndOfDirective("__public_macro");
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001290
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001291 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001292 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001293 MacroDirective *MD = getMacroDirective(II);
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001294
1295 // If the macro is not defined, this is an error.
Craig Topperd2d442c2014-05-17 23:10:59 +00001296 if (!MD) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001297 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001298 return;
1299 }
1300
1301 // Note that this macro has now been exported.
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00001302 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1303 MacroNameTok.getLocation(), /*IsPublic=*/true));
Douglas Gregorebf00492011-10-17 15:32:29 +00001304}
1305
Douglas Gregor0bf886d2012-01-03 18:24:14 +00001306/// \brief Handle a #private directive.
Douglas Gregorebf00492011-10-17 15:32:29 +00001307void Preprocessor::HandleMacroPrivateDirective(Token &Tok) {
1308 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001309 ReadMacroName(MacroNameTok, MU_Undef);
Douglas Gregorebf00492011-10-17 15:32:29 +00001310
1311 // Error reading macro name? If so, diagnostic already issued.
1312 if (MacroNameTok.is(tok::eod))
1313 return;
1314
Douglas Gregor663b48f2012-01-03 19:48:16 +00001315 // Check to see if this is the last token on the #__private_macro line.
1316 CheckEndOfDirective("__private_macro");
Douglas Gregorebf00492011-10-17 15:32:29 +00001317
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001318 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregorebf00492011-10-17 15:32:29 +00001319 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001320 MacroDirective *MD = getMacroDirective(II);
Douglas Gregorebf00492011-10-17 15:32:29 +00001321
1322 // If the macro is not defined, this is an error.
Craig Topperd2d442c2014-05-17 23:10:59 +00001323 if (!MD) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001324 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregorebf00492011-10-17 15:32:29 +00001325 return;
1326 }
1327
1328 // Note that this macro has now been marked private.
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00001329 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1330 MacroNameTok.getLocation(), /*IsPublic=*/false));
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001331}
1332
Chris Lattnerf64b3522008-03-09 01:54:53 +00001333//===----------------------------------------------------------------------===//
1334// Preprocessor Include Directive Handling.
1335//===----------------------------------------------------------------------===//
1336
1337/// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
James Dennettf6333ac2012-06-22 05:46:07 +00001338/// checked and spelled filename, e.g. as an operand of \#include. This returns
Chris Lattnerf64b3522008-03-09 01:54:53 +00001339/// true if the input filename was in <>'s or false if it were in ""'s. The
1340/// caller is expected to provide a buffer that is large enough to hold the
1341/// spelling of the filename, but is also expected to handle the case when
1342/// this method decides to use a different buffer.
1343bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001344 StringRef &Buffer) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001345 // Get the text form of the filename.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001346 assert(!Buffer.empty() && "Can't have tokens with empty spellings!");
Mike Stump11289f42009-09-09 15:08:12 +00001347
Chris Lattnerf64b3522008-03-09 01:54:53 +00001348 // Make sure the filename is <x> or "x".
1349 bool isAngled;
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001350 if (Buffer[0] == '<') {
1351 if (Buffer.back() != '>') {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001352 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001353 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001354 return true;
1355 }
1356 isAngled = true;
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001357 } else if (Buffer[0] == '"') {
1358 if (Buffer.back() != '"') {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001359 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001360 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001361 return true;
1362 }
1363 isAngled = false;
1364 } else {
1365 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001366 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001367 return true;
1368 }
Mike Stump11289f42009-09-09 15:08:12 +00001369
Chris Lattnerf64b3522008-03-09 01:54:53 +00001370 // Diagnose #include "" as invalid.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001371 if (Buffer.size() <= 2) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001372 Diag(Loc, diag::err_pp_empty_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001373 Buffer = StringRef();
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001374 return true;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001375 }
Mike Stump11289f42009-09-09 15:08:12 +00001376
Chris Lattnerf64b3522008-03-09 01:54:53 +00001377 // Skip the brackets.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001378 Buffer = Buffer.substr(1, Buffer.size()-2);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001379 return isAngled;
1380}
1381
James Dennett4a4f72d2013-11-27 01:27:40 +00001382// \brief Handle cases where the \#include name is expanded from a macro
1383// as multiple tokens, which need to be glued together.
1384//
1385// This occurs for code like:
1386// \code
1387// \#define FOO <a/b.h>
1388// \#include FOO
1389// \endcode
1390// because in this case, "<a/b.h>" is returned as 7 tokens, not one.
1391//
1392// This code concatenates and consumes tokens up to the '>' token. It returns
1393// false if the > was found, otherwise it returns true if it finds and consumes
1394// the EOD marker.
1395bool Preprocessor::ConcatenateIncludeName(SmallString<128> &FilenameBuffer,
Douglas Gregor796d76a2010-10-20 22:00:55 +00001396 SourceLocation &End) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001397 Token CurTok;
Mike Stump11289f42009-09-09 15:08:12 +00001398
John Thompsonb5353522009-10-30 13:49:06 +00001399 Lex(CurTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001400 while (CurTok.isNot(tok::eod)) {
Douglas Gregor796d76a2010-10-20 22:00:55 +00001401 End = CurTok.getLocation();
1402
Douglas Gregor9c7bd2f2010-12-09 23:35:36 +00001403 // FIXME: Provide code completion for #includes.
1404 if (CurTok.is(tok::code_completion)) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001405 setCodeCompletionReached();
Douglas Gregor9c7bd2f2010-12-09 23:35:36 +00001406 Lex(CurTok);
1407 continue;
1408 }
1409
Chris Lattnerf64b3522008-03-09 01:54:53 +00001410 // Append the spelling of this token to the buffer. If there was a space
1411 // before it, add it now.
1412 if (CurTok.hasLeadingSpace())
1413 FilenameBuffer.push_back(' ');
Mike Stump11289f42009-09-09 15:08:12 +00001414
Chris Lattnerf64b3522008-03-09 01:54:53 +00001415 // Get the spelling of the token, directly into FilenameBuffer if possible.
1416 unsigned PreAppendSize = FilenameBuffer.size();
1417 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
Mike Stump11289f42009-09-09 15:08:12 +00001418
Chris Lattnerf64b3522008-03-09 01:54:53 +00001419 const char *BufPtr = &FilenameBuffer[PreAppendSize];
John Thompsonb5353522009-10-30 13:49:06 +00001420 unsigned ActualLen = getSpelling(CurTok, BufPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001421
Chris Lattnerf64b3522008-03-09 01:54:53 +00001422 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1423 if (BufPtr != &FilenameBuffer[PreAppendSize])
1424 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
Mike Stump11289f42009-09-09 15:08:12 +00001425
Chris Lattnerf64b3522008-03-09 01:54:53 +00001426 // Resize FilenameBuffer to the correct size.
1427 if (CurTok.getLength() != ActualLen)
1428 FilenameBuffer.resize(PreAppendSize+ActualLen);
Mike Stump11289f42009-09-09 15:08:12 +00001429
Chris Lattnerf64b3522008-03-09 01:54:53 +00001430 // If we found the '>' marker, return success.
1431 if (CurTok.is(tok::greater))
1432 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001433
John Thompsonb5353522009-10-30 13:49:06 +00001434 Lex(CurTok);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001435 }
1436
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001437 // If we hit the eod marker, emit an error and return true so that the caller
1438 // knows the EOD has been read.
John Thompsonb5353522009-10-30 13:49:06 +00001439 Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001440 return true;
1441}
1442
Richard Smith34f30512013-11-23 04:06:09 +00001443/// \brief Push a token onto the token stream containing an annotation.
1444static void EnterAnnotationToken(Preprocessor &PP,
1445 SourceLocation Begin, SourceLocation End,
1446 tok::TokenKind Kind, void *AnnotationVal) {
1447 Token *Tok = new Token[1];
1448 Tok[0].startToken();
1449 Tok[0].setKind(Kind);
1450 Tok[0].setLocation(Begin);
1451 Tok[0].setAnnotationEndLoc(End);
1452 Tok[0].setAnnotationValue(AnnotationVal);
1453 PP.EnterTokenStream(Tok, 1, true, true);
1454}
1455
James Dennettf6333ac2012-06-22 05:46:07 +00001456/// HandleIncludeDirective - The "\#include" tokens have just been read, read
1457/// the file to be included from the lexer, then include it! This is a common
1458/// routine with functionality shared between \#include, \#include_next and
1459/// \#import. LookupFrom is set when this is a \#include_next directive, it
Mike Stump11289f42009-09-09 15:08:12 +00001460/// specifies the file to start searching from.
Douglas Gregor796d76a2010-10-20 22:00:55 +00001461void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc,
1462 Token &IncludeTok,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001463 const DirectoryLookup *LookupFrom,
Richard Smith25d50752014-10-20 00:15:49 +00001464 const FileEntry *LookupFromFile,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001465 bool isImport) {
1466
1467 Token FilenameTok;
Ted Kremenek30cd88c2008-11-18 00:34:22 +00001468 CurPPLexer->LexIncludeFilename(FilenameTok);
Mike Stump11289f42009-09-09 15:08:12 +00001469
Chris Lattnerf64b3522008-03-09 01:54:53 +00001470 // Reserve a buffer to get the spelling.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001471 SmallString<128> FilenameBuffer;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001472 StringRef Filename;
Douglas Gregor796d76a2010-10-20 22:00:55 +00001473 SourceLocation End;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001474 SourceLocation CharEnd; // the end of this directive, in characters
Douglas Gregor796d76a2010-10-20 22:00:55 +00001475
Chris Lattnerf64b3522008-03-09 01:54:53 +00001476 switch (FilenameTok.getKind()) {
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001477 case tok::eod:
1478 // If the token kind is EOD, the error has already been diagnosed.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001479 return;
Mike Stump11289f42009-09-09 15:08:12 +00001480
Chris Lattnerf64b3522008-03-09 01:54:53 +00001481 case tok::angle_string_literal:
Benjamin Kramer0a1abd42010-02-27 13:44:12 +00001482 case tok::string_literal:
1483 Filename = getSpelling(FilenameTok, FilenameBuffer);
Douglas Gregor796d76a2010-10-20 22:00:55 +00001484 End = FilenameTok.getLocation();
Argyrios Kyrtzidis2edbc862012-11-01 17:52:58 +00001485 CharEnd = End.getLocWithOffset(FilenameTok.getLength());
Chris Lattnerf64b3522008-03-09 01:54:53 +00001486 break;
Mike Stump11289f42009-09-09 15:08:12 +00001487
Chris Lattnerf64b3522008-03-09 01:54:53 +00001488 case tok::less:
1489 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1490 // case, glue the tokens together into FilenameBuffer and interpret those.
1491 FilenameBuffer.push_back('<');
Douglas Gregor796d76a2010-10-20 22:00:55 +00001492 if (ConcatenateIncludeName(FilenameBuffer, End))
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001493 return; // Found <eod> but no ">"? Diagnostic already emitted.
Yaron Keren92e1b622015-03-18 10:17:07 +00001494 Filename = FilenameBuffer;
Argyrios Kyrtzidis2edbc862012-11-01 17:52:58 +00001495 CharEnd = End.getLocWithOffset(1);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001496 break;
1497 default:
1498 Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1499 DiscardUntilEndOfDirective();
1500 return;
1501 }
Mike Stump11289f42009-09-09 15:08:12 +00001502
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001503 CharSourceRange FilenameRange
1504 = CharSourceRange::getCharRange(FilenameTok.getLocation(), CharEnd);
Aaron Ballman611306e2012-03-02 22:51:54 +00001505 StringRef OriginalFilename = Filename;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001506 bool isAngled =
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001507 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001508 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1509 // error.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001510 if (Filename.empty()) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001511 DiscardUntilEndOfDirective();
1512 return;
1513 }
Mike Stump11289f42009-09-09 15:08:12 +00001514
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001515 // Verify that there is nothing after the filename, other than EOD. Note that
Chris Lattnerb40289b2009-04-17 23:56:52 +00001516 // we allow macros that expand to nothing after the filename, because this
1517 // falls into the category of "#include pp-tokens new-line" specified in
1518 // C99 6.10.2p4.
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001519 CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001520
1521 // Check that we don't have infinite #include recursion.
Chris Lattner907dfe92008-11-18 07:59:24 +00001522 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
1523 Diag(FilenameTok, diag::err_pp_include_too_deep);
1524 return;
1525 }
Mike Stump11289f42009-09-09 15:08:12 +00001526
John McCall32f5fe12011-09-30 05:12:12 +00001527 // Complain about attempts to #include files in an audit pragma.
1528 if (PragmaARCCFCodeAuditedLoc.isValid()) {
1529 Diag(HashLoc, diag::err_pp_include_in_arc_cf_code_audited);
1530 Diag(PragmaARCCFCodeAuditedLoc, diag::note_pragma_entered_here);
1531
1532 // Immediately leave the pragma.
1533 PragmaARCCFCodeAuditedLoc = SourceLocation();
1534 }
1535
Aaron Ballman611306e2012-03-02 22:51:54 +00001536 if (HeaderInfo.HasIncludeAliasMap()) {
1537 // Map the filename with the brackets still attached. If the name doesn't
1538 // map to anything, fall back on the filename we've already gotten the
1539 // spelling for.
1540 StringRef NewName = HeaderInfo.MapHeaderToIncludeAlias(OriginalFilename);
1541 if (!NewName.empty())
1542 Filename = NewName;
1543 }
1544
Chris Lattnerf64b3522008-03-09 01:54:53 +00001545 // Search include directories.
1546 const DirectoryLookup *CurDir;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001547 SmallString<1024> SearchPath;
1548 SmallString<1024> RelativePath;
Chandler Carruth3cc331a2011-03-16 18:34:36 +00001549 // We get the raw path only if we have 'Callbacks' to which we later pass
1550 // the path.
Lawrence Crowlb53e5482013-06-20 21:14:14 +00001551 ModuleMap::KnownHeader SuggestedModule;
1552 SourceLocation FilenameLoc = FilenameTok.getLocation();
Saleem Abdulrasool729b7d32014-03-12 02:26:08 +00001553 SmallString<128> NormalizedPath;
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001554 if (LangOpts.MSVCCompat) {
1555 NormalizedPath = Filename.str();
Yaron Keren1801d1b2014-08-09 18:13:01 +00001556#ifndef LLVM_ON_WIN32
Rafael Espindolaf6002232014-08-08 21:31:04 +00001557 llvm::sys::path::native(NormalizedPath);
Yaron Keren1801d1b2014-08-09 18:13:01 +00001558#endif
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001559 }
Chandler Carruth3cc331a2011-03-16 18:34:36 +00001560 const FileEntry *File = LookupFile(
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001561 FilenameLoc, LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename,
Richard Smith25d50752014-10-20 00:15:49 +00001562 isAngled, LookupFrom, LookupFromFile, CurDir,
1563 Callbacks ? &SearchPath : nullptr, Callbacks ? &RelativePath : nullptr,
Craig Topperd2d442c2014-05-17 23:10:59 +00001564 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule : nullptr);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001565
Douglas Gregor11729f02011-11-30 18:12:06 +00001566 if (Callbacks) {
1567 if (!File) {
1568 // Give the clients a chance to recover.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001569 SmallString<128> RecoveryPath;
Douglas Gregor11729f02011-11-30 18:12:06 +00001570 if (Callbacks->FileNotFound(Filename, RecoveryPath)) {
1571 if (const DirectoryEntry *DE = FileMgr.getDirectory(RecoveryPath)) {
1572 // Add the recovery path to the list of search paths.
Daniel Dunbarae4feb62013-01-25 01:50:28 +00001573 DirectoryLookup DL(DE, SrcMgr::C_User, false);
Douglas Gregor11729f02011-11-30 18:12:06 +00001574 HeaderInfo.AddSearchPath(DL, isAngled);
1575
1576 // Try the lookup again, skipping the cache.
Richard Smith25d50752014-10-20 00:15:49 +00001577 File = LookupFile(
1578 FilenameLoc,
1579 LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, isAngled,
1580 LookupFrom, LookupFromFile, CurDir, nullptr, nullptr,
1581 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1582 : nullptr,
1583 /*SkipCache*/ true);
Douglas Gregor11729f02011-11-30 18:12:06 +00001584 }
1585 }
1586 }
1587
Daniel Jasper07e6c402013-08-05 20:26:17 +00001588 if (!SuggestedModule || !getLangOpts().Modules) {
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001589 // Notify the callback object that we've seen an inclusion directive.
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001590 Callbacks->InclusionDirective(HashLoc, IncludeTok,
1591 LangOpts.MSVCCompat ? NormalizedPath.c_str()
1592 : Filename,
1593 isAngled, FilenameRange, File, SearchPath,
Craig Topperd2d442c2014-05-17 23:10:59 +00001594 RelativePath, /*ImportedModule=*/nullptr);
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001595 }
Douglas Gregor11729f02011-11-30 18:12:06 +00001596 }
Craig Topperd2d442c2014-05-17 23:10:59 +00001597
1598 if (!File) {
Aaron Ballman8f94ac62012-07-17 23:19:16 +00001599 if (!SuppressIncludeNotFoundError) {
1600 // If the file could not be located and it was included via angle
1601 // brackets, we can attempt a lookup as though it were a quoted path to
1602 // provide the user with a possible fixit.
1603 if (isAngled) {
Daniel Jasper07e6c402013-08-05 20:26:17 +00001604 File = LookupFile(
Richard Smith25d50752014-10-20 00:15:49 +00001605 FilenameLoc,
1606 LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, false,
1607 LookupFrom, LookupFromFile, CurDir,
1608 Callbacks ? &SearchPath : nullptr,
Craig Topperd2d442c2014-05-17 23:10:59 +00001609 Callbacks ? &RelativePath : nullptr,
1610 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1611 : nullptr);
Aaron Ballman8f94ac62012-07-17 23:19:16 +00001612 if (File) {
1613 SourceRange Range(FilenameTok.getLocation(), CharEnd);
1614 Diag(FilenameTok, diag::err_pp_file_not_found_not_fatal) <<
1615 Filename <<
1616 FixItHint::CreateReplacement(Range, "\"" + Filename.str() + "\"");
1617 }
1618 }
1619 // If the file is still not found, just go with the vanilla diagnostic
1620 if (!File)
1621 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
1622 }
1623 if (!File)
1624 return;
Douglas Gregor11729f02011-11-30 18:12:06 +00001625 }
1626
Douglas Gregor97eec242011-09-15 22:00:41 +00001627 // If we are supposed to import a module rather than including the header,
1628 // do so now.
Ben Langmuirb537a3a2014-07-23 15:30:23 +00001629 if (SuggestedModule && getLangOpts().Modules &&
1630 SuggestedModule.getModule()->getTopLevelModuleName() !=
1631 getLangOpts().ImplementationOfModule) {
Douglas Gregor71944202011-11-30 00:36:36 +00001632 // Compute the module access path corresponding to this module.
1633 // FIXME: Should we have a second loadModule() overload to avoid this
1634 // extra lookup step?
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001635 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
Lawrence Crowlb53e5482013-06-20 21:14:14 +00001636 for (Module *Mod = SuggestedModule.getModule(); Mod; Mod = Mod->Parent)
Douglas Gregor71944202011-11-30 00:36:36 +00001637 Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name),
1638 FilenameTok.getLocation()));
1639 std::reverse(Path.begin(), Path.end());
1640
Douglas Gregor41e115a2011-11-30 18:02:36 +00001641 // Warn that we're replacing the include/import with a module import.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001642 SmallString<128> PathString;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001643 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
1644 if (I)
1645 PathString += '.';
1646 PathString += Path[I].first->getName();
1647 }
1648 int IncludeKind = 0;
1649
1650 switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
1651 case tok::pp_include:
1652 IncludeKind = 0;
1653 break;
1654
1655 case tok::pp_import:
1656 IncludeKind = 1;
1657 break;
1658
Douglas Gregor4401fbe2011-11-30 18:03:26 +00001659 case tok::pp_include_next:
1660 IncludeKind = 2;
1661 break;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001662
1663 case tok::pp___include_macros:
1664 IncludeKind = 3;
1665 break;
1666
1667 default:
1668 llvm_unreachable("unknown include directive kind");
Douglas Gregor41e115a2011-11-30 18:02:36 +00001669 }
1670
Douglas Gregor2537a362011-12-08 17:01:29 +00001671 // Determine whether we are actually building the module that this
1672 // include directive maps to.
1673 bool BuildingImportedModule
David Blaikiebbafb8a2012-03-11 07:00:24 +00001674 = Path[0].first->getName() == getLangOpts().CurrentModule;
Richard Smith34f30512013-11-23 04:06:09 +00001675
David Blaikiebbafb8a2012-03-11 07:00:24 +00001676 if (!BuildingImportedModule && getLangOpts().ObjC2) {
Douglas Gregor2537a362011-12-08 17:01:29 +00001677 // If we're not building the imported module, warn that we're going
1678 // to automatically turn this inclusion directive into a module import.
Douglas Gregorda82e702012-01-03 19:32:59 +00001679 // We only do this in Objective-C, where we have a module-import syntax.
Douglas Gregor2537a362011-12-08 17:01:29 +00001680 CharSourceRange ReplaceRange(SourceRange(HashLoc, CharEnd),
1681 /*IsTokenRange=*/false);
1682 Diag(HashLoc, diag::warn_auto_module_import)
Yaron Keren92e1b622015-03-18 10:17:07 +00001683 << IncludeKind << PathString
1684 << FixItHint::CreateReplacement(
1685 ReplaceRange, ("@import " + PathString + ";").str());
Douglas Gregor2537a362011-12-08 17:01:29 +00001686 }
Douglas Gregor41e115a2011-11-30 18:02:36 +00001687
Richard Smithce587f52013-11-15 04:24:58 +00001688 // Load the module. Only make macros visible. We'll make the declarations
1689 // visible when the parser gets here.
1690 Module::NameVisibilityKind Visibility = Module::MacrosVisible;
Douglas Gregor7a626572012-11-29 23:55:25 +00001691 ModuleLoadResult Imported
Douglas Gregor98a52db2011-12-20 00:28:52 +00001692 = TheModuleLoader.loadModule(IncludeTok.getLocation(), Path, Visibility,
1693 /*IsIncludeDirective=*/true);
Craig Topperd2d442c2014-05-17 23:10:59 +00001694 assert((Imported == nullptr || Imported == SuggestedModule.getModule()) &&
Argyrios Kyrtzidis051b4432012-09-29 01:06:01 +00001695 "the imported module is different than the suggested one");
Argyrios Kyrtzidisdc9fdaf2013-05-24 05:44:08 +00001696
1697 if (!Imported && hadModuleLoaderFatalFailure()) {
1698 // With a fatal failure in the module loader, we abort parsing.
1699 Token &Result = IncludeTok;
1700 if (CurLexer) {
1701 Result.startToken();
1702 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
1703 CurLexer->cutOffLexing();
1704 } else {
1705 assert(CurPTHLexer && "#include but no current lexer set!");
1706 CurPTHLexer->getEOF(Result);
1707 }
1708 return;
1709 }
Richard Smithce587f52013-11-15 04:24:58 +00001710
Douglas Gregor2537a362011-12-08 17:01:29 +00001711 // If this header isn't part of the module we're building, we're done.
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001712 if (!BuildingImportedModule && Imported) {
1713 if (Callbacks) {
1714 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1715 FilenameRange, File,
1716 SearchPath, RelativePath, Imported);
1717 }
Richard Smithce587f52013-11-15 04:24:58 +00001718
1719 if (IncludeKind != 3) {
1720 // Let the parser know that we hit a module import, and it should
1721 // make the module visible.
1722 // FIXME: Produce this as the current token directly, rather than
1723 // allocating a new token for it.
Richard Smith34f30512013-11-23 04:06:09 +00001724 EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_include,
1725 Imported);
Richard Smithce587f52013-11-15 04:24:58 +00001726 }
Douglas Gregor2537a362011-12-08 17:01:29 +00001727 return;
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001728 }
Douglas Gregor7a626572012-11-29 23:55:25 +00001729
1730 // If we failed to find a submodule that we expected to find, we can
1731 // continue. Otherwise, there's an error in the included file, so we
1732 // don't want to include it.
1733 if (!BuildingImportedModule && !Imported.isMissingExpected()) {
1734 return;
1735 }
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001736 }
1737
1738 if (Callbacks && SuggestedModule) {
1739 // We didn't notify the callback object that we've seen an inclusion
1740 // directive before. Now that we are parsing the include normally and not
1741 // turning it to a module import, notify the callback object.
1742 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1743 FilenameRange, File,
1744 SearchPath, RelativePath,
Craig Topperd2d442c2014-05-17 23:10:59 +00001745 /*ImportedModule=*/nullptr);
Douglas Gregor97eec242011-09-15 22:00:41 +00001746 }
1747
Chris Lattnerc88a23e2008-09-26 20:12:23 +00001748 // The #included file will be considered to be a system header if either it is
1749 // in a system include directory, or if the #includer is a system include
1750 // header.
Mike Stump11289f42009-09-09 15:08:12 +00001751 SrcMgr::CharacteristicKind FileCharacter =
Chris Lattnerb03dc762008-09-26 21:18:42 +00001752 std::max(HeaderInfo.getFileDirFlavor(File),
Chris Lattnerc0334162009-01-19 07:59:15 +00001753 SourceMgr.getFileCharacteristic(FilenameTok.getLocation()));
Mike Stump11289f42009-09-09 15:08:12 +00001754
Chris Lattner72286d62010-04-19 20:44:31 +00001755 // Ask HeaderInfo if we should enter this #include file. If not, #including
1756 // this file will have no effect.
1757 if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) {
Chris Lattnerfb24a3a2010-04-20 20:35:58 +00001758 if (Callbacks)
Chris Lattner72286d62010-04-19 20:44:31 +00001759 Callbacks->FileSkipped(*File, FilenameTok, FileCharacter);
Chris Lattner72286d62010-04-19 20:44:31 +00001760 return;
1761 }
1762
Chris Lattnerf64b3522008-03-09 01:54:53 +00001763 // Look up the file, create a File ID for it.
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +00001764 SourceLocation IncludePos = End;
1765 // If the filename string was the result of macro expansions, set the include
1766 // position on the file where it will be included and after the expansions.
1767 if (IncludePos.isMacroID())
1768 IncludePos = SourceMgr.getExpansionRange(IncludePos).second;
1769 FileID FID = SourceMgr.createFileID(File, IncludePos, FileCharacter);
Peter Collingbourned395b932011-06-30 16:41:03 +00001770 assert(!FID.isInvalid() && "Expected valid file ID");
Chris Lattnerf64b3522008-03-09 01:54:53 +00001771
Richard Smith34f30512013-11-23 04:06:09 +00001772 // Determine if we're switching to building a new submodule, and which one.
1773 ModuleMap::KnownHeader BuildingModule;
1774 if (getLangOpts().Modules && !getLangOpts().CurrentModule.empty()) {
1775 Module *RequestingModule = getModuleForLocation(FilenameLoc);
1776 BuildingModule =
1777 HeaderInfo.getModuleMap().findModuleForHeader(File, RequestingModule);
1778 }
1779
1780 // If all is good, enter the new file!
Richard Smith67294e22014-01-31 20:47:44 +00001781 if (EnterSourceFile(FID, CurDir, FilenameTok.getLocation()))
1782 return;
Richard Smith34f30512013-11-23 04:06:09 +00001783
1784 // If we're walking into another part of the same module, let the parser
1785 // know that any future declarations are within that other submodule.
Richard Smith67294e22014-01-31 20:47:44 +00001786 if (BuildingModule) {
1787 assert(!CurSubmodule && "should not have marked this as a module yet");
1788 CurSubmodule = BuildingModule.getModule();
1789
Richard Smithb8b2ed62015-04-23 18:18:26 +00001790 EnterSubmodule(CurSubmodule);
1791
Richard Smith34f30512013-11-23 04:06:09 +00001792 EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_begin,
Richard Smith67294e22014-01-31 20:47:44 +00001793 CurSubmodule);
1794 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001795}
1796
James Dennettf6333ac2012-06-22 05:46:07 +00001797/// HandleIncludeNextDirective - Implements \#include_next.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001798///
Douglas Gregor796d76a2010-10-20 22:00:55 +00001799void Preprocessor::HandleIncludeNextDirective(SourceLocation HashLoc,
1800 Token &IncludeNextTok) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001801 Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
Mike Stump11289f42009-09-09 15:08:12 +00001802
Chris Lattnerf64b3522008-03-09 01:54:53 +00001803 // #include_next is like #include, except that we start searching after
1804 // the current found directory. If we can't do this, issue a
1805 // diagnostic.
1806 const DirectoryLookup *Lookup = CurDirLookup;
Richard Smith25d50752014-10-20 00:15:49 +00001807 const FileEntry *LookupFromFile = nullptr;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001808 if (isInPrimaryFile()) {
Craig Topperd2d442c2014-05-17 23:10:59 +00001809 Lookup = nullptr;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001810 Diag(IncludeNextTok, diag::pp_include_next_in_primary);
Richard Smith25d50752014-10-20 00:15:49 +00001811 } else if (CurSubmodule) {
1812 // Start looking up in the directory *after* the one in which the current
1813 // file would be found, if any.
1814 assert(CurPPLexer && "#include_next directive in macro?");
1815 LookupFromFile = CurPPLexer->getFileEntry();
1816 Lookup = nullptr;
Craig Topperd2d442c2014-05-17 23:10:59 +00001817 } else if (!Lookup) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001818 Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1819 } else {
1820 // Start looking up in the next directory.
1821 ++Lookup;
1822 }
Mike Stump11289f42009-09-09 15:08:12 +00001823
Richard Smith25d50752014-10-20 00:15:49 +00001824 return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup,
1825 LookupFromFile);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001826}
1827
James Dennettf6333ac2012-06-22 05:46:07 +00001828/// HandleMicrosoftImportDirective - Implements \#import for Microsoft Mode
Aaron Ballman0467f552012-03-18 03:10:37 +00001829void Preprocessor::HandleMicrosoftImportDirective(Token &Tok) {
1830 // The Microsoft #import directive takes a type library and generates header
1831 // files from it, and includes those. This is beyond the scope of what clang
1832 // does, so we ignore it and error out. However, #import can optionally have
1833 // trailing attributes that span multiple lines. We're going to eat those
1834 // so we can continue processing from there.
1835 Diag(Tok, diag::err_pp_import_directive_ms );
1836
1837 // Read tokens until we get to the end of the directive. Note that the
1838 // directive can be split over multiple lines using the backslash character.
1839 DiscardUntilEndOfDirective();
1840}
1841
James Dennettf6333ac2012-06-22 05:46:07 +00001842/// HandleImportDirective - Implements \#import.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001843///
Douglas Gregor796d76a2010-10-20 22:00:55 +00001844void Preprocessor::HandleImportDirective(SourceLocation HashLoc,
1845 Token &ImportTok) {
Aaron Ballman0467f552012-03-18 03:10:37 +00001846 if (!LangOpts.ObjC1) { // #import is standard for ObjC.
Alp Tokerbfa39342014-01-14 12:51:41 +00001847 if (LangOpts.MSVCCompat)
Aaron Ballman0467f552012-03-18 03:10:37 +00001848 return HandleMicrosoftImportDirective(ImportTok);
Chris Lattnerd4a96732009-03-06 04:28:03 +00001849 Diag(ImportTok, diag::ext_pp_import_directive);
Aaron Ballman0467f552012-03-18 03:10:37 +00001850 }
Richard Smith25d50752014-10-20 00:15:49 +00001851 return HandleIncludeDirective(HashLoc, ImportTok, nullptr, nullptr, true);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001852}
1853
Chris Lattner58a1eb02009-04-08 18:46:40 +00001854/// HandleIncludeMacrosDirective - The -imacros command line option turns into a
1855/// pseudo directive in the predefines buffer. This handles it by sucking all
1856/// tokens through the preprocessor and discarding them (only keeping the side
1857/// effects on the preprocessor).
Douglas Gregor796d76a2010-10-20 22:00:55 +00001858void Preprocessor::HandleIncludeMacrosDirective(SourceLocation HashLoc,
1859 Token &IncludeMacrosTok) {
Chris Lattner58a1eb02009-04-08 18:46:40 +00001860 // This directive should only occur in the predefines buffer. If not, emit an
1861 // error and reject it.
1862 SourceLocation Loc = IncludeMacrosTok.getLocation();
1863 if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) {
1864 Diag(IncludeMacrosTok.getLocation(),
1865 diag::pp_include_macros_out_of_predefines);
1866 DiscardUntilEndOfDirective();
1867 return;
1868 }
Mike Stump11289f42009-09-09 15:08:12 +00001869
Chris Lattnere01d82b2009-04-08 20:53:24 +00001870 // Treat this as a normal #include for checking purposes. If this is
1871 // successful, it will push a new lexer onto the include stack.
Richard Smith25d50752014-10-20 00:15:49 +00001872 HandleIncludeDirective(HashLoc, IncludeMacrosTok);
Mike Stump11289f42009-09-09 15:08:12 +00001873
Chris Lattnere01d82b2009-04-08 20:53:24 +00001874 Token TmpTok;
1875 do {
1876 Lex(TmpTok);
1877 assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!");
1878 } while (TmpTok.isNot(tok::hashhash));
Chris Lattner58a1eb02009-04-08 18:46:40 +00001879}
1880
Chris Lattnerf64b3522008-03-09 01:54:53 +00001881//===----------------------------------------------------------------------===//
1882// Preprocessor Macro Directive Handling.
1883//===----------------------------------------------------------------------===//
1884
1885/// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1886/// definition has just been read. Lex the rest of the arguments and the
1887/// closing ), updating MI with what we learn. Return true if an error occurs
1888/// parsing the arg list.
Abramo Bagnarac9e48c02012-03-31 20:17:27 +00001889bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI, Token &Tok) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001890 SmallVector<IdentifierInfo*, 32> Arguments;
Mike Stump11289f42009-09-09 15:08:12 +00001891
Chris Lattnerf64b3522008-03-09 01:54:53 +00001892 while (1) {
1893 LexUnexpandedToken(Tok);
1894 switch (Tok.getKind()) {
1895 case tok::r_paren:
1896 // Found the end of the argument list.
Chris Lattnerf87c5102009-02-20 22:31:31 +00001897 if (Arguments.empty()) // #define FOO()
Chris Lattnerf64b3522008-03-09 01:54:53 +00001898 return false;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001899 // Otherwise we have #define FOO(A,)
1900 Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1901 return true;
1902 case tok::ellipsis: // #define X(... -> C99 varargs
David Blaikiebbafb8a2012-03-11 07:00:24 +00001903 if (!LangOpts.C99)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001904 Diag(Tok, LangOpts.CPlusPlus11 ?
Richard Smithacd4d3d2011-10-15 01:18:56 +00001905 diag::warn_cxx98_compat_variadic_macro :
1906 diag::ext_variadic_macro);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001907
Joey Gouly1d58cdb2013-01-17 17:35:00 +00001908 // OpenCL v1.2 s6.9.e: variadic macros are not supported.
1909 if (LangOpts.OpenCL) {
1910 Diag(Tok, diag::err_pp_opencl_variadic_macros);
1911 return true;
1912 }
1913
Chris Lattnerf64b3522008-03-09 01:54:53 +00001914 // Lex the token after the identifier.
1915 LexUnexpandedToken(Tok);
1916 if (Tok.isNot(tok::r_paren)) {
1917 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1918 return true;
1919 }
1920 // Add the __VA_ARGS__ identifier as an argument.
1921 Arguments.push_back(Ident__VA_ARGS__);
1922 MI->setIsC99Varargs();
Chris Lattner70946da2009-02-20 22:46:43 +00001923 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001924 return false;
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001925 case tok::eod: // #define X(
Chris Lattnerf64b3522008-03-09 01:54:53 +00001926 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1927 return true;
1928 default:
1929 // Handle keywords and identifiers here to accept things like
1930 // #define Foo(for) for.
1931 IdentifierInfo *II = Tok.getIdentifierInfo();
Craig Topperd2d442c2014-05-17 23:10:59 +00001932 if (!II) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001933 // #define X(1
1934 Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
1935 return true;
1936 }
1937
1938 // If this is already used as an argument, it is used multiple times (e.g.
1939 // #define X(A,A.
Mike Stump11289f42009-09-09 15:08:12 +00001940 if (std::find(Arguments.begin(), Arguments.end(), II) !=
Chris Lattnerf64b3522008-03-09 01:54:53 +00001941 Arguments.end()) { // C99 6.10.3p6
Chris Lattnerc5cdade2008-11-19 07:33:58 +00001942 Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001943 return true;
1944 }
Mike Stump11289f42009-09-09 15:08:12 +00001945
Chris Lattnerf64b3522008-03-09 01:54:53 +00001946 // Add the argument to the macro info.
1947 Arguments.push_back(II);
Mike Stump11289f42009-09-09 15:08:12 +00001948
Chris Lattnerf64b3522008-03-09 01:54:53 +00001949 // Lex the token after the identifier.
1950 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001951
Chris Lattnerf64b3522008-03-09 01:54:53 +00001952 switch (Tok.getKind()) {
1953 default: // #define X(A B
1954 Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
1955 return true;
1956 case tok::r_paren: // #define X(A)
Chris Lattner70946da2009-02-20 22:46:43 +00001957 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001958 return false;
1959 case tok::comma: // #define X(A,
1960 break;
1961 case tok::ellipsis: // #define X(A... -> GCC extension
1962 // Diagnose extension.
1963 Diag(Tok, diag::ext_named_variadic_macro);
Mike Stump11289f42009-09-09 15:08:12 +00001964
Chris Lattnerf64b3522008-03-09 01:54:53 +00001965 // Lex the token after the identifier.
1966 LexUnexpandedToken(Tok);
1967 if (Tok.isNot(tok::r_paren)) {
1968 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1969 return true;
1970 }
Mike Stump11289f42009-09-09 15:08:12 +00001971
Chris Lattnerf64b3522008-03-09 01:54:53 +00001972 MI->setIsGNUVarargs();
Chris Lattner70946da2009-02-20 22:46:43 +00001973 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001974 return false;
1975 }
1976 }
1977 }
1978}
1979
Serge Pavlov07c0f042014-12-18 11:14:21 +00001980static bool isConfigurationPattern(Token &MacroName, MacroInfo *MI,
1981 const LangOptions &LOptions) {
1982 if (MI->getNumTokens() == 1) {
1983 const Token &Value = MI->getReplacementToken(0);
1984
1985 // Macro that is identity, like '#define inline inline' is a valid pattern.
1986 if (MacroName.getKind() == Value.getKind())
1987 return true;
1988
1989 // Macro that maps a keyword to the same keyword decorated with leading/
1990 // trailing underscores is a valid pattern:
1991 // #define inline __inline
1992 // #define inline __inline__
1993 // #define inline _inline (in MS compatibility mode)
1994 StringRef MacroText = MacroName.getIdentifierInfo()->getName();
1995 if (IdentifierInfo *II = Value.getIdentifierInfo()) {
1996 if (!II->isKeyword(LOptions))
1997 return false;
1998 StringRef ValueText = II->getName();
1999 StringRef TrimmedValue = ValueText;
2000 if (!ValueText.startswith("__")) {
2001 if (ValueText.startswith("_"))
2002 TrimmedValue = TrimmedValue.drop_front(1);
2003 else
2004 return false;
2005 } else {
2006 TrimmedValue = TrimmedValue.drop_front(2);
2007 if (TrimmedValue.endswith("__"))
2008 TrimmedValue = TrimmedValue.drop_back(2);
2009 }
2010 return TrimmedValue.equals(MacroText);
2011 } else {
2012 return false;
2013 }
2014 }
2015
2016 // #define inline
2017 if ((MacroName.is(tok::kw_extern) || MacroName.is(tok::kw_inline) ||
2018 MacroName.is(tok::kw_static) || MacroName.is(tok::kw_const)) &&
2019 MI->getNumTokens() == 0) {
2020 return true;
2021 }
2022
2023 return false;
2024}
2025
James Dennettf6333ac2012-06-22 05:46:07 +00002026/// HandleDefineDirective - Implements \#define. This consumes the entire macro
Chris Lattnerf64b3522008-03-09 01:54:53 +00002027/// line then lets the caller lex the next real token.
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002028void Preprocessor::HandleDefineDirective(Token &DefineTok,
2029 bool ImmediatelyAfterHeaderGuard) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002030 ++NumDefined;
2031
2032 Token MacroNameTok;
Serge Pavlov07c0f042014-12-18 11:14:21 +00002033 bool MacroShadowsKeyword;
2034 ReadMacroName(MacroNameTok, MU_Define, &MacroShadowsKeyword);
Mike Stump11289f42009-09-09 15:08:12 +00002035
Chris Lattnerf64b3522008-03-09 01:54:53 +00002036 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002037 if (MacroNameTok.is(tok::eod))
Chris Lattnerf64b3522008-03-09 01:54:53 +00002038 return;
2039
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002040 Token LastTok = MacroNameTok;
2041
Chris Lattnerf64b3522008-03-09 01:54:53 +00002042 // If we are supposed to keep comments in #defines, reenable comment saving
2043 // mode.
Ted Kremenek59e003e2008-11-18 00:43:07 +00002044 if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments);
Mike Stump11289f42009-09-09 15:08:12 +00002045
Chris Lattnerf64b3522008-03-09 01:54:53 +00002046 // Create the new macro.
Ted Kremenek6c7ea112008-12-15 19:56:42 +00002047 MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00002048
Chris Lattnerf64b3522008-03-09 01:54:53 +00002049 Token Tok;
2050 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002051
Chris Lattnerf64b3522008-03-09 01:54:53 +00002052 // If this is a function-like macro definition, parse the argument list,
2053 // marking each of the identifiers as being used as macro arguments. Also,
2054 // check other constraints on the first token of the macro body.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002055 if (Tok.is(tok::eod)) {
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002056 if (ImmediatelyAfterHeaderGuard) {
2057 // Save this macro information since it may part of a header guard.
2058 CurPPLexer->MIOpt.SetDefinedMacro(MacroNameTok.getIdentifierInfo(),
2059 MacroNameTok.getLocation());
2060 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002061 // If there is no body to this macro, we have no special handling here.
Chris Lattner2425bcb2009-04-18 02:23:25 +00002062 } else if (Tok.hasLeadingSpace()) {
2063 // This is a normal token with leading space. Clear the leading space
2064 // marker on the first token to get proper expansion.
2065 Tok.clearFlag(Token::LeadingSpace);
2066 } else if (Tok.is(tok::l_paren)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002067 // This is a function-like macro definition. Read the argument list.
2068 MI->setIsFunctionLike();
Abramo Bagnarac9e48c02012-03-31 20:17:27 +00002069 if (ReadMacroDefinitionArgList(MI, LastTok)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002070 // Throw away the rest of the line.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002071 if (CurPPLexer->ParsingPreprocessorDirective)
Chris Lattnerf64b3522008-03-09 01:54:53 +00002072 DiscardUntilEndOfDirective();
2073 return;
2074 }
2075
Chris Lattner249c38b2009-04-19 18:26:34 +00002076 // If this is a definition of a variadic C99 function-like macro, not using
2077 // the GNU named varargs extension, enabled __VA_ARGS__.
Mike Stump11289f42009-09-09 15:08:12 +00002078
Chris Lattner249c38b2009-04-19 18:26:34 +00002079 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
2080 // This gets unpoisoned where it is allowed.
2081 assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
2082 if (MI->isC99Varargs())
2083 Ident__VA_ARGS__->setIsPoisoned(false);
Mike Stump11289f42009-09-09 15:08:12 +00002084
Chris Lattnerf64b3522008-03-09 01:54:53 +00002085 // Read the first token after the arg list for down below.
2086 LexUnexpandedToken(Tok);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002087 } else if (LangOpts.C99 || LangOpts.CPlusPlus11) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002088 // C99 requires whitespace between the macro definition and the body. Emit
2089 // a diagnostic for something like "#define X+".
Chris Lattner2425bcb2009-04-18 02:23:25 +00002090 Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002091 } else {
Chris Lattner2425bcb2009-04-18 02:23:25 +00002092 // C90 6.8 TC1 says: "In the definition of an object-like macro, if the
2093 // first character of a replacement list is not a character required by
2094 // subclause 5.2.1, then there shall be white-space separation between the
2095 // identifier and the replacement list.". 5.2.1 lists this set:
2096 // "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which
2097 // is irrelevant here.
2098 bool isInvalid = false;
2099 if (Tok.is(tok::at)) // @ is not in the list above.
2100 isInvalid = true;
2101 else if (Tok.is(tok::unknown)) {
2102 // If we have an unknown token, it is something strange like "`". Since
2103 // all of valid characters would have lexed into a single character
2104 // token of some sort, we know this is not a valid case.
2105 isInvalid = true;
2106 }
2107 if (isInvalid)
2108 Diag(Tok, diag::ext_missing_whitespace_after_macro_name);
2109 else
2110 Diag(Tok, diag::warn_missing_whitespace_after_macro_name);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002111 }
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002112
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002113 if (!Tok.is(tok::eod))
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002114 LastTok = Tok;
2115
Chris Lattnerf64b3522008-03-09 01:54:53 +00002116 // Read the rest of the macro body.
2117 if (MI->isObjectLike()) {
2118 // Object-like macros are very simple, just read their body.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002119 while (Tok.isNot(tok::eod)) {
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002120 LastTok = Tok;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002121 MI->AddTokenToBody(Tok);
2122 // Get the next token of the macro.
2123 LexUnexpandedToken(Tok);
2124 }
Mike Stump11289f42009-09-09 15:08:12 +00002125
Chris Lattnerf64b3522008-03-09 01:54:53 +00002126 } else {
Chris Lattner83bd8282009-05-25 17:16:10 +00002127 // Otherwise, read the body of a function-like macro. While we are at it,
2128 // check C99 6.10.3.2p1: ensure that # operators are followed by macro
2129 // parameters in function-like macro expansions.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002130 while (Tok.isNot(tok::eod)) {
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002131 LastTok = Tok;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002132
Eli Friedman14d3c792012-11-14 02:18:46 +00002133 if (Tok.isNot(tok::hash) && Tok.isNot(tok::hashhash)) {
Chris Lattner83bd8282009-05-25 17:16:10 +00002134 MI->AddTokenToBody(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002135
Chris Lattnerf64b3522008-03-09 01:54:53 +00002136 // Get the next token of the macro.
2137 LexUnexpandedToken(Tok);
2138 continue;
2139 }
Mike Stump11289f42009-09-09 15:08:12 +00002140
Richard Smith701a3522013-07-09 01:00:29 +00002141 // If we're in -traditional mode, then we should ignore stringification
2142 // and token pasting. Mark the tokens as unknown so as not to confuse
2143 // things.
2144 if (getLangOpts().TraditionalCPP) {
2145 Tok.setKind(tok::unknown);
2146 MI->AddTokenToBody(Tok);
2147
2148 // Get the next token of the macro.
2149 LexUnexpandedToken(Tok);
2150 continue;
2151 }
2152
Eli Friedman14d3c792012-11-14 02:18:46 +00002153 if (Tok.is(tok::hashhash)) {
2154
2155 // If we see token pasting, check if it looks like the gcc comma
2156 // pasting extension. We'll use this information to suppress
2157 // diagnostics later on.
2158
2159 // Get the next token of the macro.
2160 LexUnexpandedToken(Tok);
2161
2162 if (Tok.is(tok::eod)) {
2163 MI->AddTokenToBody(LastTok);
2164 break;
2165 }
2166
2167 unsigned NumTokens = MI->getNumTokens();
2168 if (NumTokens && Tok.getIdentifierInfo() == Ident__VA_ARGS__ &&
2169 MI->getReplacementToken(NumTokens-1).is(tok::comma))
2170 MI->setHasCommaPasting();
2171
David Majnemer76faf1f2013-11-05 09:30:17 +00002172 // Things look ok, add the '##' token to the macro.
Eli Friedman14d3c792012-11-14 02:18:46 +00002173 MI->AddTokenToBody(LastTok);
Eli Friedman14d3c792012-11-14 02:18:46 +00002174 continue;
2175 }
2176
Chris Lattnerf64b3522008-03-09 01:54:53 +00002177 // Get the next token of the macro.
2178 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002179
Chris Lattner83bd8282009-05-25 17:16:10 +00002180 // Check for a valid macro arg identifier.
Craig Topperd2d442c2014-05-17 23:10:59 +00002181 if (Tok.getIdentifierInfo() == nullptr ||
Chris Lattner83bd8282009-05-25 17:16:10 +00002182 MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
2183
2184 // If this is assembler-with-cpp mode, we accept random gibberish after
2185 // the '#' because '#' is often a comment character. However, change
2186 // the kind of the token to tok::unknown so that the preprocessor isn't
2187 // confused.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002188 if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) {
Chris Lattner83bd8282009-05-25 17:16:10 +00002189 LastTok.setKind(tok::unknown);
Eli Friedmancdf8b882013-06-18 21:33:38 +00002190 MI->AddTokenToBody(LastTok);
2191 continue;
Chris Lattner83bd8282009-05-25 17:16:10 +00002192 } else {
2193 Diag(Tok, diag::err_pp_stringize_not_parameter);
Mike Stump11289f42009-09-09 15:08:12 +00002194
Chris Lattner83bd8282009-05-25 17:16:10 +00002195 // Disable __VA_ARGS__ again.
2196 Ident__VA_ARGS__->setIsPoisoned(true);
2197 return;
2198 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002199 }
Mike Stump11289f42009-09-09 15:08:12 +00002200
Chris Lattner83bd8282009-05-25 17:16:10 +00002201 // Things look ok, add the '#' and param name tokens to the macro.
2202 MI->AddTokenToBody(LastTok);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002203 MI->AddTokenToBody(Tok);
Chris Lattner83bd8282009-05-25 17:16:10 +00002204 LastTok = Tok;
Mike Stump11289f42009-09-09 15:08:12 +00002205
Chris Lattnerf64b3522008-03-09 01:54:53 +00002206 // Get the next token of the macro.
2207 LexUnexpandedToken(Tok);
2208 }
2209 }
Mike Stump11289f42009-09-09 15:08:12 +00002210
Serge Pavlov07c0f042014-12-18 11:14:21 +00002211 if (MacroShadowsKeyword &&
2212 !isConfigurationPattern(MacroNameTok, MI, getLangOpts())) {
2213 Diag(MacroNameTok, diag::warn_pp_macro_hides_keyword);
2214 }
Mike Stump11289f42009-09-09 15:08:12 +00002215
Chris Lattnerf64b3522008-03-09 01:54:53 +00002216 // Disable __VA_ARGS__ again.
2217 Ident__VA_ARGS__->setIsPoisoned(true);
2218
Chris Lattner57540c52011-04-15 05:22:18 +00002219 // Check that there is no paste (##) operator at the beginning or end of the
Chris Lattnerf64b3522008-03-09 01:54:53 +00002220 // replacement list.
2221 unsigned NumTokens = MI->getNumTokens();
2222 if (NumTokens != 0) {
2223 if (MI->getReplacementToken(0).is(tok::hashhash)) {
2224 Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002225 return;
2226 }
2227 if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
2228 Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002229 return;
2230 }
2231 }
Mike Stump11289f42009-09-09 15:08:12 +00002232
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002233 MI->setDefinitionEndLoc(LastTok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00002234
Chris Lattnerf64b3522008-03-09 01:54:53 +00002235 // Finally, if this identifier already had a macro defined for it, verify that
Alexander Kornienko8b3f6232012-08-29 00:20:03 +00002236 // the macro bodies are identical, and issue diagnostics if they are not.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002237 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Chris Lattner5244f342009-01-16 19:50:11 +00002238 // It is very common for system headers to have tons of macro redefinitions
2239 // and for warnings to be disabled in system headers. If this is the case,
2240 // then don't bother calling MacroInfo::isIdenticalTo.
Chris Lattner80c21df2009-03-13 21:17:23 +00002241 if (!getDiagnostics().getSuppressSystemWarnings() ||
Chris Lattner5244f342009-01-16 19:50:11 +00002242 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) {
Argyrios Kyrtzidisb495cc12011-01-18 19:50:15 +00002243 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused())
Chris Lattner5244f342009-01-16 19:50:11 +00002244 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002245
Richard Smith7b242542013-03-06 00:46:00 +00002246 // Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and
2247 // C++ [cpp.predefined]p4, but allow it as an extension.
2248 if (OtherMI->isBuiltinMacro())
2249 Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro);
Chris Lattnerc0a585d2010-08-17 15:55:45 +00002250 // Macros must be identical. This means all tokens and whitespace
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +00002251 // separation must be the same. C99 6.10.3p2.
Richard Smith7b242542013-03-06 00:46:00 +00002252 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +00002253 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) {
Chris Lattner5244f342009-01-16 19:50:11 +00002254 Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef)
2255 << MacroNameTok.getIdentifierInfo();
2256 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
2257 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002258 }
Argyrios Kyrtzidisb495cc12011-01-18 19:50:15 +00002259 if (OtherMI->isWarnIfUnused())
2260 WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002261 }
Mike Stump11289f42009-09-09 15:08:12 +00002262
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002263 DefMacroDirective *MD =
2264 appendDefMacroDirective(MacroNameTok.getIdentifierInfo(), MI);
Mike Stump11289f42009-09-09 15:08:12 +00002265
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002266 assert(!MI->isUsed());
2267 // If we need warning for not using the macro, add its location in the
2268 // warn-because-unused-macro set. If it gets used it will be removed from set.
Eli Friedman5ba37d52013-08-22 00:27:10 +00002269 if (getSourceManager().isInMainFile(MI->getDefinitionLoc()) &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002270 !Diags->isIgnored(diag::pp_macro_not_used, MI->getDefinitionLoc())) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002271 MI->setIsWarnIfUnused(true);
2272 WarnUnusedMacroLocs.insert(MI->getDefinitionLoc());
2273 }
2274
Chris Lattner928e9092009-04-12 01:39:54 +00002275 // If the callbacks want to know, tell them about the macro definition.
2276 if (Callbacks)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002277 Callbacks->MacroDefined(MacroNameTok, MD);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002278}
2279
James Dennettf6333ac2012-06-22 05:46:07 +00002280/// HandleUndefDirective - Implements \#undef.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002281///
2282void Preprocessor::HandleUndefDirective(Token &UndefTok) {
2283 ++NumUndefined;
2284
2285 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00002286 ReadMacroName(MacroNameTok, MU_Undef);
Mike Stump11289f42009-09-09 15:08:12 +00002287
Chris Lattnerf64b3522008-03-09 01:54:53 +00002288 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002289 if (MacroNameTok.is(tok::eod))
Chris Lattnerf64b3522008-03-09 01:54:53 +00002290 return;
Mike Stump11289f42009-09-09 15:08:12 +00002291
Chris Lattnerf64b3522008-03-09 01:54:53 +00002292 // Check to see if this is the last token on the #undef line.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002293 CheckEndOfDirective("undef");
Mike Stump11289f42009-09-09 15:08:12 +00002294
Chris Lattnerf64b3522008-03-09 01:54:53 +00002295 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002296 MacroDirective *MD = getMacroDirective(MacroNameTok.getIdentifierInfo());
Craig Topperd2d442c2014-05-17 23:10:59 +00002297 const MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002298
Argyrios Kyrtzidis99b0a6a2013-01-16 16:52:44 +00002299 // If the callbacks want to know, tell them about the macro #undef.
2300 // Note: no matter if the macro was defined or not.
2301 if (Callbacks)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002302 Callbacks->MacroUndefined(MacroNameTok, MD);
Argyrios Kyrtzidis99b0a6a2013-01-16 16:52:44 +00002303
Chris Lattnerf64b3522008-03-09 01:54:53 +00002304 // If the macro is not defined, this is a noop undef, just return.
Craig Topperd2d442c2014-05-17 23:10:59 +00002305 if (!MI)
2306 return;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002307
Argyrios Kyrtzidis22998892011-07-11 20:39:47 +00002308 if (!MI->isUsed() && MI->isWarnIfUnused())
Chris Lattnerf64b3522008-03-09 01:54:53 +00002309 Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattnercd6d4b12009-04-21 03:42:09 +00002310
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002311 if (MI->isWarnIfUnused())
2312 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
2313
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002314 appendMacroDirective(MacroNameTok.getIdentifierInfo(),
2315 AllocateUndefMacroDirective(MacroNameTok.getLocation()));
Chris Lattnerf64b3522008-03-09 01:54:53 +00002316}
2317
2318
2319//===----------------------------------------------------------------------===//
2320// Preprocessor Conditional Directive Handling.
2321//===----------------------------------------------------------------------===//
2322
James Dennettf6333ac2012-06-22 05:46:07 +00002323/// HandleIfdefDirective - Implements the \#ifdef/\#ifndef directive. isIfndef
2324/// is true when this is a \#ifndef directive. ReadAnyTokensBeforeDirective is
2325/// true if any tokens have been returned or pp-directives activated before this
2326/// \#ifndef has been lexed.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002327///
2328void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
2329 bool ReadAnyTokensBeforeDirective) {
2330 ++NumIf;
2331 Token DirectiveTok = Result;
2332
2333 Token MacroNameTok;
2334 ReadMacroName(MacroNameTok);
Mike Stump11289f42009-09-09 15:08:12 +00002335
Chris Lattnerf64b3522008-03-09 01:54:53 +00002336 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002337 if (MacroNameTok.is(tok::eod)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002338 // Skip code until we get to #endif. This helps with recovery by not
2339 // emitting an error when the #endif is reached.
2340 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2341 /*Foundnonskip*/false, /*FoundElse*/false);
2342 return;
2343 }
Mike Stump11289f42009-09-09 15:08:12 +00002344
Chris Lattnerf64b3522008-03-09 01:54:53 +00002345 // Check to see if this is the last token on the #if[n]def line.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002346 CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef");
Chris Lattnerf64b3522008-03-09 01:54:53 +00002347
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002348 IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002349 MacroDirective *MD = getMacroDirective(MII);
Craig Topperd2d442c2014-05-17 23:10:59 +00002350 MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002351
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002352 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002353 // If the start of a top-level #ifdef and if the macro is not defined,
2354 // inform MIOpt that this might be the start of a proper include guard.
2355 // Otherwise it is some other form of unknown conditional which we can't
2356 // handle.
Craig Topperd2d442c2014-05-17 23:10:59 +00002357 if (!ReadAnyTokensBeforeDirective && !MI) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002358 assert(isIfndef && "#ifdef shouldn't reach here");
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002359 CurPPLexer->MIOpt.EnterTopLevelIfndef(MII, MacroNameTok.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002360 } else
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002361 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002362 }
2363
Chris Lattnerf64b3522008-03-09 01:54:53 +00002364 // If there is a macro, process it.
2365 if (MI) // Mark it used.
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002366 markMacroAsUsed(MI);
Mike Stump11289f42009-09-09 15:08:12 +00002367
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002368 if (Callbacks) {
2369 if (isIfndef)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002370 Callbacks->Ifndef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002371 else
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002372 Callbacks->Ifdef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002373 }
2374
Chris Lattnerf64b3522008-03-09 01:54:53 +00002375 // Should we include the stuff contained by this directive?
2376 if (!MI == isIfndef) {
2377 // Yes, remember that we are inside a conditional, then lex the next token.
Chris Lattner8cf1f932009-12-14 04:54:40 +00002378 CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(),
2379 /*wasskip*/false, /*foundnonskip*/true,
2380 /*foundelse*/false);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002381 } else {
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002382 // No, skip the contents of this block.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002383 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002384 /*Foundnonskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002385 /*FoundElse*/false);
2386 }
2387}
2388
James Dennettf6333ac2012-06-22 05:46:07 +00002389/// HandleIfDirective - Implements the \#if directive.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002390///
2391void Preprocessor::HandleIfDirective(Token &IfToken,
2392 bool ReadAnyTokensBeforeDirective) {
2393 ++NumIf;
Mike Stump11289f42009-09-09 15:08:12 +00002394
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002395 // Parse and evaluate the conditional expression.
Craig Topperd2d442c2014-05-17 23:10:59 +00002396 IdentifierInfo *IfNDefMacro = nullptr;
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002397 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
2398 const bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
2399 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Nuno Lopes363212b2008-06-01 18:31:24 +00002400
2401 // If this condition is equivalent to #ifndef X, and if this is the first
2402 // directive seen, handle it for the multiple-include optimization.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002403 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002404 if (!ReadAnyTokensBeforeDirective && IfNDefMacro && ConditionalTrue)
Richard Smith089ee152013-06-16 05:05:39 +00002405 // FIXME: Pass in the location of the macro name, not the 'if' token.
2406 CurPPLexer->MIOpt.EnterTopLevelIfndef(IfNDefMacro, IfToken.getLocation());
Nuno Lopes363212b2008-06-01 18:31:24 +00002407 else
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002408 CurPPLexer->MIOpt.EnterTopLevelConditional();
Nuno Lopes363212b2008-06-01 18:31:24 +00002409 }
2410
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002411 if (Callbacks)
2412 Callbacks->If(IfToken.getLocation(),
John Thompsonb1028562013-07-18 00:00:36 +00002413 SourceRange(ConditionalBegin, ConditionalEnd),
John Thompson87f9fef2013-12-07 08:41:15 +00002414 (ConditionalTrue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False));
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002415
Chris Lattnerf64b3522008-03-09 01:54:53 +00002416 // Should we include the stuff contained by this directive?
2417 if (ConditionalTrue) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002418 // Yes, remember that we are inside a conditional, then lex the next token.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002419 CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002420 /*foundnonskip*/true, /*foundelse*/false);
2421 } else {
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002422 // No, skip the contents of this block.
Mike Stump11289f42009-09-09 15:08:12 +00002423 SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002424 /*FoundElse*/false);
2425 }
2426}
2427
James Dennettf6333ac2012-06-22 05:46:07 +00002428/// HandleEndifDirective - Implements the \#endif directive.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002429///
2430void Preprocessor::HandleEndifDirective(Token &EndifToken) {
2431 ++NumEndif;
Mike Stump11289f42009-09-09 15:08:12 +00002432
Chris Lattnerf64b3522008-03-09 01:54:53 +00002433 // Check that this is the whole directive.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002434 CheckEndOfDirective("endif");
Mike Stump11289f42009-09-09 15:08:12 +00002435
Chris Lattnerf64b3522008-03-09 01:54:53 +00002436 PPConditionalInfo CondInfo;
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002437 if (CurPPLexer->popConditionalLevel(CondInfo)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002438 // No conditionals on the stack: this is an #endif without an #if.
Chris Lattner907dfe92008-11-18 07:59:24 +00002439 Diag(EndifToken, diag::err_pp_endif_without_if);
2440 return;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002441 }
Mike Stump11289f42009-09-09 15:08:12 +00002442
Chris Lattnerf64b3522008-03-09 01:54:53 +00002443 // If this the end of a top-level #endif, inform MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002444 if (CurPPLexer->getConditionalStackDepth() == 0)
2445 CurPPLexer->MIOpt.ExitTopLevelConditional();
Mike Stump11289f42009-09-09 15:08:12 +00002446
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002447 assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode &&
Chris Lattnerf64b3522008-03-09 01:54:53 +00002448 "This code should only be reachable in the non-skipping case!");
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002449
2450 if (Callbacks)
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002451 Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002452}
2453
James Dennettf6333ac2012-06-22 05:46:07 +00002454/// HandleElseDirective - Implements the \#else directive.
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002455///
Chris Lattnerf64b3522008-03-09 01:54:53 +00002456void Preprocessor::HandleElseDirective(Token &Result) {
2457 ++NumElse;
Mike Stump11289f42009-09-09 15:08:12 +00002458
Chris Lattnerf64b3522008-03-09 01:54:53 +00002459 // #else directive in a non-skipping conditional... start skipping.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002460 CheckEndOfDirective("else");
Mike Stump11289f42009-09-09 15:08:12 +00002461
Chris Lattnerf64b3522008-03-09 01:54:53 +00002462 PPConditionalInfo CI;
Chris Lattner907dfe92008-11-18 07:59:24 +00002463 if (CurPPLexer->popConditionalLevel(CI)) {
2464 Diag(Result, diag::pp_err_else_without_if);
2465 return;
2466 }
Mike Stump11289f42009-09-09 15:08:12 +00002467
Chris Lattnerf64b3522008-03-09 01:54:53 +00002468 // If this is a top-level #else, inform the MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002469 if (CurPPLexer->getConditionalStackDepth() == 0)
2470 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002471
2472 // If this is a #else with a #else before it, report the error.
2473 if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
Mike Stump11289f42009-09-09 15:08:12 +00002474
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002475 if (Callbacks)
2476 Callbacks->Else(Result.getLocation(), CI.IfLoc);
2477
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002478 // Finally, skip the rest of the contents of this block.
2479 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +00002480 /*FoundElse*/true, Result.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002481}
2482
James Dennettf6333ac2012-06-22 05:46:07 +00002483/// HandleElifDirective - Implements the \#elif directive.
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002484///
Chris Lattnerf64b3522008-03-09 01:54:53 +00002485void Preprocessor::HandleElifDirective(Token &ElifToken) {
2486 ++NumElse;
Mike Stump11289f42009-09-09 15:08:12 +00002487
Chris Lattnerf64b3522008-03-09 01:54:53 +00002488 // #elif directive in a non-skipping conditional... start skipping.
2489 // We don't care what the condition is, because we will always skip it (since
2490 // the block immediately before it was included).
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002491 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002492 DiscardUntilEndOfDirective();
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002493 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002494
2495 PPConditionalInfo CI;
Chris Lattner907dfe92008-11-18 07:59:24 +00002496 if (CurPPLexer->popConditionalLevel(CI)) {
2497 Diag(ElifToken, diag::pp_err_elif_without_if);
2498 return;
2499 }
Mike Stump11289f42009-09-09 15:08:12 +00002500
Chris Lattnerf64b3522008-03-09 01:54:53 +00002501 // If this is a top-level #elif, inform the MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002502 if (CurPPLexer->getConditionalStackDepth() == 0)
2503 CurPPLexer->MIOpt.EnterTopLevelConditional();
Mike Stump11289f42009-09-09 15:08:12 +00002504
Chris Lattnerf64b3522008-03-09 01:54:53 +00002505 // If this is a #elif with a #else before it, report the error.
2506 if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002507
2508 if (Callbacks)
2509 Callbacks->Elif(ElifToken.getLocation(),
John Thompsonb1028562013-07-18 00:00:36 +00002510 SourceRange(ConditionalBegin, ConditionalEnd),
John Thompson87f9fef2013-12-07 08:41:15 +00002511 PPCallbacks::CVK_NotEvaluated, CI.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002512
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002513 // Finally, skip the rest of the contents of this block.
2514 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +00002515 /*FoundElse*/CI.FoundElse,
2516 ElifToken.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002517}