blob: 718bb5cb89ccb837f50dc53301187186cf325d61 [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
Richard Smith50474bf2015-04-23 23:29:05 +000065DefMacroDirective *Preprocessor::AllocateDefMacroDirective(MacroInfo *MI,
66 SourceLocation Loc) {
Richard Smith713369b2015-04-23 20:40:50 +000067 return new (BP) DefMacroDirective(MI, Loc);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000068}
69
70UndefMacroDirective *
Richard Smith50474bf2015-04-23 23:29:05 +000071Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) {
Richard Smith713369b2015-04-23 20:40:50 +000072 return new (BP) UndefMacroDirective(UndefLoc);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000073}
74
75VisibilityMacroDirective *
76Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc,
77 bool isPublic) {
Richard Smithdaa69e02014-07-25 04:40:03 +000078 return new (BP) VisibilityMacroDirective(Loc, isPublic);
Chris Lattnerc0a585d2010-08-17 15:55:45 +000079}
80
Richard Smith50474bf2015-04-23 23:29:05 +000081MacroDirective *
82Preprocessor::AllocateImportedMacroDirective(ModuleMacro *MM,
83 SourceLocation Loc) {
84 if (auto *MI = MM->getMacroInfo())
85 return DefMacroDirective::createImported(*this, MI, Loc, MM);
86 else
87 return UndefMacroDirective::createImported(*this, Loc, MM);
88}
89
James Dennettf6333ac2012-06-22 05:46:07 +000090/// \brief Read and discard all tokens remaining on the current line until
91/// the tok::eod token is found.
Chris Lattnerf64b3522008-03-09 01:54:53 +000092void Preprocessor::DiscardUntilEndOfDirective() {
93 Token Tmp;
94 do {
95 LexUnexpandedToken(Tmp);
Peter Collingbournef29ce972011-02-22 13:49:06 +000096 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +000097 } while (Tmp.isNot(tok::eod));
Chris Lattnerf64b3522008-03-09 01:54:53 +000098}
99
Serge Pavlov07c0f042014-12-18 11:14:21 +0000100/// \brief Enumerates possible cases of #define/#undef a reserved identifier.
101enum MacroDiag {
102 MD_NoWarn, //> Not a reserved identifier
103 MD_KeywordDef, //> Macro hides keyword, enabled by default
104 MD_ReservedMacro //> #define of #undef reserved id, disabled by default
105};
106
107/// \brief Checks if the specified identifier is reserved in the specified
108/// language.
109/// This function does not check if the identifier is a keyword.
110static bool isReservedId(StringRef Text, const LangOptions &Lang) {
111 // C++ [macro.names], C11 7.1.3:
112 // All identifiers that begin with an underscore and either an uppercase
113 // letter or another underscore are always reserved for any use.
114 if (Text.size() >= 2 && Text[0] == '_' &&
115 (isUppercase(Text[1]) || Text[1] == '_'))
116 return true;
117 // C++ [global.names]
118 // Each name that contains a double underscore ... is reserved to the
119 // implementation for any use.
120 if (Lang.CPlusPlus) {
121 if (Text.find("__") != StringRef::npos)
122 return true;
123 }
Nico Weber92c14bb2014-12-16 21:16:10 +0000124 return false;
Serge Pavlov83cf0782014-12-11 12:18:08 +0000125}
126
Serge Pavlov07c0f042014-12-18 11:14:21 +0000127static MacroDiag shouldWarnOnMacroDef(Preprocessor &PP, IdentifierInfo *II) {
128 const LangOptions &Lang = PP.getLangOpts();
129 StringRef Text = II->getName();
130 if (isReservedId(Text, Lang))
131 return MD_ReservedMacro;
132 if (II->isKeyword(Lang))
133 return MD_KeywordDef;
134 if (Lang.CPlusPlus11 && (Text.equals("override") || Text.equals("final")))
135 return MD_KeywordDef;
136 return MD_NoWarn;
137}
138
139static MacroDiag shouldWarnOnMacroUndef(Preprocessor &PP, IdentifierInfo *II) {
140 const LangOptions &Lang = PP.getLangOpts();
141 StringRef Text = II->getName();
142 // Do not warn on keyword undef. It is generally harmless and widely used.
143 if (isReservedId(Text, Lang))
144 return MD_ReservedMacro;
145 return MD_NoWarn;
146}
147
148bool Preprocessor::CheckMacroName(Token &MacroNameTok, MacroUse isDefineUndef,
149 bool *ShadowFlag) {
Alp Tokerb05e0b52014-05-21 06:13:51 +0000150 // Missing macro name?
151 if (MacroNameTok.is(tok::eod))
152 return Diag(MacroNameTok, diag::err_pp_missing_macro_name);
153
154 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
155 if (!II) {
156 bool Invalid = false;
157 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
158 if (Invalid)
159 return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
Alp Tokerf33619c2014-05-31 03:38:08 +0000160 II = getIdentifierInfo(Spelling);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000161
Alp Tokerf33619c2014-05-31 03:38:08 +0000162 if (!II->isCPlusPlusOperatorKeyword())
163 return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000164
Alp Tokere03e9e12014-05-31 16:32:22 +0000165 // C++ 2.5p2: Alternative tokens behave the same as its primary token
166 // except for their spellings.
167 Diag(MacroNameTok, getLangOpts().MicrosoftExt
168 ? diag::ext_pp_operator_used_as_macro_name
169 : diag::err_pp_operator_used_as_macro_name)
170 << II << MacroNameTok.getKind();
Alp Tokerb05e0b52014-05-21 06:13:51 +0000171
Alp Tokerc5d194fc2014-05-31 03:38:17 +0000172 // Allow #defining |and| and friends for Microsoft compatibility or
173 // recovery when legacy C headers are included in C++.
Alp Tokerf33619c2014-05-31 03:38:08 +0000174 MacroNameTok.setIdentifierInfo(II);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000175 }
176
Serge Pavlovd024f522014-10-24 17:31:32 +0000177 if ((isDefineUndef != MU_Other) && II->getPPKeywordID() == tok::pp_defined) {
Alp Tokerb05e0b52014-05-21 06:13:51 +0000178 // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4.
179 return Diag(MacroNameTok, diag::err_defined_macro_name);
180 }
181
Serge Pavlovd024f522014-10-24 17:31:32 +0000182 if (isDefineUndef == MU_Undef && II->hasMacroDefinition() &&
Alp Tokerb05e0b52014-05-21 06:13:51 +0000183 getMacroInfo(II)->isBuiltinMacro()) {
184 // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4
185 // and C++ [cpp.predefined]p4], but allow it as an extension.
186 Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro);
187 }
188
Serge Pavlov07c0f042014-12-18 11:14:21 +0000189 // If defining/undefining reserved identifier or a keyword, we need to issue
190 // a warning.
Serge Pavlov83cf0782014-12-11 12:18:08 +0000191 SourceLocation MacroNameLoc = MacroNameTok.getLocation();
Serge Pavlov07c0f042014-12-18 11:14:21 +0000192 if (ShadowFlag)
193 *ShadowFlag = false;
Serge Pavlov83cf0782014-12-11 12:18:08 +0000194 if (!SourceMgr.isInSystemHeader(MacroNameLoc) &&
195 (strcmp(SourceMgr.getBufferName(MacroNameLoc), "<built-in>") != 0)) {
Serge Pavlov07c0f042014-12-18 11:14:21 +0000196 MacroDiag D = MD_NoWarn;
197 if (isDefineUndef == MU_Define) {
198 D = shouldWarnOnMacroDef(*this, II);
199 }
200 else if (isDefineUndef == MU_Undef)
201 D = shouldWarnOnMacroUndef(*this, II);
202 if (D == MD_KeywordDef) {
203 // We do not want to warn on some patterns widely used in configuration
204 // scripts. This requires analyzing next tokens, so do not issue warnings
205 // now, only inform caller.
206 if (ShadowFlag)
207 *ShadowFlag = true;
208 }
209 if (D == MD_ReservedMacro)
210 Diag(MacroNameTok, diag::warn_pp_macro_is_reserved_id);
Serge Pavlov83cf0782014-12-11 12:18:08 +0000211 }
212
Alp Tokerb05e0b52014-05-21 06:13:51 +0000213 // Okay, we got a good identifier.
214 return false;
215}
216
James Dennettf6333ac2012-06-22 05:46:07 +0000217/// \brief Lex and validate a macro name, which occurs after a
218/// \#define or \#undef.
219///
Serge Pavlovd024f522014-10-24 17:31:32 +0000220/// This sets the token kind to eod and discards the rest of the macro line if
221/// the macro name is invalid.
222///
223/// \param MacroNameTok Token that is expected to be a macro name.
Serge Pavlov07c0f042014-12-18 11:14:21 +0000224/// \param isDefineUndef Context in which macro is used.
225/// \param ShadowFlag Points to a flag that is set if macro shadows a keyword.
226void Preprocessor::ReadMacroName(Token &MacroNameTok, MacroUse isDefineUndef,
227 bool *ShadowFlag) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000228 // Read the token, don't allow macro expansion on it.
229 LexUnexpandedToken(MacroNameTok);
Mike Stump11289f42009-09-09 15:08:12 +0000230
Douglas Gregor12785102010-08-24 20:21:13 +0000231 if (MacroNameTok.is(tok::code_completion)) {
232 if (CodeComplete)
Serge Pavlovd024f522014-10-24 17:31:32 +0000233 CodeComplete->CodeCompleteMacroName(isDefineUndef == MU_Define);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000234 setCodeCompletionReached();
Douglas Gregor12785102010-08-24 20:21:13 +0000235 LexUnexpandedToken(MacroNameTok);
Douglas Gregor12785102010-08-24 20:21:13 +0000236 }
Alp Tokerb05e0b52014-05-21 06:13:51 +0000237
Serge Pavlov07c0f042014-12-18 11:14:21 +0000238 if (!CheckMacroName(MacroNameTok, isDefineUndef, ShadowFlag))
Chris Lattner907dfe92008-11-18 07:59:24 +0000239 return;
Alp Tokerb05e0b52014-05-21 06:13:51 +0000240
241 // Invalid macro name, read and discard the rest of the line and set the
242 // token kind to tok::eod if necessary.
243 if (MacroNameTok.isNot(tok::eod)) {
244 MacroNameTok.setKind(tok::eod);
245 DiscardUntilEndOfDirective();
Chris Lattner907dfe92008-11-18 07:59:24 +0000246 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000247}
248
James Dennettf6333ac2012-06-22 05:46:07 +0000249/// \brief Ensure that the next token is a tok::eod token.
250///
251/// If not, emit a diagnostic and consume up until the eod. If EnableMacros is
Chris Lattner0003c272009-04-17 23:30:53 +0000252/// true, then we consider macros that expand to zero tokens as being ok.
253void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000254 Token Tmp;
Chris Lattner0003c272009-04-17 23:30:53 +0000255 // Lex unexpanded tokens for most directives: macros might expand to zero
256 // tokens, causing us to miss diagnosing invalid lines. Some directives (like
257 // #line) allow empty macros.
258 if (EnableMacros)
259 Lex(Tmp);
260 else
261 LexUnexpandedToken(Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000262
Chris Lattnerf64b3522008-03-09 01:54:53 +0000263 // There should be no tokens after the directive, but we allow them as an
264 // extension.
265 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
266 LexUnexpandedToken(Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000267
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000268 if (Tmp.isNot(tok::eod)) {
Chris Lattner825676a2009-04-14 05:15:20 +0000269 // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89,
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000270 // or if this is a macro-style preprocessing directive, because it is more
271 // trouble than it is worth to insert /**/ and check that there is no /**/
272 // in the range also.
Douglas Gregora771f462010-03-31 17:46:05 +0000273 FixItHint Hint;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000274 if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) &&
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000275 !CurTokenLexer)
Douglas Gregora771f462010-03-31 17:46:05 +0000276 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
277 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000278 DiscardUntilEndOfDirective();
279 }
280}
281
282
283
James Dennettf6333ac2012-06-22 05:46:07 +0000284/// SkipExcludedConditionalBlock - We just read a \#if or related directive and
285/// decided that the subsequent tokens are in the \#if'd out portion of the
286/// file. Lex the rest of the file, until we see an \#endif. If
Chris Lattnerf64b3522008-03-09 01:54:53 +0000287/// FoundNonSkipPortion is true, then we have already emitted code for part of
James Dennettf6333ac2012-06-22 05:46:07 +0000288/// this \#if directive, so \#else/\#elif blocks should never be entered.
289/// If ElseOk is true, then \#else directives are ok, if not, then we have
290/// already seen one so a \#else directive is a duplicate. When this returns,
291/// the caller can lex the first valid token.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000292void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
293 bool FoundNonSkipPortion,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +0000294 bool FoundElse,
295 SourceLocation ElseLoc) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000296 ++NumSkipped;
David Blaikie7d170102013-05-15 07:37:26 +0000297 assert(!CurTokenLexer && CurPPLexer && "Lexing a macro, not a file?");
Chris Lattnerf64b3522008-03-09 01:54:53 +0000298
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000299 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +0000300 FoundNonSkipPortion, FoundElse);
Mike Stump11289f42009-09-09 15:08:12 +0000301
Ted Kremenek56572ab2008-12-12 18:34:08 +0000302 if (CurPTHLexer) {
303 PTHSkipExcludedConditionalBlock();
304 return;
305 }
Mike Stump11289f42009-09-09 15:08:12 +0000306
Chris Lattnerf64b3522008-03-09 01:54:53 +0000307 // Enter raw mode to disable identifier lookup (and thus macro expansion),
308 // disabling warnings, etc.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000309 CurPPLexer->LexingRawMode = true;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000310 Token Tok;
311 while (1) {
Chris Lattnerf406b242010-01-18 22:33:01 +0000312 CurLexer->Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000313
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000314 if (Tok.is(tok::code_completion)) {
315 if (CodeComplete)
316 CodeComplete->CodeCompleteInConditionalExclusion();
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000317 setCodeCompletionReached();
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000318 continue;
319 }
320
Chris Lattnerf64b3522008-03-09 01:54:53 +0000321 // If this is the end of the buffer, we have an error.
322 if (Tok.is(tok::eof)) {
323 // Emit errors for each unterminated conditional on the stack, including
324 // the current one.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000325 while (!CurPPLexer->ConditionalStack.empty()) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000326 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
Douglas Gregor02690ba2010-08-12 17:04:55 +0000327 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
328 diag::err_pp_unterminated_conditional);
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000329 CurPPLexer->ConditionalStack.pop_back();
Mike Stump11289f42009-09-09 15:08:12 +0000330 }
331
Chris Lattnerf64b3522008-03-09 01:54:53 +0000332 // Just return and let the caller lex after this #include.
333 break;
334 }
Mike Stump11289f42009-09-09 15:08:12 +0000335
Chris Lattnerf64b3522008-03-09 01:54:53 +0000336 // If this token is not a preprocessor directive, just skip it.
337 if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
338 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000339
Chris Lattnerf64b3522008-03-09 01:54:53 +0000340 // We just parsed a # character at the start of a line, so we're in
341 // directive mode. Tell the lexer this so any newlines we see will be
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000342 // converted into an EOD token (this terminates the macro).
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000343 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rose176057b2013-02-22 00:32:00 +0000344 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000345
Mike Stump11289f42009-09-09 15:08:12 +0000346
Chris Lattnerf64b3522008-03-09 01:54:53 +0000347 // Read the next token, the directive flavor.
348 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000349
Chris Lattnerf64b3522008-03-09 01:54:53 +0000350 // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
351 // something bogus), skip it.
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000352 if (Tok.isNot(tok::raw_identifier)) {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000353 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000354 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000355 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000356 continue;
357 }
358
359 // If the first letter isn't i or e, it isn't intesting to us. We know that
360 // this is safe in the face of spelling differences, because there is no way
361 // to spell an i/e in a strange way that is another letter. Skipping this
362 // allows us to avoid looking up the identifier info for #define/#undef and
363 // other common directives.
Alp Toker2d57cea2014-05-17 04:53:25 +0000364 StringRef RI = Tok.getRawIdentifier();
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000365
Alp Toker2d57cea2014-05-17 04:53:25 +0000366 char FirstChar = RI[0];
Mike Stump11289f42009-09-09 15:08:12 +0000367 if (FirstChar >= 'a' && FirstChar <= 'z' &&
Chris Lattnerf64b3522008-03-09 01:54:53 +0000368 FirstChar != 'i' && FirstChar != 'e') {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000369 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000370 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000371 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000372 continue;
373 }
Mike Stump11289f42009-09-09 15:08:12 +0000374
Chris Lattnerf64b3522008-03-09 01:54:53 +0000375 // Get the identifier name without trigraphs or embedded newlines. Note
376 // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
377 // when skipping.
Benjamin Kramer144884642009-12-31 13:32:38 +0000378 char DirectiveBuf[20];
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000379 StringRef Directive;
Alp Toker2d57cea2014-05-17 04:53:25 +0000380 if (!Tok.needsCleaning() && RI.size() < 20) {
381 Directive = RI;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000382 } else {
383 std::string DirectiveStr = getSpelling(Tok);
Benjamin Kramer144884642009-12-31 13:32:38 +0000384 unsigned IdLen = DirectiveStr.size();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000385 if (IdLen >= 20) {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000386 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000387 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000388 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000389 continue;
390 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000391 memcpy(DirectiveBuf, &DirectiveStr[0], IdLen);
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000392 Directive = StringRef(DirectiveBuf, IdLen);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000393 }
Mike Stump11289f42009-09-09 15:08:12 +0000394
Benjamin Kramer144884642009-12-31 13:32:38 +0000395 if (Directive.startswith("if")) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000396 StringRef Sub = Directive.substr(2);
Benjamin Kramer144884642009-12-31 13:32:38 +0000397 if (Sub.empty() || // "if"
398 Sub == "def" || // "ifdef"
399 Sub == "ndef") { // "ifndef"
Chris Lattnerf64b3522008-03-09 01:54:53 +0000400 // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
401 // bother parsing the condition.
402 DiscardUntilEndOfDirective();
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000403 CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
Chris Lattnerf64b3522008-03-09 01:54:53 +0000404 /*foundnonskip*/false,
Chandler Carruth540960f2011-01-03 17:40:17 +0000405 /*foundelse*/false);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000406 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000407 } else if (Directive[0] == 'e') {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000408 StringRef Sub = Directive.substr(1);
Benjamin Kramer144884642009-12-31 13:32:38 +0000409 if (Sub == "ndif") { // "endif"
Chris Lattnerf64b3522008-03-09 01:54:53 +0000410 PPConditionalInfo CondInfo;
411 CondInfo.WasSkipping = true; // Silence bogus warning.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000412 bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +0000413 (void)InCond; // Silence warning in no-asserts mode.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000414 assert(!InCond && "Can't be skipping if not in a conditional!");
Mike Stump11289f42009-09-09 15:08:12 +0000415
Chris Lattnerf64b3522008-03-09 01:54:53 +0000416 // If we popped the outermost skipping block, we're done skipping!
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000417 if (!CondInfo.WasSkipping) {
Richard Smith87d8fb92012-06-24 23:56:26 +0000418 // Restore the value of LexingRawMode so that trailing comments
419 // are handled correctly, if we've reached the outermost block.
420 CurPPLexer->LexingRawMode = false;
Richard Smithd0124572012-06-21 00:35:03 +0000421 CheckEndOfDirective("endif");
Richard Smith87d8fb92012-06-24 23:56:26 +0000422 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000423 if (Callbacks)
424 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000425 break;
Richard Smithd0124572012-06-21 00:35:03 +0000426 } else {
427 DiscardUntilEndOfDirective();
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000428 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000429 } else if (Sub == "lse") { // "else".
Chris Lattnerf64b3522008-03-09 01:54:53 +0000430 // #else directive in a skipping conditional. If not in some other
431 // skipping conditional, and if #else hasn't already been seen, enter it
432 // as a non-skipping conditional.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000433 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Mike Stump11289f42009-09-09 15:08:12 +0000434
Chris Lattnerf64b3522008-03-09 01:54:53 +0000435 // If this is a #else with a #else before it, report the error.
436 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
Mike Stump11289f42009-09-09 15:08:12 +0000437
Chris Lattnerf64b3522008-03-09 01:54:53 +0000438 // Note that we've seen a #else in this conditional.
439 CondInfo.FoundElse = true;
Mike Stump11289f42009-09-09 15:08:12 +0000440
Chris Lattnerf64b3522008-03-09 01:54:53 +0000441 // If the conditional is at the top level, and the #if block wasn't
442 // entered, enter the #else block now.
443 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
444 CondInfo.FoundNonSkip = true;
Richard Smith87d8fb92012-06-24 23:56:26 +0000445 // Restore the value of LexingRawMode so that trailing comments
446 // are handled correctly.
447 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis627c14a2011-05-21 04:26:04 +0000448 CheckEndOfDirective("else");
Richard Smith87d8fb92012-06-24 23:56:26 +0000449 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000450 if (Callbacks)
451 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000452 break;
Argyrios Kyrtzidis627c14a2011-05-21 04:26:04 +0000453 } else {
454 DiscardUntilEndOfDirective(); // C99 6.10p4.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000455 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000456 } else if (Sub == "lif") { // "elif".
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000457 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000458
John Thompson17c35732013-12-04 20:19:30 +0000459 // If this is a #elif with a #else before it, report the error.
460 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
461
Chris Lattnerf64b3522008-03-09 01:54:53 +0000462 // If this is in a skipping block or if we're already handled this #if
463 // block, don't bother parsing the condition.
464 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
465 DiscardUntilEndOfDirective();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000466 } else {
John Thompson17c35732013-12-04 20:19:30 +0000467 const SourceLocation CondBegin = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000468 // Restore the value of LexingRawMode so that identifiers are
469 // looked up, etc, inside the #elif expression.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000470 assert(CurPPLexer->LexingRawMode && "We have to be skipping here!");
471 CurPPLexer->LexingRawMode = false;
Craig Topperd2d442c2014-05-17 23:10:59 +0000472 IdentifierInfo *IfNDefMacro = nullptr;
John Thompson17c35732013-12-04 20:19:30 +0000473 const bool CondValue = EvaluateDirectiveExpression(IfNDefMacro);
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000474 CurPPLexer->LexingRawMode = true;
John Thompson17c35732013-12-04 20:19:30 +0000475 if (Callbacks) {
476 const SourceLocation CondEnd = CurPPLexer->getSourceLocation();
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000477 Callbacks->Elif(Tok.getLocation(),
John Thompson17c35732013-12-04 20:19:30 +0000478 SourceRange(CondBegin, CondEnd),
John Thompson87f9fef2013-12-07 08:41:15 +0000479 (CondValue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False), CondInfo.IfLoc);
John Thompson17c35732013-12-04 20:19:30 +0000480 }
481 // If this condition is true, enter it!
482 if (CondValue) {
483 CondInfo.FoundNonSkip = true;
484 break;
485 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000486 }
487 }
488 }
Mike Stump11289f42009-09-09 15:08:12 +0000489
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000490 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000491 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000492 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000493 }
494
495 // Finally, if we are out of the conditional (saw an #endif or ran off the end
496 // of the file, just stop skipping and return to lexing whatever came after
497 // the #if block.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000498 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +0000499
500 if (Callbacks) {
501 SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc;
502 Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation()));
503 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000504}
505
Ted Kremenek56572ab2008-12-12 18:34:08 +0000506void Preprocessor::PTHSkipExcludedConditionalBlock() {
Mike Stump11289f42009-09-09 15:08:12 +0000507
508 while (1) {
Ted Kremenek56572ab2008-12-12 18:34:08 +0000509 assert(CurPTHLexer);
510 assert(CurPTHLexer->LexingRawMode == false);
Mike Stump11289f42009-09-09 15:08:12 +0000511
Ted Kremenek56572ab2008-12-12 18:34:08 +0000512 // Skip to the next '#else', '#elif', or #endif.
513 if (CurPTHLexer->SkipBlock()) {
514 // We have reached an #endif. Both the '#' and 'endif' tokens
515 // have been consumed by the PTHLexer. Just pop off the condition level.
516 PPConditionalInfo CondInfo;
517 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +0000518 (void)InCond; // Silence warning in no-asserts mode.
Ted Kremenek56572ab2008-12-12 18:34:08 +0000519 assert(!InCond && "Can't be skipping if not in a conditional!");
520 break;
521 }
Mike Stump11289f42009-09-09 15:08:12 +0000522
Ted Kremenek56572ab2008-12-12 18:34:08 +0000523 // We have reached a '#else' or '#elif'. Lex the next token to get
524 // the directive flavor.
525 Token Tok;
526 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000527
Ted Kremenek56572ab2008-12-12 18:34:08 +0000528 // We can actually look up the IdentifierInfo here since we aren't in
529 // raw mode.
530 tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID();
531
532 if (K == tok::pp_else) {
533 // #else: Enter the else condition. We aren't in a nested condition
534 // since we skip those. We're always in the one matching the last
535 // blocked we skipped.
536 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
537 // Note that we've seen a #else in this conditional.
538 CondInfo.FoundElse = true;
Mike Stump11289f42009-09-09 15:08:12 +0000539
Ted Kremenek56572ab2008-12-12 18:34:08 +0000540 // If the #if block wasn't entered then enter the #else block now.
541 if (!CondInfo.FoundNonSkip) {
542 CondInfo.FoundNonSkip = true;
Mike Stump11289f42009-09-09 15:08:12 +0000543
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000544 // Scan until the eod token.
Ted Kremenek1b18ad22008-12-23 01:30:52 +0000545 CurPTHLexer->ParsingPreprocessorDirective = true;
Daniel Dunbar2cba6be2009-04-13 17:57:49 +0000546 DiscardUntilEndOfDirective();
Ted Kremenek1b18ad22008-12-23 01:30:52 +0000547 CurPTHLexer->ParsingPreprocessorDirective = false;
Mike Stump11289f42009-09-09 15:08:12 +0000548
Ted Kremenek56572ab2008-12-12 18:34:08 +0000549 break;
550 }
Mike Stump11289f42009-09-09 15:08:12 +0000551
Ted Kremenek56572ab2008-12-12 18:34:08 +0000552 // Otherwise skip this block.
553 continue;
554 }
Mike Stump11289f42009-09-09 15:08:12 +0000555
Ted Kremenek56572ab2008-12-12 18:34:08 +0000556 assert(K == tok::pp_elif);
557 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
558
559 // If this is a #elif with a #else before it, report the error.
560 if (CondInfo.FoundElse)
561 Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump11289f42009-09-09 15:08:12 +0000562
Ted Kremenek56572ab2008-12-12 18:34:08 +0000563 // If this is in a skipping block or if we're already handled this #if
Mike Stump11289f42009-09-09 15:08:12 +0000564 // block, don't bother parsing the condition. We just skip this block.
Ted Kremenek56572ab2008-12-12 18:34:08 +0000565 if (CondInfo.FoundNonSkip)
566 continue;
567
568 // Evaluate the condition of the #elif.
Craig Topperd2d442c2014-05-17 23:10:59 +0000569 IdentifierInfo *IfNDefMacro = nullptr;
Ted Kremenek56572ab2008-12-12 18:34:08 +0000570 CurPTHLexer->ParsingPreprocessorDirective = true;
571 bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
572 CurPTHLexer->ParsingPreprocessorDirective = false;
573
574 // If this condition is true, enter it!
575 if (ShouldEnter) {
576 CondInfo.FoundNonSkip = true;
577 break;
578 }
579
580 // Otherwise, skip this block and go to the next one.
581 continue;
582 }
583}
584
Richard Smith2a553082015-04-23 22:58:06 +0000585Module *Preprocessor::getModuleForLocation(SourceLocation Loc) {
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000586 ModuleMap &ModMap = HeaderInfo.getModuleMap();
Richard Smith2a553082015-04-23 22:58:06 +0000587 if (SourceMgr.isInMainFile(Loc)) {
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000588 if (Module *CurMod = getCurrentModule())
589 return CurMod; // Compiling a module.
590 return HeaderInfo.getModuleMap().SourceModule; // Compiling a source.
591 }
592 // Try to determine the module of the include directive.
Daniel Jasper88d86952013-12-03 20:30:36 +0000593 // FIXME: Look into directly passing the FileEntry from LookupFile instead.
Richard Smith2a553082015-04-23 22:58:06 +0000594 FileID IDOfIncl = SourceMgr.getFileID(SourceMgr.getExpansionLoc(Loc));
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000595 if (const FileEntry *EntryOfIncl = SourceMgr.getFileEntryForID(IDOfIncl)) {
596 // The include comes from a file.
597 return ModMap.findModuleForHeader(EntryOfIncl).getModule();
598 } else {
599 // The include does not come from a file,
600 // so it is probably a module compilation.
601 return getCurrentModule();
602 }
603}
604
Richard Smith2a553082015-04-23 22:58:06 +0000605Module *Preprocessor::getModuleContainingLocation(SourceLocation Loc) {
606 return HeaderInfo.getModuleMap().inferModuleFromLocation(
607 FullSourceLoc(Loc, SourceMgr));
608}
609
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000610const FileEntry *Preprocessor::LookupFile(
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000611 SourceLocation FilenameLoc,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000612 StringRef Filename,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000613 bool isAngled,
614 const DirectoryLookup *FromDir,
Richard Smith25d50752014-10-20 00:15:49 +0000615 const FileEntry *FromFile,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000616 const DirectoryLookup *&CurDir,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000617 SmallVectorImpl<char> *SearchPath,
Douglas Gregor97eec242011-09-15 22:00:41 +0000618 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000619 ModuleMap::KnownHeader *SuggestedModule,
Douglas Gregor8ad31c22011-11-20 17:46:46 +0000620 bool SkipCache) {
Will Wilson0fafd342013-12-27 19:46:16 +0000621 // If the header lookup mechanism may be relative to the current inclusion
622 // stack, record the parent #includes.
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000623 SmallVector<std::pair<const FileEntry *, const DirectoryEntry *>, 16>
624 Includers;
Richard Smith25d50752014-10-20 00:15:49 +0000625 if (!FromDir && !FromFile) {
Chris Lattnerd32480d2009-01-17 06:22:33 +0000626 FileID FID = getCurrentFileLexer()->getFileID();
Will Wilson0fafd342013-12-27 19:46:16 +0000627 const FileEntry *FileEnt = SourceMgr.getFileEntryForID(FID);
Mike Stump11289f42009-09-09 15:08:12 +0000628
Chris Lattner022923a2009-02-04 19:45:07 +0000629 // If there is no file entry associated with this file, it must be the
Richard Smith3c1a41a2014-12-02 00:08:08 +0000630 // predefines buffer or the module includes buffer. Any other file is not
631 // lexed with a normal lexer, so it won't be scanned for preprocessor
632 // directives.
633 //
634 // If we have the predefines buffer, resolve #include references (which come
635 // from the -include command line argument) from the current working
636 // directory instead of relative to the main file.
637 //
638 // If we have the module includes buffer, resolve #include references (which
639 // come from header declarations in the module map) relative to the module
640 // map file.
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000641 if (!FileEnt) {
Richard Smith3c1a41a2014-12-02 00:08:08 +0000642 if (FID == SourceMgr.getMainFileID() && MainFileDir)
643 Includers.push_back(std::make_pair(nullptr, MainFileDir));
644 else if ((FileEnt =
645 SourceMgr.getFileEntryForID(SourceMgr.getMainFileID())))
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000646 Includers.push_back(std::make_pair(FileEnt, FileMgr.getDirectory(".")));
647 } else {
648 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
649 }
Will Wilson0fafd342013-12-27 19:46:16 +0000650
651 // MSVC searches the current include stack from top to bottom for
652 // headers included by quoted include directives.
653 // See: http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx
Alp Tokerbfa39342014-01-14 12:51:41 +0000654 if (LangOpts.MSVCCompat && !isAngled) {
Will Wilson0fafd342013-12-27 19:46:16 +0000655 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
656 IncludeStackInfo &ISEntry = IncludeMacroStack[e - i - 1];
657 if (IsFileLexer(ISEntry))
658 if ((FileEnt = SourceMgr.getFileEntryForID(
659 ISEntry.ThePPLexer->getFileID())))
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000660 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
Will Wilson0fafd342013-12-27 19:46:16 +0000661 }
Chris Lattner022923a2009-02-04 19:45:07 +0000662 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000663 }
Mike Stump11289f42009-09-09 15:08:12 +0000664
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000665 CurDir = CurDirLookup;
Richard Smith25d50752014-10-20 00:15:49 +0000666
667 if (FromFile) {
668 // We're supposed to start looking from after a particular file. Search
669 // the include path until we find that file or run out of files.
670 const DirectoryLookup *TmpCurDir = CurDir;
671 const DirectoryLookup *TmpFromDir = nullptr;
672 while (const FileEntry *FE = HeaderInfo.LookupFile(
673 Filename, FilenameLoc, isAngled, TmpFromDir, TmpCurDir,
674 Includers, SearchPath, RelativePath, SuggestedModule,
675 SkipCache)) {
676 // Keep looking as if this file did a #include_next.
677 TmpFromDir = TmpCurDir;
678 ++TmpFromDir;
679 if (FE == FromFile) {
680 // Found it.
681 FromDir = TmpFromDir;
682 CurDir = TmpCurDir;
683 break;
684 }
685 }
686 }
687
688 // Do a standard file entry lookup.
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000689 const FileEntry *FE = HeaderInfo.LookupFile(
Will Wilson0fafd342013-12-27 19:46:16 +0000690 Filename, FilenameLoc, isAngled, FromDir, CurDir, Includers, SearchPath,
691 RelativePath, SuggestedModule, SkipCache);
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000692 if (FE) {
Daniel Jasper5c77e392014-03-14 14:53:17 +0000693 if (SuggestedModule && !LangOpts.AsmPreprocessor)
Daniel Jasper92669ee2013-12-20 12:09:36 +0000694 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
695 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000696 return FE;
697 }
Mike Stump11289f42009-09-09 15:08:12 +0000698
Will Wilson0fafd342013-12-27 19:46:16 +0000699 const FileEntry *CurFileEnt;
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000700 // Otherwise, see if this is a subframework header. If so, this is relative
701 // to one of the headers on the #include stack. Walk the list of the current
702 // headers on the #include stack and pass them to HeaderInfo.
Ted Kremenek6bc5f3e2008-11-20 16:19:53 +0000703 if (IsFileLexer()) {
Ben Langmuir71e1a642014-05-05 21:44:13 +0000704 if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID()))) {
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000705 if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt,
Douglas Gregorf5f94522013-02-08 00:10:48 +0000706 SearchPath, RelativePath,
Ben Langmuir71e1a642014-05-05 21:44:13 +0000707 SuggestedModule))) {
708 if (SuggestedModule && !LangOpts.AsmPreprocessor)
709 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
710 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000711 return FE;
Ben Langmuir71e1a642014-05-05 21:44:13 +0000712 }
713 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000714 }
Mike Stump11289f42009-09-09 15:08:12 +0000715
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000716 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
717 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
Ted Kremenek6bc5f3e2008-11-20 16:19:53 +0000718 if (IsFileLexer(ISEntry)) {
Mike Stump11289f42009-09-09 15:08:12 +0000719 if ((CurFileEnt =
Ben Langmuir71e1a642014-05-05 21:44:13 +0000720 SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID()))) {
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000721 if ((FE = HeaderInfo.LookupSubframeworkHeader(
Douglas Gregorf5f94522013-02-08 00:10:48 +0000722 Filename, CurFileEnt, SearchPath, RelativePath,
Ben Langmuir71e1a642014-05-05 21:44:13 +0000723 SuggestedModule))) {
724 if (SuggestedModule && !LangOpts.AsmPreprocessor)
725 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
726 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000727 return FE;
Ben Langmuir71e1a642014-05-05 21:44:13 +0000728 }
729 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000730 }
731 }
Mike Stump11289f42009-09-09 15:08:12 +0000732
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000733 // Otherwise, we really couldn't find the file.
Craig Topperd2d442c2014-05-17 23:10:59 +0000734 return nullptr;
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000735}
736
Chris Lattnerf64b3522008-03-09 01:54:53 +0000737
738//===----------------------------------------------------------------------===//
739// Preprocessor Directive Handling.
740//===----------------------------------------------------------------------===//
741
David Blaikied5321242012-06-06 18:52:13 +0000742class Preprocessor::ResetMacroExpansionHelper {
743public:
744 ResetMacroExpansionHelper(Preprocessor *pp)
745 : PP(pp), save(pp->DisableMacroExpansion) {
746 if (pp->MacroExpansionInDirectivesOverride)
747 pp->DisableMacroExpansion = false;
748 }
749 ~ResetMacroExpansionHelper() {
750 PP->DisableMacroExpansion = save;
751 }
752private:
753 Preprocessor *PP;
754 bool save;
755};
756
Chris Lattnerf64b3522008-03-09 01:54:53 +0000757/// HandleDirective - This callback is invoked when the lexer sees a # token
Mike Stump11289f42009-09-09 15:08:12 +0000758/// at the start of a line. This consumes the directive, modifies the
Chris Lattnerf64b3522008-03-09 01:54:53 +0000759/// lexer/preprocessor state, and advances the lexer(s) so that the next token
760/// read is the correct one.
761void Preprocessor::HandleDirective(Token &Result) {
762 // FIXME: Traditional: # with whitespace before it not recognized by K&R?
Mike Stump11289f42009-09-09 15:08:12 +0000763
Chris Lattnerf64b3522008-03-09 01:54:53 +0000764 // We just parsed a # character at the start of a line, so we're in directive
765 // mode. Tell the lexer this so any newlines we see will be converted into an
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000766 // EOD token (which terminates the directive).
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000767 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000768 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Mike Stump11289f42009-09-09 15:08:12 +0000769
Richard Trieu33a4b3d2013-06-12 21:20:57 +0000770 bool ImmediatelyAfterTopLevelIfndef =
771 CurPPLexer->MIOpt.getImmediatelyAfterTopLevelIfndef();
772 CurPPLexer->MIOpt.resetImmediatelyAfterTopLevelIfndef();
773
Chris Lattnerf64b3522008-03-09 01:54:53 +0000774 ++NumDirectives;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000775
Chris Lattnerf64b3522008-03-09 01:54:53 +0000776 // We are about to read a token. For the multiple-include optimization FA to
Mike Stump11289f42009-09-09 15:08:12 +0000777 // work, we have to remember if we had read any tokens *before* this
Chris Lattnerf64b3522008-03-09 01:54:53 +0000778 // pp-directive.
Chris Lattner8cf1f932009-12-14 04:54:40 +0000779 bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal();
Mike Stump11289f42009-09-09 15:08:12 +0000780
Chris Lattner2d17ab72009-03-18 21:00:25 +0000781 // Save the '#' token in case we need to return it later.
782 Token SavedHash = Result;
Mike Stump11289f42009-09-09 15:08:12 +0000783
Chris Lattnerf64b3522008-03-09 01:54:53 +0000784 // Read the next token, the directive flavor. This isn't expanded due to
785 // C99 6.10.3p8.
786 LexUnexpandedToken(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000787
Chris Lattnerf64b3522008-03-09 01:54:53 +0000788 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
789 // #define A(x) #x
790 // A(abc
791 // #warning blah
792 // def)
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000793 // If so, the user is relying on undefined behavior, emit a diagnostic. Do
794 // not support this for #include-like directives, since that can result in
795 // terrible diagnostics, and does not work in GCC.
796 if (InMacroArgs) {
797 if (IdentifierInfo *II = Result.getIdentifierInfo()) {
798 switch (II->getPPKeywordID()) {
799 case tok::pp_include:
800 case tok::pp_import:
801 case tok::pp_include_next:
802 case tok::pp___include_macros:
David Majnemerf2d3bc02014-12-28 07:42:49 +0000803 case tok::pp_pragma:
804 Diag(Result, diag::err_embedded_directive) << II->getName();
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000805 DiscardUntilEndOfDirective();
806 return;
807 default:
808 break;
809 }
810 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000811 Diag(Result, diag::ext_embedded_directive);
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000812 }
Mike Stump11289f42009-09-09 15:08:12 +0000813
David Blaikied5321242012-06-06 18:52:13 +0000814 // Temporarily enable macro expansion if set so
815 // and reset to previous state when returning from this function.
816 ResetMacroExpansionHelper helper(this);
817
Chris Lattnerf64b3522008-03-09 01:54:53 +0000818 switch (Result.getKind()) {
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000819 case tok::eod:
Chris Lattnerf64b3522008-03-09 01:54:53 +0000820 return; // null directive.
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000821 case tok::code_completion:
822 if (CodeComplete)
823 CodeComplete->CodeCompleteDirective(
824 CurPPLexer->getConditionalStackDepth() > 0);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000825 setCodeCompletionReached();
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000826 return;
Chris Lattner76e68962009-01-26 06:19:46 +0000827 case tok::numeric_constant: // # 7 GNU line marker directive.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000828 if (getLangOpts().AsmPreprocessor)
Chris Lattner5eb8ae22009-03-18 20:41:10 +0000829 break; // # 4 is not a preprocessor directive in .S files.
Chris Lattner76e68962009-01-26 06:19:46 +0000830 return HandleDigitDirective(Result);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000831 default:
832 IdentifierInfo *II = Result.getIdentifierInfo();
Craig Topperd2d442c2014-05-17 23:10:59 +0000833 if (!II) break; // Not an identifier.
Mike Stump11289f42009-09-09 15:08:12 +0000834
Chris Lattnerf64b3522008-03-09 01:54:53 +0000835 // Ask what the preprocessor keyword ID is.
836 switch (II->getPPKeywordID()) {
837 default: break;
838 // C99 6.10.1 - Conditional Inclusion.
839 case tok::pp_if:
840 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
841 case tok::pp_ifdef:
842 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
843 case tok::pp_ifndef:
844 return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
845 case tok::pp_elif:
846 return HandleElifDirective(Result);
847 case tok::pp_else:
848 return HandleElseDirective(Result);
849 case tok::pp_endif:
850 return HandleEndifDirective(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000851
Chris Lattnerf64b3522008-03-09 01:54:53 +0000852 // C99 6.10.2 - Source File Inclusion.
853 case tok::pp_include:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000854 // Handle #include.
855 return HandleIncludeDirective(SavedHash.getLocation(), Result);
Chris Lattner14a7f392009-04-08 18:24:34 +0000856 case tok::pp___include_macros:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000857 // Handle -imacros.
858 return HandleIncludeMacrosDirective(SavedHash.getLocation(), Result);
Mike Stump11289f42009-09-09 15:08:12 +0000859
Chris Lattnerf64b3522008-03-09 01:54:53 +0000860 // C99 6.10.3 - Macro Replacement.
861 case tok::pp_define:
Richard Trieu33a4b3d2013-06-12 21:20:57 +0000862 return HandleDefineDirective(Result, ImmediatelyAfterTopLevelIfndef);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000863 case tok::pp_undef:
864 return HandleUndefDirective(Result);
865
866 // C99 6.10.4 - Line Control.
867 case tok::pp_line:
Chris Lattner100c65e2009-01-26 05:29:08 +0000868 return HandleLineDirective(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000869
Chris Lattnerf64b3522008-03-09 01:54:53 +0000870 // C99 6.10.5 - Error Directive.
871 case tok::pp_error:
872 return HandleUserDiagnosticDirective(Result, false);
Mike Stump11289f42009-09-09 15:08:12 +0000873
Chris Lattnerf64b3522008-03-09 01:54:53 +0000874 // C99 6.10.6 - Pragma Directive.
875 case tok::pp_pragma:
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000876 return HandlePragmaDirective(SavedHash.getLocation(), PIK_HashPragma);
Mike Stump11289f42009-09-09 15:08:12 +0000877
Chris Lattnerf64b3522008-03-09 01:54:53 +0000878 // GNU Extensions.
879 case tok::pp_import:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000880 return HandleImportDirective(SavedHash.getLocation(), Result);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000881 case tok::pp_include_next:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000882 return HandleIncludeNextDirective(SavedHash.getLocation(), Result);
Mike Stump11289f42009-09-09 15:08:12 +0000883
Chris Lattnerf64b3522008-03-09 01:54:53 +0000884 case tok::pp_warning:
885 Diag(Result, diag::ext_pp_warning_directive);
886 return HandleUserDiagnosticDirective(Result, true);
887 case tok::pp_ident:
888 return HandleIdentSCCSDirective(Result);
889 case tok::pp_sccs:
890 return HandleIdentSCCSDirective(Result);
891 case tok::pp_assert:
892 //isExtension = true; // FIXME: implement #assert
893 break;
894 case tok::pp_unassert:
895 //isExtension = true; // FIXME: implement #unassert
896 break;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +0000897
Douglas Gregor663b48f2012-01-03 19:48:16 +0000898 case tok::pp___public_macro:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000899 if (getLangOpts().Modules)
Douglas Gregor0bf886d2012-01-03 18:24:14 +0000900 return HandleMacroPublicDirective(Result);
901 break;
902
Douglas Gregor663b48f2012-01-03 19:48:16 +0000903 case tok::pp___private_macro:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000904 if (getLangOpts().Modules)
Douglas Gregor0bf886d2012-01-03 18:24:14 +0000905 return HandleMacroPrivateDirective(Result);
906 break;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000907 }
908 break;
909 }
Mike Stump11289f42009-09-09 15:08:12 +0000910
Chris Lattner2d17ab72009-03-18 21:00:25 +0000911 // If this is a .S file, treat unknown # directives as non-preprocessor
912 // directives. This is important because # may be a comment or introduce
913 // various pseudo-ops. Just return the # token and push back the following
914 // token to be lexed next time.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000915 if (getLangOpts().AsmPreprocessor) {
Daniel Dunbar48b4d1e2009-07-13 21:48:50 +0000916 Token *Toks = new Token[2];
Chris Lattner2d17ab72009-03-18 21:00:25 +0000917 // Return the # and the token after it.
Mike Stump11289f42009-09-09 15:08:12 +0000918 Toks[0] = SavedHash;
Chris Lattner2d17ab72009-03-18 21:00:25 +0000919 Toks[1] = Result;
Chris Lattner56f64c12011-01-06 05:01:51 +0000920
921 // If the second token is a hashhash token, then we need to translate it to
922 // unknown so the token lexer doesn't try to perform token pasting.
923 if (Result.is(tok::hashhash))
924 Toks[1].setKind(tok::unknown);
925
Chris Lattner2d17ab72009-03-18 21:00:25 +0000926 // Enter this token stream so that we re-lex the tokens. Make sure to
927 // enable macro expansion, in case the token after the # is an identifier
928 // that is expanded.
929 EnterTokenStream(Toks, 2, false, true);
930 return;
931 }
Mike Stump11289f42009-09-09 15:08:12 +0000932
Chris Lattnerf64b3522008-03-09 01:54:53 +0000933 // If we reached here, the preprocessing token is not valid!
934 Diag(Result, diag::err_pp_invalid_directive);
Mike Stump11289f42009-09-09 15:08:12 +0000935
Chris Lattnerf64b3522008-03-09 01:54:53 +0000936 // Read the rest of the PP line.
937 DiscardUntilEndOfDirective();
Mike Stump11289f42009-09-09 15:08:12 +0000938
Chris Lattnerf64b3522008-03-09 01:54:53 +0000939 // Okay, we're done parsing the directive.
940}
941
Chris Lattner76e68962009-01-26 06:19:46 +0000942/// GetLineValue - Convert a numeric token into an unsigned value, emitting
943/// Diagnostic DiagID if it is invalid, and returning the value in Val.
944static bool GetLineValue(Token &DigitTok, unsigned &Val,
Michael Ilsemane910cc82013-04-10 01:04:18 +0000945 unsigned DiagID, Preprocessor &PP,
946 bool IsGNULineDirective=false) {
Chris Lattner76e68962009-01-26 06:19:46 +0000947 if (DigitTok.isNot(tok::numeric_constant)) {
948 PP.Diag(DigitTok, DiagID);
Mike Stump11289f42009-09-09 15:08:12 +0000949
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000950 if (DigitTok.isNot(tok::eod))
Chris Lattner76e68962009-01-26 06:19:46 +0000951 PP.DiscardUntilEndOfDirective();
952 return true;
953 }
Mike Stump11289f42009-09-09 15:08:12 +0000954
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000955 SmallString<64> IntegerBuffer;
Chris Lattner76e68962009-01-26 06:19:46 +0000956 IntegerBuffer.resize(DigitTok.getLength());
957 const char *DigitTokBegin = &IntegerBuffer[0];
Douglas Gregordc970f02010-03-16 22:30:13 +0000958 bool Invalid = false;
959 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid);
960 if (Invalid)
961 return true;
962
Chris Lattnerd66f1722009-04-18 18:35:15 +0000963 // Verify that we have a simple digit-sequence, and compute the value. This
964 // is always a simple digit string computed in decimal, so we do this manually
965 // here.
966 Val = 0;
967 for (unsigned i = 0; i != ActualLength; ++i) {
Richard Smith7f2707a2013-09-26 18:13:20 +0000968 // C++1y [lex.fcon]p1:
969 // Optional separating single quotes in a digit-sequence are ignored
970 if (DigitTokBegin[i] == '\'')
971 continue;
972
Jordan Rosea7d03842013-02-08 22:30:41 +0000973 if (!isDigit(DigitTokBegin[i])) {
Chris Lattnerd66f1722009-04-18 18:35:15 +0000974 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i),
Michael Ilsemane910cc82013-04-10 01:04:18 +0000975 diag::err_pp_line_digit_sequence) << IsGNULineDirective;
Chris Lattnerd66f1722009-04-18 18:35:15 +0000976 PP.DiscardUntilEndOfDirective();
977 return true;
978 }
Mike Stump11289f42009-09-09 15:08:12 +0000979
Chris Lattnerd66f1722009-04-18 18:35:15 +0000980 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0');
981 if (NextVal < Val) { // overflow.
982 PP.Diag(DigitTok, DiagID);
983 PP.DiscardUntilEndOfDirective();
984 return true;
985 }
986 Val = NextVal;
Chris Lattner76e68962009-01-26 06:19:46 +0000987 }
Mike Stump11289f42009-09-09 15:08:12 +0000988
Fariborz Jahanian0638c152012-06-26 21:19:20 +0000989 if (DigitTokBegin[0] == '0' && Val)
Michael Ilsemane910cc82013-04-10 01:04:18 +0000990 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal)
991 << IsGNULineDirective;
Mike Stump11289f42009-09-09 15:08:12 +0000992
Chris Lattner76e68962009-01-26 06:19:46 +0000993 return false;
994}
995
James Dennettf6333ac2012-06-22 05:46:07 +0000996/// \brief Handle a \#line directive: C99 6.10.4.
997///
998/// The two acceptable forms are:
999/// \verbatim
Chris Lattner100c65e2009-01-26 05:29:08 +00001000/// # line digit-sequence
1001/// # line digit-sequence "s-char-sequence"
James Dennettf6333ac2012-06-22 05:46:07 +00001002/// \endverbatim
Chris Lattner100c65e2009-01-26 05:29:08 +00001003void Preprocessor::HandleLineDirective(Token &Tok) {
1004 // Read the line # and string argument. Per C99 6.10.4p5, these tokens are
1005 // expanded.
1006 Token DigitTok;
1007 Lex(DigitTok);
1008
Chris Lattner100c65e2009-01-26 05:29:08 +00001009 // Validate the number and convert it to an unsigned.
Chris Lattner76e68962009-01-26 06:19:46 +00001010 unsigned LineNo;
Chris Lattnerd66f1722009-04-18 18:35:15 +00001011 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
Chris Lattner100c65e2009-01-26 05:29:08 +00001012 return;
Fariborz Jahanian0638c152012-06-26 21:19:20 +00001013
1014 if (LineNo == 0)
1015 Diag(DigitTok, diag::ext_pp_line_zero);
Chris Lattner100c65e2009-01-26 05:29:08 +00001016
Chris Lattner76e68962009-01-26 06:19:46 +00001017 // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a
1018 // number greater than 2147483647". C90 requires that the line # be <= 32767.
Eli Friedman192e0342011-10-10 23:35:28 +00001019 unsigned LineLimit = 32768U;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001020 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Eli Friedman192e0342011-10-10 23:35:28 +00001021 LineLimit = 2147483648U;
Chris Lattner100c65e2009-01-26 05:29:08 +00001022 if (LineNo >= LineLimit)
1023 Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001024 else if (LangOpts.CPlusPlus11 && LineNo >= 32768U)
Richard Smithacd4d3d2011-10-15 01:18:56 +00001025 Diag(DigitTok, diag::warn_cxx98_compat_pp_line_too_big);
Mike Stump11289f42009-09-09 15:08:12 +00001026
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001027 int FilenameID = -1;
Chris Lattner100c65e2009-01-26 05:29:08 +00001028 Token StrTok;
1029 Lex(StrTok);
1030
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001031 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1032 // string followed by eod.
1033 if (StrTok.is(tok::eod))
Chris Lattner100c65e2009-01-26 05:29:08 +00001034 ; // ok
1035 else if (StrTok.isNot(tok::string_literal)) {
1036 Diag(StrTok, diag::err_pp_line_invalid_filename);
Richard Smithd67aea22012-03-06 03:21:47 +00001037 return DiscardUntilEndOfDirective();
1038 } else if (StrTok.hasUDSuffix()) {
1039 Diag(StrTok, diag::err_invalid_string_udl);
1040 return DiscardUntilEndOfDirective();
Chris Lattner100c65e2009-01-26 05:29:08 +00001041 } else {
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001042 // Parse and validate the string, converting it into a unique ID.
Craig Topper9d5583e2014-06-26 04:58:39 +00001043 StringLiteralParser Literal(StrTok, *this);
Douglas Gregorfb65e592011-07-27 05:40:30 +00001044 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001045 if (Literal.hadError)
1046 return DiscardUntilEndOfDirective();
1047 if (Literal.Pascal) {
1048 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1049 return DiscardUntilEndOfDirective();
1050 }
Jay Foad9a6b0982011-06-21 15:13:30 +00001051 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump11289f42009-09-09 15:08:12 +00001052
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001053 // Verify that there is nothing after the string, other than EOD. Because
Chris Lattner0003c272009-04-17 23:30:53 +00001054 // of C99 6.10.4p5, macros that expand to empty tokens are ok.
1055 CheckEndOfDirective("line", true);
Chris Lattner100c65e2009-01-26 05:29:08 +00001056 }
Mike Stump11289f42009-09-09 15:08:12 +00001057
Chris Lattner1eaa70a2009-02-03 21:52:55 +00001058 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID);
Mike Stump11289f42009-09-09 15:08:12 +00001059
Chris Lattner839150e2009-03-27 17:13:49 +00001060 if (Callbacks)
Chris Lattnerc745cec2010-04-14 04:28:50 +00001061 Callbacks->FileChanged(CurPPLexer->getSourceLocation(),
1062 PPCallbacks::RenameFile,
Chris Lattner839150e2009-03-27 17:13:49 +00001063 SrcMgr::C_User);
Chris Lattner100c65e2009-01-26 05:29:08 +00001064}
1065
Chris Lattner76e68962009-01-26 06:19:46 +00001066/// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line
1067/// marker directive.
1068static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit,
1069 bool &IsSystemHeader, bool &IsExternCHeader,
1070 Preprocessor &PP) {
1071 unsigned FlagVal;
1072 Token FlagTok;
1073 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001074 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001075 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
1076 return true;
1077
1078 if (FlagVal == 1) {
1079 IsFileEntry = true;
Mike Stump11289f42009-09-09 15:08:12 +00001080
Chris Lattner76e68962009-01-26 06:19:46 +00001081 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001082 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001083 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1084 return true;
1085 } else if (FlagVal == 2) {
1086 IsFileExit = true;
Mike Stump11289f42009-09-09 15:08:12 +00001087
Chris Lattner1c967782009-02-04 06:25:26 +00001088 SourceManager &SM = PP.getSourceManager();
1089 // If we are leaving the current presumed file, check to make sure the
1090 // presumed include stack isn't empty!
1091 FileID CurFileID =
Chandler Carruthc7ca5212011-07-25 20:52:32 +00001092 SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first;
Chris Lattner1c967782009-02-04 06:25:26 +00001093 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
Douglas Gregor453b0122010-11-12 07:15:47 +00001094 if (PLoc.isInvalid())
1095 return true;
1096
Chris Lattner1c967782009-02-04 06:25:26 +00001097 // If there is no include loc (main file) or if the include loc is in a
1098 // different physical file, then we aren't in a "1" line marker flag region.
1099 SourceLocation IncLoc = PLoc.getIncludeLoc();
1100 if (IncLoc.isInvalid() ||
Chandler Carruthc7ca5212011-07-25 20:52:32 +00001101 SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) {
Chris Lattner1c967782009-02-04 06:25:26 +00001102 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop);
1103 PP.DiscardUntilEndOfDirective();
1104 return true;
1105 }
Mike Stump11289f42009-09-09 15:08:12 +00001106
Chris Lattner76e68962009-01-26 06:19:46 +00001107 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001108 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001109 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1110 return true;
1111 }
1112
1113 // We must have 3 if there are still flags.
1114 if (FlagVal != 3) {
1115 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001116 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001117 return true;
1118 }
Mike Stump11289f42009-09-09 15:08:12 +00001119
Chris Lattner76e68962009-01-26 06:19:46 +00001120 IsSystemHeader = true;
Mike Stump11289f42009-09-09 15:08:12 +00001121
Chris Lattner76e68962009-01-26 06:19:46 +00001122 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001123 if (FlagTok.is(tok::eod)) return false;
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001124 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
Chris Lattner76e68962009-01-26 06:19:46 +00001125 return true;
1126
1127 // We must have 4 if there is yet another flag.
1128 if (FlagVal != 4) {
1129 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001130 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001131 return true;
1132 }
Mike Stump11289f42009-09-09 15:08:12 +00001133
Chris Lattner76e68962009-01-26 06:19:46 +00001134 IsExternCHeader = true;
Mike Stump11289f42009-09-09 15:08:12 +00001135
Chris Lattner76e68962009-01-26 06:19:46 +00001136 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001137 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001138
1139 // There are no more valid flags here.
1140 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001141 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001142 return true;
1143}
1144
1145/// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is
1146/// one of the following forms:
1147///
1148/// # 42
Mike Stump11289f42009-09-09 15:08:12 +00001149/// # 42 "file" ('1' | '2')?
Chris Lattner76e68962009-01-26 06:19:46 +00001150/// # 42 "file" ('1' | '2')? '3' '4'?
1151///
1152void Preprocessor::HandleDigitDirective(Token &DigitTok) {
1153 // Validate the number and convert it to an unsigned. GNU does not have a
1154 // line # limit other than it fit in 32-bits.
1155 unsigned LineNo;
1156 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
Michael Ilsemane910cc82013-04-10 01:04:18 +00001157 *this, true))
Chris Lattner76e68962009-01-26 06:19:46 +00001158 return;
Mike Stump11289f42009-09-09 15:08:12 +00001159
Chris Lattner76e68962009-01-26 06:19:46 +00001160 Token StrTok;
1161 Lex(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +00001162
Chris Lattner76e68962009-01-26 06:19:46 +00001163 bool IsFileEntry = false, IsFileExit = false;
1164 bool IsSystemHeader = false, IsExternCHeader = false;
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001165 int FilenameID = -1;
1166
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001167 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1168 // string followed by eod.
1169 if (StrTok.is(tok::eod))
Chris Lattner76e68962009-01-26 06:19:46 +00001170 ; // ok
1171 else if (StrTok.isNot(tok::string_literal)) {
1172 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001173 return DiscardUntilEndOfDirective();
Richard Smithd67aea22012-03-06 03:21:47 +00001174 } else if (StrTok.hasUDSuffix()) {
1175 Diag(StrTok, diag::err_invalid_string_udl);
1176 return DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001177 } else {
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001178 // Parse and validate the string, converting it into a unique ID.
Craig Topper9d5583e2014-06-26 04:58:39 +00001179 StringLiteralParser Literal(StrTok, *this);
Douglas Gregorfb65e592011-07-27 05:40:30 +00001180 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001181 if (Literal.hadError)
1182 return DiscardUntilEndOfDirective();
1183 if (Literal.Pascal) {
1184 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1185 return DiscardUntilEndOfDirective();
1186 }
Jay Foad9a6b0982011-06-21 15:13:30 +00001187 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump11289f42009-09-09 15:08:12 +00001188
Chris Lattner76e68962009-01-26 06:19:46 +00001189 // If a filename was present, read any flags that are present.
Mike Stump11289f42009-09-09 15:08:12 +00001190 if (ReadLineMarkerFlags(IsFileEntry, IsFileExit,
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001191 IsSystemHeader, IsExternCHeader, *this))
Chris Lattner76e68962009-01-26 06:19:46 +00001192 return;
Chris Lattner76e68962009-01-26 06:19:46 +00001193 }
Mike Stump11289f42009-09-09 15:08:12 +00001194
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001195 // Create a line note with this information.
1196 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID,
Mike Stump11289f42009-09-09 15:08:12 +00001197 IsFileEntry, IsFileExit,
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001198 IsSystemHeader, IsExternCHeader);
Mike Stump11289f42009-09-09 15:08:12 +00001199
Chris Lattner839150e2009-03-27 17:13:49 +00001200 // If the preprocessor has callbacks installed, notify them of the #line
1201 // change. This is used so that the line marker comes out in -E mode for
1202 // example.
1203 if (Callbacks) {
1204 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile;
1205 if (IsFileEntry)
1206 Reason = PPCallbacks::EnterFile;
1207 else if (IsFileExit)
1208 Reason = PPCallbacks::ExitFile;
1209 SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User;
1210 if (IsExternCHeader)
1211 FileKind = SrcMgr::C_ExternCSystem;
1212 else if (IsSystemHeader)
1213 FileKind = SrcMgr::C_System;
Mike Stump11289f42009-09-09 15:08:12 +00001214
Chris Lattnerc745cec2010-04-14 04:28:50 +00001215 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
Chris Lattner839150e2009-03-27 17:13:49 +00001216 }
Chris Lattner76e68962009-01-26 06:19:46 +00001217}
1218
1219
Chris Lattner38d7fd22009-01-26 05:30:54 +00001220/// HandleUserDiagnosticDirective - Handle a #warning or #error directive.
1221///
Mike Stump11289f42009-09-09 15:08:12 +00001222void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001223 bool isWarning) {
Chris Lattner38d7fd22009-01-26 05:30:54 +00001224 // PTH doesn't emit #warning or #error directives.
1225 if (CurPTHLexer)
Chris Lattner100c65e2009-01-26 05:29:08 +00001226 return CurPTHLexer->DiscardToEndOfLine();
1227
Chris Lattnerf64b3522008-03-09 01:54:53 +00001228 // Read the rest of the line raw. We do this because we don't want macros
1229 // to be expanded and we don't require that the tokens be valid preprocessing
1230 // tokens. For example, this is allowed: "#warning ` 'foo". GCC does
1231 // collapse multiple consequtive white space between tokens, but this isn't
1232 // specified by the standard.
Benjamin Kramere5fbc6c2012-05-18 19:32:16 +00001233 SmallString<128> Message;
1234 CurLexer->ReadToEndOfLine(&Message);
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001235
1236 // Find the first non-whitespace character, so that we can make the
1237 // diagnostic more succinct.
Yaron Keren92e1b622015-03-18 10:17:07 +00001238 StringRef Msg = StringRef(Message).ltrim(" ");
Benjamin Kramere5fbc6c2012-05-18 19:32:16 +00001239
Chris Lattner100c65e2009-01-26 05:29:08 +00001240 if (isWarning)
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001241 Diag(Tok, diag::pp_hash_warning) << Msg;
Chris Lattner100c65e2009-01-26 05:29:08 +00001242 else
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001243 Diag(Tok, diag::err_pp_hash_error) << Msg;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001244}
1245
1246/// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
1247///
1248void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
1249 // Yes, this directive is an extension.
1250 Diag(Tok, diag::ext_pp_ident_directive);
Mike Stump11289f42009-09-09 15:08:12 +00001251
Chris Lattnerf64b3522008-03-09 01:54:53 +00001252 // Read the string argument.
1253 Token StrTok;
1254 Lex(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +00001255
Chris Lattnerf64b3522008-03-09 01:54:53 +00001256 // If the token kind isn't a string, it's a malformed directive.
1257 if (StrTok.isNot(tok::string_literal) &&
Chris Lattner907dfe92008-11-18 07:59:24 +00001258 StrTok.isNot(tok::wide_string_literal)) {
1259 Diag(StrTok, diag::err_pp_malformed_ident);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001260 if (StrTok.isNot(tok::eod))
Chris Lattner38d7fd22009-01-26 05:30:54 +00001261 DiscardUntilEndOfDirective();
Chris Lattner907dfe92008-11-18 07:59:24 +00001262 return;
1263 }
Mike Stump11289f42009-09-09 15:08:12 +00001264
Richard Smithd67aea22012-03-06 03:21:47 +00001265 if (StrTok.hasUDSuffix()) {
1266 Diag(StrTok, diag::err_invalid_string_udl);
1267 return DiscardUntilEndOfDirective();
1268 }
1269
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001270 // Verify that there is nothing after the string, other than EOD.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00001271 CheckEndOfDirective("ident");
Chris Lattnerf64b3522008-03-09 01:54:53 +00001272
Douglas Gregordc970f02010-03-16 22:30:13 +00001273 if (Callbacks) {
1274 bool Invalid = false;
1275 std::string Str = getSpelling(StrTok, &Invalid);
1276 if (!Invalid)
1277 Callbacks->Ident(Tok.getLocation(), Str);
1278 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001279}
1280
Douglas Gregor0bf886d2012-01-03 18:24:14 +00001281/// \brief Handle a #public directive.
1282void Preprocessor::HandleMacroPublicDirective(Token &Tok) {
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001283 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001284 ReadMacroName(MacroNameTok, MU_Undef);
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001285
1286 // Error reading macro name? If so, diagnostic already issued.
1287 if (MacroNameTok.is(tok::eod))
1288 return;
1289
Douglas Gregor663b48f2012-01-03 19:48:16 +00001290 // Check to see if this is the last token on the #__public_macro line.
1291 CheckEndOfDirective("__public_macro");
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001292
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001293 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001294 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001295 MacroDirective *MD = getMacroDirective(II);
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001296
1297 // If the macro is not defined, this is an error.
Craig Topperd2d442c2014-05-17 23:10:59 +00001298 if (!MD) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001299 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001300 return;
1301 }
1302
1303 // Note that this macro has now been exported.
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00001304 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1305 MacroNameTok.getLocation(), /*IsPublic=*/true));
Douglas Gregorebf00492011-10-17 15:32:29 +00001306}
1307
Douglas Gregor0bf886d2012-01-03 18:24:14 +00001308/// \brief Handle a #private directive.
Douglas Gregorebf00492011-10-17 15:32:29 +00001309void Preprocessor::HandleMacroPrivateDirective(Token &Tok) {
1310 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001311 ReadMacroName(MacroNameTok, MU_Undef);
Douglas Gregorebf00492011-10-17 15:32:29 +00001312
1313 // Error reading macro name? If so, diagnostic already issued.
1314 if (MacroNameTok.is(tok::eod))
1315 return;
1316
Douglas Gregor663b48f2012-01-03 19:48:16 +00001317 // Check to see if this is the last token on the #__private_macro line.
1318 CheckEndOfDirective("__private_macro");
Douglas Gregorebf00492011-10-17 15:32:29 +00001319
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001320 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregorebf00492011-10-17 15:32:29 +00001321 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001322 MacroDirective *MD = getMacroDirective(II);
Douglas Gregorebf00492011-10-17 15:32:29 +00001323
1324 // If the macro is not defined, this is an error.
Craig Topperd2d442c2014-05-17 23:10:59 +00001325 if (!MD) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001326 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregorebf00492011-10-17 15:32:29 +00001327 return;
1328 }
1329
1330 // Note that this macro has now been marked private.
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00001331 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1332 MacroNameTok.getLocation(), /*IsPublic=*/false));
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001333}
1334
Chris Lattnerf64b3522008-03-09 01:54:53 +00001335//===----------------------------------------------------------------------===//
1336// Preprocessor Include Directive Handling.
1337//===----------------------------------------------------------------------===//
1338
1339/// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
James Dennettf6333ac2012-06-22 05:46:07 +00001340/// checked and spelled filename, e.g. as an operand of \#include. This returns
Chris Lattnerf64b3522008-03-09 01:54:53 +00001341/// true if the input filename was in <>'s or false if it were in ""'s. The
1342/// caller is expected to provide a buffer that is large enough to hold the
1343/// spelling of the filename, but is also expected to handle the case when
1344/// this method decides to use a different buffer.
1345bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001346 StringRef &Buffer) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001347 // Get the text form of the filename.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001348 assert(!Buffer.empty() && "Can't have tokens with empty spellings!");
Mike Stump11289f42009-09-09 15:08:12 +00001349
Chris Lattnerf64b3522008-03-09 01:54:53 +00001350 // Make sure the filename is <x> or "x".
1351 bool isAngled;
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001352 if (Buffer[0] == '<') {
1353 if (Buffer.back() != '>') {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001354 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001355 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001356 return true;
1357 }
1358 isAngled = true;
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001359 } else if (Buffer[0] == '"') {
1360 if (Buffer.back() != '"') {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001361 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001362 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001363 return true;
1364 }
1365 isAngled = false;
1366 } else {
1367 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001368 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001369 return true;
1370 }
Mike Stump11289f42009-09-09 15:08:12 +00001371
Chris Lattnerf64b3522008-03-09 01:54:53 +00001372 // Diagnose #include "" as invalid.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001373 if (Buffer.size() <= 2) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001374 Diag(Loc, diag::err_pp_empty_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001375 Buffer = StringRef();
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001376 return true;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001377 }
Mike Stump11289f42009-09-09 15:08:12 +00001378
Chris Lattnerf64b3522008-03-09 01:54:53 +00001379 // Skip the brackets.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001380 Buffer = Buffer.substr(1, Buffer.size()-2);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001381 return isAngled;
1382}
1383
James Dennett4a4f72d2013-11-27 01:27:40 +00001384// \brief Handle cases where the \#include name is expanded from a macro
1385// as multiple tokens, which need to be glued together.
1386//
1387// This occurs for code like:
1388// \code
1389// \#define FOO <a/b.h>
1390// \#include FOO
1391// \endcode
1392// because in this case, "<a/b.h>" is returned as 7 tokens, not one.
1393//
1394// This code concatenates and consumes tokens up to the '>' token. It returns
1395// false if the > was found, otherwise it returns true if it finds and consumes
1396// the EOD marker.
1397bool Preprocessor::ConcatenateIncludeName(SmallString<128> &FilenameBuffer,
Douglas Gregor796d76a2010-10-20 22:00:55 +00001398 SourceLocation &End) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001399 Token CurTok;
Mike Stump11289f42009-09-09 15:08:12 +00001400
John Thompsonb5353522009-10-30 13:49:06 +00001401 Lex(CurTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001402 while (CurTok.isNot(tok::eod)) {
Douglas Gregor796d76a2010-10-20 22:00:55 +00001403 End = CurTok.getLocation();
1404
Douglas Gregor9c7bd2f2010-12-09 23:35:36 +00001405 // FIXME: Provide code completion for #includes.
1406 if (CurTok.is(tok::code_completion)) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001407 setCodeCompletionReached();
Douglas Gregor9c7bd2f2010-12-09 23:35:36 +00001408 Lex(CurTok);
1409 continue;
1410 }
1411
Chris Lattnerf64b3522008-03-09 01:54:53 +00001412 // Append the spelling of this token to the buffer. If there was a space
1413 // before it, add it now.
1414 if (CurTok.hasLeadingSpace())
1415 FilenameBuffer.push_back(' ');
Mike Stump11289f42009-09-09 15:08:12 +00001416
Chris Lattnerf64b3522008-03-09 01:54:53 +00001417 // Get the spelling of the token, directly into FilenameBuffer if possible.
1418 unsigned PreAppendSize = FilenameBuffer.size();
1419 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
Mike Stump11289f42009-09-09 15:08:12 +00001420
Chris Lattnerf64b3522008-03-09 01:54:53 +00001421 const char *BufPtr = &FilenameBuffer[PreAppendSize];
John Thompsonb5353522009-10-30 13:49:06 +00001422 unsigned ActualLen = getSpelling(CurTok, BufPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001423
Chris Lattnerf64b3522008-03-09 01:54:53 +00001424 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1425 if (BufPtr != &FilenameBuffer[PreAppendSize])
1426 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
Mike Stump11289f42009-09-09 15:08:12 +00001427
Chris Lattnerf64b3522008-03-09 01:54:53 +00001428 // Resize FilenameBuffer to the correct size.
1429 if (CurTok.getLength() != ActualLen)
1430 FilenameBuffer.resize(PreAppendSize+ActualLen);
Mike Stump11289f42009-09-09 15:08:12 +00001431
Chris Lattnerf64b3522008-03-09 01:54:53 +00001432 // If we found the '>' marker, return success.
1433 if (CurTok.is(tok::greater))
1434 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001435
John Thompsonb5353522009-10-30 13:49:06 +00001436 Lex(CurTok);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001437 }
1438
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001439 // If we hit the eod marker, emit an error and return true so that the caller
1440 // knows the EOD has been read.
John Thompsonb5353522009-10-30 13:49:06 +00001441 Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001442 return true;
1443}
1444
Richard Smith34f30512013-11-23 04:06:09 +00001445/// \brief Push a token onto the token stream containing an annotation.
1446static void EnterAnnotationToken(Preprocessor &PP,
1447 SourceLocation Begin, SourceLocation End,
1448 tok::TokenKind Kind, void *AnnotationVal) {
1449 Token *Tok = new Token[1];
1450 Tok[0].startToken();
1451 Tok[0].setKind(Kind);
1452 Tok[0].setLocation(Begin);
1453 Tok[0].setAnnotationEndLoc(End);
1454 Tok[0].setAnnotationValue(AnnotationVal);
1455 PP.EnterTokenStream(Tok, 1, true, true);
1456}
1457
James Dennettf6333ac2012-06-22 05:46:07 +00001458/// HandleIncludeDirective - The "\#include" tokens have just been read, read
1459/// the file to be included from the lexer, then include it! This is a common
1460/// routine with functionality shared between \#include, \#include_next and
1461/// \#import. LookupFrom is set when this is a \#include_next directive, it
Mike Stump11289f42009-09-09 15:08:12 +00001462/// specifies the file to start searching from.
Douglas Gregor796d76a2010-10-20 22:00:55 +00001463void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc,
1464 Token &IncludeTok,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001465 const DirectoryLookup *LookupFrom,
Richard Smith25d50752014-10-20 00:15:49 +00001466 const FileEntry *LookupFromFile,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001467 bool isImport) {
1468
1469 Token FilenameTok;
Ted Kremenek30cd88c2008-11-18 00:34:22 +00001470 CurPPLexer->LexIncludeFilename(FilenameTok);
Mike Stump11289f42009-09-09 15:08:12 +00001471
Chris Lattnerf64b3522008-03-09 01:54:53 +00001472 // Reserve a buffer to get the spelling.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001473 SmallString<128> FilenameBuffer;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001474 StringRef Filename;
Douglas Gregor796d76a2010-10-20 22:00:55 +00001475 SourceLocation End;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001476 SourceLocation CharEnd; // the end of this directive, in characters
Douglas Gregor796d76a2010-10-20 22:00:55 +00001477
Chris Lattnerf64b3522008-03-09 01:54:53 +00001478 switch (FilenameTok.getKind()) {
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001479 case tok::eod:
1480 // If the token kind is EOD, the error has already been diagnosed.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001481 return;
Mike Stump11289f42009-09-09 15:08:12 +00001482
Chris Lattnerf64b3522008-03-09 01:54:53 +00001483 case tok::angle_string_literal:
Benjamin Kramer0a1abd42010-02-27 13:44:12 +00001484 case tok::string_literal:
1485 Filename = getSpelling(FilenameTok, FilenameBuffer);
Douglas Gregor796d76a2010-10-20 22:00:55 +00001486 End = FilenameTok.getLocation();
Argyrios Kyrtzidis2edbc862012-11-01 17:52:58 +00001487 CharEnd = End.getLocWithOffset(FilenameTok.getLength());
Chris Lattnerf64b3522008-03-09 01:54:53 +00001488 break;
Mike Stump11289f42009-09-09 15:08:12 +00001489
Chris Lattnerf64b3522008-03-09 01:54:53 +00001490 case tok::less:
1491 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1492 // case, glue the tokens together into FilenameBuffer and interpret those.
1493 FilenameBuffer.push_back('<');
Douglas Gregor796d76a2010-10-20 22:00:55 +00001494 if (ConcatenateIncludeName(FilenameBuffer, End))
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001495 return; // Found <eod> but no ">"? Diagnostic already emitted.
Yaron Keren92e1b622015-03-18 10:17:07 +00001496 Filename = FilenameBuffer;
Argyrios Kyrtzidis2edbc862012-11-01 17:52:58 +00001497 CharEnd = End.getLocWithOffset(1);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001498 break;
1499 default:
1500 Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1501 DiscardUntilEndOfDirective();
1502 return;
1503 }
Mike Stump11289f42009-09-09 15:08:12 +00001504
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001505 CharSourceRange FilenameRange
1506 = CharSourceRange::getCharRange(FilenameTok.getLocation(), CharEnd);
Aaron Ballman611306e2012-03-02 22:51:54 +00001507 StringRef OriginalFilename = Filename;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001508 bool isAngled =
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001509 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001510 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1511 // error.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001512 if (Filename.empty()) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001513 DiscardUntilEndOfDirective();
1514 return;
1515 }
Mike Stump11289f42009-09-09 15:08:12 +00001516
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001517 // Verify that there is nothing after the filename, other than EOD. Note that
Chris Lattnerb40289b2009-04-17 23:56:52 +00001518 // we allow macros that expand to nothing after the filename, because this
1519 // falls into the category of "#include pp-tokens new-line" specified in
1520 // C99 6.10.2p4.
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001521 CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001522
1523 // Check that we don't have infinite #include recursion.
Chris Lattner907dfe92008-11-18 07:59:24 +00001524 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
1525 Diag(FilenameTok, diag::err_pp_include_too_deep);
1526 return;
1527 }
Mike Stump11289f42009-09-09 15:08:12 +00001528
John McCall32f5fe12011-09-30 05:12:12 +00001529 // Complain about attempts to #include files in an audit pragma.
1530 if (PragmaARCCFCodeAuditedLoc.isValid()) {
1531 Diag(HashLoc, diag::err_pp_include_in_arc_cf_code_audited);
1532 Diag(PragmaARCCFCodeAuditedLoc, diag::note_pragma_entered_here);
1533
1534 // Immediately leave the pragma.
1535 PragmaARCCFCodeAuditedLoc = SourceLocation();
1536 }
1537
Aaron Ballman611306e2012-03-02 22:51:54 +00001538 if (HeaderInfo.HasIncludeAliasMap()) {
1539 // Map the filename with the brackets still attached. If the name doesn't
1540 // map to anything, fall back on the filename we've already gotten the
1541 // spelling for.
1542 StringRef NewName = HeaderInfo.MapHeaderToIncludeAlias(OriginalFilename);
1543 if (!NewName.empty())
1544 Filename = NewName;
1545 }
1546
Chris Lattnerf64b3522008-03-09 01:54:53 +00001547 // Search include directories.
1548 const DirectoryLookup *CurDir;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001549 SmallString<1024> SearchPath;
1550 SmallString<1024> RelativePath;
Chandler Carruth3cc331a2011-03-16 18:34:36 +00001551 // We get the raw path only if we have 'Callbacks' to which we later pass
1552 // the path.
Lawrence Crowlb53e5482013-06-20 21:14:14 +00001553 ModuleMap::KnownHeader SuggestedModule;
1554 SourceLocation FilenameLoc = FilenameTok.getLocation();
Saleem Abdulrasool729b7d32014-03-12 02:26:08 +00001555 SmallString<128> NormalizedPath;
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001556 if (LangOpts.MSVCCompat) {
1557 NormalizedPath = Filename.str();
Yaron Keren1801d1b2014-08-09 18:13:01 +00001558#ifndef LLVM_ON_WIN32
Rafael Espindolaf6002232014-08-08 21:31:04 +00001559 llvm::sys::path::native(NormalizedPath);
Yaron Keren1801d1b2014-08-09 18:13:01 +00001560#endif
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001561 }
Chandler Carruth3cc331a2011-03-16 18:34:36 +00001562 const FileEntry *File = LookupFile(
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001563 FilenameLoc, LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename,
Richard Smith25d50752014-10-20 00:15:49 +00001564 isAngled, LookupFrom, LookupFromFile, CurDir,
1565 Callbacks ? &SearchPath : nullptr, Callbacks ? &RelativePath : nullptr,
Craig Topperd2d442c2014-05-17 23:10:59 +00001566 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule : nullptr);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001567
Douglas Gregor11729f02011-11-30 18:12:06 +00001568 if (Callbacks) {
1569 if (!File) {
1570 // Give the clients a chance to recover.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001571 SmallString<128> RecoveryPath;
Douglas Gregor11729f02011-11-30 18:12:06 +00001572 if (Callbacks->FileNotFound(Filename, RecoveryPath)) {
1573 if (const DirectoryEntry *DE = FileMgr.getDirectory(RecoveryPath)) {
1574 // Add the recovery path to the list of search paths.
Daniel Dunbarae4feb62013-01-25 01:50:28 +00001575 DirectoryLookup DL(DE, SrcMgr::C_User, false);
Douglas Gregor11729f02011-11-30 18:12:06 +00001576 HeaderInfo.AddSearchPath(DL, isAngled);
1577
1578 // Try the lookup again, skipping the cache.
Richard Smith25d50752014-10-20 00:15:49 +00001579 File = LookupFile(
1580 FilenameLoc,
1581 LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, isAngled,
1582 LookupFrom, LookupFromFile, CurDir, nullptr, nullptr,
1583 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1584 : nullptr,
1585 /*SkipCache*/ true);
Douglas Gregor11729f02011-11-30 18:12:06 +00001586 }
1587 }
1588 }
1589
Daniel Jasper07e6c402013-08-05 20:26:17 +00001590 if (!SuggestedModule || !getLangOpts().Modules) {
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001591 // Notify the callback object that we've seen an inclusion directive.
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001592 Callbacks->InclusionDirective(HashLoc, IncludeTok,
1593 LangOpts.MSVCCompat ? NormalizedPath.c_str()
1594 : Filename,
1595 isAngled, FilenameRange, File, SearchPath,
Craig Topperd2d442c2014-05-17 23:10:59 +00001596 RelativePath, /*ImportedModule=*/nullptr);
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001597 }
Douglas Gregor11729f02011-11-30 18:12:06 +00001598 }
Craig Topperd2d442c2014-05-17 23:10:59 +00001599
1600 if (!File) {
Aaron Ballman8f94ac62012-07-17 23:19:16 +00001601 if (!SuppressIncludeNotFoundError) {
1602 // If the file could not be located and it was included via angle
1603 // brackets, we can attempt a lookup as though it were a quoted path to
1604 // provide the user with a possible fixit.
1605 if (isAngled) {
Daniel Jasper07e6c402013-08-05 20:26:17 +00001606 File = LookupFile(
Richard Smith25d50752014-10-20 00:15:49 +00001607 FilenameLoc,
1608 LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, false,
1609 LookupFrom, LookupFromFile, CurDir,
1610 Callbacks ? &SearchPath : nullptr,
Craig Topperd2d442c2014-05-17 23:10:59 +00001611 Callbacks ? &RelativePath : nullptr,
1612 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1613 : nullptr);
Aaron Ballman8f94ac62012-07-17 23:19:16 +00001614 if (File) {
1615 SourceRange Range(FilenameTok.getLocation(), CharEnd);
1616 Diag(FilenameTok, diag::err_pp_file_not_found_not_fatal) <<
1617 Filename <<
1618 FixItHint::CreateReplacement(Range, "\"" + Filename.str() + "\"");
1619 }
1620 }
1621 // If the file is still not found, just go with the vanilla diagnostic
1622 if (!File)
1623 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
1624 }
1625 if (!File)
1626 return;
Douglas Gregor11729f02011-11-30 18:12:06 +00001627 }
1628
Douglas Gregor97eec242011-09-15 22:00:41 +00001629 // If we are supposed to import a module rather than including the header,
1630 // do so now.
Ben Langmuirb537a3a2014-07-23 15:30:23 +00001631 if (SuggestedModule && getLangOpts().Modules &&
1632 SuggestedModule.getModule()->getTopLevelModuleName() !=
1633 getLangOpts().ImplementationOfModule) {
Douglas Gregor71944202011-11-30 00:36:36 +00001634 // Compute the module access path corresponding to this module.
1635 // FIXME: Should we have a second loadModule() overload to avoid this
1636 // extra lookup step?
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001637 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
Lawrence Crowlb53e5482013-06-20 21:14:14 +00001638 for (Module *Mod = SuggestedModule.getModule(); Mod; Mod = Mod->Parent)
Douglas Gregor71944202011-11-30 00:36:36 +00001639 Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name),
1640 FilenameTok.getLocation()));
1641 std::reverse(Path.begin(), Path.end());
1642
Douglas Gregor41e115a2011-11-30 18:02:36 +00001643 // Warn that we're replacing the include/import with a module import.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001644 SmallString<128> PathString;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001645 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
1646 if (I)
1647 PathString += '.';
1648 PathString += Path[I].first->getName();
1649 }
1650 int IncludeKind = 0;
1651
1652 switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
1653 case tok::pp_include:
1654 IncludeKind = 0;
1655 break;
1656
1657 case tok::pp_import:
1658 IncludeKind = 1;
1659 break;
1660
Douglas Gregor4401fbe2011-11-30 18:03:26 +00001661 case tok::pp_include_next:
1662 IncludeKind = 2;
1663 break;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001664
1665 case tok::pp___include_macros:
1666 IncludeKind = 3;
1667 break;
1668
1669 default:
1670 llvm_unreachable("unknown include directive kind");
Douglas Gregor41e115a2011-11-30 18:02:36 +00001671 }
1672
Douglas Gregor2537a362011-12-08 17:01:29 +00001673 // Determine whether we are actually building the module that this
1674 // include directive maps to.
1675 bool BuildingImportedModule
David Blaikiebbafb8a2012-03-11 07:00:24 +00001676 = Path[0].first->getName() == getLangOpts().CurrentModule;
Richard Smith34f30512013-11-23 04:06:09 +00001677
David Blaikiebbafb8a2012-03-11 07:00:24 +00001678 if (!BuildingImportedModule && getLangOpts().ObjC2) {
Douglas Gregor2537a362011-12-08 17:01:29 +00001679 // If we're not building the imported module, warn that we're going
1680 // to automatically turn this inclusion directive into a module import.
Douglas Gregorda82e702012-01-03 19:32:59 +00001681 // We only do this in Objective-C, where we have a module-import syntax.
Douglas Gregor2537a362011-12-08 17:01:29 +00001682 CharSourceRange ReplaceRange(SourceRange(HashLoc, CharEnd),
1683 /*IsTokenRange=*/false);
1684 Diag(HashLoc, diag::warn_auto_module_import)
Yaron Keren92e1b622015-03-18 10:17:07 +00001685 << IncludeKind << PathString
1686 << FixItHint::CreateReplacement(
1687 ReplaceRange, ("@import " + PathString + ";").str());
Douglas Gregor2537a362011-12-08 17:01:29 +00001688 }
Douglas Gregor41e115a2011-11-30 18:02:36 +00001689
Richard Smithce587f52013-11-15 04:24:58 +00001690 // Load the module. Only make macros visible. We'll make the declarations
1691 // visible when the parser gets here.
1692 Module::NameVisibilityKind Visibility = Module::MacrosVisible;
Douglas Gregor7a626572012-11-29 23:55:25 +00001693 ModuleLoadResult Imported
Douglas Gregor98a52db2011-12-20 00:28:52 +00001694 = TheModuleLoader.loadModule(IncludeTok.getLocation(), Path, Visibility,
1695 /*IsIncludeDirective=*/true);
Richard Smith753e0072015-04-27 23:21:38 +00001696 ++MacroVisibilityGeneration;
Craig Topperd2d442c2014-05-17 23:10:59 +00001697 assert((Imported == nullptr || Imported == SuggestedModule.getModule()) &&
Argyrios Kyrtzidis051b4432012-09-29 01:06:01 +00001698 "the imported module is different than the suggested one");
Argyrios Kyrtzidisdc9fdaf2013-05-24 05:44:08 +00001699
1700 if (!Imported && hadModuleLoaderFatalFailure()) {
1701 // With a fatal failure in the module loader, we abort parsing.
1702 Token &Result = IncludeTok;
1703 if (CurLexer) {
1704 Result.startToken();
1705 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
1706 CurLexer->cutOffLexing();
1707 } else {
1708 assert(CurPTHLexer && "#include but no current lexer set!");
1709 CurPTHLexer->getEOF(Result);
1710 }
1711 return;
1712 }
Richard Smithce587f52013-11-15 04:24:58 +00001713
Douglas Gregor2537a362011-12-08 17:01:29 +00001714 // If this header isn't part of the module we're building, we're done.
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001715 if (!BuildingImportedModule && Imported) {
1716 if (Callbacks) {
1717 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1718 FilenameRange, File,
1719 SearchPath, RelativePath, Imported);
1720 }
Richard Smithce587f52013-11-15 04:24:58 +00001721
1722 if (IncludeKind != 3) {
1723 // Let the parser know that we hit a module import, and it should
1724 // make the module visible.
1725 // FIXME: Produce this as the current token directly, rather than
1726 // allocating a new token for it.
Richard Smith34f30512013-11-23 04:06:09 +00001727 EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_include,
1728 Imported);
Richard Smithce587f52013-11-15 04:24:58 +00001729 }
Douglas Gregor2537a362011-12-08 17:01:29 +00001730 return;
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001731 }
Douglas Gregor7a626572012-11-29 23:55:25 +00001732
1733 // If we failed to find a submodule that we expected to find, we can
1734 // continue. Otherwise, there's an error in the included file, so we
1735 // don't want to include it.
1736 if (!BuildingImportedModule && !Imported.isMissingExpected()) {
1737 return;
1738 }
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001739 }
1740
1741 if (Callbacks && SuggestedModule) {
1742 // We didn't notify the callback object that we've seen an inclusion
1743 // directive before. Now that we are parsing the include normally and not
1744 // turning it to a module import, notify the callback object.
1745 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1746 FilenameRange, File,
1747 SearchPath, RelativePath,
Craig Topperd2d442c2014-05-17 23:10:59 +00001748 /*ImportedModule=*/nullptr);
Douglas Gregor97eec242011-09-15 22:00:41 +00001749 }
1750
Chris Lattnerc88a23e2008-09-26 20:12:23 +00001751 // The #included file will be considered to be a system header if either it is
1752 // in a system include directory, or if the #includer is a system include
1753 // header.
Mike Stump11289f42009-09-09 15:08:12 +00001754 SrcMgr::CharacteristicKind FileCharacter =
Chris Lattnerb03dc762008-09-26 21:18:42 +00001755 std::max(HeaderInfo.getFileDirFlavor(File),
Chris Lattnerc0334162009-01-19 07:59:15 +00001756 SourceMgr.getFileCharacteristic(FilenameTok.getLocation()));
Mike Stump11289f42009-09-09 15:08:12 +00001757
Chris Lattner72286d62010-04-19 20:44:31 +00001758 // Ask HeaderInfo if we should enter this #include file. If not, #including
1759 // this file will have no effect.
1760 if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) {
Chris Lattnerfb24a3a2010-04-20 20:35:58 +00001761 if (Callbacks)
Chris Lattner72286d62010-04-19 20:44:31 +00001762 Callbacks->FileSkipped(*File, FilenameTok, FileCharacter);
Chris Lattner72286d62010-04-19 20:44:31 +00001763 return;
1764 }
1765
Chris Lattnerf64b3522008-03-09 01:54:53 +00001766 // Look up the file, create a File ID for it.
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +00001767 SourceLocation IncludePos = End;
1768 // If the filename string was the result of macro expansions, set the include
1769 // position on the file where it will be included and after the expansions.
1770 if (IncludePos.isMacroID())
1771 IncludePos = SourceMgr.getExpansionRange(IncludePos).second;
1772 FileID FID = SourceMgr.createFileID(File, IncludePos, FileCharacter);
Peter Collingbourned395b932011-06-30 16:41:03 +00001773 assert(!FID.isInvalid() && "Expected valid file ID");
Chris Lattnerf64b3522008-03-09 01:54:53 +00001774
Richard Smith34f30512013-11-23 04:06:09 +00001775 // Determine if we're switching to building a new submodule, and which one.
1776 ModuleMap::KnownHeader BuildingModule;
1777 if (getLangOpts().Modules && !getLangOpts().CurrentModule.empty()) {
1778 Module *RequestingModule = getModuleForLocation(FilenameLoc);
1779 BuildingModule =
1780 HeaderInfo.getModuleMap().findModuleForHeader(File, RequestingModule);
1781 }
1782
1783 // If all is good, enter the new file!
Richard Smith67294e22014-01-31 20:47:44 +00001784 if (EnterSourceFile(FID, CurDir, FilenameTok.getLocation()))
1785 return;
Richard Smith34f30512013-11-23 04:06:09 +00001786
1787 // If we're walking into another part of the same module, let the parser
1788 // know that any future declarations are within that other submodule.
Richard Smith67294e22014-01-31 20:47:44 +00001789 if (BuildingModule) {
1790 assert(!CurSubmodule && "should not have marked this as a module yet");
1791 CurSubmodule = BuildingModule.getModule();
1792
Richard Smith50474bf2015-04-23 23:29:05 +00001793 EnterSubmodule(CurSubmodule, HashLoc);
Richard Smithb8b2ed62015-04-23 18:18:26 +00001794
Richard Smith34f30512013-11-23 04:06:09 +00001795 EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_begin,
Richard Smith67294e22014-01-31 20:47:44 +00001796 CurSubmodule);
1797 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001798}
1799
James Dennettf6333ac2012-06-22 05:46:07 +00001800/// HandleIncludeNextDirective - Implements \#include_next.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001801///
Douglas Gregor796d76a2010-10-20 22:00:55 +00001802void Preprocessor::HandleIncludeNextDirective(SourceLocation HashLoc,
1803 Token &IncludeNextTok) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001804 Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
Mike Stump11289f42009-09-09 15:08:12 +00001805
Chris Lattnerf64b3522008-03-09 01:54:53 +00001806 // #include_next is like #include, except that we start searching after
1807 // the current found directory. If we can't do this, issue a
1808 // diagnostic.
1809 const DirectoryLookup *Lookup = CurDirLookup;
Richard Smith25d50752014-10-20 00:15:49 +00001810 const FileEntry *LookupFromFile = nullptr;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001811 if (isInPrimaryFile()) {
Craig Topperd2d442c2014-05-17 23:10:59 +00001812 Lookup = nullptr;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001813 Diag(IncludeNextTok, diag::pp_include_next_in_primary);
Richard Smith25d50752014-10-20 00:15:49 +00001814 } else if (CurSubmodule) {
1815 // Start looking up in the directory *after* the one in which the current
1816 // file would be found, if any.
1817 assert(CurPPLexer && "#include_next directive in macro?");
1818 LookupFromFile = CurPPLexer->getFileEntry();
1819 Lookup = nullptr;
Craig Topperd2d442c2014-05-17 23:10:59 +00001820 } else if (!Lookup) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001821 Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1822 } else {
1823 // Start looking up in the next directory.
1824 ++Lookup;
1825 }
Mike Stump11289f42009-09-09 15:08:12 +00001826
Richard Smith25d50752014-10-20 00:15:49 +00001827 return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup,
1828 LookupFromFile);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001829}
1830
James Dennettf6333ac2012-06-22 05:46:07 +00001831/// HandleMicrosoftImportDirective - Implements \#import for Microsoft Mode
Aaron Ballman0467f552012-03-18 03:10:37 +00001832void Preprocessor::HandleMicrosoftImportDirective(Token &Tok) {
1833 // The Microsoft #import directive takes a type library and generates header
1834 // files from it, and includes those. This is beyond the scope of what clang
1835 // does, so we ignore it and error out. However, #import can optionally have
1836 // trailing attributes that span multiple lines. We're going to eat those
1837 // so we can continue processing from there.
1838 Diag(Tok, diag::err_pp_import_directive_ms );
1839
1840 // Read tokens until we get to the end of the directive. Note that the
1841 // directive can be split over multiple lines using the backslash character.
1842 DiscardUntilEndOfDirective();
1843}
1844
James Dennettf6333ac2012-06-22 05:46:07 +00001845/// HandleImportDirective - Implements \#import.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001846///
Douglas Gregor796d76a2010-10-20 22:00:55 +00001847void Preprocessor::HandleImportDirective(SourceLocation HashLoc,
1848 Token &ImportTok) {
Aaron Ballman0467f552012-03-18 03:10:37 +00001849 if (!LangOpts.ObjC1) { // #import is standard for ObjC.
Alp Tokerbfa39342014-01-14 12:51:41 +00001850 if (LangOpts.MSVCCompat)
Aaron Ballman0467f552012-03-18 03:10:37 +00001851 return HandleMicrosoftImportDirective(ImportTok);
Chris Lattnerd4a96732009-03-06 04:28:03 +00001852 Diag(ImportTok, diag::ext_pp_import_directive);
Aaron Ballman0467f552012-03-18 03:10:37 +00001853 }
Richard Smith25d50752014-10-20 00:15:49 +00001854 return HandleIncludeDirective(HashLoc, ImportTok, nullptr, nullptr, true);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001855}
1856
Chris Lattner58a1eb02009-04-08 18:46:40 +00001857/// HandleIncludeMacrosDirective - The -imacros command line option turns into a
1858/// pseudo directive in the predefines buffer. This handles it by sucking all
1859/// tokens through the preprocessor and discarding them (only keeping the side
1860/// effects on the preprocessor).
Douglas Gregor796d76a2010-10-20 22:00:55 +00001861void Preprocessor::HandleIncludeMacrosDirective(SourceLocation HashLoc,
1862 Token &IncludeMacrosTok) {
Chris Lattner58a1eb02009-04-08 18:46:40 +00001863 // This directive should only occur in the predefines buffer. If not, emit an
1864 // error and reject it.
1865 SourceLocation Loc = IncludeMacrosTok.getLocation();
1866 if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) {
1867 Diag(IncludeMacrosTok.getLocation(),
1868 diag::pp_include_macros_out_of_predefines);
1869 DiscardUntilEndOfDirective();
1870 return;
1871 }
Mike Stump11289f42009-09-09 15:08:12 +00001872
Chris Lattnere01d82b2009-04-08 20:53:24 +00001873 // Treat this as a normal #include for checking purposes. If this is
1874 // successful, it will push a new lexer onto the include stack.
Richard Smith25d50752014-10-20 00:15:49 +00001875 HandleIncludeDirective(HashLoc, IncludeMacrosTok);
Mike Stump11289f42009-09-09 15:08:12 +00001876
Chris Lattnere01d82b2009-04-08 20:53:24 +00001877 Token TmpTok;
1878 do {
1879 Lex(TmpTok);
1880 assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!");
1881 } while (TmpTok.isNot(tok::hashhash));
Chris Lattner58a1eb02009-04-08 18:46:40 +00001882}
1883
Chris Lattnerf64b3522008-03-09 01:54:53 +00001884//===----------------------------------------------------------------------===//
1885// Preprocessor Macro Directive Handling.
1886//===----------------------------------------------------------------------===//
1887
1888/// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1889/// definition has just been read. Lex the rest of the arguments and the
1890/// closing ), updating MI with what we learn. Return true if an error occurs
1891/// parsing the arg list.
Abramo Bagnarac9e48c02012-03-31 20:17:27 +00001892bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI, Token &Tok) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001893 SmallVector<IdentifierInfo*, 32> Arguments;
Mike Stump11289f42009-09-09 15:08:12 +00001894
Chris Lattnerf64b3522008-03-09 01:54:53 +00001895 while (1) {
1896 LexUnexpandedToken(Tok);
1897 switch (Tok.getKind()) {
1898 case tok::r_paren:
1899 // Found the end of the argument list.
Chris Lattnerf87c5102009-02-20 22:31:31 +00001900 if (Arguments.empty()) // #define FOO()
Chris Lattnerf64b3522008-03-09 01:54:53 +00001901 return false;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001902 // Otherwise we have #define FOO(A,)
1903 Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1904 return true;
1905 case tok::ellipsis: // #define X(... -> C99 varargs
David Blaikiebbafb8a2012-03-11 07:00:24 +00001906 if (!LangOpts.C99)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001907 Diag(Tok, LangOpts.CPlusPlus11 ?
Richard Smithacd4d3d2011-10-15 01:18:56 +00001908 diag::warn_cxx98_compat_variadic_macro :
1909 diag::ext_variadic_macro);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001910
Joey Gouly1d58cdb2013-01-17 17:35:00 +00001911 // OpenCL v1.2 s6.9.e: variadic macros are not supported.
1912 if (LangOpts.OpenCL) {
1913 Diag(Tok, diag::err_pp_opencl_variadic_macros);
1914 return true;
1915 }
1916
Chris Lattnerf64b3522008-03-09 01:54:53 +00001917 // Lex the token after the identifier.
1918 LexUnexpandedToken(Tok);
1919 if (Tok.isNot(tok::r_paren)) {
1920 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1921 return true;
1922 }
1923 // Add the __VA_ARGS__ identifier as an argument.
1924 Arguments.push_back(Ident__VA_ARGS__);
1925 MI->setIsC99Varargs();
Chris Lattner70946da2009-02-20 22:46:43 +00001926 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001927 return false;
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001928 case tok::eod: // #define X(
Chris Lattnerf64b3522008-03-09 01:54:53 +00001929 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1930 return true;
1931 default:
1932 // Handle keywords and identifiers here to accept things like
1933 // #define Foo(for) for.
1934 IdentifierInfo *II = Tok.getIdentifierInfo();
Craig Topperd2d442c2014-05-17 23:10:59 +00001935 if (!II) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001936 // #define X(1
1937 Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
1938 return true;
1939 }
1940
1941 // If this is already used as an argument, it is used multiple times (e.g.
1942 // #define X(A,A.
Mike Stump11289f42009-09-09 15:08:12 +00001943 if (std::find(Arguments.begin(), Arguments.end(), II) !=
Chris Lattnerf64b3522008-03-09 01:54:53 +00001944 Arguments.end()) { // C99 6.10.3p6
Chris Lattnerc5cdade2008-11-19 07:33:58 +00001945 Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001946 return true;
1947 }
Mike Stump11289f42009-09-09 15:08:12 +00001948
Chris Lattnerf64b3522008-03-09 01:54:53 +00001949 // Add the argument to the macro info.
1950 Arguments.push_back(II);
Mike Stump11289f42009-09-09 15:08:12 +00001951
Chris Lattnerf64b3522008-03-09 01:54:53 +00001952 // Lex the token after the identifier.
1953 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001954
Chris Lattnerf64b3522008-03-09 01:54:53 +00001955 switch (Tok.getKind()) {
1956 default: // #define X(A B
1957 Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
1958 return true;
1959 case tok::r_paren: // #define X(A)
Chris Lattner70946da2009-02-20 22:46:43 +00001960 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001961 return false;
1962 case tok::comma: // #define X(A,
1963 break;
1964 case tok::ellipsis: // #define X(A... -> GCC extension
1965 // Diagnose extension.
1966 Diag(Tok, diag::ext_named_variadic_macro);
Mike Stump11289f42009-09-09 15:08:12 +00001967
Chris Lattnerf64b3522008-03-09 01:54:53 +00001968 // Lex the token after the identifier.
1969 LexUnexpandedToken(Tok);
1970 if (Tok.isNot(tok::r_paren)) {
1971 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1972 return true;
1973 }
Mike Stump11289f42009-09-09 15:08:12 +00001974
Chris Lattnerf64b3522008-03-09 01:54:53 +00001975 MI->setIsGNUVarargs();
Chris Lattner70946da2009-02-20 22:46:43 +00001976 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001977 return false;
1978 }
1979 }
1980 }
1981}
1982
Serge Pavlov07c0f042014-12-18 11:14:21 +00001983static bool isConfigurationPattern(Token &MacroName, MacroInfo *MI,
1984 const LangOptions &LOptions) {
1985 if (MI->getNumTokens() == 1) {
1986 const Token &Value = MI->getReplacementToken(0);
1987
1988 // Macro that is identity, like '#define inline inline' is a valid pattern.
1989 if (MacroName.getKind() == Value.getKind())
1990 return true;
1991
1992 // Macro that maps a keyword to the same keyword decorated with leading/
1993 // trailing underscores is a valid pattern:
1994 // #define inline __inline
1995 // #define inline __inline__
1996 // #define inline _inline (in MS compatibility mode)
1997 StringRef MacroText = MacroName.getIdentifierInfo()->getName();
1998 if (IdentifierInfo *II = Value.getIdentifierInfo()) {
1999 if (!II->isKeyword(LOptions))
2000 return false;
2001 StringRef ValueText = II->getName();
2002 StringRef TrimmedValue = ValueText;
2003 if (!ValueText.startswith("__")) {
2004 if (ValueText.startswith("_"))
2005 TrimmedValue = TrimmedValue.drop_front(1);
2006 else
2007 return false;
2008 } else {
2009 TrimmedValue = TrimmedValue.drop_front(2);
2010 if (TrimmedValue.endswith("__"))
2011 TrimmedValue = TrimmedValue.drop_back(2);
2012 }
2013 return TrimmedValue.equals(MacroText);
2014 } else {
2015 return false;
2016 }
2017 }
2018
2019 // #define inline
2020 if ((MacroName.is(tok::kw_extern) || MacroName.is(tok::kw_inline) ||
2021 MacroName.is(tok::kw_static) || MacroName.is(tok::kw_const)) &&
2022 MI->getNumTokens() == 0) {
2023 return true;
2024 }
2025
2026 return false;
2027}
2028
James Dennettf6333ac2012-06-22 05:46:07 +00002029/// HandleDefineDirective - Implements \#define. This consumes the entire macro
Chris Lattnerf64b3522008-03-09 01:54:53 +00002030/// line then lets the caller lex the next real token.
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002031void Preprocessor::HandleDefineDirective(Token &DefineTok,
2032 bool ImmediatelyAfterHeaderGuard) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002033 ++NumDefined;
2034
2035 Token MacroNameTok;
Serge Pavlov07c0f042014-12-18 11:14:21 +00002036 bool MacroShadowsKeyword;
2037 ReadMacroName(MacroNameTok, MU_Define, &MacroShadowsKeyword);
Mike Stump11289f42009-09-09 15:08:12 +00002038
Chris Lattnerf64b3522008-03-09 01:54:53 +00002039 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002040 if (MacroNameTok.is(tok::eod))
Chris Lattnerf64b3522008-03-09 01:54:53 +00002041 return;
2042
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002043 Token LastTok = MacroNameTok;
2044
Chris Lattnerf64b3522008-03-09 01:54:53 +00002045 // If we are supposed to keep comments in #defines, reenable comment saving
2046 // mode.
Ted Kremenek59e003e2008-11-18 00:43:07 +00002047 if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments);
Mike Stump11289f42009-09-09 15:08:12 +00002048
Chris Lattnerf64b3522008-03-09 01:54:53 +00002049 // Create the new macro.
Ted Kremenek6c7ea112008-12-15 19:56:42 +00002050 MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00002051
Chris Lattnerf64b3522008-03-09 01:54:53 +00002052 Token Tok;
2053 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002054
Chris Lattnerf64b3522008-03-09 01:54:53 +00002055 // If this is a function-like macro definition, parse the argument list,
2056 // marking each of the identifiers as being used as macro arguments. Also,
2057 // check other constraints on the first token of the macro body.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002058 if (Tok.is(tok::eod)) {
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002059 if (ImmediatelyAfterHeaderGuard) {
2060 // Save this macro information since it may part of a header guard.
2061 CurPPLexer->MIOpt.SetDefinedMacro(MacroNameTok.getIdentifierInfo(),
2062 MacroNameTok.getLocation());
2063 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002064 // If there is no body to this macro, we have no special handling here.
Chris Lattner2425bcb2009-04-18 02:23:25 +00002065 } else if (Tok.hasLeadingSpace()) {
2066 // This is a normal token with leading space. Clear the leading space
2067 // marker on the first token to get proper expansion.
2068 Tok.clearFlag(Token::LeadingSpace);
2069 } else if (Tok.is(tok::l_paren)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002070 // This is a function-like macro definition. Read the argument list.
2071 MI->setIsFunctionLike();
Abramo Bagnarac9e48c02012-03-31 20:17:27 +00002072 if (ReadMacroDefinitionArgList(MI, LastTok)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002073 // Throw away the rest of the line.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002074 if (CurPPLexer->ParsingPreprocessorDirective)
Chris Lattnerf64b3522008-03-09 01:54:53 +00002075 DiscardUntilEndOfDirective();
2076 return;
2077 }
2078
Chris Lattner249c38b2009-04-19 18:26:34 +00002079 // If this is a definition of a variadic C99 function-like macro, not using
2080 // the GNU named varargs extension, enabled __VA_ARGS__.
Mike Stump11289f42009-09-09 15:08:12 +00002081
Chris Lattner249c38b2009-04-19 18:26:34 +00002082 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
2083 // This gets unpoisoned where it is allowed.
2084 assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
2085 if (MI->isC99Varargs())
2086 Ident__VA_ARGS__->setIsPoisoned(false);
Mike Stump11289f42009-09-09 15:08:12 +00002087
Chris Lattnerf64b3522008-03-09 01:54:53 +00002088 // Read the first token after the arg list for down below.
2089 LexUnexpandedToken(Tok);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002090 } else if (LangOpts.C99 || LangOpts.CPlusPlus11) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002091 // C99 requires whitespace between the macro definition and the body. Emit
2092 // a diagnostic for something like "#define X+".
Chris Lattner2425bcb2009-04-18 02:23:25 +00002093 Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002094 } else {
Chris Lattner2425bcb2009-04-18 02:23:25 +00002095 // C90 6.8 TC1 says: "In the definition of an object-like macro, if the
2096 // first character of a replacement list is not a character required by
2097 // subclause 5.2.1, then there shall be white-space separation between the
2098 // identifier and the replacement list.". 5.2.1 lists this set:
2099 // "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which
2100 // is irrelevant here.
2101 bool isInvalid = false;
2102 if (Tok.is(tok::at)) // @ is not in the list above.
2103 isInvalid = true;
2104 else if (Tok.is(tok::unknown)) {
2105 // If we have an unknown token, it is something strange like "`". Since
2106 // all of valid characters would have lexed into a single character
2107 // token of some sort, we know this is not a valid case.
2108 isInvalid = true;
2109 }
2110 if (isInvalid)
2111 Diag(Tok, diag::ext_missing_whitespace_after_macro_name);
2112 else
2113 Diag(Tok, diag::warn_missing_whitespace_after_macro_name);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002114 }
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002115
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002116 if (!Tok.is(tok::eod))
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002117 LastTok = Tok;
2118
Chris Lattnerf64b3522008-03-09 01:54:53 +00002119 // Read the rest of the macro body.
2120 if (MI->isObjectLike()) {
2121 // Object-like macros are very simple, just read their body.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002122 while (Tok.isNot(tok::eod)) {
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002123 LastTok = Tok;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002124 MI->AddTokenToBody(Tok);
2125 // Get the next token of the macro.
2126 LexUnexpandedToken(Tok);
2127 }
Mike Stump11289f42009-09-09 15:08:12 +00002128
Chris Lattnerf64b3522008-03-09 01:54:53 +00002129 } else {
Chris Lattner83bd8282009-05-25 17:16:10 +00002130 // Otherwise, read the body of a function-like macro. While we are at it,
2131 // check C99 6.10.3.2p1: ensure that # operators are followed by macro
2132 // parameters in function-like macro expansions.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002133 while (Tok.isNot(tok::eod)) {
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002134 LastTok = Tok;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002135
Eli Friedman14d3c792012-11-14 02:18:46 +00002136 if (Tok.isNot(tok::hash) && Tok.isNot(tok::hashhash)) {
Chris Lattner83bd8282009-05-25 17:16:10 +00002137 MI->AddTokenToBody(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002138
Chris Lattnerf64b3522008-03-09 01:54:53 +00002139 // Get the next token of the macro.
2140 LexUnexpandedToken(Tok);
2141 continue;
2142 }
Mike Stump11289f42009-09-09 15:08:12 +00002143
Richard Smith701a3522013-07-09 01:00:29 +00002144 // If we're in -traditional mode, then we should ignore stringification
2145 // and token pasting. Mark the tokens as unknown so as not to confuse
2146 // things.
2147 if (getLangOpts().TraditionalCPP) {
2148 Tok.setKind(tok::unknown);
2149 MI->AddTokenToBody(Tok);
2150
2151 // Get the next token of the macro.
2152 LexUnexpandedToken(Tok);
2153 continue;
2154 }
2155
Eli Friedman14d3c792012-11-14 02:18:46 +00002156 if (Tok.is(tok::hashhash)) {
2157
2158 // If we see token pasting, check if it looks like the gcc comma
2159 // pasting extension. We'll use this information to suppress
2160 // diagnostics later on.
2161
2162 // Get the next token of the macro.
2163 LexUnexpandedToken(Tok);
2164
2165 if (Tok.is(tok::eod)) {
2166 MI->AddTokenToBody(LastTok);
2167 break;
2168 }
2169
2170 unsigned NumTokens = MI->getNumTokens();
2171 if (NumTokens && Tok.getIdentifierInfo() == Ident__VA_ARGS__ &&
2172 MI->getReplacementToken(NumTokens-1).is(tok::comma))
2173 MI->setHasCommaPasting();
2174
David Majnemer76faf1f2013-11-05 09:30:17 +00002175 // Things look ok, add the '##' token to the macro.
Eli Friedman14d3c792012-11-14 02:18:46 +00002176 MI->AddTokenToBody(LastTok);
Eli Friedman14d3c792012-11-14 02:18:46 +00002177 continue;
2178 }
2179
Chris Lattnerf64b3522008-03-09 01:54:53 +00002180 // Get the next token of the macro.
2181 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002182
Chris Lattner83bd8282009-05-25 17:16:10 +00002183 // Check for a valid macro arg identifier.
Craig Topperd2d442c2014-05-17 23:10:59 +00002184 if (Tok.getIdentifierInfo() == nullptr ||
Chris Lattner83bd8282009-05-25 17:16:10 +00002185 MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
2186
2187 // If this is assembler-with-cpp mode, we accept random gibberish after
2188 // the '#' because '#' is often a comment character. However, change
2189 // the kind of the token to tok::unknown so that the preprocessor isn't
2190 // confused.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002191 if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) {
Chris Lattner83bd8282009-05-25 17:16:10 +00002192 LastTok.setKind(tok::unknown);
Eli Friedmancdf8b882013-06-18 21:33:38 +00002193 MI->AddTokenToBody(LastTok);
2194 continue;
Chris Lattner83bd8282009-05-25 17:16:10 +00002195 } else {
2196 Diag(Tok, diag::err_pp_stringize_not_parameter);
Mike Stump11289f42009-09-09 15:08:12 +00002197
Chris Lattner83bd8282009-05-25 17:16:10 +00002198 // Disable __VA_ARGS__ again.
2199 Ident__VA_ARGS__->setIsPoisoned(true);
2200 return;
2201 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002202 }
Mike Stump11289f42009-09-09 15:08:12 +00002203
Chris Lattner83bd8282009-05-25 17:16:10 +00002204 // Things look ok, add the '#' and param name tokens to the macro.
2205 MI->AddTokenToBody(LastTok);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002206 MI->AddTokenToBody(Tok);
Chris Lattner83bd8282009-05-25 17:16:10 +00002207 LastTok = Tok;
Mike Stump11289f42009-09-09 15:08:12 +00002208
Chris Lattnerf64b3522008-03-09 01:54:53 +00002209 // Get the next token of the macro.
2210 LexUnexpandedToken(Tok);
2211 }
2212 }
Mike Stump11289f42009-09-09 15:08:12 +00002213
Serge Pavlov07c0f042014-12-18 11:14:21 +00002214 if (MacroShadowsKeyword &&
2215 !isConfigurationPattern(MacroNameTok, MI, getLangOpts())) {
2216 Diag(MacroNameTok, diag::warn_pp_macro_hides_keyword);
2217 }
Mike Stump11289f42009-09-09 15:08:12 +00002218
Chris Lattnerf64b3522008-03-09 01:54:53 +00002219 // Disable __VA_ARGS__ again.
2220 Ident__VA_ARGS__->setIsPoisoned(true);
2221
Chris Lattner57540c52011-04-15 05:22:18 +00002222 // Check that there is no paste (##) operator at the beginning or end of the
Chris Lattnerf64b3522008-03-09 01:54:53 +00002223 // replacement list.
2224 unsigned NumTokens = MI->getNumTokens();
2225 if (NumTokens != 0) {
2226 if (MI->getReplacementToken(0).is(tok::hashhash)) {
2227 Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002228 return;
2229 }
2230 if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
2231 Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002232 return;
2233 }
2234 }
Mike Stump11289f42009-09-09 15:08:12 +00002235
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002236 MI->setDefinitionEndLoc(LastTok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00002237
Chris Lattnerf64b3522008-03-09 01:54:53 +00002238 // Finally, if this identifier already had a macro defined for it, verify that
Alexander Kornienko8b3f6232012-08-29 00:20:03 +00002239 // the macro bodies are identical, and issue diagnostics if they are not.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002240 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Chris Lattner5244f342009-01-16 19:50:11 +00002241 // It is very common for system headers to have tons of macro redefinitions
2242 // and for warnings to be disabled in system headers. If this is the case,
2243 // then don't bother calling MacroInfo::isIdenticalTo.
Chris Lattner80c21df2009-03-13 21:17:23 +00002244 if (!getDiagnostics().getSuppressSystemWarnings() ||
Chris Lattner5244f342009-01-16 19:50:11 +00002245 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) {
Argyrios Kyrtzidisb495cc12011-01-18 19:50:15 +00002246 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused())
Chris Lattner5244f342009-01-16 19:50:11 +00002247 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002248
Richard Smith7b242542013-03-06 00:46:00 +00002249 // Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and
2250 // C++ [cpp.predefined]p4, but allow it as an extension.
2251 if (OtherMI->isBuiltinMacro())
2252 Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro);
Chris Lattnerc0a585d2010-08-17 15:55:45 +00002253 // Macros must be identical. This means all tokens and whitespace
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +00002254 // separation must be the same. C99 6.10.3p2.
Richard Smith7b242542013-03-06 00:46:00 +00002255 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +00002256 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) {
Chris Lattner5244f342009-01-16 19:50:11 +00002257 Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef)
2258 << MacroNameTok.getIdentifierInfo();
2259 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
2260 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002261 }
Argyrios Kyrtzidisb495cc12011-01-18 19:50:15 +00002262 if (OtherMI->isWarnIfUnused())
2263 WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002264 }
Mike Stump11289f42009-09-09 15:08:12 +00002265
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002266 DefMacroDirective *MD =
2267 appendDefMacroDirective(MacroNameTok.getIdentifierInfo(), MI);
Mike Stump11289f42009-09-09 15:08:12 +00002268
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002269 assert(!MI->isUsed());
2270 // If we need warning for not using the macro, add its location in the
2271 // warn-because-unused-macro set. If it gets used it will be removed from set.
Eli Friedman5ba37d52013-08-22 00:27:10 +00002272 if (getSourceManager().isInMainFile(MI->getDefinitionLoc()) &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002273 !Diags->isIgnored(diag::pp_macro_not_used, MI->getDefinitionLoc())) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002274 MI->setIsWarnIfUnused(true);
2275 WarnUnusedMacroLocs.insert(MI->getDefinitionLoc());
2276 }
2277
Chris Lattner928e9092009-04-12 01:39:54 +00002278 // If the callbacks want to know, tell them about the macro definition.
2279 if (Callbacks)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002280 Callbacks->MacroDefined(MacroNameTok, MD);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002281}
2282
James Dennettf6333ac2012-06-22 05:46:07 +00002283/// HandleUndefDirective - Implements \#undef.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002284///
2285void Preprocessor::HandleUndefDirective(Token &UndefTok) {
2286 ++NumUndefined;
2287
2288 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00002289 ReadMacroName(MacroNameTok, MU_Undef);
Mike Stump11289f42009-09-09 15:08:12 +00002290
Chris Lattnerf64b3522008-03-09 01:54:53 +00002291 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002292 if (MacroNameTok.is(tok::eod))
Chris Lattnerf64b3522008-03-09 01:54:53 +00002293 return;
Mike Stump11289f42009-09-09 15:08:12 +00002294
Chris Lattnerf64b3522008-03-09 01:54:53 +00002295 // Check to see if this is the last token on the #undef line.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002296 CheckEndOfDirective("undef");
Mike Stump11289f42009-09-09 15:08:12 +00002297
Chris Lattnerf64b3522008-03-09 01:54:53 +00002298 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002299 MacroDirective *MD = getMacroDirective(MacroNameTok.getIdentifierInfo());
Craig Topperd2d442c2014-05-17 23:10:59 +00002300 const MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002301
Argyrios Kyrtzidis99b0a6a2013-01-16 16:52:44 +00002302 // If the callbacks want to know, tell them about the macro #undef.
2303 // Note: no matter if the macro was defined or not.
2304 if (Callbacks)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002305 Callbacks->MacroUndefined(MacroNameTok, MD);
Argyrios Kyrtzidis99b0a6a2013-01-16 16:52:44 +00002306
Chris Lattnerf64b3522008-03-09 01:54:53 +00002307 // If the macro is not defined, this is a noop undef, just return.
Craig Topperd2d442c2014-05-17 23:10:59 +00002308 if (!MI)
2309 return;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002310
Argyrios Kyrtzidis22998892011-07-11 20:39:47 +00002311 if (!MI->isUsed() && MI->isWarnIfUnused())
Chris Lattnerf64b3522008-03-09 01:54:53 +00002312 Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattnercd6d4b12009-04-21 03:42:09 +00002313
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002314 if (MI->isWarnIfUnused())
2315 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
2316
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002317 appendMacroDirective(MacroNameTok.getIdentifierInfo(),
2318 AllocateUndefMacroDirective(MacroNameTok.getLocation()));
Chris Lattnerf64b3522008-03-09 01:54:53 +00002319}
2320
2321
2322//===----------------------------------------------------------------------===//
2323// Preprocessor Conditional Directive Handling.
2324//===----------------------------------------------------------------------===//
2325
James Dennettf6333ac2012-06-22 05:46:07 +00002326/// HandleIfdefDirective - Implements the \#ifdef/\#ifndef directive. isIfndef
2327/// is true when this is a \#ifndef directive. ReadAnyTokensBeforeDirective is
2328/// true if any tokens have been returned or pp-directives activated before this
2329/// \#ifndef has been lexed.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002330///
2331void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
2332 bool ReadAnyTokensBeforeDirective) {
2333 ++NumIf;
2334 Token DirectiveTok = Result;
2335
2336 Token MacroNameTok;
2337 ReadMacroName(MacroNameTok);
Mike Stump11289f42009-09-09 15:08:12 +00002338
Chris Lattnerf64b3522008-03-09 01:54:53 +00002339 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002340 if (MacroNameTok.is(tok::eod)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002341 // Skip code until we get to #endif. This helps with recovery by not
2342 // emitting an error when the #endif is reached.
2343 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2344 /*Foundnonskip*/false, /*FoundElse*/false);
2345 return;
2346 }
Mike Stump11289f42009-09-09 15:08:12 +00002347
Chris Lattnerf64b3522008-03-09 01:54:53 +00002348 // Check to see if this is the last token on the #if[n]def line.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002349 CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef");
Chris Lattnerf64b3522008-03-09 01:54:53 +00002350
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002351 IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002352 MacroDirective *MD = getMacroDirective(MII);
Craig Topperd2d442c2014-05-17 23:10:59 +00002353 MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002354
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002355 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002356 // If the start of a top-level #ifdef and if the macro is not defined,
2357 // inform MIOpt that this might be the start of a proper include guard.
2358 // Otherwise it is some other form of unknown conditional which we can't
2359 // handle.
Craig Topperd2d442c2014-05-17 23:10:59 +00002360 if (!ReadAnyTokensBeforeDirective && !MI) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002361 assert(isIfndef && "#ifdef shouldn't reach here");
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002362 CurPPLexer->MIOpt.EnterTopLevelIfndef(MII, MacroNameTok.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002363 } else
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002364 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002365 }
2366
Chris Lattnerf64b3522008-03-09 01:54:53 +00002367 // If there is a macro, process it.
2368 if (MI) // Mark it used.
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002369 markMacroAsUsed(MI);
Mike Stump11289f42009-09-09 15:08:12 +00002370
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002371 if (Callbacks) {
2372 if (isIfndef)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002373 Callbacks->Ifndef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002374 else
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002375 Callbacks->Ifdef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002376 }
2377
Chris Lattnerf64b3522008-03-09 01:54:53 +00002378 // Should we include the stuff contained by this directive?
2379 if (!MI == isIfndef) {
2380 // Yes, remember that we are inside a conditional, then lex the next token.
Chris Lattner8cf1f932009-12-14 04:54:40 +00002381 CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(),
2382 /*wasskip*/false, /*foundnonskip*/true,
2383 /*foundelse*/false);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002384 } else {
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002385 // No, skip the contents of this block.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002386 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002387 /*Foundnonskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002388 /*FoundElse*/false);
2389 }
2390}
2391
James Dennettf6333ac2012-06-22 05:46:07 +00002392/// HandleIfDirective - Implements the \#if directive.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002393///
2394void Preprocessor::HandleIfDirective(Token &IfToken,
2395 bool ReadAnyTokensBeforeDirective) {
2396 ++NumIf;
Mike Stump11289f42009-09-09 15:08:12 +00002397
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002398 // Parse and evaluate the conditional expression.
Craig Topperd2d442c2014-05-17 23:10:59 +00002399 IdentifierInfo *IfNDefMacro = nullptr;
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002400 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
2401 const bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
2402 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Nuno Lopes363212b2008-06-01 18:31:24 +00002403
2404 // If this condition is equivalent to #ifndef X, and if this is the first
2405 // directive seen, handle it for the multiple-include optimization.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002406 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002407 if (!ReadAnyTokensBeforeDirective && IfNDefMacro && ConditionalTrue)
Richard Smith089ee152013-06-16 05:05:39 +00002408 // FIXME: Pass in the location of the macro name, not the 'if' token.
2409 CurPPLexer->MIOpt.EnterTopLevelIfndef(IfNDefMacro, IfToken.getLocation());
Nuno Lopes363212b2008-06-01 18:31:24 +00002410 else
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002411 CurPPLexer->MIOpt.EnterTopLevelConditional();
Nuno Lopes363212b2008-06-01 18:31:24 +00002412 }
2413
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002414 if (Callbacks)
2415 Callbacks->If(IfToken.getLocation(),
John Thompsonb1028562013-07-18 00:00:36 +00002416 SourceRange(ConditionalBegin, ConditionalEnd),
John Thompson87f9fef2013-12-07 08:41:15 +00002417 (ConditionalTrue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False));
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002418
Chris Lattnerf64b3522008-03-09 01:54:53 +00002419 // Should we include the stuff contained by this directive?
2420 if (ConditionalTrue) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002421 // Yes, remember that we are inside a conditional, then lex the next token.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002422 CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002423 /*foundnonskip*/true, /*foundelse*/false);
2424 } else {
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002425 // No, skip the contents of this block.
Mike Stump11289f42009-09-09 15:08:12 +00002426 SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002427 /*FoundElse*/false);
2428 }
2429}
2430
James Dennettf6333ac2012-06-22 05:46:07 +00002431/// HandleEndifDirective - Implements the \#endif directive.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002432///
2433void Preprocessor::HandleEndifDirective(Token &EndifToken) {
2434 ++NumEndif;
Mike Stump11289f42009-09-09 15:08:12 +00002435
Chris Lattnerf64b3522008-03-09 01:54:53 +00002436 // Check that this is the whole directive.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002437 CheckEndOfDirective("endif");
Mike Stump11289f42009-09-09 15:08:12 +00002438
Chris Lattnerf64b3522008-03-09 01:54:53 +00002439 PPConditionalInfo CondInfo;
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002440 if (CurPPLexer->popConditionalLevel(CondInfo)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002441 // No conditionals on the stack: this is an #endif without an #if.
Chris Lattner907dfe92008-11-18 07:59:24 +00002442 Diag(EndifToken, diag::err_pp_endif_without_if);
2443 return;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002444 }
Mike Stump11289f42009-09-09 15:08:12 +00002445
Chris Lattnerf64b3522008-03-09 01:54:53 +00002446 // If this the end of a top-level #endif, inform MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002447 if (CurPPLexer->getConditionalStackDepth() == 0)
2448 CurPPLexer->MIOpt.ExitTopLevelConditional();
Mike Stump11289f42009-09-09 15:08:12 +00002449
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002450 assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode &&
Chris Lattnerf64b3522008-03-09 01:54:53 +00002451 "This code should only be reachable in the non-skipping case!");
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002452
2453 if (Callbacks)
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002454 Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002455}
2456
James Dennettf6333ac2012-06-22 05:46:07 +00002457/// HandleElseDirective - Implements the \#else directive.
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002458///
Chris Lattnerf64b3522008-03-09 01:54:53 +00002459void Preprocessor::HandleElseDirective(Token &Result) {
2460 ++NumElse;
Mike Stump11289f42009-09-09 15:08:12 +00002461
Chris Lattnerf64b3522008-03-09 01:54:53 +00002462 // #else directive in a non-skipping conditional... start skipping.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002463 CheckEndOfDirective("else");
Mike Stump11289f42009-09-09 15:08:12 +00002464
Chris Lattnerf64b3522008-03-09 01:54:53 +00002465 PPConditionalInfo CI;
Chris Lattner907dfe92008-11-18 07:59:24 +00002466 if (CurPPLexer->popConditionalLevel(CI)) {
2467 Diag(Result, diag::pp_err_else_without_if);
2468 return;
2469 }
Mike Stump11289f42009-09-09 15:08:12 +00002470
Chris Lattnerf64b3522008-03-09 01:54:53 +00002471 // If this is a top-level #else, inform the MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002472 if (CurPPLexer->getConditionalStackDepth() == 0)
2473 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002474
2475 // If this is a #else with a #else before it, report the error.
2476 if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
Mike Stump11289f42009-09-09 15:08:12 +00002477
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002478 if (Callbacks)
2479 Callbacks->Else(Result.getLocation(), CI.IfLoc);
2480
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002481 // Finally, skip the rest of the contents of this block.
2482 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +00002483 /*FoundElse*/true, Result.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002484}
2485
James Dennettf6333ac2012-06-22 05:46:07 +00002486/// HandleElifDirective - Implements the \#elif directive.
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002487///
Chris Lattnerf64b3522008-03-09 01:54:53 +00002488void Preprocessor::HandleElifDirective(Token &ElifToken) {
2489 ++NumElse;
Mike Stump11289f42009-09-09 15:08:12 +00002490
Chris Lattnerf64b3522008-03-09 01:54:53 +00002491 // #elif directive in a non-skipping conditional... start skipping.
2492 // We don't care what the condition is, because we will always skip it (since
2493 // the block immediately before it was included).
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002494 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002495 DiscardUntilEndOfDirective();
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002496 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002497
2498 PPConditionalInfo CI;
Chris Lattner907dfe92008-11-18 07:59:24 +00002499 if (CurPPLexer->popConditionalLevel(CI)) {
2500 Diag(ElifToken, diag::pp_err_elif_without_if);
2501 return;
2502 }
Mike Stump11289f42009-09-09 15:08:12 +00002503
Chris Lattnerf64b3522008-03-09 01:54:53 +00002504 // If this is a top-level #elif, inform the MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002505 if (CurPPLexer->getConditionalStackDepth() == 0)
2506 CurPPLexer->MIOpt.EnterTopLevelConditional();
Mike Stump11289f42009-09-09 15:08:12 +00002507
Chris Lattnerf64b3522008-03-09 01:54:53 +00002508 // If this is a #elif with a #else before it, report the error.
2509 if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002510
2511 if (Callbacks)
2512 Callbacks->Elif(ElifToken.getLocation(),
John Thompsonb1028562013-07-18 00:00:36 +00002513 SourceRange(ConditionalBegin, ConditionalEnd),
John Thompson87f9fef2013-12-07 08:41:15 +00002514 PPCallbacks::CVK_NotEvaluated, CI.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002515
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002516 // Finally, skip the rest of the contents of this block.
2517 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +00002518 /*FoundElse*/CI.FoundElse,
2519 ElifToken.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002520}