blob: 0a46663d85de2573958cd293a40bd48d8824514b [file] [log] [blame]
Chris Lattner89620152008-03-09 03:13:06 +00001//===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
Chris Lattnerf64b3522008-03-09 01:54:53 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
James Dennettf6333ac2012-06-22 05:46:07 +00009///
10/// \file
11/// \brief Implements # directive processing for the Preprocessor.
12///
Chris Lattnerf64b3522008-03-09 01:54:53 +000013//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Preprocessor.h"
Chris Lattner710bb872009-11-30 04:18:44 +000016#include "clang/Basic/FileManager.h"
Chris Lattnerf64b3522008-03-09 01:54:53 +000017#include "clang/Basic/SourceManager.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/Lex/CodeCompletionHandler.h"
19#include "clang/Lex/HeaderSearch.h"
Daniel Jasper07e6c402013-08-05 20:26:17 +000020#include "clang/Lex/HeaderSearchOptions.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Lex/LexDiagnostic.h"
22#include "clang/Lex/LiteralSupport.h"
23#include "clang/Lex/MacroInfo.h"
24#include "clang/Lex/ModuleLoader.h"
25#include "clang/Lex/Pragma.h"
Chris Lattner100c65e2009-01-26 05:29:08 +000026#include "llvm/ADT/APInt.h"
Douglas Gregor41e115a2011-11-30 18:02:36 +000027#include "llvm/Support/ErrorHandling.h"
Rafael Espindolaf6002232014-08-08 21:31:04 +000028#include "llvm/Support/Path.h"
Aaron Ballman6ce00002013-01-16 19:32:21 +000029#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerf64b3522008-03-09 01:54:53 +000030using namespace clang;
31
32//===----------------------------------------------------------------------===//
33// Utility Methods for Preprocessor Directive Handling.
34//===----------------------------------------------------------------------===//
35
Chris Lattnerc0a585d2010-08-17 15:55:45 +000036MacroInfo *Preprocessor::AllocateMacroInfo() {
Richard Smithee0c4c12014-07-24 01:13:23 +000037 MacroInfoChain *MIChain = BP.Allocate<MacroInfoChain>();
Ted Kremenekc8456f82010-10-19 22:15:20 +000038 MIChain->Next = MIChainHead;
Ted Kremenekc8456f82010-10-19 22:15:20 +000039 MIChainHead = MIChain;
Richard Smithee0c4c12014-07-24 01:13:23 +000040 return &MIChain->MI;
Chris Lattnerc0a585d2010-08-17 15:55:45 +000041}
42
43MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) {
44 MacroInfo *MI = AllocateMacroInfo();
Ted Kremenek6c7ea112008-12-15 19:56:42 +000045 new (MI) MacroInfo(L);
46 return MI;
47}
48
Argyrios Kyrtzidis4f32da12013-03-22 21:12:51 +000049MacroInfo *Preprocessor::AllocateDeserializedMacroInfo(SourceLocation L,
50 unsigned SubModuleID) {
Chandler Carruth06dde922014-03-02 13:02:01 +000051 static_assert(llvm::AlignOf<MacroInfo>::Alignment >= sizeof(SubModuleID),
52 "alignment for MacroInfo is less than the ID");
Argyrios Kyrtzidisd48b91d2013-04-30 05:05:35 +000053 DeserializedMacroInfoChain *MIChain =
54 BP.Allocate<DeserializedMacroInfoChain>();
55 MIChain->Next = DeserialMIChainHead;
56 DeserialMIChainHead = MIChain;
57
58 MacroInfo *MI = &MIChain->MI;
Argyrios Kyrtzidis4f32da12013-03-22 21:12:51 +000059 new (MI) MacroInfo(L);
60 MI->FromASTFile = true;
61 MI->setOwningModuleID(SubModuleID);
62 return MI;
63}
64
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000065DefMacroDirective *
66Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc,
Richard Smithdaa69e02014-07-25 04:40:03 +000067 unsigned ImportedFromModuleID,
68 ArrayRef<unsigned> Overrides) {
69 unsigned NumExtra = (ImportedFromModuleID ? 1 : 0) + Overrides.size();
70 return new (BP.Allocate(sizeof(DefMacroDirective) +
71 sizeof(unsigned) * NumExtra,
72 llvm::alignOf<DefMacroDirective>()))
73 DefMacroDirective(MI, Loc, ImportedFromModuleID, Overrides);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000074}
75
76UndefMacroDirective *
Richard Smithdaa69e02014-07-25 04:40:03 +000077Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc,
78 unsigned ImportedFromModuleID,
79 ArrayRef<unsigned> Overrides) {
80 unsigned NumExtra = (ImportedFromModuleID ? 1 : 0) + Overrides.size();
81 return new (BP.Allocate(sizeof(UndefMacroDirective) +
82 sizeof(unsigned) * NumExtra,
83 llvm::alignOf<UndefMacroDirective>()))
84 UndefMacroDirective(UndefLoc, ImportedFromModuleID, Overrides);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +000085}
86
87VisibilityMacroDirective *
88Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc,
89 bool isPublic) {
Richard Smithdaa69e02014-07-25 04:40:03 +000090 return new (BP) VisibilityMacroDirective(Loc, isPublic);
Chris Lattnerc0a585d2010-08-17 15:55:45 +000091}
92
James Dennettf6333ac2012-06-22 05:46:07 +000093/// \brief Read and discard all tokens remaining on the current line until
94/// the tok::eod token is found.
Chris Lattnerf64b3522008-03-09 01:54:53 +000095void Preprocessor::DiscardUntilEndOfDirective() {
96 Token Tmp;
97 do {
98 LexUnexpandedToken(Tmp);
Peter Collingbournef29ce972011-02-22 13:49:06 +000099 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000100 } while (Tmp.isNot(tok::eod));
Chris Lattnerf64b3522008-03-09 01:54:53 +0000101}
102
Serge Pavlovd024f522014-10-24 17:31:32 +0000103bool Preprocessor::CheckMacroName(Token &MacroNameTok, MacroUse isDefineUndef) {
Alp Tokerb05e0b52014-05-21 06:13:51 +0000104 // Missing macro name?
105 if (MacroNameTok.is(tok::eod))
106 return Diag(MacroNameTok, diag::err_pp_missing_macro_name);
107
108 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
109 if (!II) {
110 bool Invalid = false;
111 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
112 if (Invalid)
113 return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
Alp Tokerf33619c2014-05-31 03:38:08 +0000114 II = getIdentifierInfo(Spelling);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000115
Alp Tokerf33619c2014-05-31 03:38:08 +0000116 if (!II->isCPlusPlusOperatorKeyword())
117 return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000118
Alp Tokere03e9e12014-05-31 16:32:22 +0000119 // C++ 2.5p2: Alternative tokens behave the same as its primary token
120 // except for their spellings.
121 Diag(MacroNameTok, getLangOpts().MicrosoftExt
122 ? diag::ext_pp_operator_used_as_macro_name
123 : diag::err_pp_operator_used_as_macro_name)
124 << II << MacroNameTok.getKind();
Alp Tokerb05e0b52014-05-21 06:13:51 +0000125
Alp Tokerc5d194fc2014-05-31 03:38:17 +0000126 // Allow #defining |and| and friends for Microsoft compatibility or
127 // recovery when legacy C headers are included in C++.
Alp Tokerf33619c2014-05-31 03:38:08 +0000128 MacroNameTok.setIdentifierInfo(II);
Alp Tokerb05e0b52014-05-21 06:13:51 +0000129 }
130
Serge Pavlovd024f522014-10-24 17:31:32 +0000131 if ((isDefineUndef != MU_Other) && II->getPPKeywordID() == tok::pp_defined) {
Alp Tokerb05e0b52014-05-21 06:13:51 +0000132 // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4.
133 return Diag(MacroNameTok, diag::err_defined_macro_name);
134 }
135
Serge Pavlovd024f522014-10-24 17:31:32 +0000136 if (isDefineUndef == MU_Undef && II->hasMacroDefinition() &&
Alp Tokerb05e0b52014-05-21 06:13:51 +0000137 getMacroInfo(II)->isBuiltinMacro()) {
138 // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4
139 // and C++ [cpp.predefined]p4], but allow it as an extension.
140 Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro);
141 }
142
143 // Okay, we got a good identifier.
144 return false;
145}
146
James Dennettf6333ac2012-06-22 05:46:07 +0000147/// \brief Lex and validate a macro name, which occurs after a
148/// \#define or \#undef.
149///
Serge Pavlovd024f522014-10-24 17:31:32 +0000150/// This sets the token kind to eod and discards the rest of the macro line if
151/// the macro name is invalid.
152///
153/// \param MacroNameTok Token that is expected to be a macro name.
154/// \papam isDefineUndef Context in which macro is used.
155void Preprocessor::ReadMacroName(Token &MacroNameTok, MacroUse isDefineUndef) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000156 // Read the token, don't allow macro expansion on it.
157 LexUnexpandedToken(MacroNameTok);
Mike Stump11289f42009-09-09 15:08:12 +0000158
Douglas Gregor12785102010-08-24 20:21:13 +0000159 if (MacroNameTok.is(tok::code_completion)) {
160 if (CodeComplete)
Serge Pavlovd024f522014-10-24 17:31:32 +0000161 CodeComplete->CodeCompleteMacroName(isDefineUndef == MU_Define);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000162 setCodeCompletionReached();
Douglas Gregor12785102010-08-24 20:21:13 +0000163 LexUnexpandedToken(MacroNameTok);
Douglas Gregor12785102010-08-24 20:21:13 +0000164 }
Alp Tokerb05e0b52014-05-21 06:13:51 +0000165
166 if (!CheckMacroName(MacroNameTok, isDefineUndef))
Chris Lattner907dfe92008-11-18 07:59:24 +0000167 return;
Alp Tokerb05e0b52014-05-21 06:13:51 +0000168
169 // Invalid macro name, read and discard the rest of the line and set the
170 // token kind to tok::eod if necessary.
171 if (MacroNameTok.isNot(tok::eod)) {
172 MacroNameTok.setKind(tok::eod);
173 DiscardUntilEndOfDirective();
Chris Lattner907dfe92008-11-18 07:59:24 +0000174 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000175}
176
James Dennettf6333ac2012-06-22 05:46:07 +0000177/// \brief Ensure that the next token is a tok::eod token.
178///
179/// If not, emit a diagnostic and consume up until the eod. If EnableMacros is
Chris Lattner0003c272009-04-17 23:30:53 +0000180/// true, then we consider macros that expand to zero tokens as being ok.
181void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000182 Token Tmp;
Chris Lattner0003c272009-04-17 23:30:53 +0000183 // Lex unexpanded tokens for most directives: macros might expand to zero
184 // tokens, causing us to miss diagnosing invalid lines. Some directives (like
185 // #line) allow empty macros.
186 if (EnableMacros)
187 Lex(Tmp);
188 else
189 LexUnexpandedToken(Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000190
Chris Lattnerf64b3522008-03-09 01:54:53 +0000191 // There should be no tokens after the directive, but we allow them as an
192 // extension.
193 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
194 LexUnexpandedToken(Tmp);
Mike Stump11289f42009-09-09 15:08:12 +0000195
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000196 if (Tmp.isNot(tok::eod)) {
Chris Lattner825676a2009-04-14 05:15:20 +0000197 // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89,
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000198 // or if this is a macro-style preprocessing directive, because it is more
199 // trouble than it is worth to insert /**/ and check that there is no /**/
200 // in the range also.
Douglas Gregora771f462010-03-31 17:46:05 +0000201 FixItHint Hint;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000202 if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) &&
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000203 !CurTokenLexer)
Douglas Gregora771f462010-03-31 17:46:05 +0000204 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
205 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000206 DiscardUntilEndOfDirective();
207 }
208}
209
210
211
James Dennettf6333ac2012-06-22 05:46:07 +0000212/// SkipExcludedConditionalBlock - We just read a \#if or related directive and
213/// decided that the subsequent tokens are in the \#if'd out portion of the
214/// file. Lex the rest of the file, until we see an \#endif. If
Chris Lattnerf64b3522008-03-09 01:54:53 +0000215/// FoundNonSkipPortion is true, then we have already emitted code for part of
James Dennettf6333ac2012-06-22 05:46:07 +0000216/// this \#if directive, so \#else/\#elif blocks should never be entered.
217/// If ElseOk is true, then \#else directives are ok, if not, then we have
218/// already seen one so a \#else directive is a duplicate. When this returns,
219/// the caller can lex the first valid token.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000220void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
221 bool FoundNonSkipPortion,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +0000222 bool FoundElse,
223 SourceLocation ElseLoc) {
Chris Lattnerf64b3522008-03-09 01:54:53 +0000224 ++NumSkipped;
David Blaikie7d170102013-05-15 07:37:26 +0000225 assert(!CurTokenLexer && CurPPLexer && "Lexing a macro, not a file?");
Chris Lattnerf64b3522008-03-09 01:54:53 +0000226
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000227 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +0000228 FoundNonSkipPortion, FoundElse);
Mike Stump11289f42009-09-09 15:08:12 +0000229
Ted Kremenek56572ab2008-12-12 18:34:08 +0000230 if (CurPTHLexer) {
231 PTHSkipExcludedConditionalBlock();
232 return;
233 }
Mike Stump11289f42009-09-09 15:08:12 +0000234
Chris Lattnerf64b3522008-03-09 01:54:53 +0000235 // Enter raw mode to disable identifier lookup (and thus macro expansion),
236 // disabling warnings, etc.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000237 CurPPLexer->LexingRawMode = true;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000238 Token Tok;
239 while (1) {
Chris Lattnerf406b242010-01-18 22:33:01 +0000240 CurLexer->Lex(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000241
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000242 if (Tok.is(tok::code_completion)) {
243 if (CodeComplete)
244 CodeComplete->CodeCompleteInConditionalExclusion();
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000245 setCodeCompletionReached();
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000246 continue;
247 }
248
Chris Lattnerf64b3522008-03-09 01:54:53 +0000249 // If this is the end of the buffer, we have an error.
250 if (Tok.is(tok::eof)) {
251 // Emit errors for each unterminated conditional on the stack, including
252 // the current one.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000253 while (!CurPPLexer->ConditionalStack.empty()) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000254 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
Douglas Gregor02690ba2010-08-12 17:04:55 +0000255 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
256 diag::err_pp_unterminated_conditional);
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000257 CurPPLexer->ConditionalStack.pop_back();
Mike Stump11289f42009-09-09 15:08:12 +0000258 }
259
Chris Lattnerf64b3522008-03-09 01:54:53 +0000260 // Just return and let the caller lex after this #include.
261 break;
262 }
Mike Stump11289f42009-09-09 15:08:12 +0000263
Chris Lattnerf64b3522008-03-09 01:54:53 +0000264 // If this token is not a preprocessor directive, just skip it.
265 if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
266 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000267
Chris Lattnerf64b3522008-03-09 01:54:53 +0000268 // We just parsed a # character at the start of a line, so we're in
269 // directive mode. Tell the lexer this so any newlines we see will be
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000270 // converted into an EOD token (this terminates the macro).
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000271 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rose176057b2013-02-22 00:32:00 +0000272 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000273
Mike Stump11289f42009-09-09 15:08:12 +0000274
Chris Lattnerf64b3522008-03-09 01:54:53 +0000275 // Read the next token, the directive flavor.
276 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000277
Chris Lattnerf64b3522008-03-09 01:54:53 +0000278 // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
279 // something bogus), skip it.
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000280 if (Tok.isNot(tok::raw_identifier)) {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000281 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000282 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000283 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000284 continue;
285 }
286
287 // If the first letter isn't i or e, it isn't intesting to us. We know that
288 // this is safe in the face of spelling differences, because there is no way
289 // to spell an i/e in a strange way that is another letter. Skipping this
290 // allows us to avoid looking up the identifier info for #define/#undef and
291 // other common directives.
Alp Toker2d57cea2014-05-17 04:53:25 +0000292 StringRef RI = Tok.getRawIdentifier();
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000293
Alp Toker2d57cea2014-05-17 04:53:25 +0000294 char FirstChar = RI[0];
Mike Stump11289f42009-09-09 15:08:12 +0000295 if (FirstChar >= 'a' && FirstChar <= 'z' &&
Chris Lattnerf64b3522008-03-09 01:54:53 +0000296 FirstChar != 'i' && FirstChar != 'e') {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000297 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000298 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000299 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000300 continue;
301 }
Mike Stump11289f42009-09-09 15:08:12 +0000302
Chris Lattnerf64b3522008-03-09 01:54:53 +0000303 // Get the identifier name without trigraphs or embedded newlines. Note
304 // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
305 // when skipping.
Benjamin Kramer144884642009-12-31 13:32:38 +0000306 char DirectiveBuf[20];
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000307 StringRef Directive;
Alp Toker2d57cea2014-05-17 04:53:25 +0000308 if (!Tok.needsCleaning() && RI.size() < 20) {
309 Directive = RI;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000310 } else {
311 std::string DirectiveStr = getSpelling(Tok);
Benjamin Kramer144884642009-12-31 13:32:38 +0000312 unsigned IdLen = DirectiveStr.size();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000313 if (IdLen >= 20) {
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000314 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000315 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000316 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000317 continue;
318 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000319 memcpy(DirectiveBuf, &DirectiveStr[0], IdLen);
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000320 Directive = StringRef(DirectiveBuf, IdLen);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000321 }
Mike Stump11289f42009-09-09 15:08:12 +0000322
Benjamin Kramer144884642009-12-31 13:32:38 +0000323 if (Directive.startswith("if")) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000324 StringRef Sub = Directive.substr(2);
Benjamin Kramer144884642009-12-31 13:32:38 +0000325 if (Sub.empty() || // "if"
326 Sub == "def" || // "ifdef"
327 Sub == "ndef") { // "ifndef"
Chris Lattnerf64b3522008-03-09 01:54:53 +0000328 // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
329 // bother parsing the condition.
330 DiscardUntilEndOfDirective();
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000331 CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
Chris Lattnerf64b3522008-03-09 01:54:53 +0000332 /*foundnonskip*/false,
Chandler Carruth540960f2011-01-03 17:40:17 +0000333 /*foundelse*/false);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000334 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000335 } else if (Directive[0] == 'e') {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000336 StringRef Sub = Directive.substr(1);
Benjamin Kramer144884642009-12-31 13:32:38 +0000337 if (Sub == "ndif") { // "endif"
Chris Lattnerf64b3522008-03-09 01:54:53 +0000338 PPConditionalInfo CondInfo;
339 CondInfo.WasSkipping = true; // Silence bogus warning.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000340 bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +0000341 (void)InCond; // Silence warning in no-asserts mode.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000342 assert(!InCond && "Can't be skipping if not in a conditional!");
Mike Stump11289f42009-09-09 15:08:12 +0000343
Chris Lattnerf64b3522008-03-09 01:54:53 +0000344 // If we popped the outermost skipping block, we're done skipping!
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000345 if (!CondInfo.WasSkipping) {
Richard Smith87d8fb92012-06-24 23:56:26 +0000346 // Restore the value of LexingRawMode so that trailing comments
347 // are handled correctly, if we've reached the outermost block.
348 CurPPLexer->LexingRawMode = false;
Richard Smithd0124572012-06-21 00:35:03 +0000349 CheckEndOfDirective("endif");
Richard Smith87d8fb92012-06-24 23:56:26 +0000350 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000351 if (Callbacks)
352 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000353 break;
Richard Smithd0124572012-06-21 00:35:03 +0000354 } else {
355 DiscardUntilEndOfDirective();
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000356 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000357 } else if (Sub == "lse") { // "else".
Chris Lattnerf64b3522008-03-09 01:54:53 +0000358 // #else directive in a skipping conditional. If not in some other
359 // skipping conditional, and if #else hasn't already been seen, enter it
360 // as a non-skipping conditional.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000361 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Mike Stump11289f42009-09-09 15:08:12 +0000362
Chris Lattnerf64b3522008-03-09 01:54:53 +0000363 // If this is a #else with a #else before it, report the error.
364 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
Mike Stump11289f42009-09-09 15:08:12 +0000365
Chris Lattnerf64b3522008-03-09 01:54:53 +0000366 // Note that we've seen a #else in this conditional.
367 CondInfo.FoundElse = true;
Mike Stump11289f42009-09-09 15:08:12 +0000368
Chris Lattnerf64b3522008-03-09 01:54:53 +0000369 // If the conditional is at the top level, and the #if block wasn't
370 // entered, enter the #else block now.
371 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
372 CondInfo.FoundNonSkip = true;
Richard Smith87d8fb92012-06-24 23:56:26 +0000373 // Restore the value of LexingRawMode so that trailing comments
374 // are handled correctly.
375 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis627c14a2011-05-21 04:26:04 +0000376 CheckEndOfDirective("else");
Richard Smith87d8fb92012-06-24 23:56:26 +0000377 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000378 if (Callbacks)
379 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000380 break;
Argyrios Kyrtzidis627c14a2011-05-21 04:26:04 +0000381 } else {
382 DiscardUntilEndOfDirective(); // C99 6.10p4.
Chris Lattnerf64b3522008-03-09 01:54:53 +0000383 }
Benjamin Kramer144884642009-12-31 13:32:38 +0000384 } else if (Sub == "lif") { // "elif".
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000385 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000386
John Thompson17c35732013-12-04 20:19:30 +0000387 // If this is a #elif with a #else before it, report the error.
388 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
389
Chris Lattnerf64b3522008-03-09 01:54:53 +0000390 // If this is in a skipping block or if we're already handled this #if
391 // block, don't bother parsing the condition.
392 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
393 DiscardUntilEndOfDirective();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000394 } else {
John Thompson17c35732013-12-04 20:19:30 +0000395 const SourceLocation CondBegin = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000396 // Restore the value of LexingRawMode so that identifiers are
397 // looked up, etc, inside the #elif expression.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000398 assert(CurPPLexer->LexingRawMode && "We have to be skipping here!");
399 CurPPLexer->LexingRawMode = false;
Craig Topperd2d442c2014-05-17 23:10:59 +0000400 IdentifierInfo *IfNDefMacro = nullptr;
John Thompson17c35732013-12-04 20:19:30 +0000401 const bool CondValue = EvaluateDirectiveExpression(IfNDefMacro);
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000402 CurPPLexer->LexingRawMode = true;
John Thompson17c35732013-12-04 20:19:30 +0000403 if (Callbacks) {
404 const SourceLocation CondEnd = CurPPLexer->getSourceLocation();
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +0000405 Callbacks->Elif(Tok.getLocation(),
John Thompson17c35732013-12-04 20:19:30 +0000406 SourceRange(CondBegin, CondEnd),
John Thompson87f9fef2013-12-07 08:41:15 +0000407 (CondValue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False), CondInfo.IfLoc);
John Thompson17c35732013-12-04 20:19:30 +0000408 }
409 // If this condition is true, enter it!
410 if (CondValue) {
411 CondInfo.FoundNonSkip = true;
412 break;
413 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000414 }
415 }
416 }
Mike Stump11289f42009-09-09 15:08:12 +0000417
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000418 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000419 // Restore comment saving mode.
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000420 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattnerf64b3522008-03-09 01:54:53 +0000421 }
422
423 // Finally, if we are out of the conditional (saw an #endif or ran off the end
424 // of the file, just stop skipping and return to lexing whatever came after
425 // the #if block.
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000426 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +0000427
428 if (Callbacks) {
429 SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc;
430 Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation()));
431 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000432}
433
Ted Kremenek56572ab2008-12-12 18:34:08 +0000434void Preprocessor::PTHSkipExcludedConditionalBlock() {
Mike Stump11289f42009-09-09 15:08:12 +0000435
436 while (1) {
Ted Kremenek56572ab2008-12-12 18:34:08 +0000437 assert(CurPTHLexer);
438 assert(CurPTHLexer->LexingRawMode == false);
Mike Stump11289f42009-09-09 15:08:12 +0000439
Ted Kremenek56572ab2008-12-12 18:34:08 +0000440 // Skip to the next '#else', '#elif', or #endif.
441 if (CurPTHLexer->SkipBlock()) {
442 // We have reached an #endif. Both the '#' and 'endif' tokens
443 // have been consumed by the PTHLexer. Just pop off the condition level.
444 PPConditionalInfo CondInfo;
445 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +0000446 (void)InCond; // Silence warning in no-asserts mode.
Ted Kremenek56572ab2008-12-12 18:34:08 +0000447 assert(!InCond && "Can't be skipping if not in a conditional!");
448 break;
449 }
Mike Stump11289f42009-09-09 15:08:12 +0000450
Ted Kremenek56572ab2008-12-12 18:34:08 +0000451 // We have reached a '#else' or '#elif'. Lex the next token to get
452 // the directive flavor.
453 Token Tok;
454 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000455
Ted Kremenek56572ab2008-12-12 18:34:08 +0000456 // We can actually look up the IdentifierInfo here since we aren't in
457 // raw mode.
458 tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID();
459
460 if (K == tok::pp_else) {
461 // #else: Enter the else condition. We aren't in a nested condition
462 // since we skip those. We're always in the one matching the last
463 // blocked we skipped.
464 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
465 // Note that we've seen a #else in this conditional.
466 CondInfo.FoundElse = true;
Mike Stump11289f42009-09-09 15:08:12 +0000467
Ted Kremenek56572ab2008-12-12 18:34:08 +0000468 // If the #if block wasn't entered then enter the #else block now.
469 if (!CondInfo.FoundNonSkip) {
470 CondInfo.FoundNonSkip = true;
Mike Stump11289f42009-09-09 15:08:12 +0000471
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000472 // Scan until the eod token.
Ted Kremenek1b18ad22008-12-23 01:30:52 +0000473 CurPTHLexer->ParsingPreprocessorDirective = true;
Daniel Dunbar2cba6be2009-04-13 17:57:49 +0000474 DiscardUntilEndOfDirective();
Ted Kremenek1b18ad22008-12-23 01:30:52 +0000475 CurPTHLexer->ParsingPreprocessorDirective = false;
Mike Stump11289f42009-09-09 15:08:12 +0000476
Ted Kremenek56572ab2008-12-12 18:34:08 +0000477 break;
478 }
Mike Stump11289f42009-09-09 15:08:12 +0000479
Ted Kremenek56572ab2008-12-12 18:34:08 +0000480 // Otherwise skip this block.
481 continue;
482 }
Mike Stump11289f42009-09-09 15:08:12 +0000483
Ted Kremenek56572ab2008-12-12 18:34:08 +0000484 assert(K == tok::pp_elif);
485 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
486
487 // If this is a #elif with a #else before it, report the error.
488 if (CondInfo.FoundElse)
489 Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump11289f42009-09-09 15:08:12 +0000490
Ted Kremenek56572ab2008-12-12 18:34:08 +0000491 // If this is in a skipping block or if we're already handled this #if
Mike Stump11289f42009-09-09 15:08:12 +0000492 // block, don't bother parsing the condition. We just skip this block.
Ted Kremenek56572ab2008-12-12 18:34:08 +0000493 if (CondInfo.FoundNonSkip)
494 continue;
495
496 // Evaluate the condition of the #elif.
Craig Topperd2d442c2014-05-17 23:10:59 +0000497 IdentifierInfo *IfNDefMacro = nullptr;
Ted Kremenek56572ab2008-12-12 18:34:08 +0000498 CurPTHLexer->ParsingPreprocessorDirective = true;
499 bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
500 CurPTHLexer->ParsingPreprocessorDirective = false;
501
502 // If this condition is true, enter it!
503 if (ShouldEnter) {
504 CondInfo.FoundNonSkip = true;
505 break;
506 }
507
508 // Otherwise, skip this block and go to the next one.
509 continue;
510 }
511}
512
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000513Module *Preprocessor::getModuleForLocation(SourceLocation FilenameLoc) {
514 ModuleMap &ModMap = HeaderInfo.getModuleMap();
515 if (SourceMgr.isInMainFile(FilenameLoc)) {
516 if (Module *CurMod = getCurrentModule())
517 return CurMod; // Compiling a module.
518 return HeaderInfo.getModuleMap().SourceModule; // Compiling a source.
519 }
520 // Try to determine the module of the include directive.
Daniel Jasper88d86952013-12-03 20:30:36 +0000521 // FIXME: Look into directly passing the FileEntry from LookupFile instead.
Manuel Klimek98a9a6c2014-03-19 10:22:36 +0000522 FileID IDOfIncl = SourceMgr.getFileID(SourceMgr.getExpansionLoc(FilenameLoc));
Daniel Jasperba7f2f72013-09-24 09:14:14 +0000523 if (const FileEntry *EntryOfIncl = SourceMgr.getFileEntryForID(IDOfIncl)) {
524 // The include comes from a file.
525 return ModMap.findModuleForHeader(EntryOfIncl).getModule();
526 } else {
527 // The include does not come from a file,
528 // so it is probably a module compilation.
529 return getCurrentModule();
530 }
531}
532
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000533const FileEntry *Preprocessor::LookupFile(
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000534 SourceLocation FilenameLoc,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000535 StringRef Filename,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000536 bool isAngled,
537 const DirectoryLookup *FromDir,
Richard Smith25d50752014-10-20 00:15:49 +0000538 const FileEntry *FromFile,
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000539 const DirectoryLookup *&CurDir,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000540 SmallVectorImpl<char> *SearchPath,
Douglas Gregor97eec242011-09-15 22:00:41 +0000541 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000542 ModuleMap::KnownHeader *SuggestedModule,
Douglas Gregor8ad31c22011-11-20 17:46:46 +0000543 bool SkipCache) {
Will Wilson0fafd342013-12-27 19:46:16 +0000544 // If the header lookup mechanism may be relative to the current inclusion
545 // stack, record the parent #includes.
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000546 SmallVector<std::pair<const FileEntry *, const DirectoryEntry *>, 16>
547 Includers;
Richard Smith25d50752014-10-20 00:15:49 +0000548 if (!FromDir && !FromFile) {
Chris Lattnerd32480d2009-01-17 06:22:33 +0000549 FileID FID = getCurrentFileLexer()->getFileID();
Will Wilson0fafd342013-12-27 19:46:16 +0000550 const FileEntry *FileEnt = SourceMgr.getFileEntryForID(FID);
Mike Stump11289f42009-09-09 15:08:12 +0000551
Chris Lattner022923a2009-02-04 19:45:07 +0000552 // If there is no file entry associated with this file, it must be the
Richard Smith3c1a41a2014-12-02 00:08:08 +0000553 // predefines buffer or the module includes buffer. Any other file is not
554 // lexed with a normal lexer, so it won't be scanned for preprocessor
555 // directives.
556 //
557 // If we have the predefines buffer, resolve #include references (which come
558 // from the -include command line argument) from the current working
559 // directory instead of relative to the main file.
560 //
561 // If we have the module includes buffer, resolve #include references (which
562 // come from header declarations in the module map) relative to the module
563 // map file.
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000564 if (!FileEnt) {
Richard Smith3c1a41a2014-12-02 00:08:08 +0000565 if (FID == SourceMgr.getMainFileID() && MainFileDir)
566 Includers.push_back(std::make_pair(nullptr, MainFileDir));
567 else if ((FileEnt =
568 SourceMgr.getFileEntryForID(SourceMgr.getMainFileID())))
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000569 Includers.push_back(std::make_pair(FileEnt, FileMgr.getDirectory(".")));
570 } else {
571 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
572 }
Will Wilson0fafd342013-12-27 19:46:16 +0000573
574 // MSVC searches the current include stack from top to bottom for
575 // headers included by quoted include directives.
576 // See: http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx
Alp Tokerbfa39342014-01-14 12:51:41 +0000577 if (LangOpts.MSVCCompat && !isAngled) {
Will Wilson0fafd342013-12-27 19:46:16 +0000578 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
579 IncludeStackInfo &ISEntry = IncludeMacroStack[e - i - 1];
580 if (IsFileLexer(ISEntry))
581 if ((FileEnt = SourceMgr.getFileEntryForID(
582 ISEntry.ThePPLexer->getFileID())))
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000583 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
Will Wilson0fafd342013-12-27 19:46:16 +0000584 }
Chris Lattner022923a2009-02-04 19:45:07 +0000585 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000586 }
Mike Stump11289f42009-09-09 15:08:12 +0000587
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000588 CurDir = CurDirLookup;
Richard Smith25d50752014-10-20 00:15:49 +0000589
590 if (FromFile) {
591 // We're supposed to start looking from after a particular file. Search
592 // the include path until we find that file or run out of files.
593 const DirectoryLookup *TmpCurDir = CurDir;
594 const DirectoryLookup *TmpFromDir = nullptr;
595 while (const FileEntry *FE = HeaderInfo.LookupFile(
596 Filename, FilenameLoc, isAngled, TmpFromDir, TmpCurDir,
597 Includers, SearchPath, RelativePath, SuggestedModule,
598 SkipCache)) {
599 // Keep looking as if this file did a #include_next.
600 TmpFromDir = TmpCurDir;
601 ++TmpFromDir;
602 if (FE == FromFile) {
603 // Found it.
604 FromDir = TmpFromDir;
605 CurDir = TmpCurDir;
606 break;
607 }
608 }
609 }
610
611 // Do a standard file entry lookup.
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000612 const FileEntry *FE = HeaderInfo.LookupFile(
Will Wilson0fafd342013-12-27 19:46:16 +0000613 Filename, FilenameLoc, isAngled, FromDir, CurDir, Includers, SearchPath,
614 RelativePath, SuggestedModule, SkipCache);
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000615 if (FE) {
Daniel Jasper5c77e392014-03-14 14:53:17 +0000616 if (SuggestedModule && !LangOpts.AsmPreprocessor)
Daniel Jasper92669ee2013-12-20 12:09:36 +0000617 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
618 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000619 return FE;
620 }
Mike Stump11289f42009-09-09 15:08:12 +0000621
Will Wilson0fafd342013-12-27 19:46:16 +0000622 const FileEntry *CurFileEnt;
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000623 // Otherwise, see if this is a subframework header. If so, this is relative
624 // to one of the headers on the #include stack. Walk the list of the current
625 // headers on the #include stack and pass them to HeaderInfo.
Ted Kremenek6bc5f3e2008-11-20 16:19:53 +0000626 if (IsFileLexer()) {
Ben Langmuir71e1a642014-05-05 21:44:13 +0000627 if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID()))) {
Chandler Carruth3cc331a2011-03-16 18:34:36 +0000628 if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt,
Douglas Gregorf5f94522013-02-08 00:10:48 +0000629 SearchPath, RelativePath,
Ben Langmuir71e1a642014-05-05 21:44:13 +0000630 SuggestedModule))) {
631 if (SuggestedModule && !LangOpts.AsmPreprocessor)
632 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
633 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000634 return FE;
Ben Langmuir71e1a642014-05-05 21:44:13 +0000635 }
636 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000637 }
Mike Stump11289f42009-09-09 15:08:12 +0000638
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000639 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
640 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
Ted Kremenek6bc5f3e2008-11-20 16:19:53 +0000641 if (IsFileLexer(ISEntry)) {
Mike Stump11289f42009-09-09 15:08:12 +0000642 if ((CurFileEnt =
Ben Langmuir71e1a642014-05-05 21:44:13 +0000643 SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID()))) {
Manuel Klimek0c69fd22011-04-26 21:50:03 +0000644 if ((FE = HeaderInfo.LookupSubframeworkHeader(
Douglas Gregorf5f94522013-02-08 00:10:48 +0000645 Filename, CurFileEnt, SearchPath, RelativePath,
Ben Langmuir71e1a642014-05-05 21:44:13 +0000646 SuggestedModule))) {
647 if (SuggestedModule && !LangOpts.AsmPreprocessor)
648 HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
649 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000650 return FE;
Ben Langmuir71e1a642014-05-05 21:44:13 +0000651 }
652 }
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000653 }
654 }
Mike Stump11289f42009-09-09 15:08:12 +0000655
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000656 // Otherwise, we really couldn't find the file.
Craig Topperd2d442c2014-05-17 23:10:59 +0000657 return nullptr;
Chris Lattnerf7ad82d2008-03-09 04:17:44 +0000658}
659
Chris Lattnerf64b3522008-03-09 01:54:53 +0000660
661//===----------------------------------------------------------------------===//
662// Preprocessor Directive Handling.
663//===----------------------------------------------------------------------===//
664
David Blaikied5321242012-06-06 18:52:13 +0000665class Preprocessor::ResetMacroExpansionHelper {
666public:
667 ResetMacroExpansionHelper(Preprocessor *pp)
668 : PP(pp), save(pp->DisableMacroExpansion) {
669 if (pp->MacroExpansionInDirectivesOverride)
670 pp->DisableMacroExpansion = false;
671 }
672 ~ResetMacroExpansionHelper() {
673 PP->DisableMacroExpansion = save;
674 }
675private:
676 Preprocessor *PP;
677 bool save;
678};
679
Chris Lattnerf64b3522008-03-09 01:54:53 +0000680/// HandleDirective - This callback is invoked when the lexer sees a # token
Mike Stump11289f42009-09-09 15:08:12 +0000681/// at the start of a line. This consumes the directive, modifies the
Chris Lattnerf64b3522008-03-09 01:54:53 +0000682/// lexer/preprocessor state, and advances the lexer(s) so that the next token
683/// read is the correct one.
684void Preprocessor::HandleDirective(Token &Result) {
685 // FIXME: Traditional: # with whitespace before it not recognized by K&R?
Mike Stump11289f42009-09-09 15:08:12 +0000686
Chris Lattnerf64b3522008-03-09 01:54:53 +0000687 // We just parsed a # character at the start of a line, so we're in directive
688 // mode. Tell the lexer this so any newlines we see will be converted into an
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000689 // EOD token (which terminates the directive).
Ted Kremenek30cd88c2008-11-18 00:34:22 +0000690 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rosecb8a1ac2013-02-21 18:53:19 +0000691 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Mike Stump11289f42009-09-09 15:08:12 +0000692
Richard Trieu33a4b3d2013-06-12 21:20:57 +0000693 bool ImmediatelyAfterTopLevelIfndef =
694 CurPPLexer->MIOpt.getImmediatelyAfterTopLevelIfndef();
695 CurPPLexer->MIOpt.resetImmediatelyAfterTopLevelIfndef();
696
Chris Lattnerf64b3522008-03-09 01:54:53 +0000697 ++NumDirectives;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000698
Chris Lattnerf64b3522008-03-09 01:54:53 +0000699 // We are about to read a token. For the multiple-include optimization FA to
Mike Stump11289f42009-09-09 15:08:12 +0000700 // work, we have to remember if we had read any tokens *before* this
Chris Lattnerf64b3522008-03-09 01:54:53 +0000701 // pp-directive.
Chris Lattner8cf1f932009-12-14 04:54:40 +0000702 bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal();
Mike Stump11289f42009-09-09 15:08:12 +0000703
Chris Lattner2d17ab72009-03-18 21:00:25 +0000704 // Save the '#' token in case we need to return it later.
705 Token SavedHash = Result;
Mike Stump11289f42009-09-09 15:08:12 +0000706
Chris Lattnerf64b3522008-03-09 01:54:53 +0000707 // Read the next token, the directive flavor. This isn't expanded due to
708 // C99 6.10.3p8.
709 LexUnexpandedToken(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000710
Chris Lattnerf64b3522008-03-09 01:54:53 +0000711 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
712 // #define A(x) #x
713 // A(abc
714 // #warning blah
715 // def)
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000716 // If so, the user is relying on undefined behavior, emit a diagnostic. Do
717 // not support this for #include-like directives, since that can result in
718 // terrible diagnostics, and does not work in GCC.
719 if (InMacroArgs) {
720 if (IdentifierInfo *II = Result.getIdentifierInfo()) {
721 switch (II->getPPKeywordID()) {
722 case tok::pp_include:
723 case tok::pp_import:
724 case tok::pp_include_next:
725 case tok::pp___include_macros:
726 Diag(Result, diag::err_embedded_include) << II->getName();
727 DiscardUntilEndOfDirective();
728 return;
729 default:
730 break;
731 }
732 }
Chris Lattnerf64b3522008-03-09 01:54:53 +0000733 Diag(Result, diag::ext_embedded_directive);
Richard Smitheb3ce7c2011-12-16 22:50:01 +0000734 }
Mike Stump11289f42009-09-09 15:08:12 +0000735
David Blaikied5321242012-06-06 18:52:13 +0000736 // Temporarily enable macro expansion if set so
737 // and reset to previous state when returning from this function.
738 ResetMacroExpansionHelper helper(this);
739
Chris Lattnerf64b3522008-03-09 01:54:53 +0000740 switch (Result.getKind()) {
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000741 case tok::eod:
Chris Lattnerf64b3522008-03-09 01:54:53 +0000742 return; // null directive.
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000743 case tok::code_completion:
744 if (CodeComplete)
745 CodeComplete->CodeCompleteDirective(
746 CurPPLexer->getConditionalStackDepth() > 0);
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000747 setCodeCompletionReached();
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000748 return;
Chris Lattner76e68962009-01-26 06:19:46 +0000749 case tok::numeric_constant: // # 7 GNU line marker directive.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000750 if (getLangOpts().AsmPreprocessor)
Chris Lattner5eb8ae22009-03-18 20:41:10 +0000751 break; // # 4 is not a preprocessor directive in .S files.
Chris Lattner76e68962009-01-26 06:19:46 +0000752 return HandleDigitDirective(Result);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000753 default:
754 IdentifierInfo *II = Result.getIdentifierInfo();
Craig Topperd2d442c2014-05-17 23:10:59 +0000755 if (!II) break; // Not an identifier.
Mike Stump11289f42009-09-09 15:08:12 +0000756
Chris Lattnerf64b3522008-03-09 01:54:53 +0000757 // Ask what the preprocessor keyword ID is.
758 switch (II->getPPKeywordID()) {
759 default: break;
760 // C99 6.10.1 - Conditional Inclusion.
761 case tok::pp_if:
762 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
763 case tok::pp_ifdef:
764 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
765 case tok::pp_ifndef:
766 return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
767 case tok::pp_elif:
768 return HandleElifDirective(Result);
769 case tok::pp_else:
770 return HandleElseDirective(Result);
771 case tok::pp_endif:
772 return HandleEndifDirective(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000773
Chris Lattnerf64b3522008-03-09 01:54:53 +0000774 // C99 6.10.2 - Source File Inclusion.
775 case tok::pp_include:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000776 // Handle #include.
777 return HandleIncludeDirective(SavedHash.getLocation(), Result);
Chris Lattner14a7f392009-04-08 18:24:34 +0000778 case tok::pp___include_macros:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000779 // Handle -imacros.
780 return HandleIncludeMacrosDirective(SavedHash.getLocation(), Result);
Mike Stump11289f42009-09-09 15:08:12 +0000781
Chris Lattnerf64b3522008-03-09 01:54:53 +0000782 // C99 6.10.3 - Macro Replacement.
783 case tok::pp_define:
Richard Trieu33a4b3d2013-06-12 21:20:57 +0000784 return HandleDefineDirective(Result, ImmediatelyAfterTopLevelIfndef);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000785 case tok::pp_undef:
786 return HandleUndefDirective(Result);
787
788 // C99 6.10.4 - Line Control.
789 case tok::pp_line:
Chris Lattner100c65e2009-01-26 05:29:08 +0000790 return HandleLineDirective(Result);
Mike Stump11289f42009-09-09 15:08:12 +0000791
Chris Lattnerf64b3522008-03-09 01:54:53 +0000792 // C99 6.10.5 - Error Directive.
793 case tok::pp_error:
794 return HandleUserDiagnosticDirective(Result, false);
Mike Stump11289f42009-09-09 15:08:12 +0000795
Chris Lattnerf64b3522008-03-09 01:54:53 +0000796 // C99 6.10.6 - Pragma Directive.
797 case tok::pp_pragma:
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000798 return HandlePragmaDirective(SavedHash.getLocation(), PIK_HashPragma);
Mike Stump11289f42009-09-09 15:08:12 +0000799
Chris Lattnerf64b3522008-03-09 01:54:53 +0000800 // GNU Extensions.
801 case tok::pp_import:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000802 return HandleImportDirective(SavedHash.getLocation(), Result);
Chris Lattnerf64b3522008-03-09 01:54:53 +0000803 case tok::pp_include_next:
Douglas Gregor796d76a2010-10-20 22:00:55 +0000804 return HandleIncludeNextDirective(SavedHash.getLocation(), Result);
Mike Stump11289f42009-09-09 15:08:12 +0000805
Chris Lattnerf64b3522008-03-09 01:54:53 +0000806 case tok::pp_warning:
807 Diag(Result, diag::ext_pp_warning_directive);
808 return HandleUserDiagnosticDirective(Result, true);
809 case tok::pp_ident:
810 return HandleIdentSCCSDirective(Result);
811 case tok::pp_sccs:
812 return HandleIdentSCCSDirective(Result);
813 case tok::pp_assert:
814 //isExtension = true; // FIXME: implement #assert
815 break;
816 case tok::pp_unassert:
817 //isExtension = true; // FIXME: implement #unassert
818 break;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +0000819
Douglas Gregor663b48f2012-01-03 19:48:16 +0000820 case tok::pp___public_macro:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000821 if (getLangOpts().Modules)
Douglas Gregor0bf886d2012-01-03 18:24:14 +0000822 return HandleMacroPublicDirective(Result);
823 break;
824
Douglas Gregor663b48f2012-01-03 19:48:16 +0000825 case tok::pp___private_macro:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000826 if (getLangOpts().Modules)
Douglas Gregor0bf886d2012-01-03 18:24:14 +0000827 return HandleMacroPrivateDirective(Result);
828 break;
Chris Lattnerf64b3522008-03-09 01:54:53 +0000829 }
830 break;
831 }
Mike Stump11289f42009-09-09 15:08:12 +0000832
Chris Lattner2d17ab72009-03-18 21:00:25 +0000833 // If this is a .S file, treat unknown # directives as non-preprocessor
834 // directives. This is important because # may be a comment or introduce
835 // various pseudo-ops. Just return the # token and push back the following
836 // token to be lexed next time.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000837 if (getLangOpts().AsmPreprocessor) {
Daniel Dunbar48b4d1e2009-07-13 21:48:50 +0000838 Token *Toks = new Token[2];
Chris Lattner2d17ab72009-03-18 21:00:25 +0000839 // Return the # and the token after it.
Mike Stump11289f42009-09-09 15:08:12 +0000840 Toks[0] = SavedHash;
Chris Lattner2d17ab72009-03-18 21:00:25 +0000841 Toks[1] = Result;
Chris Lattner56f64c12011-01-06 05:01:51 +0000842
843 // If the second token is a hashhash token, then we need to translate it to
844 // unknown so the token lexer doesn't try to perform token pasting.
845 if (Result.is(tok::hashhash))
846 Toks[1].setKind(tok::unknown);
847
Chris Lattner2d17ab72009-03-18 21:00:25 +0000848 // Enter this token stream so that we re-lex the tokens. Make sure to
849 // enable macro expansion, in case the token after the # is an identifier
850 // that is expanded.
851 EnterTokenStream(Toks, 2, false, true);
852 return;
853 }
Mike Stump11289f42009-09-09 15:08:12 +0000854
Chris Lattnerf64b3522008-03-09 01:54:53 +0000855 // If we reached here, the preprocessing token is not valid!
856 Diag(Result, diag::err_pp_invalid_directive);
Mike Stump11289f42009-09-09 15:08:12 +0000857
Chris Lattnerf64b3522008-03-09 01:54:53 +0000858 // Read the rest of the PP line.
859 DiscardUntilEndOfDirective();
Mike Stump11289f42009-09-09 15:08:12 +0000860
Chris Lattnerf64b3522008-03-09 01:54:53 +0000861 // Okay, we're done parsing the directive.
862}
863
Chris Lattner76e68962009-01-26 06:19:46 +0000864/// GetLineValue - Convert a numeric token into an unsigned value, emitting
865/// Diagnostic DiagID if it is invalid, and returning the value in Val.
866static bool GetLineValue(Token &DigitTok, unsigned &Val,
Michael Ilsemane910cc82013-04-10 01:04:18 +0000867 unsigned DiagID, Preprocessor &PP,
868 bool IsGNULineDirective=false) {
Chris Lattner76e68962009-01-26 06:19:46 +0000869 if (DigitTok.isNot(tok::numeric_constant)) {
870 PP.Diag(DigitTok, DiagID);
Mike Stump11289f42009-09-09 15:08:12 +0000871
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000872 if (DigitTok.isNot(tok::eod))
Chris Lattner76e68962009-01-26 06:19:46 +0000873 PP.DiscardUntilEndOfDirective();
874 return true;
875 }
Mike Stump11289f42009-09-09 15:08:12 +0000876
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000877 SmallString<64> IntegerBuffer;
Chris Lattner76e68962009-01-26 06:19:46 +0000878 IntegerBuffer.resize(DigitTok.getLength());
879 const char *DigitTokBegin = &IntegerBuffer[0];
Douglas Gregordc970f02010-03-16 22:30:13 +0000880 bool Invalid = false;
881 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid);
882 if (Invalid)
883 return true;
884
Chris Lattnerd66f1722009-04-18 18:35:15 +0000885 // Verify that we have a simple digit-sequence, and compute the value. This
886 // is always a simple digit string computed in decimal, so we do this manually
887 // here.
888 Val = 0;
889 for (unsigned i = 0; i != ActualLength; ++i) {
Richard Smith7f2707a2013-09-26 18:13:20 +0000890 // C++1y [lex.fcon]p1:
891 // Optional separating single quotes in a digit-sequence are ignored
892 if (DigitTokBegin[i] == '\'')
893 continue;
894
Jordan Rosea7d03842013-02-08 22:30:41 +0000895 if (!isDigit(DigitTokBegin[i])) {
Chris Lattnerd66f1722009-04-18 18:35:15 +0000896 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i),
Michael Ilsemane910cc82013-04-10 01:04:18 +0000897 diag::err_pp_line_digit_sequence) << IsGNULineDirective;
Chris Lattnerd66f1722009-04-18 18:35:15 +0000898 PP.DiscardUntilEndOfDirective();
899 return true;
900 }
Mike Stump11289f42009-09-09 15:08:12 +0000901
Chris Lattnerd66f1722009-04-18 18:35:15 +0000902 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0');
903 if (NextVal < Val) { // overflow.
904 PP.Diag(DigitTok, DiagID);
905 PP.DiscardUntilEndOfDirective();
906 return true;
907 }
908 Val = NextVal;
Chris Lattner76e68962009-01-26 06:19:46 +0000909 }
Mike Stump11289f42009-09-09 15:08:12 +0000910
Fariborz Jahanian0638c152012-06-26 21:19:20 +0000911 if (DigitTokBegin[0] == '0' && Val)
Michael Ilsemane910cc82013-04-10 01:04:18 +0000912 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal)
913 << IsGNULineDirective;
Mike Stump11289f42009-09-09 15:08:12 +0000914
Chris Lattner76e68962009-01-26 06:19:46 +0000915 return false;
916}
917
James Dennettf6333ac2012-06-22 05:46:07 +0000918/// \brief Handle a \#line directive: C99 6.10.4.
919///
920/// The two acceptable forms are:
921/// \verbatim
Chris Lattner100c65e2009-01-26 05:29:08 +0000922/// # line digit-sequence
923/// # line digit-sequence "s-char-sequence"
James Dennettf6333ac2012-06-22 05:46:07 +0000924/// \endverbatim
Chris Lattner100c65e2009-01-26 05:29:08 +0000925void Preprocessor::HandleLineDirective(Token &Tok) {
926 // Read the line # and string argument. Per C99 6.10.4p5, these tokens are
927 // expanded.
928 Token DigitTok;
929 Lex(DigitTok);
930
Chris Lattner100c65e2009-01-26 05:29:08 +0000931 // Validate the number and convert it to an unsigned.
Chris Lattner76e68962009-01-26 06:19:46 +0000932 unsigned LineNo;
Chris Lattnerd66f1722009-04-18 18:35:15 +0000933 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
Chris Lattner100c65e2009-01-26 05:29:08 +0000934 return;
Fariborz Jahanian0638c152012-06-26 21:19:20 +0000935
936 if (LineNo == 0)
937 Diag(DigitTok, diag::ext_pp_line_zero);
Chris Lattner100c65e2009-01-26 05:29:08 +0000938
Chris Lattner76e68962009-01-26 06:19:46 +0000939 // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a
940 // number greater than 2147483647". C90 requires that the line # be <= 32767.
Eli Friedman192e0342011-10-10 23:35:28 +0000941 unsigned LineLimit = 32768U;
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000942 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Eli Friedman192e0342011-10-10 23:35:28 +0000943 LineLimit = 2147483648U;
Chris Lattner100c65e2009-01-26 05:29:08 +0000944 if (LineNo >= LineLimit)
945 Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit;
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000946 else if (LangOpts.CPlusPlus11 && LineNo >= 32768U)
Richard Smithacd4d3d2011-10-15 01:18:56 +0000947 Diag(DigitTok, diag::warn_cxx98_compat_pp_line_too_big);
Mike Stump11289f42009-09-09 15:08:12 +0000948
Chris Lattnerb5fba6f2009-01-26 07:57:50 +0000949 int FilenameID = -1;
Chris Lattner100c65e2009-01-26 05:29:08 +0000950 Token StrTok;
951 Lex(StrTok);
952
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000953 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
954 // string followed by eod.
955 if (StrTok.is(tok::eod))
Chris Lattner100c65e2009-01-26 05:29:08 +0000956 ; // ok
957 else if (StrTok.isNot(tok::string_literal)) {
958 Diag(StrTok, diag::err_pp_line_invalid_filename);
Richard Smithd67aea22012-03-06 03:21:47 +0000959 return DiscardUntilEndOfDirective();
960 } else if (StrTok.hasUDSuffix()) {
961 Diag(StrTok, diag::err_invalid_string_udl);
962 return DiscardUntilEndOfDirective();
Chris Lattner100c65e2009-01-26 05:29:08 +0000963 } else {
Chris Lattnerb5fba6f2009-01-26 07:57:50 +0000964 // Parse and validate the string, converting it into a unique ID.
Craig Topper9d5583e2014-06-26 04:58:39 +0000965 StringLiteralParser Literal(StrTok, *this);
Douglas Gregorfb65e592011-07-27 05:40:30 +0000966 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerb5fba6f2009-01-26 07:57:50 +0000967 if (Literal.hadError)
968 return DiscardUntilEndOfDirective();
969 if (Literal.Pascal) {
970 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
971 return DiscardUntilEndOfDirective();
972 }
Jay Foad9a6b0982011-06-21 15:13:30 +0000973 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump11289f42009-09-09 15:08:12 +0000974
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000975 // Verify that there is nothing after the string, other than EOD. Because
Chris Lattner0003c272009-04-17 23:30:53 +0000976 // of C99 6.10.4p5, macros that expand to empty tokens are ok.
977 CheckEndOfDirective("line", true);
Chris Lattner100c65e2009-01-26 05:29:08 +0000978 }
Mike Stump11289f42009-09-09 15:08:12 +0000979
Chris Lattner1eaa70a2009-02-03 21:52:55 +0000980 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID);
Mike Stump11289f42009-09-09 15:08:12 +0000981
Chris Lattner839150e2009-03-27 17:13:49 +0000982 if (Callbacks)
Chris Lattnerc745cec2010-04-14 04:28:50 +0000983 Callbacks->FileChanged(CurPPLexer->getSourceLocation(),
984 PPCallbacks::RenameFile,
Chris Lattner839150e2009-03-27 17:13:49 +0000985 SrcMgr::C_User);
Chris Lattner100c65e2009-01-26 05:29:08 +0000986}
987
Chris Lattner76e68962009-01-26 06:19:46 +0000988/// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line
989/// marker directive.
990static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit,
991 bool &IsSystemHeader, bool &IsExternCHeader,
992 Preprocessor &PP) {
993 unsigned FlagVal;
994 Token FlagTok;
995 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000996 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +0000997 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
998 return true;
999
1000 if (FlagVal == 1) {
1001 IsFileEntry = true;
Mike Stump11289f42009-09-09 15:08:12 +00001002
Chris Lattner76e68962009-01-26 06:19:46 +00001003 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001004 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001005 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1006 return true;
1007 } else if (FlagVal == 2) {
1008 IsFileExit = true;
Mike Stump11289f42009-09-09 15:08:12 +00001009
Chris Lattner1c967782009-02-04 06:25:26 +00001010 SourceManager &SM = PP.getSourceManager();
1011 // If we are leaving the current presumed file, check to make sure the
1012 // presumed include stack isn't empty!
1013 FileID CurFileID =
Chandler Carruthc7ca5212011-07-25 20:52:32 +00001014 SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first;
Chris Lattner1c967782009-02-04 06:25:26 +00001015 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
Douglas Gregor453b0122010-11-12 07:15:47 +00001016 if (PLoc.isInvalid())
1017 return true;
1018
Chris Lattner1c967782009-02-04 06:25:26 +00001019 // If there is no include loc (main file) or if the include loc is in a
1020 // different physical file, then we aren't in a "1" line marker flag region.
1021 SourceLocation IncLoc = PLoc.getIncludeLoc();
1022 if (IncLoc.isInvalid() ||
Chandler Carruthc7ca5212011-07-25 20:52:32 +00001023 SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) {
Chris Lattner1c967782009-02-04 06:25:26 +00001024 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop);
1025 PP.DiscardUntilEndOfDirective();
1026 return true;
1027 }
Mike Stump11289f42009-09-09 15:08:12 +00001028
Chris Lattner76e68962009-01-26 06:19:46 +00001029 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001030 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001031 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1032 return true;
1033 }
1034
1035 // We must have 3 if there are still flags.
1036 if (FlagVal != 3) {
1037 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001038 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001039 return true;
1040 }
Mike Stump11289f42009-09-09 15:08:12 +00001041
Chris Lattner76e68962009-01-26 06:19:46 +00001042 IsSystemHeader = true;
Mike Stump11289f42009-09-09 15:08:12 +00001043
Chris Lattner76e68962009-01-26 06:19:46 +00001044 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001045 if (FlagTok.is(tok::eod)) return false;
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001046 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
Chris Lattner76e68962009-01-26 06:19:46 +00001047 return true;
1048
1049 // We must have 4 if there is yet another flag.
1050 if (FlagVal != 4) {
1051 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001052 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001053 return true;
1054 }
Mike Stump11289f42009-09-09 15:08:12 +00001055
Chris Lattner76e68962009-01-26 06:19:46 +00001056 IsExternCHeader = true;
Mike Stump11289f42009-09-09 15:08:12 +00001057
Chris Lattner76e68962009-01-26 06:19:46 +00001058 PP.Lex(FlagTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001059 if (FlagTok.is(tok::eod)) return false;
Chris Lattner76e68962009-01-26 06:19:46 +00001060
1061 // There are no more valid flags here.
1062 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001063 PP.DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001064 return true;
1065}
1066
1067/// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is
1068/// one of the following forms:
1069///
1070/// # 42
Mike Stump11289f42009-09-09 15:08:12 +00001071/// # 42 "file" ('1' | '2')?
Chris Lattner76e68962009-01-26 06:19:46 +00001072/// # 42 "file" ('1' | '2')? '3' '4'?
1073///
1074void Preprocessor::HandleDigitDirective(Token &DigitTok) {
1075 // Validate the number and convert it to an unsigned. GNU does not have a
1076 // line # limit other than it fit in 32-bits.
1077 unsigned LineNo;
1078 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
Michael Ilsemane910cc82013-04-10 01:04:18 +00001079 *this, true))
Chris Lattner76e68962009-01-26 06:19:46 +00001080 return;
Mike Stump11289f42009-09-09 15:08:12 +00001081
Chris Lattner76e68962009-01-26 06:19:46 +00001082 Token StrTok;
1083 Lex(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +00001084
Chris Lattner76e68962009-01-26 06:19:46 +00001085 bool IsFileEntry = false, IsFileExit = false;
1086 bool IsSystemHeader = false, IsExternCHeader = false;
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001087 int FilenameID = -1;
1088
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001089 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1090 // string followed by eod.
1091 if (StrTok.is(tok::eod))
Chris Lattner76e68962009-01-26 06:19:46 +00001092 ; // ok
1093 else if (StrTok.isNot(tok::string_literal)) {
1094 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001095 return DiscardUntilEndOfDirective();
Richard Smithd67aea22012-03-06 03:21:47 +00001096 } else if (StrTok.hasUDSuffix()) {
1097 Diag(StrTok, diag::err_invalid_string_udl);
1098 return DiscardUntilEndOfDirective();
Chris Lattner76e68962009-01-26 06:19:46 +00001099 } else {
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001100 // Parse and validate the string, converting it into a unique ID.
Craig Topper9d5583e2014-06-26 04:58:39 +00001101 StringLiteralParser Literal(StrTok, *this);
Douglas Gregorfb65e592011-07-27 05:40:30 +00001102 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001103 if (Literal.hadError)
1104 return DiscardUntilEndOfDirective();
1105 if (Literal.Pascal) {
1106 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1107 return DiscardUntilEndOfDirective();
1108 }
Jay Foad9a6b0982011-06-21 15:13:30 +00001109 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump11289f42009-09-09 15:08:12 +00001110
Chris Lattner76e68962009-01-26 06:19:46 +00001111 // If a filename was present, read any flags that are present.
Mike Stump11289f42009-09-09 15:08:12 +00001112 if (ReadLineMarkerFlags(IsFileEntry, IsFileExit,
Chris Lattnerb5fba6f2009-01-26 07:57:50 +00001113 IsSystemHeader, IsExternCHeader, *this))
Chris Lattner76e68962009-01-26 06:19:46 +00001114 return;
Chris Lattner76e68962009-01-26 06:19:46 +00001115 }
Mike Stump11289f42009-09-09 15:08:12 +00001116
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001117 // Create a line note with this information.
1118 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID,
Mike Stump11289f42009-09-09 15:08:12 +00001119 IsFileEntry, IsFileExit,
Chris Lattner0a1a8d82009-02-04 05:21:58 +00001120 IsSystemHeader, IsExternCHeader);
Mike Stump11289f42009-09-09 15:08:12 +00001121
Chris Lattner839150e2009-03-27 17:13:49 +00001122 // If the preprocessor has callbacks installed, notify them of the #line
1123 // change. This is used so that the line marker comes out in -E mode for
1124 // example.
1125 if (Callbacks) {
1126 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile;
1127 if (IsFileEntry)
1128 Reason = PPCallbacks::EnterFile;
1129 else if (IsFileExit)
1130 Reason = PPCallbacks::ExitFile;
1131 SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User;
1132 if (IsExternCHeader)
1133 FileKind = SrcMgr::C_ExternCSystem;
1134 else if (IsSystemHeader)
1135 FileKind = SrcMgr::C_System;
Mike Stump11289f42009-09-09 15:08:12 +00001136
Chris Lattnerc745cec2010-04-14 04:28:50 +00001137 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
Chris Lattner839150e2009-03-27 17:13:49 +00001138 }
Chris Lattner76e68962009-01-26 06:19:46 +00001139}
1140
1141
Chris Lattner38d7fd22009-01-26 05:30:54 +00001142/// HandleUserDiagnosticDirective - Handle a #warning or #error directive.
1143///
Mike Stump11289f42009-09-09 15:08:12 +00001144void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001145 bool isWarning) {
Chris Lattner38d7fd22009-01-26 05:30:54 +00001146 // PTH doesn't emit #warning or #error directives.
1147 if (CurPTHLexer)
Chris Lattner100c65e2009-01-26 05:29:08 +00001148 return CurPTHLexer->DiscardToEndOfLine();
1149
Chris Lattnerf64b3522008-03-09 01:54:53 +00001150 // Read the rest of the line raw. We do this because we don't want macros
1151 // to be expanded and we don't require that the tokens be valid preprocessing
1152 // tokens. For example, this is allowed: "#warning ` 'foo". GCC does
1153 // collapse multiple consequtive white space between tokens, but this isn't
1154 // specified by the standard.
Benjamin Kramere5fbc6c2012-05-18 19:32:16 +00001155 SmallString<128> Message;
1156 CurLexer->ReadToEndOfLine(&Message);
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001157
1158 // Find the first non-whitespace character, so that we can make the
1159 // diagnostic more succinct.
Benjamin Kramere5fbc6c2012-05-18 19:32:16 +00001160 StringRef Msg = Message.str().ltrim(" ");
1161
Chris Lattner100c65e2009-01-26 05:29:08 +00001162 if (isWarning)
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001163 Diag(Tok, diag::pp_hash_warning) << Msg;
Chris Lattner100c65e2009-01-26 05:29:08 +00001164 else
Ted Kremenek7f4bd162012-02-02 00:16:13 +00001165 Diag(Tok, diag::err_pp_hash_error) << Msg;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001166}
1167
1168/// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
1169///
1170void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
1171 // Yes, this directive is an extension.
1172 Diag(Tok, diag::ext_pp_ident_directive);
Mike Stump11289f42009-09-09 15:08:12 +00001173
Chris Lattnerf64b3522008-03-09 01:54:53 +00001174 // Read the string argument.
1175 Token StrTok;
1176 Lex(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +00001177
Chris Lattnerf64b3522008-03-09 01:54:53 +00001178 // If the token kind isn't a string, it's a malformed directive.
1179 if (StrTok.isNot(tok::string_literal) &&
Chris Lattner907dfe92008-11-18 07:59:24 +00001180 StrTok.isNot(tok::wide_string_literal)) {
1181 Diag(StrTok, diag::err_pp_malformed_ident);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001182 if (StrTok.isNot(tok::eod))
Chris Lattner38d7fd22009-01-26 05:30:54 +00001183 DiscardUntilEndOfDirective();
Chris Lattner907dfe92008-11-18 07:59:24 +00001184 return;
1185 }
Mike Stump11289f42009-09-09 15:08:12 +00001186
Richard Smithd67aea22012-03-06 03:21:47 +00001187 if (StrTok.hasUDSuffix()) {
1188 Diag(StrTok, diag::err_invalid_string_udl);
1189 return DiscardUntilEndOfDirective();
1190 }
1191
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001192 // Verify that there is nothing after the string, other than EOD.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00001193 CheckEndOfDirective("ident");
Chris Lattnerf64b3522008-03-09 01:54:53 +00001194
Douglas Gregordc970f02010-03-16 22:30:13 +00001195 if (Callbacks) {
1196 bool Invalid = false;
1197 std::string Str = getSpelling(StrTok, &Invalid);
1198 if (!Invalid)
1199 Callbacks->Ident(Tok.getLocation(), Str);
1200 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001201}
1202
Douglas Gregor0bf886d2012-01-03 18:24:14 +00001203/// \brief Handle a #public directive.
1204void Preprocessor::HandleMacroPublicDirective(Token &Tok) {
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001205 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001206 ReadMacroName(MacroNameTok, MU_Undef);
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001207
1208 // Error reading macro name? If so, diagnostic already issued.
1209 if (MacroNameTok.is(tok::eod))
1210 return;
1211
Douglas Gregor663b48f2012-01-03 19:48:16 +00001212 // Check to see if this is the last token on the #__public_macro line.
1213 CheckEndOfDirective("__public_macro");
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001214
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001215 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001216 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001217 MacroDirective *MD = getMacroDirective(II);
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001218
1219 // If the macro is not defined, this is an error.
Craig Topperd2d442c2014-05-17 23:10:59 +00001220 if (!MD) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001221 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001222 return;
1223 }
1224
1225 // Note that this macro has now been exported.
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00001226 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1227 MacroNameTok.getLocation(), /*IsPublic=*/true));
Douglas Gregorebf00492011-10-17 15:32:29 +00001228}
1229
Douglas Gregor0bf886d2012-01-03 18:24:14 +00001230/// \brief Handle a #private directive.
Douglas Gregorebf00492011-10-17 15:32:29 +00001231void Preprocessor::HandleMacroPrivateDirective(Token &Tok) {
1232 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001233 ReadMacroName(MacroNameTok, MU_Undef);
Douglas Gregorebf00492011-10-17 15:32:29 +00001234
1235 // Error reading macro name? If so, diagnostic already issued.
1236 if (MacroNameTok.is(tok::eod))
1237 return;
1238
Douglas Gregor663b48f2012-01-03 19:48:16 +00001239 // Check to see if this is the last token on the #__private_macro line.
1240 CheckEndOfDirective("__private_macro");
Douglas Gregorebf00492011-10-17 15:32:29 +00001241
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001242 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregorebf00492011-10-17 15:32:29 +00001243 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001244 MacroDirective *MD = getMacroDirective(II);
Douglas Gregorebf00492011-10-17 15:32:29 +00001245
1246 // If the macro is not defined, this is an error.
Craig Topperd2d442c2014-05-17 23:10:59 +00001247 if (!MD) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001248 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregorebf00492011-10-17 15:32:29 +00001249 return;
1250 }
1251
1252 // Note that this macro has now been marked private.
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00001253 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1254 MacroNameTok.getLocation(), /*IsPublic=*/false));
Douglas Gregor4a69c2e2011-09-01 17:04:32 +00001255}
1256
Chris Lattnerf64b3522008-03-09 01:54:53 +00001257//===----------------------------------------------------------------------===//
1258// Preprocessor Include Directive Handling.
1259//===----------------------------------------------------------------------===//
1260
1261/// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
James Dennettf6333ac2012-06-22 05:46:07 +00001262/// checked and spelled filename, e.g. as an operand of \#include. This returns
Chris Lattnerf64b3522008-03-09 01:54:53 +00001263/// true if the input filename was in <>'s or false if it were in ""'s. The
1264/// caller is expected to provide a buffer that is large enough to hold the
1265/// spelling of the filename, but is also expected to handle the case when
1266/// this method decides to use a different buffer.
1267bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001268 StringRef &Buffer) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001269 // Get the text form of the filename.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001270 assert(!Buffer.empty() && "Can't have tokens with empty spellings!");
Mike Stump11289f42009-09-09 15:08:12 +00001271
Chris Lattnerf64b3522008-03-09 01:54:53 +00001272 // Make sure the filename is <x> or "x".
1273 bool isAngled;
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001274 if (Buffer[0] == '<') {
1275 if (Buffer.back() != '>') {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001276 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001277 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001278 return true;
1279 }
1280 isAngled = true;
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001281 } else if (Buffer[0] == '"') {
1282 if (Buffer.back() != '"') {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001283 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001284 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001285 return true;
1286 }
1287 isAngled = false;
1288 } else {
1289 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001290 Buffer = StringRef();
Chris Lattnerf64b3522008-03-09 01:54:53 +00001291 return true;
1292 }
Mike Stump11289f42009-09-09 15:08:12 +00001293
Chris Lattnerf64b3522008-03-09 01:54:53 +00001294 // Diagnose #include "" as invalid.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001295 if (Buffer.size() <= 2) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001296 Diag(Loc, diag::err_pp_empty_filename);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001297 Buffer = StringRef();
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001298 return true;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001299 }
Mike Stump11289f42009-09-09 15:08:12 +00001300
Chris Lattnerf64b3522008-03-09 01:54:53 +00001301 // Skip the brackets.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001302 Buffer = Buffer.substr(1, Buffer.size()-2);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001303 return isAngled;
1304}
1305
James Dennett4a4f72d2013-11-27 01:27:40 +00001306// \brief Handle cases where the \#include name is expanded from a macro
1307// as multiple tokens, which need to be glued together.
1308//
1309// This occurs for code like:
1310// \code
1311// \#define FOO <a/b.h>
1312// \#include FOO
1313// \endcode
1314// because in this case, "<a/b.h>" is returned as 7 tokens, not one.
1315//
1316// This code concatenates and consumes tokens up to the '>' token. It returns
1317// false if the > was found, otherwise it returns true if it finds and consumes
1318// the EOD marker.
1319bool Preprocessor::ConcatenateIncludeName(SmallString<128> &FilenameBuffer,
Douglas Gregor796d76a2010-10-20 22:00:55 +00001320 SourceLocation &End) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001321 Token CurTok;
Mike Stump11289f42009-09-09 15:08:12 +00001322
John Thompsonb5353522009-10-30 13:49:06 +00001323 Lex(CurTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001324 while (CurTok.isNot(tok::eod)) {
Douglas Gregor796d76a2010-10-20 22:00:55 +00001325 End = CurTok.getLocation();
1326
Douglas Gregor9c7bd2f2010-12-09 23:35:36 +00001327 // FIXME: Provide code completion for #includes.
1328 if (CurTok.is(tok::code_completion)) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +00001329 setCodeCompletionReached();
Douglas Gregor9c7bd2f2010-12-09 23:35:36 +00001330 Lex(CurTok);
1331 continue;
1332 }
1333
Chris Lattnerf64b3522008-03-09 01:54:53 +00001334 // Append the spelling of this token to the buffer. If there was a space
1335 // before it, add it now.
1336 if (CurTok.hasLeadingSpace())
1337 FilenameBuffer.push_back(' ');
Mike Stump11289f42009-09-09 15:08:12 +00001338
Chris Lattnerf64b3522008-03-09 01:54:53 +00001339 // Get the spelling of the token, directly into FilenameBuffer if possible.
1340 unsigned PreAppendSize = FilenameBuffer.size();
1341 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
Mike Stump11289f42009-09-09 15:08:12 +00001342
Chris Lattnerf64b3522008-03-09 01:54:53 +00001343 const char *BufPtr = &FilenameBuffer[PreAppendSize];
John Thompsonb5353522009-10-30 13:49:06 +00001344 unsigned ActualLen = getSpelling(CurTok, BufPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001345
Chris Lattnerf64b3522008-03-09 01:54:53 +00001346 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1347 if (BufPtr != &FilenameBuffer[PreAppendSize])
1348 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
Mike Stump11289f42009-09-09 15:08:12 +00001349
Chris Lattnerf64b3522008-03-09 01:54:53 +00001350 // Resize FilenameBuffer to the correct size.
1351 if (CurTok.getLength() != ActualLen)
1352 FilenameBuffer.resize(PreAppendSize+ActualLen);
Mike Stump11289f42009-09-09 15:08:12 +00001353
Chris Lattnerf64b3522008-03-09 01:54:53 +00001354 // If we found the '>' marker, return success.
1355 if (CurTok.is(tok::greater))
1356 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001357
John Thompsonb5353522009-10-30 13:49:06 +00001358 Lex(CurTok);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001359 }
1360
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001361 // If we hit the eod marker, emit an error and return true so that the caller
1362 // knows the EOD has been read.
John Thompsonb5353522009-10-30 13:49:06 +00001363 Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001364 return true;
1365}
1366
Richard Smith34f30512013-11-23 04:06:09 +00001367/// \brief Push a token onto the token stream containing an annotation.
1368static void EnterAnnotationToken(Preprocessor &PP,
1369 SourceLocation Begin, SourceLocation End,
1370 tok::TokenKind Kind, void *AnnotationVal) {
1371 Token *Tok = new Token[1];
1372 Tok[0].startToken();
1373 Tok[0].setKind(Kind);
1374 Tok[0].setLocation(Begin);
1375 Tok[0].setAnnotationEndLoc(End);
1376 Tok[0].setAnnotationValue(AnnotationVal);
1377 PP.EnterTokenStream(Tok, 1, true, true);
1378}
1379
James Dennettf6333ac2012-06-22 05:46:07 +00001380/// HandleIncludeDirective - The "\#include" tokens have just been read, read
1381/// the file to be included from the lexer, then include it! This is a common
1382/// routine with functionality shared between \#include, \#include_next and
1383/// \#import. LookupFrom is set when this is a \#include_next directive, it
Mike Stump11289f42009-09-09 15:08:12 +00001384/// specifies the file to start searching from.
Douglas Gregor796d76a2010-10-20 22:00:55 +00001385void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc,
1386 Token &IncludeTok,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001387 const DirectoryLookup *LookupFrom,
Richard Smith25d50752014-10-20 00:15:49 +00001388 const FileEntry *LookupFromFile,
Chris Lattnerf64b3522008-03-09 01:54:53 +00001389 bool isImport) {
1390
1391 Token FilenameTok;
Ted Kremenek30cd88c2008-11-18 00:34:22 +00001392 CurPPLexer->LexIncludeFilename(FilenameTok);
Mike Stump11289f42009-09-09 15:08:12 +00001393
Chris Lattnerf64b3522008-03-09 01:54:53 +00001394 // Reserve a buffer to get the spelling.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001395 SmallString<128> FilenameBuffer;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001396 StringRef Filename;
Douglas Gregor796d76a2010-10-20 22:00:55 +00001397 SourceLocation End;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001398 SourceLocation CharEnd; // the end of this directive, in characters
Douglas Gregor796d76a2010-10-20 22:00:55 +00001399
Chris Lattnerf64b3522008-03-09 01:54:53 +00001400 switch (FilenameTok.getKind()) {
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001401 case tok::eod:
1402 // If the token kind is EOD, the error has already been diagnosed.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001403 return;
Mike Stump11289f42009-09-09 15:08:12 +00001404
Chris Lattnerf64b3522008-03-09 01:54:53 +00001405 case tok::angle_string_literal:
Benjamin Kramer0a1abd42010-02-27 13:44:12 +00001406 case tok::string_literal:
1407 Filename = getSpelling(FilenameTok, FilenameBuffer);
Douglas Gregor796d76a2010-10-20 22:00:55 +00001408 End = FilenameTok.getLocation();
Argyrios Kyrtzidis2edbc862012-11-01 17:52:58 +00001409 CharEnd = End.getLocWithOffset(FilenameTok.getLength());
Chris Lattnerf64b3522008-03-09 01:54:53 +00001410 break;
Mike Stump11289f42009-09-09 15:08:12 +00001411
Chris Lattnerf64b3522008-03-09 01:54:53 +00001412 case tok::less:
1413 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1414 // case, glue the tokens together into FilenameBuffer and interpret those.
1415 FilenameBuffer.push_back('<');
Douglas Gregor796d76a2010-10-20 22:00:55 +00001416 if (ConcatenateIncludeName(FilenameBuffer, End))
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001417 return; // Found <eod> but no ">"? Diagnostic already emitted.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001418 Filename = FilenameBuffer.str();
Argyrios Kyrtzidis2edbc862012-11-01 17:52:58 +00001419 CharEnd = End.getLocWithOffset(1);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001420 break;
1421 default:
1422 Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1423 DiscardUntilEndOfDirective();
1424 return;
1425 }
Mike Stump11289f42009-09-09 15:08:12 +00001426
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001427 CharSourceRange FilenameRange
1428 = CharSourceRange::getCharRange(FilenameTok.getLocation(), CharEnd);
Aaron Ballman611306e2012-03-02 22:51:54 +00001429 StringRef OriginalFilename = Filename;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001430 bool isAngled =
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001431 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001432 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1433 // error.
Chris Lattnerd081f8c2010-01-10 01:35:12 +00001434 if (Filename.empty()) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001435 DiscardUntilEndOfDirective();
1436 return;
1437 }
Mike Stump11289f42009-09-09 15:08:12 +00001438
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001439 // Verify that there is nothing after the filename, other than EOD. Note that
Chris Lattnerb40289b2009-04-17 23:56:52 +00001440 // we allow macros that expand to nothing after the filename, because this
1441 // falls into the category of "#include pp-tokens new-line" specified in
1442 // C99 6.10.2p4.
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001443 CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001444
1445 // Check that we don't have infinite #include recursion.
Chris Lattner907dfe92008-11-18 07:59:24 +00001446 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
1447 Diag(FilenameTok, diag::err_pp_include_too_deep);
1448 return;
1449 }
Mike Stump11289f42009-09-09 15:08:12 +00001450
John McCall32f5fe12011-09-30 05:12:12 +00001451 // Complain about attempts to #include files in an audit pragma.
1452 if (PragmaARCCFCodeAuditedLoc.isValid()) {
1453 Diag(HashLoc, diag::err_pp_include_in_arc_cf_code_audited);
1454 Diag(PragmaARCCFCodeAuditedLoc, diag::note_pragma_entered_here);
1455
1456 // Immediately leave the pragma.
1457 PragmaARCCFCodeAuditedLoc = SourceLocation();
1458 }
1459
Aaron Ballman611306e2012-03-02 22:51:54 +00001460 if (HeaderInfo.HasIncludeAliasMap()) {
1461 // Map the filename with the brackets still attached. If the name doesn't
1462 // map to anything, fall back on the filename we've already gotten the
1463 // spelling for.
1464 StringRef NewName = HeaderInfo.MapHeaderToIncludeAlias(OriginalFilename);
1465 if (!NewName.empty())
1466 Filename = NewName;
1467 }
1468
Chris Lattnerf64b3522008-03-09 01:54:53 +00001469 // Search include directories.
1470 const DirectoryLookup *CurDir;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001471 SmallString<1024> SearchPath;
1472 SmallString<1024> RelativePath;
Chandler Carruth3cc331a2011-03-16 18:34:36 +00001473 // We get the raw path only if we have 'Callbacks' to which we later pass
1474 // the path.
Lawrence Crowlb53e5482013-06-20 21:14:14 +00001475 ModuleMap::KnownHeader SuggestedModule;
1476 SourceLocation FilenameLoc = FilenameTok.getLocation();
Saleem Abdulrasool729b7d32014-03-12 02:26:08 +00001477 SmallString<128> NormalizedPath;
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001478 if (LangOpts.MSVCCompat) {
1479 NormalizedPath = Filename.str();
Yaron Keren1801d1b2014-08-09 18:13:01 +00001480#ifndef LLVM_ON_WIN32
Rafael Espindolaf6002232014-08-08 21:31:04 +00001481 llvm::sys::path::native(NormalizedPath);
Yaron Keren1801d1b2014-08-09 18:13:01 +00001482#endif
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001483 }
Chandler Carruth3cc331a2011-03-16 18:34:36 +00001484 const FileEntry *File = LookupFile(
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001485 FilenameLoc, LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename,
Richard Smith25d50752014-10-20 00:15:49 +00001486 isAngled, LookupFrom, LookupFromFile, CurDir,
1487 Callbacks ? &SearchPath : nullptr, Callbacks ? &RelativePath : nullptr,
Craig Topperd2d442c2014-05-17 23:10:59 +00001488 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule : nullptr);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001489
Douglas Gregor11729f02011-11-30 18:12:06 +00001490 if (Callbacks) {
1491 if (!File) {
1492 // Give the clients a chance to recover.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001493 SmallString<128> RecoveryPath;
Douglas Gregor11729f02011-11-30 18:12:06 +00001494 if (Callbacks->FileNotFound(Filename, RecoveryPath)) {
1495 if (const DirectoryEntry *DE = FileMgr.getDirectory(RecoveryPath)) {
1496 // Add the recovery path to the list of search paths.
Daniel Dunbarae4feb62013-01-25 01:50:28 +00001497 DirectoryLookup DL(DE, SrcMgr::C_User, false);
Douglas Gregor11729f02011-11-30 18:12:06 +00001498 HeaderInfo.AddSearchPath(DL, isAngled);
1499
1500 // Try the lookup again, skipping the cache.
Richard Smith25d50752014-10-20 00:15:49 +00001501 File = LookupFile(
1502 FilenameLoc,
1503 LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, isAngled,
1504 LookupFrom, LookupFromFile, CurDir, nullptr, nullptr,
1505 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1506 : nullptr,
1507 /*SkipCache*/ true);
Douglas Gregor11729f02011-11-30 18:12:06 +00001508 }
1509 }
1510 }
1511
Daniel Jasper07e6c402013-08-05 20:26:17 +00001512 if (!SuggestedModule || !getLangOpts().Modules) {
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001513 // Notify the callback object that we've seen an inclusion directive.
Saleem Abdulrasool19803412014-03-11 22:41:45 +00001514 Callbacks->InclusionDirective(HashLoc, IncludeTok,
1515 LangOpts.MSVCCompat ? NormalizedPath.c_str()
1516 : Filename,
1517 isAngled, FilenameRange, File, SearchPath,
Craig Topperd2d442c2014-05-17 23:10:59 +00001518 RelativePath, /*ImportedModule=*/nullptr);
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001519 }
Douglas Gregor11729f02011-11-30 18:12:06 +00001520 }
Craig Topperd2d442c2014-05-17 23:10:59 +00001521
1522 if (!File) {
Aaron Ballman8f94ac62012-07-17 23:19:16 +00001523 if (!SuppressIncludeNotFoundError) {
1524 // If the file could not be located and it was included via angle
1525 // brackets, we can attempt a lookup as though it were a quoted path to
1526 // provide the user with a possible fixit.
1527 if (isAngled) {
Daniel Jasper07e6c402013-08-05 20:26:17 +00001528 File = LookupFile(
Richard Smith25d50752014-10-20 00:15:49 +00001529 FilenameLoc,
1530 LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, false,
1531 LookupFrom, LookupFromFile, CurDir,
1532 Callbacks ? &SearchPath : nullptr,
Craig Topperd2d442c2014-05-17 23:10:59 +00001533 Callbacks ? &RelativePath : nullptr,
1534 HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1535 : nullptr);
Aaron Ballman8f94ac62012-07-17 23:19:16 +00001536 if (File) {
1537 SourceRange Range(FilenameTok.getLocation(), CharEnd);
1538 Diag(FilenameTok, diag::err_pp_file_not_found_not_fatal) <<
1539 Filename <<
1540 FixItHint::CreateReplacement(Range, "\"" + Filename.str() + "\"");
1541 }
1542 }
1543 // If the file is still not found, just go with the vanilla diagnostic
1544 if (!File)
1545 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
1546 }
1547 if (!File)
1548 return;
Douglas Gregor11729f02011-11-30 18:12:06 +00001549 }
1550
Douglas Gregor97eec242011-09-15 22:00:41 +00001551 // If we are supposed to import a module rather than including the header,
1552 // do so now.
Ben Langmuirb537a3a2014-07-23 15:30:23 +00001553 if (SuggestedModule && getLangOpts().Modules &&
1554 SuggestedModule.getModule()->getTopLevelModuleName() !=
1555 getLangOpts().ImplementationOfModule) {
Douglas Gregor71944202011-11-30 00:36:36 +00001556 // Compute the module access path corresponding to this module.
1557 // FIXME: Should we have a second loadModule() overload to avoid this
1558 // extra lookup step?
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001559 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
Lawrence Crowlb53e5482013-06-20 21:14:14 +00001560 for (Module *Mod = SuggestedModule.getModule(); Mod; Mod = Mod->Parent)
Douglas Gregor71944202011-11-30 00:36:36 +00001561 Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name),
1562 FilenameTok.getLocation()));
1563 std::reverse(Path.begin(), Path.end());
1564
Douglas Gregor41e115a2011-11-30 18:02:36 +00001565 // Warn that we're replacing the include/import with a module import.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00001566 SmallString<128> PathString;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001567 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
1568 if (I)
1569 PathString += '.';
1570 PathString += Path[I].first->getName();
1571 }
1572 int IncludeKind = 0;
1573
1574 switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
1575 case tok::pp_include:
1576 IncludeKind = 0;
1577 break;
1578
1579 case tok::pp_import:
1580 IncludeKind = 1;
1581 break;
1582
Douglas Gregor4401fbe2011-11-30 18:03:26 +00001583 case tok::pp_include_next:
1584 IncludeKind = 2;
1585 break;
Douglas Gregor41e115a2011-11-30 18:02:36 +00001586
1587 case tok::pp___include_macros:
1588 IncludeKind = 3;
1589 break;
1590
1591 default:
1592 llvm_unreachable("unknown include directive kind");
Douglas Gregor41e115a2011-11-30 18:02:36 +00001593 }
1594
Douglas Gregor2537a362011-12-08 17:01:29 +00001595 // Determine whether we are actually building the module that this
1596 // include directive maps to.
1597 bool BuildingImportedModule
David Blaikiebbafb8a2012-03-11 07:00:24 +00001598 = Path[0].first->getName() == getLangOpts().CurrentModule;
Richard Smith34f30512013-11-23 04:06:09 +00001599
David Blaikiebbafb8a2012-03-11 07:00:24 +00001600 if (!BuildingImportedModule && getLangOpts().ObjC2) {
Douglas Gregor2537a362011-12-08 17:01:29 +00001601 // If we're not building the imported module, warn that we're going
1602 // to automatically turn this inclusion directive into a module import.
Douglas Gregorda82e702012-01-03 19:32:59 +00001603 // We only do this in Objective-C, where we have a module-import syntax.
Douglas Gregor2537a362011-12-08 17:01:29 +00001604 CharSourceRange ReplaceRange(SourceRange(HashLoc, CharEnd),
1605 /*IsTokenRange=*/false);
1606 Diag(HashLoc, diag::warn_auto_module_import)
1607 << IncludeKind << PathString
1608 << FixItHint::CreateReplacement(ReplaceRange,
Douglas Gregorc50d4922012-12-11 22:11:52 +00001609 "@import " + PathString.str().str() + ";");
Douglas Gregor2537a362011-12-08 17:01:29 +00001610 }
Douglas Gregor41e115a2011-11-30 18:02:36 +00001611
Richard Smithce587f52013-11-15 04:24:58 +00001612 // Load the module. Only make macros visible. We'll make the declarations
1613 // visible when the parser gets here.
1614 Module::NameVisibilityKind Visibility = Module::MacrosVisible;
Douglas Gregor7a626572012-11-29 23:55:25 +00001615 ModuleLoadResult Imported
Douglas Gregor98a52db2011-12-20 00:28:52 +00001616 = TheModuleLoader.loadModule(IncludeTok.getLocation(), Path, Visibility,
1617 /*IsIncludeDirective=*/true);
Craig Topperd2d442c2014-05-17 23:10:59 +00001618 assert((Imported == nullptr || Imported == SuggestedModule.getModule()) &&
Argyrios Kyrtzidis051b4432012-09-29 01:06:01 +00001619 "the imported module is different than the suggested one");
Argyrios Kyrtzidisdc9fdaf2013-05-24 05:44:08 +00001620
1621 if (!Imported && hadModuleLoaderFatalFailure()) {
1622 // With a fatal failure in the module loader, we abort parsing.
1623 Token &Result = IncludeTok;
1624 if (CurLexer) {
1625 Result.startToken();
1626 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
1627 CurLexer->cutOffLexing();
1628 } else {
1629 assert(CurPTHLexer && "#include but no current lexer set!");
1630 CurPTHLexer->getEOF(Result);
1631 }
1632 return;
1633 }
Richard Smithce587f52013-11-15 04:24:58 +00001634
Douglas Gregor2537a362011-12-08 17:01:29 +00001635 // If this header isn't part of the module we're building, we're done.
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001636 if (!BuildingImportedModule && Imported) {
1637 if (Callbacks) {
1638 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1639 FilenameRange, File,
1640 SearchPath, RelativePath, Imported);
1641 }
Richard Smithce587f52013-11-15 04:24:58 +00001642
1643 if (IncludeKind != 3) {
1644 // Let the parser know that we hit a module import, and it should
1645 // make the module visible.
1646 // FIXME: Produce this as the current token directly, rather than
1647 // allocating a new token for it.
Richard Smith34f30512013-11-23 04:06:09 +00001648 EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_include,
1649 Imported);
Richard Smithce587f52013-11-15 04:24:58 +00001650 }
Douglas Gregor2537a362011-12-08 17:01:29 +00001651 return;
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001652 }
Douglas Gregor7a626572012-11-29 23:55:25 +00001653
1654 // If we failed to find a submodule that we expected to find, we can
1655 // continue. Otherwise, there's an error in the included file, so we
1656 // don't want to include it.
1657 if (!BuildingImportedModule && !Imported.isMissingExpected()) {
1658 return;
1659 }
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +00001660 }
1661
1662 if (Callbacks && SuggestedModule) {
1663 // We didn't notify the callback object that we've seen an inclusion
1664 // directive before. Now that we are parsing the include normally and not
1665 // turning it to a module import, notify the callback object.
1666 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1667 FilenameRange, File,
1668 SearchPath, RelativePath,
Craig Topperd2d442c2014-05-17 23:10:59 +00001669 /*ImportedModule=*/nullptr);
Douglas Gregor97eec242011-09-15 22:00:41 +00001670 }
1671
Chris Lattnerc88a23e2008-09-26 20:12:23 +00001672 // The #included file will be considered to be a system header if either it is
1673 // in a system include directory, or if the #includer is a system include
1674 // header.
Mike Stump11289f42009-09-09 15:08:12 +00001675 SrcMgr::CharacteristicKind FileCharacter =
Chris Lattnerb03dc762008-09-26 21:18:42 +00001676 std::max(HeaderInfo.getFileDirFlavor(File),
Chris Lattnerc0334162009-01-19 07:59:15 +00001677 SourceMgr.getFileCharacteristic(FilenameTok.getLocation()));
Mike Stump11289f42009-09-09 15:08:12 +00001678
Chris Lattner72286d62010-04-19 20:44:31 +00001679 // Ask HeaderInfo if we should enter this #include file. If not, #including
1680 // this file will have no effect.
1681 if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) {
Chris Lattnerfb24a3a2010-04-20 20:35:58 +00001682 if (Callbacks)
Chris Lattner72286d62010-04-19 20:44:31 +00001683 Callbacks->FileSkipped(*File, FilenameTok, FileCharacter);
Chris Lattner72286d62010-04-19 20:44:31 +00001684 return;
1685 }
1686
Chris Lattnerf64b3522008-03-09 01:54:53 +00001687 // Look up the file, create a File ID for it.
Argyrios Kyrtzidisa9564502012-03-27 18:47:48 +00001688 SourceLocation IncludePos = End;
1689 // If the filename string was the result of macro expansions, set the include
1690 // position on the file where it will be included and after the expansions.
1691 if (IncludePos.isMacroID())
1692 IncludePos = SourceMgr.getExpansionRange(IncludePos).second;
1693 FileID FID = SourceMgr.createFileID(File, IncludePos, FileCharacter);
Peter Collingbourned395b932011-06-30 16:41:03 +00001694 assert(!FID.isInvalid() && "Expected valid file ID");
Chris Lattnerf64b3522008-03-09 01:54:53 +00001695
Richard Smith34f30512013-11-23 04:06:09 +00001696 // Determine if we're switching to building a new submodule, and which one.
1697 ModuleMap::KnownHeader BuildingModule;
1698 if (getLangOpts().Modules && !getLangOpts().CurrentModule.empty()) {
1699 Module *RequestingModule = getModuleForLocation(FilenameLoc);
1700 BuildingModule =
1701 HeaderInfo.getModuleMap().findModuleForHeader(File, RequestingModule);
1702 }
1703
1704 // If all is good, enter the new file!
Richard Smith67294e22014-01-31 20:47:44 +00001705 if (EnterSourceFile(FID, CurDir, FilenameTok.getLocation()))
1706 return;
Richard Smith34f30512013-11-23 04:06:09 +00001707
1708 // If we're walking into another part of the same module, let the parser
1709 // know that any future declarations are within that other submodule.
Richard Smith67294e22014-01-31 20:47:44 +00001710 if (BuildingModule) {
1711 assert(!CurSubmodule && "should not have marked this as a module yet");
1712 CurSubmodule = BuildingModule.getModule();
1713
Richard Smith34f30512013-11-23 04:06:09 +00001714 EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_begin,
Richard Smith67294e22014-01-31 20:47:44 +00001715 CurSubmodule);
1716 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001717}
1718
James Dennettf6333ac2012-06-22 05:46:07 +00001719/// HandleIncludeNextDirective - Implements \#include_next.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001720///
Douglas Gregor796d76a2010-10-20 22:00:55 +00001721void Preprocessor::HandleIncludeNextDirective(SourceLocation HashLoc,
1722 Token &IncludeNextTok) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001723 Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
Mike Stump11289f42009-09-09 15:08:12 +00001724
Chris Lattnerf64b3522008-03-09 01:54:53 +00001725 // #include_next is like #include, except that we start searching after
1726 // the current found directory. If we can't do this, issue a
1727 // diagnostic.
1728 const DirectoryLookup *Lookup = CurDirLookup;
Richard Smith25d50752014-10-20 00:15:49 +00001729 const FileEntry *LookupFromFile = nullptr;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001730 if (isInPrimaryFile()) {
Craig Topperd2d442c2014-05-17 23:10:59 +00001731 Lookup = nullptr;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001732 Diag(IncludeNextTok, diag::pp_include_next_in_primary);
Richard Smith25d50752014-10-20 00:15:49 +00001733 } else if (CurSubmodule) {
1734 // Start looking up in the directory *after* the one in which the current
1735 // file would be found, if any.
1736 assert(CurPPLexer && "#include_next directive in macro?");
1737 LookupFromFile = CurPPLexer->getFileEntry();
1738 Lookup = nullptr;
Craig Topperd2d442c2014-05-17 23:10:59 +00001739 } else if (!Lookup) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001740 Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1741 } else {
1742 // Start looking up in the next directory.
1743 ++Lookup;
1744 }
Mike Stump11289f42009-09-09 15:08:12 +00001745
Richard Smith25d50752014-10-20 00:15:49 +00001746 return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup,
1747 LookupFromFile);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001748}
1749
James Dennettf6333ac2012-06-22 05:46:07 +00001750/// HandleMicrosoftImportDirective - Implements \#import for Microsoft Mode
Aaron Ballman0467f552012-03-18 03:10:37 +00001751void Preprocessor::HandleMicrosoftImportDirective(Token &Tok) {
1752 // The Microsoft #import directive takes a type library and generates header
1753 // files from it, and includes those. This is beyond the scope of what clang
1754 // does, so we ignore it and error out. However, #import can optionally have
1755 // trailing attributes that span multiple lines. We're going to eat those
1756 // so we can continue processing from there.
1757 Diag(Tok, diag::err_pp_import_directive_ms );
1758
1759 // Read tokens until we get to the end of the directive. Note that the
1760 // directive can be split over multiple lines using the backslash character.
1761 DiscardUntilEndOfDirective();
1762}
1763
James Dennettf6333ac2012-06-22 05:46:07 +00001764/// HandleImportDirective - Implements \#import.
Chris Lattnerf64b3522008-03-09 01:54:53 +00001765///
Douglas Gregor796d76a2010-10-20 22:00:55 +00001766void Preprocessor::HandleImportDirective(SourceLocation HashLoc,
1767 Token &ImportTok) {
Aaron Ballman0467f552012-03-18 03:10:37 +00001768 if (!LangOpts.ObjC1) { // #import is standard for ObjC.
Alp Tokerbfa39342014-01-14 12:51:41 +00001769 if (LangOpts.MSVCCompat)
Aaron Ballman0467f552012-03-18 03:10:37 +00001770 return HandleMicrosoftImportDirective(ImportTok);
Chris Lattnerd4a96732009-03-06 04:28:03 +00001771 Diag(ImportTok, diag::ext_pp_import_directive);
Aaron Ballman0467f552012-03-18 03:10:37 +00001772 }
Richard Smith25d50752014-10-20 00:15:49 +00001773 return HandleIncludeDirective(HashLoc, ImportTok, nullptr, nullptr, true);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001774}
1775
Chris Lattner58a1eb02009-04-08 18:46:40 +00001776/// HandleIncludeMacrosDirective - The -imacros command line option turns into a
1777/// pseudo directive in the predefines buffer. This handles it by sucking all
1778/// tokens through the preprocessor and discarding them (only keeping the side
1779/// effects on the preprocessor).
Douglas Gregor796d76a2010-10-20 22:00:55 +00001780void Preprocessor::HandleIncludeMacrosDirective(SourceLocation HashLoc,
1781 Token &IncludeMacrosTok) {
Chris Lattner58a1eb02009-04-08 18:46:40 +00001782 // This directive should only occur in the predefines buffer. If not, emit an
1783 // error and reject it.
1784 SourceLocation Loc = IncludeMacrosTok.getLocation();
1785 if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) {
1786 Diag(IncludeMacrosTok.getLocation(),
1787 diag::pp_include_macros_out_of_predefines);
1788 DiscardUntilEndOfDirective();
1789 return;
1790 }
Mike Stump11289f42009-09-09 15:08:12 +00001791
Chris Lattnere01d82b2009-04-08 20:53:24 +00001792 // Treat this as a normal #include for checking purposes. If this is
1793 // successful, it will push a new lexer onto the include stack.
Richard Smith25d50752014-10-20 00:15:49 +00001794 HandleIncludeDirective(HashLoc, IncludeMacrosTok);
Mike Stump11289f42009-09-09 15:08:12 +00001795
Chris Lattnere01d82b2009-04-08 20:53:24 +00001796 Token TmpTok;
1797 do {
1798 Lex(TmpTok);
1799 assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!");
1800 } while (TmpTok.isNot(tok::hashhash));
Chris Lattner58a1eb02009-04-08 18:46:40 +00001801}
1802
Chris Lattnerf64b3522008-03-09 01:54:53 +00001803//===----------------------------------------------------------------------===//
1804// Preprocessor Macro Directive Handling.
1805//===----------------------------------------------------------------------===//
1806
1807/// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1808/// definition has just been read. Lex the rest of the arguments and the
1809/// closing ), updating MI with what we learn. Return true if an error occurs
1810/// parsing the arg list.
Abramo Bagnarac9e48c02012-03-31 20:17:27 +00001811bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI, Token &Tok) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001812 SmallVector<IdentifierInfo*, 32> Arguments;
Mike Stump11289f42009-09-09 15:08:12 +00001813
Chris Lattnerf64b3522008-03-09 01:54:53 +00001814 while (1) {
1815 LexUnexpandedToken(Tok);
1816 switch (Tok.getKind()) {
1817 case tok::r_paren:
1818 // Found the end of the argument list.
Chris Lattnerf87c5102009-02-20 22:31:31 +00001819 if (Arguments.empty()) // #define FOO()
Chris Lattnerf64b3522008-03-09 01:54:53 +00001820 return false;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001821 // Otherwise we have #define FOO(A,)
1822 Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1823 return true;
1824 case tok::ellipsis: // #define X(... -> C99 varargs
David Blaikiebbafb8a2012-03-11 07:00:24 +00001825 if (!LangOpts.C99)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001826 Diag(Tok, LangOpts.CPlusPlus11 ?
Richard Smithacd4d3d2011-10-15 01:18:56 +00001827 diag::warn_cxx98_compat_variadic_macro :
1828 diag::ext_variadic_macro);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001829
Joey Gouly1d58cdb2013-01-17 17:35:00 +00001830 // OpenCL v1.2 s6.9.e: variadic macros are not supported.
1831 if (LangOpts.OpenCL) {
1832 Diag(Tok, diag::err_pp_opencl_variadic_macros);
1833 return true;
1834 }
1835
Chris Lattnerf64b3522008-03-09 01:54:53 +00001836 // Lex the token after the identifier.
1837 LexUnexpandedToken(Tok);
1838 if (Tok.isNot(tok::r_paren)) {
1839 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1840 return true;
1841 }
1842 // Add the __VA_ARGS__ identifier as an argument.
1843 Arguments.push_back(Ident__VA_ARGS__);
1844 MI->setIsC99Varargs();
Chris Lattner70946da2009-02-20 22:46:43 +00001845 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001846 return false;
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001847 case tok::eod: // #define X(
Chris Lattnerf64b3522008-03-09 01:54:53 +00001848 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1849 return true;
1850 default:
1851 // Handle keywords and identifiers here to accept things like
1852 // #define Foo(for) for.
1853 IdentifierInfo *II = Tok.getIdentifierInfo();
Craig Topperd2d442c2014-05-17 23:10:59 +00001854 if (!II) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001855 // #define X(1
1856 Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
1857 return true;
1858 }
1859
1860 // If this is already used as an argument, it is used multiple times (e.g.
1861 // #define X(A,A.
Mike Stump11289f42009-09-09 15:08:12 +00001862 if (std::find(Arguments.begin(), Arguments.end(), II) !=
Chris Lattnerf64b3522008-03-09 01:54:53 +00001863 Arguments.end()) { // C99 6.10.3p6
Chris Lattnerc5cdade2008-11-19 07:33:58 +00001864 Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001865 return true;
1866 }
Mike Stump11289f42009-09-09 15:08:12 +00001867
Chris Lattnerf64b3522008-03-09 01:54:53 +00001868 // Add the argument to the macro info.
1869 Arguments.push_back(II);
Mike Stump11289f42009-09-09 15:08:12 +00001870
Chris Lattnerf64b3522008-03-09 01:54:53 +00001871 // Lex the token after the identifier.
1872 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001873
Chris Lattnerf64b3522008-03-09 01:54:53 +00001874 switch (Tok.getKind()) {
1875 default: // #define X(A B
1876 Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
1877 return true;
1878 case tok::r_paren: // #define X(A)
Chris Lattner70946da2009-02-20 22:46:43 +00001879 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001880 return false;
1881 case tok::comma: // #define X(A,
1882 break;
1883 case tok::ellipsis: // #define X(A... -> GCC extension
1884 // Diagnose extension.
1885 Diag(Tok, diag::ext_named_variadic_macro);
Mike Stump11289f42009-09-09 15:08:12 +00001886
Chris Lattnerf64b3522008-03-09 01:54:53 +00001887 // Lex the token after the identifier.
1888 LexUnexpandedToken(Tok);
1889 if (Tok.isNot(tok::r_paren)) {
1890 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1891 return true;
1892 }
Mike Stump11289f42009-09-09 15:08:12 +00001893
Chris Lattnerf64b3522008-03-09 01:54:53 +00001894 MI->setIsGNUVarargs();
Chris Lattner70946da2009-02-20 22:46:43 +00001895 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001896 return false;
1897 }
1898 }
1899 }
1900}
1901
James Dennettf6333ac2012-06-22 05:46:07 +00001902/// HandleDefineDirective - Implements \#define. This consumes the entire macro
Chris Lattnerf64b3522008-03-09 01:54:53 +00001903/// line then lets the caller lex the next real token.
Richard Trieu33a4b3d2013-06-12 21:20:57 +00001904void Preprocessor::HandleDefineDirective(Token &DefineTok,
1905 bool ImmediatelyAfterHeaderGuard) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001906 ++NumDefined;
1907
1908 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00001909 ReadMacroName(MacroNameTok, MU_Define);
Mike Stump11289f42009-09-09 15:08:12 +00001910
Chris Lattnerf64b3522008-03-09 01:54:53 +00001911 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001912 if (MacroNameTok.is(tok::eod))
Chris Lattnerf64b3522008-03-09 01:54:53 +00001913 return;
1914
Chris Lattnerd6e97af2009-04-21 04:46:33 +00001915 Token LastTok = MacroNameTok;
1916
Chris Lattnerf64b3522008-03-09 01:54:53 +00001917 // If we are supposed to keep comments in #defines, reenable comment saving
1918 // mode.
Ted Kremenek59e003e2008-11-18 00:43:07 +00001919 if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments);
Mike Stump11289f42009-09-09 15:08:12 +00001920
Chris Lattnerf64b3522008-03-09 01:54:53 +00001921 // Create the new macro.
Ted Kremenek6c7ea112008-12-15 19:56:42 +00001922 MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001923
Chris Lattnerf64b3522008-03-09 01:54:53 +00001924 Token Tok;
1925 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00001926
Chris Lattnerf64b3522008-03-09 01:54:53 +00001927 // If this is a function-like macro definition, parse the argument list,
1928 // marking each of the identifiers as being used as macro arguments. Also,
1929 // check other constraints on the first token of the macro body.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001930 if (Tok.is(tok::eod)) {
Richard Trieu33a4b3d2013-06-12 21:20:57 +00001931 if (ImmediatelyAfterHeaderGuard) {
1932 // Save this macro information since it may part of a header guard.
1933 CurPPLexer->MIOpt.SetDefinedMacro(MacroNameTok.getIdentifierInfo(),
1934 MacroNameTok.getLocation());
1935 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00001936 // If there is no body to this macro, we have no special handling here.
Chris Lattner2425bcb2009-04-18 02:23:25 +00001937 } else if (Tok.hasLeadingSpace()) {
1938 // This is a normal token with leading space. Clear the leading space
1939 // marker on the first token to get proper expansion.
1940 Tok.clearFlag(Token::LeadingSpace);
1941 } else if (Tok.is(tok::l_paren)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001942 // This is a function-like macro definition. Read the argument list.
1943 MI->setIsFunctionLike();
Abramo Bagnarac9e48c02012-03-31 20:17:27 +00001944 if (ReadMacroDefinitionArgList(MI, LastTok)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001945 // Throw away the rest of the line.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00001946 if (CurPPLexer->ParsingPreprocessorDirective)
Chris Lattnerf64b3522008-03-09 01:54:53 +00001947 DiscardUntilEndOfDirective();
1948 return;
1949 }
1950
Chris Lattner249c38b2009-04-19 18:26:34 +00001951 // If this is a definition of a variadic C99 function-like macro, not using
1952 // the GNU named varargs extension, enabled __VA_ARGS__.
Mike Stump11289f42009-09-09 15:08:12 +00001953
Chris Lattner249c38b2009-04-19 18:26:34 +00001954 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
1955 // This gets unpoisoned where it is allowed.
1956 assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
1957 if (MI->isC99Varargs())
1958 Ident__VA_ARGS__->setIsPoisoned(false);
Mike Stump11289f42009-09-09 15:08:12 +00001959
Chris Lattnerf64b3522008-03-09 01:54:53 +00001960 // Read the first token after the arg list for down below.
1961 LexUnexpandedToken(Tok);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001962 } else if (LangOpts.C99 || LangOpts.CPlusPlus11) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00001963 // C99 requires whitespace between the macro definition and the body. Emit
1964 // a diagnostic for something like "#define X+".
Chris Lattner2425bcb2009-04-18 02:23:25 +00001965 Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001966 } else {
Chris Lattner2425bcb2009-04-18 02:23:25 +00001967 // C90 6.8 TC1 says: "In the definition of an object-like macro, if the
1968 // first character of a replacement list is not a character required by
1969 // subclause 5.2.1, then there shall be white-space separation between the
1970 // identifier and the replacement list.". 5.2.1 lists this set:
1971 // "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which
1972 // is irrelevant here.
1973 bool isInvalid = false;
1974 if (Tok.is(tok::at)) // @ is not in the list above.
1975 isInvalid = true;
1976 else if (Tok.is(tok::unknown)) {
1977 // If we have an unknown token, it is something strange like "`". Since
1978 // all of valid characters would have lexed into a single character
1979 // token of some sort, we know this is not a valid case.
1980 isInvalid = true;
1981 }
1982 if (isInvalid)
1983 Diag(Tok, diag::ext_missing_whitespace_after_macro_name);
1984 else
1985 Diag(Tok, diag::warn_missing_whitespace_after_macro_name);
Chris Lattnerf64b3522008-03-09 01:54:53 +00001986 }
Chris Lattnerd6e97af2009-04-21 04:46:33 +00001987
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001988 if (!Tok.is(tok::eod))
Chris Lattnerd6e97af2009-04-21 04:46:33 +00001989 LastTok = Tok;
1990
Chris Lattnerf64b3522008-03-09 01:54:53 +00001991 // Read the rest of the macro body.
1992 if (MI->isObjectLike()) {
1993 // Object-like macros are very simple, just read their body.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001994 while (Tok.isNot(tok::eod)) {
Chris Lattnerd6e97af2009-04-21 04:46:33 +00001995 LastTok = Tok;
Chris Lattnerf64b3522008-03-09 01:54:53 +00001996 MI->AddTokenToBody(Tok);
1997 // Get the next token of the macro.
1998 LexUnexpandedToken(Tok);
1999 }
Mike Stump11289f42009-09-09 15:08:12 +00002000
Chris Lattnerf64b3522008-03-09 01:54:53 +00002001 } else {
Chris Lattner83bd8282009-05-25 17:16:10 +00002002 // Otherwise, read the body of a function-like macro. While we are at it,
2003 // check C99 6.10.3.2p1: ensure that # operators are followed by macro
2004 // parameters in function-like macro expansions.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002005 while (Tok.isNot(tok::eod)) {
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002006 LastTok = Tok;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002007
Eli Friedman14d3c792012-11-14 02:18:46 +00002008 if (Tok.isNot(tok::hash) && Tok.isNot(tok::hashhash)) {
Chris Lattner83bd8282009-05-25 17:16:10 +00002009 MI->AddTokenToBody(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002010
Chris Lattnerf64b3522008-03-09 01:54:53 +00002011 // Get the next token of the macro.
2012 LexUnexpandedToken(Tok);
2013 continue;
2014 }
Mike Stump11289f42009-09-09 15:08:12 +00002015
Richard Smith701a3522013-07-09 01:00:29 +00002016 // If we're in -traditional mode, then we should ignore stringification
2017 // and token pasting. Mark the tokens as unknown so as not to confuse
2018 // things.
2019 if (getLangOpts().TraditionalCPP) {
2020 Tok.setKind(tok::unknown);
2021 MI->AddTokenToBody(Tok);
2022
2023 // Get the next token of the macro.
2024 LexUnexpandedToken(Tok);
2025 continue;
2026 }
2027
Eli Friedman14d3c792012-11-14 02:18:46 +00002028 if (Tok.is(tok::hashhash)) {
2029
2030 // If we see token pasting, check if it looks like the gcc comma
2031 // pasting extension. We'll use this information to suppress
2032 // diagnostics later on.
2033
2034 // Get the next token of the macro.
2035 LexUnexpandedToken(Tok);
2036
2037 if (Tok.is(tok::eod)) {
2038 MI->AddTokenToBody(LastTok);
2039 break;
2040 }
2041
2042 unsigned NumTokens = MI->getNumTokens();
2043 if (NumTokens && Tok.getIdentifierInfo() == Ident__VA_ARGS__ &&
2044 MI->getReplacementToken(NumTokens-1).is(tok::comma))
2045 MI->setHasCommaPasting();
2046
David Majnemer76faf1f2013-11-05 09:30:17 +00002047 // Things look ok, add the '##' token to the macro.
Eli Friedman14d3c792012-11-14 02:18:46 +00002048 MI->AddTokenToBody(LastTok);
Eli Friedman14d3c792012-11-14 02:18:46 +00002049 continue;
2050 }
2051
Chris Lattnerf64b3522008-03-09 01:54:53 +00002052 // Get the next token of the macro.
2053 LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +00002054
Chris Lattner83bd8282009-05-25 17:16:10 +00002055 // Check for a valid macro arg identifier.
Craig Topperd2d442c2014-05-17 23:10:59 +00002056 if (Tok.getIdentifierInfo() == nullptr ||
Chris Lattner83bd8282009-05-25 17:16:10 +00002057 MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
2058
2059 // If this is assembler-with-cpp mode, we accept random gibberish after
2060 // the '#' because '#' is often a comment character. However, change
2061 // the kind of the token to tok::unknown so that the preprocessor isn't
2062 // confused.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002063 if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) {
Chris Lattner83bd8282009-05-25 17:16:10 +00002064 LastTok.setKind(tok::unknown);
Eli Friedmancdf8b882013-06-18 21:33:38 +00002065 MI->AddTokenToBody(LastTok);
2066 continue;
Chris Lattner83bd8282009-05-25 17:16:10 +00002067 } else {
2068 Diag(Tok, diag::err_pp_stringize_not_parameter);
Mike Stump11289f42009-09-09 15:08:12 +00002069
Chris Lattner83bd8282009-05-25 17:16:10 +00002070 // Disable __VA_ARGS__ again.
2071 Ident__VA_ARGS__->setIsPoisoned(true);
2072 return;
2073 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002074 }
Mike Stump11289f42009-09-09 15:08:12 +00002075
Chris Lattner83bd8282009-05-25 17:16:10 +00002076 // Things look ok, add the '#' and param name tokens to the macro.
2077 MI->AddTokenToBody(LastTok);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002078 MI->AddTokenToBody(Tok);
Chris Lattner83bd8282009-05-25 17:16:10 +00002079 LastTok = Tok;
Mike Stump11289f42009-09-09 15:08:12 +00002080
Chris Lattnerf64b3522008-03-09 01:54:53 +00002081 // Get the next token of the macro.
2082 LexUnexpandedToken(Tok);
2083 }
2084 }
Mike Stump11289f42009-09-09 15:08:12 +00002085
2086
Chris Lattnerf64b3522008-03-09 01:54:53 +00002087 // Disable __VA_ARGS__ again.
2088 Ident__VA_ARGS__->setIsPoisoned(true);
2089
Chris Lattner57540c52011-04-15 05:22:18 +00002090 // Check that there is no paste (##) operator at the beginning or end of the
Chris Lattnerf64b3522008-03-09 01:54:53 +00002091 // replacement list.
2092 unsigned NumTokens = MI->getNumTokens();
2093 if (NumTokens != 0) {
2094 if (MI->getReplacementToken(0).is(tok::hashhash)) {
2095 Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002096 return;
2097 }
2098 if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
2099 Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002100 return;
2101 }
2102 }
Mike Stump11289f42009-09-09 15:08:12 +00002103
Chris Lattnerd6e97af2009-04-21 04:46:33 +00002104 MI->setDefinitionEndLoc(LastTok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00002105
Chris Lattnerf64b3522008-03-09 01:54:53 +00002106 // Finally, if this identifier already had a macro defined for it, verify that
Alexander Kornienko8b3f6232012-08-29 00:20:03 +00002107 // the macro bodies are identical, and issue diagnostics if they are not.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002108 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Chris Lattner5244f342009-01-16 19:50:11 +00002109 // It is very common for system headers to have tons of macro redefinitions
2110 // and for warnings to be disabled in system headers. If this is the case,
2111 // then don't bother calling MacroInfo::isIdenticalTo.
Chris Lattner80c21df2009-03-13 21:17:23 +00002112 if (!getDiagnostics().getSuppressSystemWarnings() ||
Chris Lattner5244f342009-01-16 19:50:11 +00002113 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) {
Argyrios Kyrtzidisb495cc12011-01-18 19:50:15 +00002114 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused())
Chris Lattner5244f342009-01-16 19:50:11 +00002115 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002116
Richard Smith7b242542013-03-06 00:46:00 +00002117 // Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and
2118 // C++ [cpp.predefined]p4, but allow it as an extension.
2119 if (OtherMI->isBuiltinMacro())
2120 Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro);
Chris Lattnerc0a585d2010-08-17 15:55:45 +00002121 // Macros must be identical. This means all tokens and whitespace
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +00002122 // separation must be the same. C99 6.10.3p2.
Richard Smith7b242542013-03-06 00:46:00 +00002123 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
Argyrios Kyrtzidis0c2f30b2013-04-03 17:39:30 +00002124 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) {
Chris Lattner5244f342009-01-16 19:50:11 +00002125 Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef)
2126 << MacroNameTok.getIdentifierInfo();
2127 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
2128 }
Chris Lattnerf64b3522008-03-09 01:54:53 +00002129 }
Argyrios Kyrtzidisb495cc12011-01-18 19:50:15 +00002130 if (OtherMI->isWarnIfUnused())
2131 WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002132 }
Mike Stump11289f42009-09-09 15:08:12 +00002133
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002134 DefMacroDirective *MD =
2135 appendDefMacroDirective(MacroNameTok.getIdentifierInfo(), MI);
Mike Stump11289f42009-09-09 15:08:12 +00002136
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002137 assert(!MI->isUsed());
2138 // If we need warning for not using the macro, add its location in the
2139 // warn-because-unused-macro set. If it gets used it will be removed from set.
Eli Friedman5ba37d52013-08-22 00:27:10 +00002140 if (getSourceManager().isInMainFile(MI->getDefinitionLoc()) &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002141 !Diags->isIgnored(diag::pp_macro_not_used, MI->getDefinitionLoc())) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002142 MI->setIsWarnIfUnused(true);
2143 WarnUnusedMacroLocs.insert(MI->getDefinitionLoc());
2144 }
2145
Chris Lattner928e9092009-04-12 01:39:54 +00002146 // If the callbacks want to know, tell them about the macro definition.
2147 if (Callbacks)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002148 Callbacks->MacroDefined(MacroNameTok, MD);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002149}
2150
James Dennettf6333ac2012-06-22 05:46:07 +00002151/// HandleUndefDirective - Implements \#undef.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002152///
2153void Preprocessor::HandleUndefDirective(Token &UndefTok) {
2154 ++NumUndefined;
2155
2156 Token MacroNameTok;
Serge Pavlovd024f522014-10-24 17:31:32 +00002157 ReadMacroName(MacroNameTok, MU_Undef);
Mike Stump11289f42009-09-09 15:08:12 +00002158
Chris Lattnerf64b3522008-03-09 01:54:53 +00002159 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002160 if (MacroNameTok.is(tok::eod))
Chris Lattnerf64b3522008-03-09 01:54:53 +00002161 return;
Mike Stump11289f42009-09-09 15:08:12 +00002162
Chris Lattnerf64b3522008-03-09 01:54:53 +00002163 // Check to see if this is the last token on the #undef line.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002164 CheckEndOfDirective("undef");
Mike Stump11289f42009-09-09 15:08:12 +00002165
Chris Lattnerf64b3522008-03-09 01:54:53 +00002166 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002167 MacroDirective *MD = getMacroDirective(MacroNameTok.getIdentifierInfo());
Craig Topperd2d442c2014-05-17 23:10:59 +00002168 const MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002169
Argyrios Kyrtzidis99b0a6a2013-01-16 16:52:44 +00002170 // If the callbacks want to know, tell them about the macro #undef.
2171 // Note: no matter if the macro was defined or not.
2172 if (Callbacks)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002173 Callbacks->MacroUndefined(MacroNameTok, MD);
Argyrios Kyrtzidis99b0a6a2013-01-16 16:52:44 +00002174
Chris Lattnerf64b3522008-03-09 01:54:53 +00002175 // If the macro is not defined, this is a noop undef, just return.
Craig Topperd2d442c2014-05-17 23:10:59 +00002176 if (!MI)
2177 return;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002178
Argyrios Kyrtzidis22998892011-07-11 20:39:47 +00002179 if (!MI->isUsed() && MI->isWarnIfUnused())
Chris Lattnerf64b3522008-03-09 01:54:53 +00002180 Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattnercd6d4b12009-04-21 03:42:09 +00002181
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002182 if (MI->isWarnIfUnused())
2183 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
2184
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002185 appendMacroDirective(MacroNameTok.getIdentifierInfo(),
2186 AllocateUndefMacroDirective(MacroNameTok.getLocation()));
Chris Lattnerf64b3522008-03-09 01:54:53 +00002187}
2188
2189
2190//===----------------------------------------------------------------------===//
2191// Preprocessor Conditional Directive Handling.
2192//===----------------------------------------------------------------------===//
2193
James Dennettf6333ac2012-06-22 05:46:07 +00002194/// HandleIfdefDirective - Implements the \#ifdef/\#ifndef directive. isIfndef
2195/// is true when this is a \#ifndef directive. ReadAnyTokensBeforeDirective is
2196/// true if any tokens have been returned or pp-directives activated before this
2197/// \#ifndef has been lexed.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002198///
2199void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
2200 bool ReadAnyTokensBeforeDirective) {
2201 ++NumIf;
2202 Token DirectiveTok = Result;
2203
2204 Token MacroNameTok;
2205 ReadMacroName(MacroNameTok);
Mike Stump11289f42009-09-09 15:08:12 +00002206
Chris Lattnerf64b3522008-03-09 01:54:53 +00002207 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00002208 if (MacroNameTok.is(tok::eod)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002209 // Skip code until we get to #endif. This helps with recovery by not
2210 // emitting an error when the #endif is reached.
2211 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2212 /*Foundnonskip*/false, /*FoundElse*/false);
2213 return;
2214 }
Mike Stump11289f42009-09-09 15:08:12 +00002215
Chris Lattnerf64b3522008-03-09 01:54:53 +00002216 // Check to see if this is the last token on the #if[n]def line.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002217 CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef");
Chris Lattnerf64b3522008-03-09 01:54:53 +00002218
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002219 IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002220 MacroDirective *MD = getMacroDirective(MII);
Craig Topperd2d442c2014-05-17 23:10:59 +00002221 MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002222
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002223 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002224 // If the start of a top-level #ifdef and if the macro is not defined,
2225 // inform MIOpt that this might be the start of a proper include guard.
2226 // Otherwise it is some other form of unknown conditional which we can't
2227 // handle.
Craig Topperd2d442c2014-05-17 23:10:59 +00002228 if (!ReadAnyTokensBeforeDirective && !MI) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002229 assert(isIfndef && "#ifdef shouldn't reach here");
Richard Trieu33a4b3d2013-06-12 21:20:57 +00002230 CurPPLexer->MIOpt.EnterTopLevelIfndef(MII, MacroNameTok.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002231 } else
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002232 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002233 }
2234
Chris Lattnerf64b3522008-03-09 01:54:53 +00002235 // If there is a macro, process it.
2236 if (MI) // Mark it used.
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002237 markMacroAsUsed(MI);
Mike Stump11289f42009-09-09 15:08:12 +00002238
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002239 if (Callbacks) {
2240 if (isIfndef)
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002241 Callbacks->Ifndef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002242 else
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +00002243 Callbacks->Ifdef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002244 }
2245
Chris Lattnerf64b3522008-03-09 01:54:53 +00002246 // Should we include the stuff contained by this directive?
2247 if (!MI == isIfndef) {
2248 // Yes, remember that we are inside a conditional, then lex the next token.
Chris Lattner8cf1f932009-12-14 04:54:40 +00002249 CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(),
2250 /*wasskip*/false, /*foundnonskip*/true,
2251 /*foundelse*/false);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002252 } else {
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002253 // No, skip the contents of this block.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002254 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002255 /*Foundnonskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002256 /*FoundElse*/false);
2257 }
2258}
2259
James Dennettf6333ac2012-06-22 05:46:07 +00002260/// HandleIfDirective - Implements the \#if directive.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002261///
2262void Preprocessor::HandleIfDirective(Token &IfToken,
2263 bool ReadAnyTokensBeforeDirective) {
2264 ++NumIf;
Mike Stump11289f42009-09-09 15:08:12 +00002265
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002266 // Parse and evaluate the conditional expression.
Craig Topperd2d442c2014-05-17 23:10:59 +00002267 IdentifierInfo *IfNDefMacro = nullptr;
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002268 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
2269 const bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
2270 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Nuno Lopes363212b2008-06-01 18:31:24 +00002271
2272 // If this condition is equivalent to #ifndef X, and if this is the first
2273 // directive seen, handle it for the multiple-include optimization.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002274 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattneraa1cccbb2010-02-12 08:03:27 +00002275 if (!ReadAnyTokensBeforeDirective && IfNDefMacro && ConditionalTrue)
Richard Smith089ee152013-06-16 05:05:39 +00002276 // FIXME: Pass in the location of the macro name, not the 'if' token.
2277 CurPPLexer->MIOpt.EnterTopLevelIfndef(IfNDefMacro, IfToken.getLocation());
Nuno Lopes363212b2008-06-01 18:31:24 +00002278 else
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002279 CurPPLexer->MIOpt.EnterTopLevelConditional();
Nuno Lopes363212b2008-06-01 18:31:24 +00002280 }
2281
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002282 if (Callbacks)
2283 Callbacks->If(IfToken.getLocation(),
John Thompsonb1028562013-07-18 00:00:36 +00002284 SourceRange(ConditionalBegin, ConditionalEnd),
John Thompson87f9fef2013-12-07 08:41:15 +00002285 (ConditionalTrue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False));
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002286
Chris Lattnerf64b3522008-03-09 01:54:53 +00002287 // Should we include the stuff contained by this directive?
2288 if (ConditionalTrue) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002289 // Yes, remember that we are inside a conditional, then lex the next token.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002290 CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002291 /*foundnonskip*/true, /*foundelse*/false);
2292 } else {
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002293 // No, skip the contents of this block.
Mike Stump11289f42009-09-09 15:08:12 +00002294 SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
Chris Lattnerf64b3522008-03-09 01:54:53 +00002295 /*FoundElse*/false);
2296 }
2297}
2298
James Dennettf6333ac2012-06-22 05:46:07 +00002299/// HandleEndifDirective - Implements the \#endif directive.
Chris Lattnerf64b3522008-03-09 01:54:53 +00002300///
2301void Preprocessor::HandleEndifDirective(Token &EndifToken) {
2302 ++NumEndif;
Mike Stump11289f42009-09-09 15:08:12 +00002303
Chris Lattnerf64b3522008-03-09 01:54:53 +00002304 // Check that this is the whole directive.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002305 CheckEndOfDirective("endif");
Mike Stump11289f42009-09-09 15:08:12 +00002306
Chris Lattnerf64b3522008-03-09 01:54:53 +00002307 PPConditionalInfo CondInfo;
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002308 if (CurPPLexer->popConditionalLevel(CondInfo)) {
Chris Lattnerf64b3522008-03-09 01:54:53 +00002309 // No conditionals on the stack: this is an #endif without an #if.
Chris Lattner907dfe92008-11-18 07:59:24 +00002310 Diag(EndifToken, diag::err_pp_endif_without_if);
2311 return;
Chris Lattnerf64b3522008-03-09 01:54:53 +00002312 }
Mike Stump11289f42009-09-09 15:08:12 +00002313
Chris Lattnerf64b3522008-03-09 01:54:53 +00002314 // If this the end of a top-level #endif, inform MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002315 if (CurPPLexer->getConditionalStackDepth() == 0)
2316 CurPPLexer->MIOpt.ExitTopLevelConditional();
Mike Stump11289f42009-09-09 15:08:12 +00002317
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002318 assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode &&
Chris Lattnerf64b3522008-03-09 01:54:53 +00002319 "This code should only be reachable in the non-skipping case!");
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002320
2321 if (Callbacks)
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002322 Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002323}
2324
James Dennettf6333ac2012-06-22 05:46:07 +00002325/// HandleElseDirective - Implements the \#else directive.
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002326///
Chris Lattnerf64b3522008-03-09 01:54:53 +00002327void Preprocessor::HandleElseDirective(Token &Result) {
2328 ++NumElse;
Mike Stump11289f42009-09-09 15:08:12 +00002329
Chris Lattnerf64b3522008-03-09 01:54:53 +00002330 // #else directive in a non-skipping conditional... start skipping.
Chris Lattnerce2ab6f2009-04-14 05:07:49 +00002331 CheckEndOfDirective("else");
Mike Stump11289f42009-09-09 15:08:12 +00002332
Chris Lattnerf64b3522008-03-09 01:54:53 +00002333 PPConditionalInfo CI;
Chris Lattner907dfe92008-11-18 07:59:24 +00002334 if (CurPPLexer->popConditionalLevel(CI)) {
2335 Diag(Result, diag::pp_err_else_without_if);
2336 return;
2337 }
Mike Stump11289f42009-09-09 15:08:12 +00002338
Chris Lattnerf64b3522008-03-09 01:54:53 +00002339 // If this is a top-level #else, inform the MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002340 if (CurPPLexer->getConditionalStackDepth() == 0)
2341 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002342
2343 // If this is a #else with a #else before it, report the error.
2344 if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
Mike Stump11289f42009-09-09 15:08:12 +00002345
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002346 if (Callbacks)
2347 Callbacks->Else(Result.getLocation(), CI.IfLoc);
2348
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002349 // Finally, skip the rest of the contents of this block.
2350 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +00002351 /*FoundElse*/true, Result.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002352}
2353
James Dennettf6333ac2012-06-22 05:46:07 +00002354/// HandleElifDirective - Implements the \#elif directive.
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002355///
Chris Lattnerf64b3522008-03-09 01:54:53 +00002356void Preprocessor::HandleElifDirective(Token &ElifToken) {
2357 ++NumElse;
Mike Stump11289f42009-09-09 15:08:12 +00002358
Chris Lattnerf64b3522008-03-09 01:54:53 +00002359 // #elif directive in a non-skipping conditional... start skipping.
2360 // We don't care what the condition is, because we will always skip it (since
2361 // the block immediately before it was included).
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002362 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002363 DiscardUntilEndOfDirective();
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002364 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Chris Lattnerf64b3522008-03-09 01:54:53 +00002365
2366 PPConditionalInfo CI;
Chris Lattner907dfe92008-11-18 07:59:24 +00002367 if (CurPPLexer->popConditionalLevel(CI)) {
2368 Diag(ElifToken, diag::pp_err_elif_without_if);
2369 return;
2370 }
Mike Stump11289f42009-09-09 15:08:12 +00002371
Chris Lattnerf64b3522008-03-09 01:54:53 +00002372 // If this is a top-level #elif, inform the MIOpt.
Ted Kremenek30cd88c2008-11-18 00:34:22 +00002373 if (CurPPLexer->getConditionalStackDepth() == 0)
2374 CurPPLexer->MIOpt.EnterTopLevelConditional();
Mike Stump11289f42009-09-09 15:08:12 +00002375
Chris Lattnerf64b3522008-03-09 01:54:53 +00002376 // If this is a #elif with a #else before it, report the error.
2377 if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
Argyrios Kyrtzidisc793a612012-03-05 05:48:09 +00002378
2379 if (Callbacks)
2380 Callbacks->Elif(ElifToken.getLocation(),
John Thompsonb1028562013-07-18 00:00:36 +00002381 SourceRange(ConditionalBegin, ConditionalEnd),
John Thompson87f9fef2013-12-07 08:41:15 +00002382 PPCallbacks::CVK_NotEvaluated, CI.IfLoc);
Chris Lattnerf64b3522008-03-09 01:54:53 +00002383
Craig Silverstein8e3d95e2010-11-06 01:19:03 +00002384 // Finally, skip the rest of the contents of this block.
2385 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis18bcfd52011-09-27 17:32:05 +00002386 /*FoundElse*/CI.FoundElse,
2387 ElifToken.getLocation());
Chris Lattnerf64b3522008-03-09 01:54:53 +00002388}