blob: 3cd40eacf8ab49e5761b9ab5cd92cc6e12b07a02 [file] [log] [blame]
Chris Lattnera3b605e2008-03-09 03:13:06 +00001//===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
Chris Lattner141e71f2008-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 Dennettdc201692012-06-22 05:46:07 +00009///
10/// \file
11/// \brief Implements # directive processing for the Preprocessor.
12///
Chris Lattner141e71f2008-03-09 01:54:53 +000013//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Preprocessor.h"
Chris Lattner6e290142009-11-30 04:18:44 +000016#include "clang/Basic/FileManager.h"
Chris Lattner141e71f2008-03-09 01:54:53 +000017#include "clang/Basic/SourceManager.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/Lex/CodeCompletionHandler.h"
19#include "clang/Lex/HeaderSearch.h"
20#include "clang/Lex/LexDiagnostic.h"
21#include "clang/Lex/LiteralSupport.h"
22#include "clang/Lex/MacroInfo.h"
23#include "clang/Lex/ModuleLoader.h"
24#include "clang/Lex/Pragma.h"
Chris Lattner359cc442009-01-26 05:29:08 +000025#include "llvm/ADT/APInt.h"
Douglas Gregore3a82562011-11-30 18:02:36 +000026#include "llvm/Support/ErrorHandling.h"
Aaron Ballman31672b12013-01-16 19:32:21 +000027#include "llvm/Support/SaveAndRestore.h"
Chris Lattner141e71f2008-03-09 01:54:53 +000028using namespace clang;
29
30//===----------------------------------------------------------------------===//
31// Utility Methods for Preprocessor Directive Handling.
32//===----------------------------------------------------------------------===//
33
Chris Lattnerf47724b2010-08-17 15:55:45 +000034MacroInfo *Preprocessor::AllocateMacroInfo() {
Ted Kremenek9714a232010-10-19 22:15:20 +000035 MacroInfoChain *MIChain;
Mike Stump1eb44332009-09-09 15:08:12 +000036
Ted Kremenek9714a232010-10-19 22:15:20 +000037 if (MICache) {
38 MIChain = MICache;
39 MICache = MICache->Next;
Ted Kremenekaf8fa252010-10-19 18:16:54 +000040 }
Ted Kremenek9714a232010-10-19 22:15:20 +000041 else {
42 MIChain = BP.Allocate<MacroInfoChain>();
43 }
44
45 MIChain->Next = MIChainHead;
46 MIChain->Prev = 0;
47 if (MIChainHead)
48 MIChainHead->Prev = MIChain;
49 MIChainHead = MIChain;
50
51 return &(MIChain->MI);
Chris Lattnerf47724b2010-08-17 15:55:45 +000052}
53
54MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) {
55 MacroInfo *MI = AllocateMacroInfo();
Ted Kremenek0ea76722008-12-15 19:56:42 +000056 new (MI) MacroInfo(L);
57 return MI;
58}
59
Argyrios Kyrtzidisbaa74bd2013-03-22 21:12:51 +000060MacroInfo *Preprocessor::AllocateDeserializedMacroInfo(SourceLocation L,
61 unsigned SubModuleID) {
62 LLVM_STATIC_ASSERT(llvm::AlignOf<MacroInfo>::Alignment >= sizeof(SubModuleID),
63 "alignment for MacroInfo is less than the ID");
64 MacroInfo *MI =
65 (MacroInfo*)BP.Allocate(sizeof(MacroInfo) + sizeof(SubModuleID),
66 llvm::AlignOf<MacroInfo>::Alignment);
67 new (MI) MacroInfo(L);
68 MI->FromASTFile = true;
69 MI->setOwningModuleID(SubModuleID);
70 return MI;
71}
72
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +000073DefMacroDirective *
74Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc,
75 bool isImported) {
76 DefMacroDirective *MD = BP.Allocate<DefMacroDirective>();
77 new (MD) DefMacroDirective(MI, Loc, isImported);
78 return MD;
79}
80
81UndefMacroDirective *
82Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) {
83 UndefMacroDirective *MD = BP.Allocate<UndefMacroDirective>();
84 new (MD) UndefMacroDirective(UndefLoc);
85 return MD;
86}
87
88VisibilityMacroDirective *
89Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc,
90 bool isPublic) {
91 VisibilityMacroDirective *MD = BP.Allocate<VisibilityMacroDirective>();
92 new (MD) VisibilityMacroDirective(Loc, isPublic);
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +000093 return MD;
Chris Lattnerf47724b2010-08-17 15:55:45 +000094}
95
James Dennettdc201692012-06-22 05:46:07 +000096/// \brief Release the specified MacroInfo to be reused for allocating
97/// new MacroInfo objects.
Chris Lattner2c1ab902010-08-18 16:08:51 +000098void Preprocessor::ReleaseMacroInfo(MacroInfo *MI) {
Ted Kremenek9714a232010-10-19 22:15:20 +000099 MacroInfoChain *MIChain = (MacroInfoChain*) MI;
100 if (MacroInfoChain *Prev = MIChain->Prev) {
101 MacroInfoChain *Next = MIChain->Next;
102 Prev->Next = Next;
103 if (Next)
104 Next->Prev = Prev;
105 }
106 else {
107 assert(MIChainHead == MIChain);
108 MIChainHead = MIChain->Next;
109 MIChainHead->Prev = 0;
110 }
111 MIChain->Next = MICache;
112 MICache = MIChain;
Chris Lattner0301b3f2009-02-20 22:19:20 +0000113
Ted Kremenek9714a232010-10-19 22:15:20 +0000114 MI->Destroy();
115}
Chris Lattner0301b3f2009-02-20 22:19:20 +0000116
James Dennettdc201692012-06-22 05:46:07 +0000117/// \brief Read and discard all tokens remaining on the current line until
118/// the tok::eod token is found.
Chris Lattner141e71f2008-03-09 01:54:53 +0000119void Preprocessor::DiscardUntilEndOfDirective() {
120 Token Tmp;
121 do {
122 LexUnexpandedToken(Tmp);
Peter Collingbournea5ef5842011-02-22 13:49:06 +0000123 assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
Peter Collingbourne84021552011-02-28 02:37:51 +0000124 } while (Tmp.isNot(tok::eod));
Chris Lattner141e71f2008-03-09 01:54:53 +0000125}
126
James Dennettdc201692012-06-22 05:46:07 +0000127/// \brief Lex and validate a macro name, which occurs after a
128/// \#define or \#undef.
129///
130/// This sets the token kind to eod and discards the rest
131/// of the macro line if the macro name is invalid. \p isDefineUndef is 1 if
132/// this is due to a a \#define, 2 if \#undef directive, 0 if it is something
133/// else (e.g. \#ifdef).
Chris Lattner141e71f2008-03-09 01:54:53 +0000134void Preprocessor::ReadMacroName(Token &MacroNameTok, char isDefineUndef) {
135 // Read the token, don't allow macro expansion on it.
136 LexUnexpandedToken(MacroNameTok);
Mike Stump1eb44332009-09-09 15:08:12 +0000137
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000138 if (MacroNameTok.is(tok::code_completion)) {
139 if (CodeComplete)
140 CodeComplete->CodeCompleteMacroName(isDefineUndef == 1);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000141 setCodeCompletionReached();
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000142 LexUnexpandedToken(MacroNameTok);
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000143 }
144
Chris Lattner141e71f2008-03-09 01:54:53 +0000145 // Missing macro name?
Peter Collingbourne84021552011-02-28 02:37:51 +0000146 if (MacroNameTok.is(tok::eod)) {
Chris Lattner3692b092008-11-18 07:59:24 +0000147 Diag(MacroNameTok, diag::err_pp_missing_macro_name);
148 return;
149 }
Mike Stump1eb44332009-09-09 15:08:12 +0000150
Chris Lattner141e71f2008-03-09 01:54:53 +0000151 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
152 if (II == 0) {
Douglas Gregor453091c2010-03-16 22:30:13 +0000153 bool Invalid = false;
154 std::string Spelling = getSpelling(MacroNameTok, &Invalid);
155 if (Invalid)
156 return;
Nico Weberf4fb07e2012-02-29 22:54:43 +0000157
Chris Lattner9485d232008-12-13 20:12:40 +0000158 const IdentifierInfo &Info = Identifiers.get(Spelling);
Nico Weberf4fb07e2012-02-29 22:54:43 +0000159
160 // Allow #defining |and| and friends in microsoft mode.
David Blaikie4e4d0842012-03-11 07:00:24 +0000161 if (Info.isCPlusPlusOperatorKeyword() && getLangOpts().MicrosoftMode) {
Nico Weberf4fb07e2012-02-29 22:54:43 +0000162 MacroNameTok.setIdentifierInfo(getIdentifierInfo(Spelling));
163 return;
164 }
165
Chris Lattner9485d232008-12-13 20:12:40 +0000166 if (Info.isCPlusPlusOperatorKeyword())
Chris Lattner141e71f2008-03-09 01:54:53 +0000167 // C++ 2.5p2: Alternative tokens behave the same as its primary token
168 // except for their spellings.
Chris Lattner56b05c82008-11-18 08:02:48 +0000169 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
Chris Lattner141e71f2008-03-09 01:54:53 +0000170 else
171 Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
172 // Fall through on error.
173 } else if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) {
Richard Smitheed55e62013-03-06 00:46:00 +0000174 // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4.
Chris Lattner141e71f2008-03-09 01:54:53 +0000175 Diag(MacroNameTok, diag::err_defined_macro_name);
Richard Smitheed55e62013-03-06 00:46:00 +0000176 } else if (isDefineUndef == 2 && II->hasMacroDefinition() &&
Chris Lattner141e71f2008-03-09 01:54:53 +0000177 getMacroInfo(II)->isBuiltinMacro()) {
Richard Smitheed55e62013-03-06 00:46:00 +0000178 // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4
179 // and C++ [cpp.predefined]p4], but allow it as an extension.
180 Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro);
181 return;
Chris Lattner141e71f2008-03-09 01:54:53 +0000182 } else {
183 // Okay, we got a good identifier node. Return it.
184 return;
185 }
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Chris Lattner141e71f2008-03-09 01:54:53 +0000187 // Invalid macro name, read and discard the rest of the line. Then set the
Peter Collingbourne84021552011-02-28 02:37:51 +0000188 // token kind to tok::eod.
189 MacroNameTok.setKind(tok::eod);
Chris Lattner141e71f2008-03-09 01:54:53 +0000190 return DiscardUntilEndOfDirective();
191}
192
James Dennettdc201692012-06-22 05:46:07 +0000193/// \brief Ensure that the next token is a tok::eod token.
194///
195/// If not, emit a diagnostic and consume up until the eod. If EnableMacros is
Chris Lattnerab82f412009-04-17 23:30:53 +0000196/// true, then we consider macros that expand to zero tokens as being ok.
197void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) {
Chris Lattner141e71f2008-03-09 01:54:53 +0000198 Token Tmp;
Chris Lattnerab82f412009-04-17 23:30:53 +0000199 // Lex unexpanded tokens for most directives: macros might expand to zero
200 // tokens, causing us to miss diagnosing invalid lines. Some directives (like
201 // #line) allow empty macros.
202 if (EnableMacros)
203 Lex(Tmp);
204 else
205 LexUnexpandedToken(Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Chris Lattner141e71f2008-03-09 01:54:53 +0000207 // There should be no tokens after the directive, but we allow them as an
208 // extension.
209 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
210 LexUnexpandedToken(Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000211
Peter Collingbourne84021552011-02-28 02:37:51 +0000212 if (Tmp.isNot(tok::eod)) {
Chris Lattner959875a2009-04-14 05:15:20 +0000213 // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89,
Peter Collingbourneb2eb53d2011-02-22 13:49:00 +0000214 // or if this is a macro-style preprocessing directive, because it is more
215 // trouble than it is worth to insert /**/ and check that there is no /**/
216 // in the range also.
Douglas Gregor849b2432010-03-31 17:46:05 +0000217 FixItHint Hint;
David Blaikie4e4d0842012-03-11 07:00:24 +0000218 if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) &&
Peter Collingbourneb2eb53d2011-02-22 13:49:00 +0000219 !CurTokenLexer)
Douglas Gregor849b2432010-03-31 17:46:05 +0000220 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
221 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
Chris Lattner141e71f2008-03-09 01:54:53 +0000222 DiscardUntilEndOfDirective();
223 }
224}
225
226
227
James Dennettdc201692012-06-22 05:46:07 +0000228/// SkipExcludedConditionalBlock - We just read a \#if or related directive and
229/// decided that the subsequent tokens are in the \#if'd out portion of the
230/// file. Lex the rest of the file, until we see an \#endif. If
Chris Lattner141e71f2008-03-09 01:54:53 +0000231/// FoundNonSkipPortion is true, then we have already emitted code for part of
James Dennettdc201692012-06-22 05:46:07 +0000232/// this \#if directive, so \#else/\#elif blocks should never be entered.
233/// If ElseOk is true, then \#else directives are ok, if not, then we have
234/// already seen one so a \#else directive is a duplicate. When this returns,
235/// the caller can lex the first valid token.
Chris Lattner141e71f2008-03-09 01:54:53 +0000236void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
237 bool FoundNonSkipPortion,
Argyrios Kyrtzidis6b4ff042011-09-27 17:32:05 +0000238 bool FoundElse,
239 SourceLocation ElseLoc) {
Chris Lattner141e71f2008-03-09 01:54:53 +0000240 ++NumSkipped;
Ted Kremenekf6452c52008-11-18 01:04:47 +0000241 assert(CurTokenLexer == 0 && CurPPLexer && "Lexing a macro, not a file?");
Chris Lattner141e71f2008-03-09 01:54:53 +0000242
Ted Kremenek60e45d42008-11-18 00:34:22 +0000243 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +0000244 FoundNonSkipPortion, FoundElse);
Mike Stump1eb44332009-09-09 15:08:12 +0000245
Ted Kremenek268ee702008-12-12 18:34:08 +0000246 if (CurPTHLexer) {
247 PTHSkipExcludedConditionalBlock();
248 return;
249 }
Mike Stump1eb44332009-09-09 15:08:12 +0000250
Chris Lattner141e71f2008-03-09 01:54:53 +0000251 // Enter raw mode to disable identifier lookup (and thus macro expansion),
252 // disabling warnings, etc.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000253 CurPPLexer->LexingRawMode = true;
Chris Lattner141e71f2008-03-09 01:54:53 +0000254 Token Tok;
255 while (1) {
Chris Lattner2c6b1932010-01-18 22:33:01 +0000256 CurLexer->Lex(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000257
Douglas Gregorf44e8542010-08-24 19:08:16 +0000258 if (Tok.is(tok::code_completion)) {
259 if (CodeComplete)
260 CodeComplete->CodeCompleteInConditionalExclusion();
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000261 setCodeCompletionReached();
Douglas Gregorf44e8542010-08-24 19:08:16 +0000262 continue;
263 }
264
Chris Lattner141e71f2008-03-09 01:54:53 +0000265 // If this is the end of the buffer, we have an error.
266 if (Tok.is(tok::eof)) {
267 // Emit errors for each unterminated conditional on the stack, including
268 // the current one.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000269 while (!CurPPLexer->ConditionalStack.empty()) {
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000270 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
Douglas Gregor2d474ba2010-08-12 17:04:55 +0000271 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
272 diag::err_pp_unterminated_conditional);
Ted Kremenek60e45d42008-11-18 00:34:22 +0000273 CurPPLexer->ConditionalStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +0000274 }
275
Chris Lattner141e71f2008-03-09 01:54:53 +0000276 // Just return and let the caller lex after this #include.
277 break;
278 }
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Chris Lattner141e71f2008-03-09 01:54:53 +0000280 // If this token is not a preprocessor directive, just skip it.
281 if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
282 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Chris Lattner141e71f2008-03-09 01:54:53 +0000284 // We just parsed a # character at the start of a line, so we're in
285 // directive mode. Tell the lexer this so any newlines we see will be
Peter Collingbourne84021552011-02-28 02:37:51 +0000286 // converted into an EOD token (this terminates the macro).
Ted Kremenek60e45d42008-11-18 00:34:22 +0000287 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rosec7d1ca52013-02-22 00:32:00 +0000288 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Chris Lattner141e71f2008-03-09 01:54:53 +0000289
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Chris Lattner141e71f2008-03-09 01:54:53 +0000291 // Read the next token, the directive flavor.
292 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Chris Lattner141e71f2008-03-09 01:54:53 +0000294 // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
295 // something bogus), skip it.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000296 if (Tok.isNot(tok::raw_identifier)) {
Ted Kremenek60e45d42008-11-18 00:34:22 +0000297 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000298 // Restore comment saving mode.
Jordan Rose6aad4a32013-02-21 18:53:19 +0000299 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattner141e71f2008-03-09 01:54:53 +0000300 continue;
301 }
302
303 // If the first letter isn't i or e, it isn't intesting to us. We know that
304 // this is safe in the face of spelling differences, because there is no way
305 // to spell an i/e in a strange way that is another letter. Skipping this
306 // allows us to avoid looking up the identifier info for #define/#undef and
307 // other common directives.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000308 const char *RawCharData = Tok.getRawIdentifierData();
309
Chris Lattner141e71f2008-03-09 01:54:53 +0000310 char FirstChar = RawCharData[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000311 if (FirstChar >= 'a' && FirstChar <= 'z' &&
Chris Lattner141e71f2008-03-09 01:54:53 +0000312 FirstChar != 'i' && FirstChar != 'e') {
Ted Kremenek60e45d42008-11-18 00:34:22 +0000313 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000314 // Restore comment saving mode.
Jordan Rose6aad4a32013-02-21 18:53:19 +0000315 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattner141e71f2008-03-09 01:54:53 +0000316 continue;
317 }
Mike Stump1eb44332009-09-09 15:08:12 +0000318
Chris Lattner141e71f2008-03-09 01:54:53 +0000319 // Get the identifier name without trigraphs or embedded newlines. Note
320 // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
321 // when skipping.
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000322 char DirectiveBuf[20];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000323 StringRef Directive;
Chris Lattner141e71f2008-03-09 01:54:53 +0000324 if (!Tok.needsCleaning() && Tok.getLength() < 20) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000325 Directive = StringRef(RawCharData, Tok.getLength());
Chris Lattner141e71f2008-03-09 01:54:53 +0000326 } else {
327 std::string DirectiveStr = getSpelling(Tok);
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000328 unsigned IdLen = DirectiveStr.size();
Chris Lattner141e71f2008-03-09 01:54:53 +0000329 if (IdLen >= 20) {
Ted Kremenek60e45d42008-11-18 00:34:22 +0000330 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000331 // Restore comment saving mode.
Jordan Rose6aad4a32013-02-21 18:53:19 +0000332 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattner141e71f2008-03-09 01:54:53 +0000333 continue;
334 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000335 memcpy(DirectiveBuf, &DirectiveStr[0], IdLen);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000336 Directive = StringRef(DirectiveBuf, IdLen);
Chris Lattner141e71f2008-03-09 01:54:53 +0000337 }
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000339 if (Directive.startswith("if")) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000340 StringRef Sub = Directive.substr(2);
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000341 if (Sub.empty() || // "if"
342 Sub == "def" || // "ifdef"
343 Sub == "ndef") { // "ifndef"
Chris Lattner141e71f2008-03-09 01:54:53 +0000344 // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
345 // bother parsing the condition.
346 DiscardUntilEndOfDirective();
Ted Kremenek60e45d42008-11-18 00:34:22 +0000347 CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
Chris Lattner141e71f2008-03-09 01:54:53 +0000348 /*foundnonskip*/false,
Chandler Carruth3a1a8742011-01-03 17:40:17 +0000349 /*foundelse*/false);
Chris Lattner141e71f2008-03-09 01:54:53 +0000350 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000351 } else if (Directive[0] == 'e') {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000352 StringRef Sub = Directive.substr(1);
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000353 if (Sub == "ndif") { // "endif"
Chris Lattner141e71f2008-03-09 01:54:53 +0000354 PPConditionalInfo CondInfo;
355 CondInfo.WasSkipping = true; // Silence bogus warning.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000356 bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +0000357 (void)InCond; // Silence warning in no-asserts mode.
Chris Lattner141e71f2008-03-09 01:54:53 +0000358 assert(!InCond && "Can't be skipping if not in a conditional!");
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Chris Lattner141e71f2008-03-09 01:54:53 +0000360 // If we popped the outermost skipping block, we're done skipping!
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +0000361 if (!CondInfo.WasSkipping) {
Richard Smithbc9e5582012-06-24 23:56:26 +0000362 // Restore the value of LexingRawMode so that trailing comments
363 // are handled correctly, if we've reached the outermost block.
364 CurPPLexer->LexingRawMode = false;
Richard Smith986f3172012-06-21 00:35:03 +0000365 CheckEndOfDirective("endif");
Richard Smithbc9e5582012-06-24 23:56:26 +0000366 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +0000367 if (Callbacks)
368 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattner141e71f2008-03-09 01:54:53 +0000369 break;
Richard Smith986f3172012-06-21 00:35:03 +0000370 } else {
371 DiscardUntilEndOfDirective();
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +0000372 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000373 } else if (Sub == "lse") { // "else".
Chris Lattner141e71f2008-03-09 01:54:53 +0000374 // #else directive in a skipping conditional. If not in some other
375 // skipping conditional, and if #else hasn't already been seen, enter it
376 // as a non-skipping conditional.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000377 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Mike Stump1eb44332009-09-09 15:08:12 +0000378
Chris Lattner141e71f2008-03-09 01:54:53 +0000379 // If this is a #else with a #else before it, report the error.
380 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Chris Lattner141e71f2008-03-09 01:54:53 +0000382 // Note that we've seen a #else in this conditional.
383 CondInfo.FoundElse = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000384
Chris Lattner141e71f2008-03-09 01:54:53 +0000385 // If the conditional is at the top level, and the #if block wasn't
386 // entered, enter the #else block now.
387 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
388 CondInfo.FoundNonSkip = true;
Richard Smithbc9e5582012-06-24 23:56:26 +0000389 // Restore the value of LexingRawMode so that trailing comments
390 // are handled correctly.
391 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidise26224e2011-05-21 04:26:04 +0000392 CheckEndOfDirective("else");
Richard Smithbc9e5582012-06-24 23:56:26 +0000393 CurPPLexer->LexingRawMode = true;
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +0000394 if (Callbacks)
395 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
Chris Lattner141e71f2008-03-09 01:54:53 +0000396 break;
Argyrios Kyrtzidise26224e2011-05-21 04:26:04 +0000397 } else {
398 DiscardUntilEndOfDirective(); // C99 6.10p4.
Chris Lattner141e71f2008-03-09 01:54:53 +0000399 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000400 } else if (Sub == "lif") { // "elif".
Ted Kremenek60e45d42008-11-18 00:34:22 +0000401 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Chris Lattner141e71f2008-03-09 01:54:53 +0000402
403 bool ShouldEnter;
Chandler Carruth3a1a8742011-01-03 17:40:17 +0000404 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
Chris Lattner141e71f2008-03-09 01:54:53 +0000405 // If this is in a skipping block or if we're already handled this #if
406 // block, don't bother parsing the condition.
407 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
408 DiscardUntilEndOfDirective();
409 ShouldEnter = false;
410 } else {
411 // Restore the value of LexingRawMode so that identifiers are
412 // looked up, etc, inside the #elif expression.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000413 assert(CurPPLexer->LexingRawMode && "We have to be skipping here!");
414 CurPPLexer->LexingRawMode = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000415 IdentifierInfo *IfNDefMacro = 0;
416 ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
Ted Kremenek60e45d42008-11-18 00:34:22 +0000417 CurPPLexer->LexingRawMode = true;
Chris Lattner141e71f2008-03-09 01:54:53 +0000418 }
Chandler Carruth3a1a8742011-01-03 17:40:17 +0000419 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Chris Lattner141e71f2008-03-09 01:54:53 +0000421 // If this is a #elif with a #else before it, report the error.
422 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Chris Lattner141e71f2008-03-09 01:54:53 +0000424 // If this condition is true, enter it!
425 if (ShouldEnter) {
426 CondInfo.FoundNonSkip = true;
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +0000427 if (Callbacks)
428 Callbacks->Elif(Tok.getLocation(),
429 SourceRange(ConditionalBegin, ConditionalEnd),
430 CondInfo.IfLoc);
Chris Lattner141e71f2008-03-09 01:54:53 +0000431 break;
432 }
433 }
434 }
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Ted Kremenek60e45d42008-11-18 00:34:22 +0000436 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000437 // Restore comment saving mode.
Jordan Rose6aad4a32013-02-21 18:53:19 +0000438 if (CurLexer) CurLexer->resetExtendedTokenMode();
Chris Lattner141e71f2008-03-09 01:54:53 +0000439 }
440
441 // Finally, if we are out of the conditional (saw an #endif or ran off the end
442 // of the file, just stop skipping and return to lexing whatever came after
443 // the #if block.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000444 CurPPLexer->LexingRawMode = false;
Argyrios Kyrtzidis6b4ff042011-09-27 17:32:05 +0000445
446 if (Callbacks) {
447 SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc;
448 Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation()));
449 }
Chris Lattner141e71f2008-03-09 01:54:53 +0000450}
451
Ted Kremenek268ee702008-12-12 18:34:08 +0000452void Preprocessor::PTHSkipExcludedConditionalBlock() {
Mike Stump1eb44332009-09-09 15:08:12 +0000453
454 while (1) {
Ted Kremenek268ee702008-12-12 18:34:08 +0000455 assert(CurPTHLexer);
456 assert(CurPTHLexer->LexingRawMode == false);
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Ted Kremenek268ee702008-12-12 18:34:08 +0000458 // Skip to the next '#else', '#elif', or #endif.
459 if (CurPTHLexer->SkipBlock()) {
460 // We have reached an #endif. Both the '#' and 'endif' tokens
461 // have been consumed by the PTHLexer. Just pop off the condition level.
462 PPConditionalInfo CondInfo;
463 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +0000464 (void)InCond; // Silence warning in no-asserts mode.
Ted Kremenek268ee702008-12-12 18:34:08 +0000465 assert(!InCond && "Can't be skipping if not in a conditional!");
466 break;
467 }
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Ted Kremenek268ee702008-12-12 18:34:08 +0000469 // We have reached a '#else' or '#elif'. Lex the next token to get
470 // the directive flavor.
471 Token Tok;
472 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000473
Ted Kremenek268ee702008-12-12 18:34:08 +0000474 // We can actually look up the IdentifierInfo here since we aren't in
475 // raw mode.
476 tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID();
477
478 if (K == tok::pp_else) {
479 // #else: Enter the else condition. We aren't in a nested condition
480 // since we skip those. We're always in the one matching the last
481 // blocked we skipped.
482 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
483 // Note that we've seen a #else in this conditional.
484 CondInfo.FoundElse = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Ted Kremenek268ee702008-12-12 18:34:08 +0000486 // If the #if block wasn't entered then enter the #else block now.
487 if (!CondInfo.FoundNonSkip) {
488 CondInfo.FoundNonSkip = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Peter Collingbourne84021552011-02-28 02:37:51 +0000490 // Scan until the eod token.
Ted Kremeneke5680f32008-12-23 01:30:52 +0000491 CurPTHLexer->ParsingPreprocessorDirective = true;
Daniel Dunbar8533bd52009-04-13 17:57:49 +0000492 DiscardUntilEndOfDirective();
Ted Kremeneke5680f32008-12-23 01:30:52 +0000493 CurPTHLexer->ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000494
Ted Kremenek268ee702008-12-12 18:34:08 +0000495 break;
496 }
Mike Stump1eb44332009-09-09 15:08:12 +0000497
Ted Kremenek268ee702008-12-12 18:34:08 +0000498 // Otherwise skip this block.
499 continue;
500 }
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Ted Kremenek268ee702008-12-12 18:34:08 +0000502 assert(K == tok::pp_elif);
503 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
504
505 // If this is a #elif with a #else before it, report the error.
506 if (CondInfo.FoundElse)
507 Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +0000508
Ted Kremenek268ee702008-12-12 18:34:08 +0000509 // If this is in a skipping block or if we're already handled this #if
Mike Stump1eb44332009-09-09 15:08:12 +0000510 // block, don't bother parsing the condition. We just skip this block.
Ted Kremenek268ee702008-12-12 18:34:08 +0000511 if (CondInfo.FoundNonSkip)
512 continue;
513
514 // Evaluate the condition of the #elif.
515 IdentifierInfo *IfNDefMacro = 0;
516 CurPTHLexer->ParsingPreprocessorDirective = true;
517 bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
518 CurPTHLexer->ParsingPreprocessorDirective = false;
519
520 // If this condition is true, enter it!
521 if (ShouldEnter) {
522 CondInfo.FoundNonSkip = true;
523 break;
524 }
525
526 // Otherwise, skip this block and go to the next one.
527 continue;
528 }
529}
530
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000531const FileEntry *Preprocessor::LookupFile(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000532 StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000533 bool isAngled,
534 const DirectoryLookup *FromDir,
535 const DirectoryLookup *&CurDir,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000536 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000537 SmallVectorImpl<char> *RelativePath,
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000538 Module **SuggestedModule,
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000539 bool SkipCache) {
Chris Lattner10725092008-03-09 04:17:44 +0000540 // If the header lookup mechanism may be relative to the current file, pass in
541 // info about where the current file is.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000542 const FileEntry *CurFileEnt = 0;
Chris Lattner10725092008-03-09 04:17:44 +0000543 if (!FromDir) {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000544 FileID FID = getCurrentFileLexer()->getFileID();
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000545 CurFileEnt = SourceMgr.getFileEntryForID(FID);
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Chris Lattnerbe5c64d2009-02-04 19:45:07 +0000547 // If there is no file entry associated with this file, it must be the
548 // predefines buffer. Any other file is not lexed with a normal lexer, so
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000549 // it won't be scanned for preprocessor directives. If we have the
550 // predefines buffer, resolve #include references (which come from the
551 // -include command line argument) as if they came from the main file, this
552 // affects file lookup etc.
553 if (CurFileEnt == 0) {
Chris Lattnerbe5c64d2009-02-04 19:45:07 +0000554 FID = SourceMgr.getMainFileID();
555 CurFileEnt = SourceMgr.getFileEntryForID(FID);
556 }
Chris Lattner10725092008-03-09 04:17:44 +0000557 }
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Chris Lattner10725092008-03-09 04:17:44 +0000559 // Do a standard file entry lookup.
560 CurDir = CurDirLookup;
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000561 const FileEntry *FE = HeaderInfo.LookupFile(
Manuel Klimek74124942011-04-26 21:50:03 +0000562 Filename, isAngled, FromDir, CurDir, CurFileEnt,
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000563 SearchPath, RelativePath, SuggestedModule, SkipCache);
Chris Lattnerf45b6462010-01-22 00:14:44 +0000564 if (FE) return FE;
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Chris Lattner10725092008-03-09 04:17:44 +0000566 // Otherwise, see if this is a subframework header. If so, this is relative
567 // to one of the headers on the #include stack. Walk the list of the current
568 // headers on the #include stack and pass them to HeaderInfo.
Ted Kremenek81d24e12008-11-20 16:19:53 +0000569 if (IsFileLexer()) {
Ted Kremenek41938c82008-11-19 21:57:25 +0000570 if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID())))
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000571 if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt,
Douglas Gregor1b58c742013-02-08 00:10:48 +0000572 SearchPath, RelativePath,
573 SuggestedModule)))
Chris Lattner10725092008-03-09 04:17:44 +0000574 return FE;
575 }
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Chris Lattner10725092008-03-09 04:17:44 +0000577 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
578 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
Ted Kremenek81d24e12008-11-20 16:19:53 +0000579 if (IsFileLexer(ISEntry)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000580 if ((CurFileEnt =
Ted Kremenek41938c82008-11-19 21:57:25 +0000581 SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID())))
Manuel Klimek74124942011-04-26 21:50:03 +0000582 if ((FE = HeaderInfo.LookupSubframeworkHeader(
Douglas Gregor1b58c742013-02-08 00:10:48 +0000583 Filename, CurFileEnt, SearchPath, RelativePath,
584 SuggestedModule)))
Chris Lattner10725092008-03-09 04:17:44 +0000585 return FE;
586 }
587 }
Mike Stump1eb44332009-09-09 15:08:12 +0000588
Chris Lattner10725092008-03-09 04:17:44 +0000589 // Otherwise, we really couldn't find the file.
590 return 0;
591}
592
Chris Lattner141e71f2008-03-09 01:54:53 +0000593
594//===----------------------------------------------------------------------===//
595// Preprocessor Directive Handling.
596//===----------------------------------------------------------------------===//
597
David Blaikie8c0b3782012-06-06 18:52:13 +0000598class Preprocessor::ResetMacroExpansionHelper {
599public:
600 ResetMacroExpansionHelper(Preprocessor *pp)
601 : PP(pp), save(pp->DisableMacroExpansion) {
602 if (pp->MacroExpansionInDirectivesOverride)
603 pp->DisableMacroExpansion = false;
604 }
605 ~ResetMacroExpansionHelper() {
606 PP->DisableMacroExpansion = save;
607 }
608private:
609 Preprocessor *PP;
610 bool save;
611};
612
Chris Lattner141e71f2008-03-09 01:54:53 +0000613/// HandleDirective - This callback is invoked when the lexer sees a # token
Mike Stump1eb44332009-09-09 15:08:12 +0000614/// at the start of a line. This consumes the directive, modifies the
Chris Lattner141e71f2008-03-09 01:54:53 +0000615/// lexer/preprocessor state, and advances the lexer(s) so that the next token
616/// read is the correct one.
617void Preprocessor::HandleDirective(Token &Result) {
618 // FIXME: Traditional: # with whitespace before it not recognized by K&R?
Mike Stump1eb44332009-09-09 15:08:12 +0000619
Chris Lattner141e71f2008-03-09 01:54:53 +0000620 // We just parsed a # character at the start of a line, so we're in directive
621 // mode. Tell the lexer this so any newlines we see will be converted into an
Peter Collingbourne84021552011-02-28 02:37:51 +0000622 // EOD token (which terminates the directive).
Ted Kremenek60e45d42008-11-18 00:34:22 +0000623 CurPPLexer->ParsingPreprocessorDirective = true;
Jordan Rose6aad4a32013-02-21 18:53:19 +0000624 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
Mike Stump1eb44332009-09-09 15:08:12 +0000625
Chris Lattner141e71f2008-03-09 01:54:53 +0000626 ++NumDirectives;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000627
Chris Lattner141e71f2008-03-09 01:54:53 +0000628 // We are about to read a token. For the multiple-include optimization FA to
Mike Stump1eb44332009-09-09 15:08:12 +0000629 // work, we have to remember if we had read any tokens *before* this
Chris Lattner141e71f2008-03-09 01:54:53 +0000630 // pp-directive.
Chris Lattner1d9c54d2009-12-14 04:54:40 +0000631 bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Chris Lattner42aa16c2009-03-18 21:00:25 +0000633 // Save the '#' token in case we need to return it later.
634 Token SavedHash = Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000635
Chris Lattner141e71f2008-03-09 01:54:53 +0000636 // Read the next token, the directive flavor. This isn't expanded due to
637 // C99 6.10.3p8.
638 LexUnexpandedToken(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Chris Lattner141e71f2008-03-09 01:54:53 +0000640 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
641 // #define A(x) #x
642 // A(abc
643 // #warning blah
644 // def)
Richard Smitha3ca4d62011-12-16 22:50:01 +0000645 // If so, the user is relying on undefined behavior, emit a diagnostic. Do
646 // not support this for #include-like directives, since that can result in
647 // terrible diagnostics, and does not work in GCC.
648 if (InMacroArgs) {
649 if (IdentifierInfo *II = Result.getIdentifierInfo()) {
650 switch (II->getPPKeywordID()) {
651 case tok::pp_include:
652 case tok::pp_import:
653 case tok::pp_include_next:
654 case tok::pp___include_macros:
655 Diag(Result, diag::err_embedded_include) << II->getName();
656 DiscardUntilEndOfDirective();
657 return;
658 default:
659 break;
660 }
661 }
Chris Lattner141e71f2008-03-09 01:54:53 +0000662 Diag(Result, diag::ext_embedded_directive);
Richard Smitha3ca4d62011-12-16 22:50:01 +0000663 }
Mike Stump1eb44332009-09-09 15:08:12 +0000664
David Blaikie8c0b3782012-06-06 18:52:13 +0000665 // Temporarily enable macro expansion if set so
666 // and reset to previous state when returning from this function.
667 ResetMacroExpansionHelper helper(this);
668
Chris Lattner141e71f2008-03-09 01:54:53 +0000669 switch (Result.getKind()) {
Peter Collingbourne84021552011-02-28 02:37:51 +0000670 case tok::eod:
Chris Lattner141e71f2008-03-09 01:54:53 +0000671 return; // null directive.
Douglas Gregorf44e8542010-08-24 19:08:16 +0000672 case tok::code_completion:
673 if (CodeComplete)
674 CodeComplete->CodeCompleteDirective(
675 CurPPLexer->getConditionalStackDepth() > 0);
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +0000676 setCodeCompletionReached();
Douglas Gregorf44e8542010-08-24 19:08:16 +0000677 return;
Chris Lattner478a18e2009-01-26 06:19:46 +0000678 case tok::numeric_constant: // # 7 GNU line marker directive.
David Blaikie4e4d0842012-03-11 07:00:24 +0000679 if (getLangOpts().AsmPreprocessor)
Chris Lattner5f607c42009-03-18 20:41:10 +0000680 break; // # 4 is not a preprocessor directive in .S files.
Chris Lattner478a18e2009-01-26 06:19:46 +0000681 return HandleDigitDirective(Result);
Chris Lattner141e71f2008-03-09 01:54:53 +0000682 default:
683 IdentifierInfo *II = Result.getIdentifierInfo();
684 if (II == 0) break; // Not an identifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Chris Lattner141e71f2008-03-09 01:54:53 +0000686 // Ask what the preprocessor keyword ID is.
687 switch (II->getPPKeywordID()) {
688 default: break;
689 // C99 6.10.1 - Conditional Inclusion.
690 case tok::pp_if:
691 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
692 case tok::pp_ifdef:
693 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
694 case tok::pp_ifndef:
695 return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
696 case tok::pp_elif:
697 return HandleElifDirective(Result);
698 case tok::pp_else:
699 return HandleElseDirective(Result);
700 case tok::pp_endif:
701 return HandleEndifDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000702
Chris Lattner141e71f2008-03-09 01:54:53 +0000703 // C99 6.10.2 - Source File Inclusion.
704 case tok::pp_include:
Douglas Gregorecdcb882010-10-20 22:00:55 +0000705 // Handle #include.
706 return HandleIncludeDirective(SavedHash.getLocation(), Result);
Chris Lattnerb8e240e2009-04-08 18:24:34 +0000707 case tok::pp___include_macros:
Douglas Gregorecdcb882010-10-20 22:00:55 +0000708 // Handle -imacros.
709 return HandleIncludeMacrosDirective(SavedHash.getLocation(), Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Chris Lattner141e71f2008-03-09 01:54:53 +0000711 // C99 6.10.3 - Macro Replacement.
712 case tok::pp_define:
713 return HandleDefineDirective(Result);
714 case tok::pp_undef:
715 return HandleUndefDirective(Result);
716
717 // C99 6.10.4 - Line Control.
718 case tok::pp_line:
Chris Lattner359cc442009-01-26 05:29:08 +0000719 return HandleLineDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Chris Lattner141e71f2008-03-09 01:54:53 +0000721 // C99 6.10.5 - Error Directive.
722 case tok::pp_error:
723 return HandleUserDiagnosticDirective(Result, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000724
Chris Lattner141e71f2008-03-09 01:54:53 +0000725 // C99 6.10.6 - Pragma Directive.
726 case tok::pp_pragma:
Douglas Gregor80c60f72010-09-09 22:45:38 +0000727 return HandlePragmaDirective(PIK_HashPragma);
Mike Stump1eb44332009-09-09 15:08:12 +0000728
Chris Lattner141e71f2008-03-09 01:54:53 +0000729 // GNU Extensions.
730 case tok::pp_import:
Douglas Gregorecdcb882010-10-20 22:00:55 +0000731 return HandleImportDirective(SavedHash.getLocation(), Result);
Chris Lattner141e71f2008-03-09 01:54:53 +0000732 case tok::pp_include_next:
Douglas Gregorecdcb882010-10-20 22:00:55 +0000733 return HandleIncludeNextDirective(SavedHash.getLocation(), Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000734
Chris Lattner141e71f2008-03-09 01:54:53 +0000735 case tok::pp_warning:
736 Diag(Result, diag::ext_pp_warning_directive);
737 return HandleUserDiagnosticDirective(Result, true);
738 case tok::pp_ident:
739 return HandleIdentSCCSDirective(Result);
740 case tok::pp_sccs:
741 return HandleIdentSCCSDirective(Result);
742 case tok::pp_assert:
743 //isExtension = true; // FIXME: implement #assert
744 break;
745 case tok::pp_unassert:
746 //isExtension = true; // FIXME: implement #unassert
747 break;
Douglas Gregor7143aab2011-09-01 17:04:32 +0000748
Douglas Gregor1ac13c32012-01-03 19:48:16 +0000749 case tok::pp___public_macro:
David Blaikie4e4d0842012-03-11 07:00:24 +0000750 if (getLangOpts().Modules)
Douglas Gregor94ad28b2012-01-03 18:24:14 +0000751 return HandleMacroPublicDirective(Result);
752 break;
753
Douglas Gregor1ac13c32012-01-03 19:48:16 +0000754 case tok::pp___private_macro:
David Blaikie4e4d0842012-03-11 07:00:24 +0000755 if (getLangOpts().Modules)
Douglas Gregor94ad28b2012-01-03 18:24:14 +0000756 return HandleMacroPrivateDirective(Result);
757 break;
Chris Lattner141e71f2008-03-09 01:54:53 +0000758 }
759 break;
760 }
Mike Stump1eb44332009-09-09 15:08:12 +0000761
Chris Lattner42aa16c2009-03-18 21:00:25 +0000762 // If this is a .S file, treat unknown # directives as non-preprocessor
763 // directives. This is important because # may be a comment or introduce
764 // various pseudo-ops. Just return the # token and push back the following
765 // token to be lexed next time.
David Blaikie4e4d0842012-03-11 07:00:24 +0000766 if (getLangOpts().AsmPreprocessor) {
Daniel Dunbar3d399a02009-07-13 21:48:50 +0000767 Token *Toks = new Token[2];
Chris Lattner42aa16c2009-03-18 21:00:25 +0000768 // Return the # and the token after it.
Mike Stump1eb44332009-09-09 15:08:12 +0000769 Toks[0] = SavedHash;
Chris Lattner42aa16c2009-03-18 21:00:25 +0000770 Toks[1] = Result;
Chris Lattnerba3ca522011-01-06 05:01:51 +0000771
772 // If the second token is a hashhash token, then we need to translate it to
773 // unknown so the token lexer doesn't try to perform token pasting.
774 if (Result.is(tok::hashhash))
775 Toks[1].setKind(tok::unknown);
776
Chris Lattner42aa16c2009-03-18 21:00:25 +0000777 // Enter this token stream so that we re-lex the tokens. Make sure to
778 // enable macro expansion, in case the token after the # is an identifier
779 // that is expanded.
780 EnterTokenStream(Toks, 2, false, true);
781 return;
782 }
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Chris Lattner141e71f2008-03-09 01:54:53 +0000784 // If we reached here, the preprocessing token is not valid!
785 Diag(Result, diag::err_pp_invalid_directive);
Mike Stump1eb44332009-09-09 15:08:12 +0000786
Chris Lattner141e71f2008-03-09 01:54:53 +0000787 // Read the rest of the PP line.
788 DiscardUntilEndOfDirective();
Mike Stump1eb44332009-09-09 15:08:12 +0000789
Chris Lattner141e71f2008-03-09 01:54:53 +0000790 // Okay, we're done parsing the directive.
791}
792
Chris Lattner478a18e2009-01-26 06:19:46 +0000793/// GetLineValue - Convert a numeric token into an unsigned value, emitting
794/// Diagnostic DiagID if it is invalid, and returning the value in Val.
795static bool GetLineValue(Token &DigitTok, unsigned &Val,
Michael Ilsemanec276082013-04-10 01:04:18 +0000796 unsigned DiagID, Preprocessor &PP,
797 bool IsGNULineDirective=false) {
Chris Lattner478a18e2009-01-26 06:19:46 +0000798 if (DigitTok.isNot(tok::numeric_constant)) {
799 PP.Diag(DigitTok, DiagID);
Mike Stump1eb44332009-09-09 15:08:12 +0000800
Peter Collingbourne84021552011-02-28 02:37:51 +0000801 if (DigitTok.isNot(tok::eod))
Chris Lattner478a18e2009-01-26 06:19:46 +0000802 PP.DiscardUntilEndOfDirective();
803 return true;
804 }
Mike Stump1eb44332009-09-09 15:08:12 +0000805
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000806 SmallString<64> IntegerBuffer;
Chris Lattner478a18e2009-01-26 06:19:46 +0000807 IntegerBuffer.resize(DigitTok.getLength());
808 const char *DigitTokBegin = &IntegerBuffer[0];
Douglas Gregor453091c2010-03-16 22:30:13 +0000809 bool Invalid = false;
810 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid);
811 if (Invalid)
812 return true;
813
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000814 // Verify that we have a simple digit-sequence, and compute the value. This
815 // is always a simple digit string computed in decimal, so we do this manually
816 // here.
817 Val = 0;
818 for (unsigned i = 0; i != ActualLength; ++i) {
Jordan Rose3f6f51e2013-02-08 22:30:41 +0000819 if (!isDigit(DigitTokBegin[i])) {
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000820 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i),
Michael Ilsemanec276082013-04-10 01:04:18 +0000821 diag::err_pp_line_digit_sequence) << IsGNULineDirective;
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000822 PP.DiscardUntilEndOfDirective();
823 return true;
824 }
Mike Stump1eb44332009-09-09 15:08:12 +0000825
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000826 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0');
827 if (NextVal < Val) { // overflow.
828 PP.Diag(DigitTok, DiagID);
829 PP.DiscardUntilEndOfDirective();
830 return true;
831 }
832 Val = NextVal;
Chris Lattner478a18e2009-01-26 06:19:46 +0000833 }
Mike Stump1eb44332009-09-09 15:08:12 +0000834
Fariborz Jahanian540f9ae2012-06-26 21:19:20 +0000835 if (DigitTokBegin[0] == '0' && Val)
Michael Ilsemanec276082013-04-10 01:04:18 +0000836 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal)
837 << IsGNULineDirective;
Mike Stump1eb44332009-09-09 15:08:12 +0000838
Chris Lattner478a18e2009-01-26 06:19:46 +0000839 return false;
840}
841
James Dennettdc201692012-06-22 05:46:07 +0000842/// \brief Handle a \#line directive: C99 6.10.4.
843///
844/// The two acceptable forms are:
845/// \verbatim
Chris Lattner359cc442009-01-26 05:29:08 +0000846/// # line digit-sequence
847/// # line digit-sequence "s-char-sequence"
James Dennettdc201692012-06-22 05:46:07 +0000848/// \endverbatim
Chris Lattner359cc442009-01-26 05:29:08 +0000849void Preprocessor::HandleLineDirective(Token &Tok) {
850 // Read the line # and string argument. Per C99 6.10.4p5, these tokens are
851 // expanded.
852 Token DigitTok;
853 Lex(DigitTok);
854
Chris Lattner359cc442009-01-26 05:29:08 +0000855 // Validate the number and convert it to an unsigned.
Chris Lattner478a18e2009-01-26 06:19:46 +0000856 unsigned LineNo;
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000857 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
Chris Lattner359cc442009-01-26 05:29:08 +0000858 return;
Fariborz Jahanian540f9ae2012-06-26 21:19:20 +0000859
860 if (LineNo == 0)
861 Diag(DigitTok, diag::ext_pp_line_zero);
Chris Lattner359cc442009-01-26 05:29:08 +0000862
Chris Lattner478a18e2009-01-26 06:19:46 +0000863 // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a
864 // number greater than 2147483647". C90 requires that the line # be <= 32767.
Eli Friedman158ebfb2011-10-10 23:35:28 +0000865 unsigned LineLimit = 32768U;
Richard Smith80ad52f2013-01-02 11:42:31 +0000866 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Eli Friedman158ebfb2011-10-10 23:35:28 +0000867 LineLimit = 2147483648U;
Chris Lattner359cc442009-01-26 05:29:08 +0000868 if (LineNo >= LineLimit)
869 Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit;
Richard Smith80ad52f2013-01-02 11:42:31 +0000870 else if (LangOpts.CPlusPlus11 && LineNo >= 32768U)
Richard Smith661a9962011-10-15 01:18:56 +0000871 Diag(DigitTok, diag::warn_cxx98_compat_pp_line_too_big);
Mike Stump1eb44332009-09-09 15:08:12 +0000872
Chris Lattner5b9a5042009-01-26 07:57:50 +0000873 int FilenameID = -1;
Chris Lattner359cc442009-01-26 05:29:08 +0000874 Token StrTok;
875 Lex(StrTok);
876
Peter Collingbourne84021552011-02-28 02:37:51 +0000877 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
878 // string followed by eod.
879 if (StrTok.is(tok::eod))
Chris Lattner359cc442009-01-26 05:29:08 +0000880 ; // ok
881 else if (StrTok.isNot(tok::string_literal)) {
882 Diag(StrTok, diag::err_pp_line_invalid_filename);
Richard Smith99831e42012-03-06 03:21:47 +0000883 return DiscardUntilEndOfDirective();
884 } else if (StrTok.hasUDSuffix()) {
885 Diag(StrTok, diag::err_invalid_string_udl);
886 return DiscardUntilEndOfDirective();
Chris Lattner359cc442009-01-26 05:29:08 +0000887 } else {
Chris Lattner5b9a5042009-01-26 07:57:50 +0000888 // Parse and validate the string, converting it into a unique ID.
889 StringLiteralParser Literal(&StrTok, 1, *this);
Douglas Gregor5cee1192011-07-27 05:40:30 +0000890 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattner5b9a5042009-01-26 07:57:50 +0000891 if (Literal.hadError)
892 return DiscardUntilEndOfDirective();
893 if (Literal.Pascal) {
894 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
895 return DiscardUntilEndOfDirective();
896 }
Jay Foad65aa6882011-06-21 15:13:30 +0000897 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump1eb44332009-09-09 15:08:12 +0000898
Peter Collingbourne84021552011-02-28 02:37:51 +0000899 // Verify that there is nothing after the string, other than EOD. Because
Chris Lattnerab82f412009-04-17 23:30:53 +0000900 // of C99 6.10.4p5, macros that expand to empty tokens are ok.
901 CheckEndOfDirective("line", true);
Chris Lattner359cc442009-01-26 05:29:08 +0000902 }
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Chris Lattner4c4ea172009-02-03 21:52:55 +0000904 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID);
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Chris Lattner16629382009-03-27 17:13:49 +0000906 if (Callbacks)
Chris Lattner86d0ef72010-04-14 04:28:50 +0000907 Callbacks->FileChanged(CurPPLexer->getSourceLocation(),
908 PPCallbacks::RenameFile,
Chris Lattner16629382009-03-27 17:13:49 +0000909 SrcMgr::C_User);
Chris Lattner359cc442009-01-26 05:29:08 +0000910}
911
Chris Lattner478a18e2009-01-26 06:19:46 +0000912/// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line
913/// marker directive.
914static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit,
915 bool &IsSystemHeader, bool &IsExternCHeader,
916 Preprocessor &PP) {
917 unsigned FlagVal;
918 Token FlagTok;
919 PP.Lex(FlagTok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000920 if (FlagTok.is(tok::eod)) return false;
Chris Lattner478a18e2009-01-26 06:19:46 +0000921 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
922 return true;
923
924 if (FlagVal == 1) {
925 IsFileEntry = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000926
Chris Lattner478a18e2009-01-26 06:19:46 +0000927 PP.Lex(FlagTok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000928 if (FlagTok.is(tok::eod)) return false;
Chris Lattner478a18e2009-01-26 06:19:46 +0000929 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
930 return true;
931 } else if (FlagVal == 2) {
932 IsFileExit = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000933
Chris Lattner137b6a62009-02-04 06:25:26 +0000934 SourceManager &SM = PP.getSourceManager();
935 // If we are leaving the current presumed file, check to make sure the
936 // presumed include stack isn't empty!
937 FileID CurFileID =
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000938 SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first;
Chris Lattner137b6a62009-02-04 06:25:26 +0000939 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000940 if (PLoc.isInvalid())
941 return true;
942
Chris Lattner137b6a62009-02-04 06:25:26 +0000943 // If there is no include loc (main file) or if the include loc is in a
944 // different physical file, then we aren't in a "1" line marker flag region.
945 SourceLocation IncLoc = PLoc.getIncludeLoc();
946 if (IncLoc.isInvalid() ||
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000947 SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) {
Chris Lattner137b6a62009-02-04 06:25:26 +0000948 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop);
949 PP.DiscardUntilEndOfDirective();
950 return true;
951 }
Mike Stump1eb44332009-09-09 15:08:12 +0000952
Chris Lattner478a18e2009-01-26 06:19:46 +0000953 PP.Lex(FlagTok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000954 if (FlagTok.is(tok::eod)) return false;
Chris Lattner478a18e2009-01-26 06:19:46 +0000955 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
956 return true;
957 }
958
959 // We must have 3 if there are still flags.
960 if (FlagVal != 3) {
961 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000962 PP.DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000963 return true;
964 }
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Chris Lattner478a18e2009-01-26 06:19:46 +0000966 IsSystemHeader = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000967
Chris Lattner478a18e2009-01-26 06:19:46 +0000968 PP.Lex(FlagTok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000969 if (FlagTok.is(tok::eod)) return false;
Chris Lattner9d79eba2009-02-04 05:21:58 +0000970 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
Chris Lattner478a18e2009-01-26 06:19:46 +0000971 return true;
972
973 // We must have 4 if there is yet another flag.
974 if (FlagVal != 4) {
975 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000976 PP.DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000977 return true;
978 }
Mike Stump1eb44332009-09-09 15:08:12 +0000979
Chris Lattner478a18e2009-01-26 06:19:46 +0000980 IsExternCHeader = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000981
Chris Lattner478a18e2009-01-26 06:19:46 +0000982 PP.Lex(FlagTok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000983 if (FlagTok.is(tok::eod)) return false;
Chris Lattner478a18e2009-01-26 06:19:46 +0000984
985 // There are no more valid flags here.
986 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000987 PP.DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000988 return true;
989}
990
991/// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is
992/// one of the following forms:
993///
994/// # 42
Mike Stump1eb44332009-09-09 15:08:12 +0000995/// # 42 "file" ('1' | '2')?
Chris Lattner478a18e2009-01-26 06:19:46 +0000996/// # 42 "file" ('1' | '2')? '3' '4'?
997///
998void Preprocessor::HandleDigitDirective(Token &DigitTok) {
999 // Validate the number and convert it to an unsigned. GNU does not have a
1000 // line # limit other than it fit in 32-bits.
1001 unsigned LineNo;
1002 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
Michael Ilsemanec276082013-04-10 01:04:18 +00001003 *this, true))
Chris Lattner478a18e2009-01-26 06:19:46 +00001004 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001005
Chris Lattner478a18e2009-01-26 06:19:46 +00001006 Token StrTok;
1007 Lex(StrTok);
Mike Stump1eb44332009-09-09 15:08:12 +00001008
Chris Lattner478a18e2009-01-26 06:19:46 +00001009 bool IsFileEntry = false, IsFileExit = false;
1010 bool IsSystemHeader = false, IsExternCHeader = false;
Chris Lattner5b9a5042009-01-26 07:57:50 +00001011 int FilenameID = -1;
1012
Peter Collingbourne84021552011-02-28 02:37:51 +00001013 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
1014 // string followed by eod.
1015 if (StrTok.is(tok::eod))
Chris Lattner478a18e2009-01-26 06:19:46 +00001016 ; // ok
1017 else if (StrTok.isNot(tok::string_literal)) {
1018 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
Chris Lattner5b9a5042009-01-26 07:57:50 +00001019 return DiscardUntilEndOfDirective();
Richard Smith99831e42012-03-06 03:21:47 +00001020 } else if (StrTok.hasUDSuffix()) {
1021 Diag(StrTok, diag::err_invalid_string_udl);
1022 return DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +00001023 } else {
Chris Lattner5b9a5042009-01-26 07:57:50 +00001024 // Parse and validate the string, converting it into a unique ID.
1025 StringLiteralParser Literal(&StrTok, 1, *this);
Douglas Gregor5cee1192011-07-27 05:40:30 +00001026 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattner5b9a5042009-01-26 07:57:50 +00001027 if (Literal.hadError)
1028 return DiscardUntilEndOfDirective();
1029 if (Literal.Pascal) {
1030 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1031 return DiscardUntilEndOfDirective();
1032 }
Jay Foad65aa6882011-06-21 15:13:30 +00001033 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
Mike Stump1eb44332009-09-09 15:08:12 +00001034
Chris Lattner478a18e2009-01-26 06:19:46 +00001035 // If a filename was present, read any flags that are present.
Mike Stump1eb44332009-09-09 15:08:12 +00001036 if (ReadLineMarkerFlags(IsFileEntry, IsFileExit,
Chris Lattner5b9a5042009-01-26 07:57:50 +00001037 IsSystemHeader, IsExternCHeader, *this))
Chris Lattner478a18e2009-01-26 06:19:46 +00001038 return;
Chris Lattner478a18e2009-01-26 06:19:46 +00001039 }
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Chris Lattner9d79eba2009-02-04 05:21:58 +00001041 // Create a line note with this information.
1042 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID,
Mike Stump1eb44332009-09-09 15:08:12 +00001043 IsFileEntry, IsFileExit,
Chris Lattner9d79eba2009-02-04 05:21:58 +00001044 IsSystemHeader, IsExternCHeader);
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Chris Lattner16629382009-03-27 17:13:49 +00001046 // If the preprocessor has callbacks installed, notify them of the #line
1047 // change. This is used so that the line marker comes out in -E mode for
1048 // example.
1049 if (Callbacks) {
1050 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile;
1051 if (IsFileEntry)
1052 Reason = PPCallbacks::EnterFile;
1053 else if (IsFileExit)
1054 Reason = PPCallbacks::ExitFile;
1055 SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User;
1056 if (IsExternCHeader)
1057 FileKind = SrcMgr::C_ExternCSystem;
1058 else if (IsSystemHeader)
1059 FileKind = SrcMgr::C_System;
Mike Stump1eb44332009-09-09 15:08:12 +00001060
Chris Lattner86d0ef72010-04-14 04:28:50 +00001061 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
Chris Lattner16629382009-03-27 17:13:49 +00001062 }
Chris Lattner478a18e2009-01-26 06:19:46 +00001063}
1064
1065
Chris Lattner099dd052009-01-26 05:30:54 +00001066/// HandleUserDiagnosticDirective - Handle a #warning or #error directive.
1067///
Mike Stump1eb44332009-09-09 15:08:12 +00001068void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
Chris Lattner141e71f2008-03-09 01:54:53 +00001069 bool isWarning) {
Chris Lattner099dd052009-01-26 05:30:54 +00001070 // PTH doesn't emit #warning or #error directives.
1071 if (CurPTHLexer)
Chris Lattner359cc442009-01-26 05:29:08 +00001072 return CurPTHLexer->DiscardToEndOfLine();
1073
Chris Lattner141e71f2008-03-09 01:54:53 +00001074 // Read the rest of the line raw. We do this because we don't want macros
1075 // to be expanded and we don't require that the tokens be valid preprocessing
1076 // tokens. For example, this is allowed: "#warning ` 'foo". GCC does
1077 // collapse multiple consequtive white space between tokens, but this isn't
1078 // specified by the standard.
Benjamin Kramer3093b202012-05-18 19:32:16 +00001079 SmallString<128> Message;
1080 CurLexer->ReadToEndOfLine(&Message);
Ted Kremenek34a2c422012-02-02 00:16:13 +00001081
1082 // Find the first non-whitespace character, so that we can make the
1083 // diagnostic more succinct.
Benjamin Kramer3093b202012-05-18 19:32:16 +00001084 StringRef Msg = Message.str().ltrim(" ");
1085
Chris Lattner359cc442009-01-26 05:29:08 +00001086 if (isWarning)
Ted Kremenek34a2c422012-02-02 00:16:13 +00001087 Diag(Tok, diag::pp_hash_warning) << Msg;
Chris Lattner359cc442009-01-26 05:29:08 +00001088 else
Ted Kremenek34a2c422012-02-02 00:16:13 +00001089 Diag(Tok, diag::err_pp_hash_error) << Msg;
Chris Lattner141e71f2008-03-09 01:54:53 +00001090}
1091
1092/// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
1093///
1094void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
1095 // Yes, this directive is an extension.
1096 Diag(Tok, diag::ext_pp_ident_directive);
Mike Stump1eb44332009-09-09 15:08:12 +00001097
Chris Lattner141e71f2008-03-09 01:54:53 +00001098 // Read the string argument.
1099 Token StrTok;
1100 Lex(StrTok);
Mike Stump1eb44332009-09-09 15:08:12 +00001101
Chris Lattner141e71f2008-03-09 01:54:53 +00001102 // If the token kind isn't a string, it's a malformed directive.
1103 if (StrTok.isNot(tok::string_literal) &&
Chris Lattner3692b092008-11-18 07:59:24 +00001104 StrTok.isNot(tok::wide_string_literal)) {
1105 Diag(StrTok, diag::err_pp_malformed_ident);
Peter Collingbourne84021552011-02-28 02:37:51 +00001106 if (StrTok.isNot(tok::eod))
Chris Lattner099dd052009-01-26 05:30:54 +00001107 DiscardUntilEndOfDirective();
Chris Lattner3692b092008-11-18 07:59:24 +00001108 return;
1109 }
Mike Stump1eb44332009-09-09 15:08:12 +00001110
Richard Smith99831e42012-03-06 03:21:47 +00001111 if (StrTok.hasUDSuffix()) {
1112 Diag(StrTok, diag::err_invalid_string_udl);
1113 return DiscardUntilEndOfDirective();
1114 }
1115
Peter Collingbourne84021552011-02-28 02:37:51 +00001116 // Verify that there is nothing after the string, other than EOD.
Chris Lattner35410d52009-04-14 05:07:49 +00001117 CheckEndOfDirective("ident");
Chris Lattner141e71f2008-03-09 01:54:53 +00001118
Douglas Gregor453091c2010-03-16 22:30:13 +00001119 if (Callbacks) {
1120 bool Invalid = false;
1121 std::string Str = getSpelling(StrTok, &Invalid);
1122 if (!Invalid)
1123 Callbacks->Ident(Tok.getLocation(), Str);
1124 }
Chris Lattner141e71f2008-03-09 01:54:53 +00001125}
1126
Douglas Gregor94ad28b2012-01-03 18:24:14 +00001127/// \brief Handle a #public directive.
1128void Preprocessor::HandleMacroPublicDirective(Token &Tok) {
Douglas Gregor7143aab2011-09-01 17:04:32 +00001129 Token MacroNameTok;
1130 ReadMacroName(MacroNameTok, 2);
1131
1132 // Error reading macro name? If so, diagnostic already issued.
1133 if (MacroNameTok.is(tok::eod))
1134 return;
1135
Douglas Gregor1ac13c32012-01-03 19:48:16 +00001136 // Check to see if this is the last token on the #__public_macro line.
1137 CheckEndOfDirective("__public_macro");
Douglas Gregor7143aab2011-09-01 17:04:32 +00001138
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001139 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregor7143aab2011-09-01 17:04:32 +00001140 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001141 MacroDirective *MD = getMacroDirective(II);
Douglas Gregor7143aab2011-09-01 17:04:32 +00001142
1143 // If the macro is not defined, this is an error.
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00001144 if (MD == 0) {
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001145 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregor7143aab2011-09-01 17:04:32 +00001146 return;
1147 }
1148
1149 // Note that this macro has now been exported.
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001150 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1151 MacroNameTok.getLocation(), /*IsPublic=*/true));
Douglas Gregoraa93a872011-10-17 15:32:29 +00001152}
1153
Douglas Gregor94ad28b2012-01-03 18:24:14 +00001154/// \brief Handle a #private directive.
Douglas Gregoraa93a872011-10-17 15:32:29 +00001155void Preprocessor::HandleMacroPrivateDirective(Token &Tok) {
1156 Token MacroNameTok;
1157 ReadMacroName(MacroNameTok, 2);
1158
1159 // Error reading macro name? If so, diagnostic already issued.
1160 if (MacroNameTok.is(tok::eod))
1161 return;
1162
Douglas Gregor1ac13c32012-01-03 19:48:16 +00001163 // Check to see if this is the last token on the #__private_macro line.
1164 CheckEndOfDirective("__private_macro");
Douglas Gregoraa93a872011-10-17 15:32:29 +00001165
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001166 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
Douglas Gregoraa93a872011-10-17 15:32:29 +00001167 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001168 MacroDirective *MD = getMacroDirective(II);
Douglas Gregoraa93a872011-10-17 15:32:29 +00001169
1170 // If the macro is not defined, this is an error.
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00001171 if (MD == 0) {
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001172 Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
Douglas Gregoraa93a872011-10-17 15:32:29 +00001173 return;
1174 }
1175
1176 // Note that this macro has now been marked private.
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001177 appendMacroDirective(II, AllocateVisibilityMacroDirective(
1178 MacroNameTok.getLocation(), /*IsPublic=*/false));
Douglas Gregor7143aab2011-09-01 17:04:32 +00001179}
1180
Chris Lattner141e71f2008-03-09 01:54:53 +00001181//===----------------------------------------------------------------------===//
1182// Preprocessor Include Directive Handling.
1183//===----------------------------------------------------------------------===//
1184
1185/// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
James Dennettdc201692012-06-22 05:46:07 +00001186/// checked and spelled filename, e.g. as an operand of \#include. This returns
Chris Lattner141e71f2008-03-09 01:54:53 +00001187/// true if the input filename was in <>'s or false if it were in ""'s. The
1188/// caller is expected to provide a buffer that is large enough to hold the
1189/// spelling of the filename, but is also expected to handle the case when
1190/// this method decides to use a different buffer.
1191bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001192 StringRef &Buffer) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001193 // Get the text form of the filename.
Chris Lattnera1394812010-01-10 01:35:12 +00001194 assert(!Buffer.empty() && "Can't have tokens with empty spellings!");
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Chris Lattner141e71f2008-03-09 01:54:53 +00001196 // Make sure the filename is <x> or "x".
1197 bool isAngled;
Chris Lattnera1394812010-01-10 01:35:12 +00001198 if (Buffer[0] == '<') {
1199 if (Buffer.back() != '>') {
Chris Lattner141e71f2008-03-09 01:54:53 +00001200 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001201 Buffer = StringRef();
Chris Lattner141e71f2008-03-09 01:54:53 +00001202 return true;
1203 }
1204 isAngled = true;
Chris Lattnera1394812010-01-10 01:35:12 +00001205 } else if (Buffer[0] == '"') {
1206 if (Buffer.back() != '"') {
Chris Lattner141e71f2008-03-09 01:54:53 +00001207 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001208 Buffer = StringRef();
Chris Lattner141e71f2008-03-09 01:54:53 +00001209 return true;
1210 }
1211 isAngled = false;
1212 } else {
1213 Diag(Loc, diag::err_pp_expects_filename);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001214 Buffer = StringRef();
Chris Lattner141e71f2008-03-09 01:54:53 +00001215 return true;
1216 }
Mike Stump1eb44332009-09-09 15:08:12 +00001217
Chris Lattner141e71f2008-03-09 01:54:53 +00001218 // Diagnose #include "" as invalid.
Chris Lattnera1394812010-01-10 01:35:12 +00001219 if (Buffer.size() <= 2) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001220 Diag(Loc, diag::err_pp_empty_filename);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001221 Buffer = StringRef();
Chris Lattnera1394812010-01-10 01:35:12 +00001222 return true;
Chris Lattner141e71f2008-03-09 01:54:53 +00001223 }
Mike Stump1eb44332009-09-09 15:08:12 +00001224
Chris Lattner141e71f2008-03-09 01:54:53 +00001225 // Skip the brackets.
Chris Lattnera1394812010-01-10 01:35:12 +00001226 Buffer = Buffer.substr(1, Buffer.size()-2);
Chris Lattner141e71f2008-03-09 01:54:53 +00001227 return isAngled;
1228}
1229
James Dennettdc201692012-06-22 05:46:07 +00001230/// \brief Handle cases where the \#include name is expanded from a macro
1231/// as multiple tokens, which need to be glued together.
1232///
1233/// This occurs for code like:
1234/// \code
1235/// \#define FOO <a/b.h>
1236/// \#include FOO
1237/// \endcode
Chris Lattner141e71f2008-03-09 01:54:53 +00001238/// because in this case, "<a/b.h>" is returned as 7 tokens, not one.
1239///
1240/// This code concatenates and consumes tokens up to the '>' token. It returns
1241/// false if the > was found, otherwise it returns true if it finds and consumes
Peter Collingbourne84021552011-02-28 02:37:51 +00001242/// the EOD marker.
John Thompsona28cc092009-10-30 13:49:06 +00001243bool Preprocessor::ConcatenateIncludeName(
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001244 SmallString<128> &FilenameBuffer,
Douglas Gregorecdcb882010-10-20 22:00:55 +00001245 SourceLocation &End) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001246 Token CurTok;
Mike Stump1eb44332009-09-09 15:08:12 +00001247
John Thompsona28cc092009-10-30 13:49:06 +00001248 Lex(CurTok);
Peter Collingbourne84021552011-02-28 02:37:51 +00001249 while (CurTok.isNot(tok::eod)) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001250 End = CurTok.getLocation();
1251
Douglas Gregor25bb03b2010-12-09 23:35:36 +00001252 // FIXME: Provide code completion for #includes.
1253 if (CurTok.is(tok::code_completion)) {
Argyrios Kyrtzidis7d100872011-09-04 03:32:15 +00001254 setCodeCompletionReached();
Douglas Gregor25bb03b2010-12-09 23:35:36 +00001255 Lex(CurTok);
1256 continue;
1257 }
1258
Chris Lattner141e71f2008-03-09 01:54:53 +00001259 // Append the spelling of this token to the buffer. If there was a space
1260 // before it, add it now.
1261 if (CurTok.hasLeadingSpace())
1262 FilenameBuffer.push_back(' ');
Mike Stump1eb44332009-09-09 15:08:12 +00001263
Chris Lattner141e71f2008-03-09 01:54:53 +00001264 // Get the spelling of the token, directly into FilenameBuffer if possible.
1265 unsigned PreAppendSize = FilenameBuffer.size();
1266 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
Mike Stump1eb44332009-09-09 15:08:12 +00001267
Chris Lattner141e71f2008-03-09 01:54:53 +00001268 const char *BufPtr = &FilenameBuffer[PreAppendSize];
John Thompsona28cc092009-10-30 13:49:06 +00001269 unsigned ActualLen = getSpelling(CurTok, BufPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001270
Chris Lattner141e71f2008-03-09 01:54:53 +00001271 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1272 if (BufPtr != &FilenameBuffer[PreAppendSize])
1273 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
Mike Stump1eb44332009-09-09 15:08:12 +00001274
Chris Lattner141e71f2008-03-09 01:54:53 +00001275 // Resize FilenameBuffer to the correct size.
1276 if (CurTok.getLength() != ActualLen)
1277 FilenameBuffer.resize(PreAppendSize+ActualLen);
Mike Stump1eb44332009-09-09 15:08:12 +00001278
Chris Lattner141e71f2008-03-09 01:54:53 +00001279 // If we found the '>' marker, return success.
1280 if (CurTok.is(tok::greater))
1281 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001282
John Thompsona28cc092009-10-30 13:49:06 +00001283 Lex(CurTok);
Chris Lattner141e71f2008-03-09 01:54:53 +00001284 }
1285
Peter Collingbourne84021552011-02-28 02:37:51 +00001286 // If we hit the eod marker, emit an error and return true so that the caller
1287 // knows the EOD has been read.
John Thompsona28cc092009-10-30 13:49:06 +00001288 Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
Chris Lattner141e71f2008-03-09 01:54:53 +00001289 return true;
1290}
1291
James Dennettdc201692012-06-22 05:46:07 +00001292/// HandleIncludeDirective - The "\#include" tokens have just been read, read
1293/// the file to be included from the lexer, then include it! This is a common
1294/// routine with functionality shared between \#include, \#include_next and
1295/// \#import. LookupFrom is set when this is a \#include_next directive, it
Mike Stump1eb44332009-09-09 15:08:12 +00001296/// specifies the file to start searching from.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001297void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc,
1298 Token &IncludeTok,
Chris Lattner141e71f2008-03-09 01:54:53 +00001299 const DirectoryLookup *LookupFrom,
1300 bool isImport) {
1301
1302 Token FilenameTok;
Ted Kremenek60e45d42008-11-18 00:34:22 +00001303 CurPPLexer->LexIncludeFilename(FilenameTok);
Mike Stump1eb44332009-09-09 15:08:12 +00001304
Chris Lattner141e71f2008-03-09 01:54:53 +00001305 // Reserve a buffer to get the spelling.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001306 SmallString<128> FilenameBuffer;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001307 StringRef Filename;
Douglas Gregorecdcb882010-10-20 22:00:55 +00001308 SourceLocation End;
Douglas Gregore3a82562011-11-30 18:02:36 +00001309 SourceLocation CharEnd; // the end of this directive, in characters
Douglas Gregorecdcb882010-10-20 22:00:55 +00001310
Chris Lattner141e71f2008-03-09 01:54:53 +00001311 switch (FilenameTok.getKind()) {
Peter Collingbourne84021552011-02-28 02:37:51 +00001312 case tok::eod:
1313 // If the token kind is EOD, the error has already been diagnosed.
Chris Lattner141e71f2008-03-09 01:54:53 +00001314 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001315
Chris Lattner141e71f2008-03-09 01:54:53 +00001316 case tok::angle_string_literal:
Benjamin Kramerddeea562010-02-27 13:44:12 +00001317 case tok::string_literal:
1318 Filename = getSpelling(FilenameTok, FilenameBuffer);
Douglas Gregorecdcb882010-10-20 22:00:55 +00001319 End = FilenameTok.getLocation();
Argyrios Kyrtzidiscfa1caa2012-11-01 17:52:58 +00001320 CharEnd = End.getLocWithOffset(FilenameTok.getLength());
Chris Lattner141e71f2008-03-09 01:54:53 +00001321 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001322
Chris Lattner141e71f2008-03-09 01:54:53 +00001323 case tok::less:
1324 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1325 // case, glue the tokens together into FilenameBuffer and interpret those.
1326 FilenameBuffer.push_back('<');
Douglas Gregorecdcb882010-10-20 22:00:55 +00001327 if (ConcatenateIncludeName(FilenameBuffer, End))
Peter Collingbourne84021552011-02-28 02:37:51 +00001328 return; // Found <eod> but no ">"? Diagnostic already emitted.
Chris Lattnera1394812010-01-10 01:35:12 +00001329 Filename = FilenameBuffer.str();
Argyrios Kyrtzidiscfa1caa2012-11-01 17:52:58 +00001330 CharEnd = End.getLocWithOffset(1);
Chris Lattner141e71f2008-03-09 01:54:53 +00001331 break;
1332 default:
1333 Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1334 DiscardUntilEndOfDirective();
1335 return;
1336 }
Mike Stump1eb44332009-09-09 15:08:12 +00001337
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +00001338 CharSourceRange FilenameRange
1339 = CharSourceRange::getCharRange(FilenameTok.getLocation(), CharEnd);
Aaron Ballman4c55c542012-03-02 22:51:54 +00001340 StringRef OriginalFilename = Filename;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001341 bool isAngled =
Chris Lattnera1394812010-01-10 01:35:12 +00001342 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
Chris Lattner141e71f2008-03-09 01:54:53 +00001343 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1344 // error.
Chris Lattnera1394812010-01-10 01:35:12 +00001345 if (Filename.empty()) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001346 DiscardUntilEndOfDirective();
1347 return;
1348 }
Mike Stump1eb44332009-09-09 15:08:12 +00001349
Peter Collingbourne84021552011-02-28 02:37:51 +00001350 // Verify that there is nothing after the filename, other than EOD. Note that
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001351 // we allow macros that expand to nothing after the filename, because this
1352 // falls into the category of "#include pp-tokens new-line" specified in
1353 // C99 6.10.2p4.
Daniel Dunbare013d682009-10-18 20:26:12 +00001354 CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true);
Chris Lattner141e71f2008-03-09 01:54:53 +00001355
1356 // Check that we don't have infinite #include recursion.
Chris Lattner3692b092008-11-18 07:59:24 +00001357 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
1358 Diag(FilenameTok, diag::err_pp_include_too_deep);
1359 return;
1360 }
Mike Stump1eb44332009-09-09 15:08:12 +00001361
John McCall8dfac0b2011-09-30 05:12:12 +00001362 // Complain about attempts to #include files in an audit pragma.
1363 if (PragmaARCCFCodeAuditedLoc.isValid()) {
1364 Diag(HashLoc, diag::err_pp_include_in_arc_cf_code_audited);
1365 Diag(PragmaARCCFCodeAuditedLoc, diag::note_pragma_entered_here);
1366
1367 // Immediately leave the pragma.
1368 PragmaARCCFCodeAuditedLoc = SourceLocation();
1369 }
1370
Aaron Ballman4c55c542012-03-02 22:51:54 +00001371 if (HeaderInfo.HasIncludeAliasMap()) {
1372 // Map the filename with the brackets still attached. If the name doesn't
1373 // map to anything, fall back on the filename we've already gotten the
1374 // spelling for.
1375 StringRef NewName = HeaderInfo.MapHeaderToIncludeAlias(OriginalFilename);
1376 if (!NewName.empty())
1377 Filename = NewName;
1378 }
1379
Chris Lattner141e71f2008-03-09 01:54:53 +00001380 // Search include directories.
1381 const DirectoryLookup *CurDir;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001382 SmallString<1024> SearchPath;
1383 SmallString<1024> RelativePath;
Chandler Carruthb5142bb2011-03-16 18:34:36 +00001384 // We get the raw path only if we have 'Callbacks' to which we later pass
1385 // the path.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001386 Module *SuggestedModule = 0;
Chandler Carruthb5142bb2011-03-16 18:34:36 +00001387 const FileEntry *File = LookupFile(
Manuel Klimek74124942011-04-26 21:50:03 +00001388 Filename, isAngled, LookupFrom, CurDir,
Douglas Gregorfba18aa2011-09-15 22:00:41 +00001389 Callbacks ? &SearchPath : NULL, Callbacks ? &RelativePath : NULL,
David Blaikie4e4d0842012-03-11 07:00:24 +00001390 getLangOpts().Modules? &SuggestedModule : 0);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001391
Douglas Gregor8cfbe6a2011-11-30 18:12:06 +00001392 if (Callbacks) {
1393 if (!File) {
1394 // Give the clients a chance to recover.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001395 SmallString<128> RecoveryPath;
Douglas Gregor8cfbe6a2011-11-30 18:12:06 +00001396 if (Callbacks->FileNotFound(Filename, RecoveryPath)) {
1397 if (const DirectoryEntry *DE = FileMgr.getDirectory(RecoveryPath)) {
1398 // Add the recovery path to the list of search paths.
Daniel Dunbar1ea6bc02013-01-25 01:50:28 +00001399 DirectoryLookup DL(DE, SrcMgr::C_User, false);
Douglas Gregor8cfbe6a2011-11-30 18:12:06 +00001400 HeaderInfo.AddSearchPath(DL, isAngled);
1401
1402 // Try the lookup again, skipping the cache.
1403 File = LookupFile(Filename, isAngled, LookupFrom, CurDir, 0, 0,
David Blaikie4e4d0842012-03-11 07:00:24 +00001404 getLangOpts().Modules? &SuggestedModule : 0,
Douglas Gregor8cfbe6a2011-11-30 18:12:06 +00001405 /*SkipCache*/true);
1406 }
1407 }
1408 }
1409
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +00001410 if (!SuggestedModule) {
1411 // Notify the callback object that we've seen an inclusion directive.
1412 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1413 FilenameRange, File,
1414 SearchPath, RelativePath,
1415 /*ImportedModule=*/0);
1416 }
Douglas Gregor8cfbe6a2011-11-30 18:12:06 +00001417 }
1418
1419 if (File == 0) {
Aaron Ballmana52f5a32012-07-17 23:19:16 +00001420 if (!SuppressIncludeNotFoundError) {
1421 // If the file could not be located and it was included via angle
1422 // brackets, we can attempt a lookup as though it were a quoted path to
1423 // provide the user with a possible fixit.
1424 if (isAngled) {
1425 File = LookupFile(Filename, false, LookupFrom, CurDir,
1426 Callbacks ? &SearchPath : 0,
1427 Callbacks ? &RelativePath : 0,
1428 getLangOpts().Modules ? &SuggestedModule : 0);
1429 if (File) {
1430 SourceRange Range(FilenameTok.getLocation(), CharEnd);
1431 Diag(FilenameTok, diag::err_pp_file_not_found_not_fatal) <<
1432 Filename <<
1433 FixItHint::CreateReplacement(Range, "\"" + Filename.str() + "\"");
1434 }
1435 }
1436 // If the file is still not found, just go with the vanilla diagnostic
1437 if (!File)
1438 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
1439 }
1440 if (!File)
1441 return;
Douglas Gregor8cfbe6a2011-11-30 18:12:06 +00001442 }
1443
Douglas Gregorfba18aa2011-09-15 22:00:41 +00001444 // If we are supposed to import a module rather than including the header,
1445 // do so now.
Douglas Gregorc69c42e2011-11-17 22:44:56 +00001446 if (SuggestedModule) {
Douglas Gregor3d3589d2011-11-30 00:36:36 +00001447 // Compute the module access path corresponding to this module.
1448 // FIXME: Should we have a second loadModule() overload to avoid this
1449 // extra lookup step?
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001450 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001451 for (Module *Mod = SuggestedModule; Mod; Mod = Mod->Parent)
Douglas Gregor3d3589d2011-11-30 00:36:36 +00001452 Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name),
1453 FilenameTok.getLocation()));
1454 std::reverse(Path.begin(), Path.end());
1455
Douglas Gregore3a82562011-11-30 18:02:36 +00001456 // Warn that we're replacing the include/import with a module import.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001457 SmallString<128> PathString;
Douglas Gregore3a82562011-11-30 18:02:36 +00001458 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
1459 if (I)
1460 PathString += '.';
1461 PathString += Path[I].first->getName();
1462 }
1463 int IncludeKind = 0;
1464
1465 switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
1466 case tok::pp_include:
1467 IncludeKind = 0;
1468 break;
1469
1470 case tok::pp_import:
1471 IncludeKind = 1;
1472 break;
1473
Douglas Gregoredee9692011-11-30 18:03:26 +00001474 case tok::pp_include_next:
1475 IncludeKind = 2;
1476 break;
Douglas Gregore3a82562011-11-30 18:02:36 +00001477
1478 case tok::pp___include_macros:
1479 IncludeKind = 3;
1480 break;
1481
1482 default:
1483 llvm_unreachable("unknown include directive kind");
Douglas Gregore3a82562011-11-30 18:02:36 +00001484 }
1485
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001486 // Determine whether we are actually building the module that this
1487 // include directive maps to.
1488 bool BuildingImportedModule
David Blaikie4e4d0842012-03-11 07:00:24 +00001489 = Path[0].first->getName() == getLangOpts().CurrentModule;
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001490
David Blaikie4e4d0842012-03-11 07:00:24 +00001491 if (!BuildingImportedModule && getLangOpts().ObjC2) {
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001492 // If we're not building the imported module, warn that we're going
1493 // to automatically turn this inclusion directive into a module import.
Douglas Gregorc13a34b2012-01-03 19:32:59 +00001494 // We only do this in Objective-C, where we have a module-import syntax.
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001495 CharSourceRange ReplaceRange(SourceRange(HashLoc, CharEnd),
1496 /*IsTokenRange=*/false);
1497 Diag(HashLoc, diag::warn_auto_module_import)
1498 << IncludeKind << PathString
1499 << FixItHint::CreateReplacement(ReplaceRange,
Douglas Gregor1b257af2012-12-11 22:11:52 +00001500 "@import " + PathString.str().str() + ";");
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001501 }
Douglas Gregore3a82562011-11-30 18:02:36 +00001502
Douglas Gregor3d3589d2011-11-30 00:36:36 +00001503 // Load the module.
Douglas Gregor5e356932011-12-01 17:11:21 +00001504 // If this was an #__include_macros directive, only make macros visible.
1505 Module::NameVisibilityKind Visibility
1506 = (IncludeKind == 3)? Module::MacrosVisible : Module::AllVisible;
Douglas Gregor463d9092012-11-29 23:55:25 +00001507 ModuleLoadResult Imported
Douglas Gregor305dc3e2011-12-20 00:28:52 +00001508 = TheModuleLoader.loadModule(IncludeTok.getLocation(), Path, Visibility,
1509 /*IsIncludeDirective=*/true);
Argyrios Kyrtzidiseb788e92012-09-29 01:06:01 +00001510 assert((Imported == 0 || Imported == SuggestedModule) &&
1511 "the imported module is different than the suggested one");
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001512
1513 // If this header isn't part of the module we're building, we're done.
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +00001514 if (!BuildingImportedModule && Imported) {
1515 if (Callbacks) {
1516 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1517 FilenameRange, File,
1518 SearchPath, RelativePath, Imported);
1519 }
Douglas Gregor5e3f9222011-12-08 17:01:29 +00001520 return;
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +00001521 }
Douglas Gregor463d9092012-11-29 23:55:25 +00001522
1523 // If we failed to find a submodule that we expected to find, we can
1524 // continue. Otherwise, there's an error in the included file, so we
1525 // don't want to include it.
1526 if (!BuildingImportedModule && !Imported.isMissingExpected()) {
1527 return;
1528 }
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +00001529 }
1530
1531 if (Callbacks && SuggestedModule) {
1532 // We didn't notify the callback object that we've seen an inclusion
1533 // directive before. Now that we are parsing the include normally and not
1534 // turning it to a module import, notify the callback object.
1535 Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1536 FilenameRange, File,
1537 SearchPath, RelativePath,
1538 /*ImportedModule=*/0);
Douglas Gregorfba18aa2011-09-15 22:00:41 +00001539 }
1540
Chris Lattner72181832008-09-26 20:12:23 +00001541 // The #included file will be considered to be a system header if either it is
1542 // in a system include directory, or if the #includer is a system include
1543 // header.
Mike Stump1eb44332009-09-09 15:08:12 +00001544 SrcMgr::CharacteristicKind FileCharacter =
Chris Lattner0b9e7362008-09-26 21:18:42 +00001545 std::max(HeaderInfo.getFileDirFlavor(File),
Chris Lattner693faa62009-01-19 07:59:15 +00001546 SourceMgr.getFileCharacteristic(FilenameTok.getLocation()));
Mike Stump1eb44332009-09-09 15:08:12 +00001547
Chris Lattner6fbe3eb2010-04-19 20:44:31 +00001548 // Ask HeaderInfo if we should enter this #include file. If not, #including
1549 // this file will have no effect.
1550 if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) {
Chris Lattnere127a0d2010-04-20 20:35:58 +00001551 if (Callbacks)
Chris Lattner6fbe3eb2010-04-19 20:44:31 +00001552 Callbacks->FileSkipped(*File, FilenameTok, FileCharacter);
Chris Lattner6fbe3eb2010-04-19 20:44:31 +00001553 return;
1554 }
1555
Chris Lattner141e71f2008-03-09 01:54:53 +00001556 // Look up the file, create a File ID for it.
Argyrios Kyrtzidisdb81d382012-03-27 18:47:48 +00001557 SourceLocation IncludePos = End;
1558 // If the filename string was the result of macro expansions, set the include
1559 // position on the file where it will be included and after the expansions.
1560 if (IncludePos.isMacroID())
1561 IncludePos = SourceMgr.getExpansionRange(IncludePos).second;
1562 FileID FID = SourceMgr.createFileID(File, IncludePos, FileCharacter);
Peter Collingbourned57b7ff2011-06-30 16:41:03 +00001563 assert(!FID.isInvalid() && "Expected valid file ID");
Chris Lattner141e71f2008-03-09 01:54:53 +00001564
1565 // Finally, if all is good, enter the new file!
Chris Lattnere127a0d2010-04-20 20:35:58 +00001566 EnterSourceFile(FID, CurDir, FilenameTok.getLocation());
Chris Lattner141e71f2008-03-09 01:54:53 +00001567}
1568
James Dennettdc201692012-06-22 05:46:07 +00001569/// HandleIncludeNextDirective - Implements \#include_next.
Chris Lattner141e71f2008-03-09 01:54:53 +00001570///
Douglas Gregorecdcb882010-10-20 22:00:55 +00001571void Preprocessor::HandleIncludeNextDirective(SourceLocation HashLoc,
1572 Token &IncludeNextTok) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001573 Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
Mike Stump1eb44332009-09-09 15:08:12 +00001574
Chris Lattner141e71f2008-03-09 01:54:53 +00001575 // #include_next is like #include, except that we start searching after
1576 // the current found directory. If we can't do this, issue a
1577 // diagnostic.
1578 const DirectoryLookup *Lookup = CurDirLookup;
1579 if (isInPrimaryFile()) {
1580 Lookup = 0;
1581 Diag(IncludeNextTok, diag::pp_include_next_in_primary);
1582 } else if (Lookup == 0) {
1583 Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1584 } else {
1585 // Start looking up in the next directory.
1586 ++Lookup;
1587 }
Mike Stump1eb44332009-09-09 15:08:12 +00001588
Douglas Gregorecdcb882010-10-20 22:00:55 +00001589 return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup);
Chris Lattner141e71f2008-03-09 01:54:53 +00001590}
1591
James Dennettdc201692012-06-22 05:46:07 +00001592/// HandleMicrosoftImportDirective - Implements \#import for Microsoft Mode
Aaron Ballman4207eda2012-03-18 03:10:37 +00001593void Preprocessor::HandleMicrosoftImportDirective(Token &Tok) {
1594 // The Microsoft #import directive takes a type library and generates header
1595 // files from it, and includes those. This is beyond the scope of what clang
1596 // does, so we ignore it and error out. However, #import can optionally have
1597 // trailing attributes that span multiple lines. We're going to eat those
1598 // so we can continue processing from there.
1599 Diag(Tok, diag::err_pp_import_directive_ms );
1600
1601 // Read tokens until we get to the end of the directive. Note that the
1602 // directive can be split over multiple lines using the backslash character.
1603 DiscardUntilEndOfDirective();
1604}
1605
James Dennettdc201692012-06-22 05:46:07 +00001606/// HandleImportDirective - Implements \#import.
Chris Lattner141e71f2008-03-09 01:54:53 +00001607///
Douglas Gregorecdcb882010-10-20 22:00:55 +00001608void Preprocessor::HandleImportDirective(SourceLocation HashLoc,
1609 Token &ImportTok) {
Aaron Ballman4207eda2012-03-18 03:10:37 +00001610 if (!LangOpts.ObjC1) { // #import is standard for ObjC.
1611 if (LangOpts.MicrosoftMode)
1612 return HandleMicrosoftImportDirective(ImportTok);
Chris Lattnerb627c8d2009-03-06 04:28:03 +00001613 Diag(ImportTok, diag::ext_pp_import_directive);
Aaron Ballman4207eda2012-03-18 03:10:37 +00001614 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00001615 return HandleIncludeDirective(HashLoc, ImportTok, 0, true);
Chris Lattner141e71f2008-03-09 01:54:53 +00001616}
1617
Chris Lattnerde076652009-04-08 18:46:40 +00001618/// HandleIncludeMacrosDirective - The -imacros command line option turns into a
1619/// pseudo directive in the predefines buffer. This handles it by sucking all
1620/// tokens through the preprocessor and discarding them (only keeping the side
1621/// effects on the preprocessor).
Douglas Gregorecdcb882010-10-20 22:00:55 +00001622void Preprocessor::HandleIncludeMacrosDirective(SourceLocation HashLoc,
1623 Token &IncludeMacrosTok) {
Chris Lattnerde076652009-04-08 18:46:40 +00001624 // This directive should only occur in the predefines buffer. If not, emit an
1625 // error and reject it.
1626 SourceLocation Loc = IncludeMacrosTok.getLocation();
1627 if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) {
1628 Diag(IncludeMacrosTok.getLocation(),
1629 diag::pp_include_macros_out_of_predefines);
1630 DiscardUntilEndOfDirective();
1631 return;
1632 }
Mike Stump1eb44332009-09-09 15:08:12 +00001633
Chris Lattnerfd105112009-04-08 20:53:24 +00001634 // Treat this as a normal #include for checking purposes. If this is
1635 // successful, it will push a new lexer onto the include stack.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001636 HandleIncludeDirective(HashLoc, IncludeMacrosTok, 0, false);
Mike Stump1eb44332009-09-09 15:08:12 +00001637
Chris Lattnerfd105112009-04-08 20:53:24 +00001638 Token TmpTok;
1639 do {
1640 Lex(TmpTok);
1641 assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!");
1642 } while (TmpTok.isNot(tok::hashhash));
Chris Lattnerde076652009-04-08 18:46:40 +00001643}
1644
Chris Lattner141e71f2008-03-09 01:54:53 +00001645//===----------------------------------------------------------------------===//
1646// Preprocessor Macro Directive Handling.
1647//===----------------------------------------------------------------------===//
1648
1649/// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1650/// definition has just been read. Lex the rest of the arguments and the
1651/// closing ), updating MI with what we learn. Return true if an error occurs
1652/// parsing the arg list.
Abramo Bagnarae2e87682012-03-31 20:17:27 +00001653bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI, Token &Tok) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001654 SmallVector<IdentifierInfo*, 32> Arguments;
Mike Stump1eb44332009-09-09 15:08:12 +00001655
Chris Lattner141e71f2008-03-09 01:54:53 +00001656 while (1) {
1657 LexUnexpandedToken(Tok);
1658 switch (Tok.getKind()) {
1659 case tok::r_paren:
1660 // Found the end of the argument list.
Chris Lattnercf29e072009-02-20 22:31:31 +00001661 if (Arguments.empty()) // #define FOO()
Chris Lattner141e71f2008-03-09 01:54:53 +00001662 return false;
Chris Lattner141e71f2008-03-09 01:54:53 +00001663 // Otherwise we have #define FOO(A,)
1664 Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1665 return true;
1666 case tok::ellipsis: // #define X(... -> C99 varargs
David Blaikie4e4d0842012-03-11 07:00:24 +00001667 if (!LangOpts.C99)
Richard Smith80ad52f2013-01-02 11:42:31 +00001668 Diag(Tok, LangOpts.CPlusPlus11 ?
Richard Smith661a9962011-10-15 01:18:56 +00001669 diag::warn_cxx98_compat_variadic_macro :
1670 diag::ext_variadic_macro);
Chris Lattner141e71f2008-03-09 01:54:53 +00001671
Joey Gouly617bb312013-01-17 17:35:00 +00001672 // OpenCL v1.2 s6.9.e: variadic macros are not supported.
1673 if (LangOpts.OpenCL) {
1674 Diag(Tok, diag::err_pp_opencl_variadic_macros);
1675 return true;
1676 }
1677
Chris Lattner141e71f2008-03-09 01:54:53 +00001678 // Lex the token after the identifier.
1679 LexUnexpandedToken(Tok);
1680 if (Tok.isNot(tok::r_paren)) {
1681 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1682 return true;
1683 }
1684 // Add the __VA_ARGS__ identifier as an argument.
1685 Arguments.push_back(Ident__VA_ARGS__);
1686 MI->setIsC99Varargs();
Chris Lattner685befe2009-02-20 22:46:43 +00001687 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattner141e71f2008-03-09 01:54:53 +00001688 return false;
Peter Collingbourne84021552011-02-28 02:37:51 +00001689 case tok::eod: // #define X(
Chris Lattner141e71f2008-03-09 01:54:53 +00001690 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1691 return true;
1692 default:
1693 // Handle keywords and identifiers here to accept things like
1694 // #define Foo(for) for.
1695 IdentifierInfo *II = Tok.getIdentifierInfo();
1696 if (II == 0) {
1697 // #define X(1
1698 Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
1699 return true;
1700 }
1701
1702 // If this is already used as an argument, it is used multiple times (e.g.
1703 // #define X(A,A.
Mike Stump1eb44332009-09-09 15:08:12 +00001704 if (std::find(Arguments.begin(), Arguments.end(), II) !=
Chris Lattner141e71f2008-03-09 01:54:53 +00001705 Arguments.end()) { // C99 6.10.3p6
Chris Lattner6cf3ed72008-11-19 07:33:58 +00001706 Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II;
Chris Lattner141e71f2008-03-09 01:54:53 +00001707 return true;
1708 }
Mike Stump1eb44332009-09-09 15:08:12 +00001709
Chris Lattner141e71f2008-03-09 01:54:53 +00001710 // Add the argument to the macro info.
1711 Arguments.push_back(II);
Mike Stump1eb44332009-09-09 15:08:12 +00001712
Chris Lattner141e71f2008-03-09 01:54:53 +00001713 // Lex the token after the identifier.
1714 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001715
Chris Lattner141e71f2008-03-09 01:54:53 +00001716 switch (Tok.getKind()) {
1717 default: // #define X(A B
1718 Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
1719 return true;
1720 case tok::r_paren: // #define X(A)
Chris Lattner685befe2009-02-20 22:46:43 +00001721 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattner141e71f2008-03-09 01:54:53 +00001722 return false;
1723 case tok::comma: // #define X(A,
1724 break;
1725 case tok::ellipsis: // #define X(A... -> GCC extension
1726 // Diagnose extension.
1727 Diag(Tok, diag::ext_named_variadic_macro);
Mike Stump1eb44332009-09-09 15:08:12 +00001728
Chris Lattner141e71f2008-03-09 01:54:53 +00001729 // Lex the token after the identifier.
1730 LexUnexpandedToken(Tok);
1731 if (Tok.isNot(tok::r_paren)) {
1732 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1733 return true;
1734 }
Mike Stump1eb44332009-09-09 15:08:12 +00001735
Chris Lattner141e71f2008-03-09 01:54:53 +00001736 MI->setIsGNUVarargs();
Chris Lattner685befe2009-02-20 22:46:43 +00001737 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattner141e71f2008-03-09 01:54:53 +00001738 return false;
1739 }
1740 }
1741 }
1742}
1743
James Dennettdc201692012-06-22 05:46:07 +00001744/// HandleDefineDirective - Implements \#define. This consumes the entire macro
Chris Lattner141e71f2008-03-09 01:54:53 +00001745/// line then lets the caller lex the next real token.
1746void Preprocessor::HandleDefineDirective(Token &DefineTok) {
1747 ++NumDefined;
1748
1749 Token MacroNameTok;
1750 ReadMacroName(MacroNameTok, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001751
Chris Lattner141e71f2008-03-09 01:54:53 +00001752 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne84021552011-02-28 02:37:51 +00001753 if (MacroNameTok.is(tok::eod))
Chris Lattner141e71f2008-03-09 01:54:53 +00001754 return;
1755
Chris Lattner2451b522009-04-21 04:46:33 +00001756 Token LastTok = MacroNameTok;
1757
Chris Lattner141e71f2008-03-09 01:54:53 +00001758 // If we are supposed to keep comments in #defines, reenable comment saving
1759 // mode.
Ted Kremenekac6b06d2008-11-18 00:43:07 +00001760 if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments);
Mike Stump1eb44332009-09-09 15:08:12 +00001761
Chris Lattner141e71f2008-03-09 01:54:53 +00001762 // Create the new macro.
Ted Kremenek0ea76722008-12-15 19:56:42 +00001763 MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001764
Chris Lattner141e71f2008-03-09 01:54:53 +00001765 Token Tok;
1766 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001767
Chris Lattner141e71f2008-03-09 01:54:53 +00001768 // If this is a function-like macro definition, parse the argument list,
1769 // marking each of the identifiers as being used as macro arguments. Also,
1770 // check other constraints on the first token of the macro body.
Peter Collingbourne84021552011-02-28 02:37:51 +00001771 if (Tok.is(tok::eod)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001772 // If there is no body to this macro, we have no special handling here.
Chris Lattner6272bcf2009-04-18 02:23:25 +00001773 } else if (Tok.hasLeadingSpace()) {
1774 // This is a normal token with leading space. Clear the leading space
1775 // marker on the first token to get proper expansion.
1776 Tok.clearFlag(Token::LeadingSpace);
1777 } else if (Tok.is(tok::l_paren)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001778 // This is a function-like macro definition. Read the argument list.
1779 MI->setIsFunctionLike();
Abramo Bagnarae2e87682012-03-31 20:17:27 +00001780 if (ReadMacroDefinitionArgList(MI, LastTok)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001781 // Forget about MI.
Ted Kremenek0ea76722008-12-15 19:56:42 +00001782 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001783 // Throw away the rest of the line.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001784 if (CurPPLexer->ParsingPreprocessorDirective)
Chris Lattner141e71f2008-03-09 01:54:53 +00001785 DiscardUntilEndOfDirective();
1786 return;
1787 }
1788
Chris Lattner8fde5972009-04-19 18:26:34 +00001789 // If this is a definition of a variadic C99 function-like macro, not using
1790 // the GNU named varargs extension, enabled __VA_ARGS__.
Mike Stump1eb44332009-09-09 15:08:12 +00001791
Chris Lattner8fde5972009-04-19 18:26:34 +00001792 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
1793 // This gets unpoisoned where it is allowed.
1794 assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
1795 if (MI->isC99Varargs())
1796 Ident__VA_ARGS__->setIsPoisoned(false);
Mike Stump1eb44332009-09-09 15:08:12 +00001797
Chris Lattner141e71f2008-03-09 01:54:53 +00001798 // Read the first token after the arg list for down below.
1799 LexUnexpandedToken(Tok);
Richard Smith80ad52f2013-01-02 11:42:31 +00001800 } else if (LangOpts.C99 || LangOpts.CPlusPlus11) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001801 // C99 requires whitespace between the macro definition and the body. Emit
1802 // a diagnostic for something like "#define X+".
Chris Lattner6272bcf2009-04-18 02:23:25 +00001803 Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
Chris Lattner141e71f2008-03-09 01:54:53 +00001804 } else {
Chris Lattner6272bcf2009-04-18 02:23:25 +00001805 // C90 6.8 TC1 says: "In the definition of an object-like macro, if the
1806 // first character of a replacement list is not a character required by
1807 // subclause 5.2.1, then there shall be white-space separation between the
1808 // identifier and the replacement list.". 5.2.1 lists this set:
1809 // "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which
1810 // is irrelevant here.
1811 bool isInvalid = false;
1812 if (Tok.is(tok::at)) // @ is not in the list above.
1813 isInvalid = true;
1814 else if (Tok.is(tok::unknown)) {
1815 // If we have an unknown token, it is something strange like "`". Since
1816 // all of valid characters would have lexed into a single character
1817 // token of some sort, we know this is not a valid case.
1818 isInvalid = true;
1819 }
1820 if (isInvalid)
1821 Diag(Tok, diag::ext_missing_whitespace_after_macro_name);
1822 else
1823 Diag(Tok, diag::warn_missing_whitespace_after_macro_name);
Chris Lattner141e71f2008-03-09 01:54:53 +00001824 }
Chris Lattner2451b522009-04-21 04:46:33 +00001825
Peter Collingbourne84021552011-02-28 02:37:51 +00001826 if (!Tok.is(tok::eod))
Chris Lattner2451b522009-04-21 04:46:33 +00001827 LastTok = Tok;
1828
Chris Lattner141e71f2008-03-09 01:54:53 +00001829 // Read the rest of the macro body.
1830 if (MI->isObjectLike()) {
1831 // Object-like macros are very simple, just read their body.
Peter Collingbourne84021552011-02-28 02:37:51 +00001832 while (Tok.isNot(tok::eod)) {
Chris Lattner2451b522009-04-21 04:46:33 +00001833 LastTok = Tok;
Chris Lattner141e71f2008-03-09 01:54:53 +00001834 MI->AddTokenToBody(Tok);
1835 // Get the next token of the macro.
1836 LexUnexpandedToken(Tok);
1837 }
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Chris Lattner141e71f2008-03-09 01:54:53 +00001839 } else {
Chris Lattner32404692009-05-25 17:16:10 +00001840 // Otherwise, read the body of a function-like macro. While we are at it,
1841 // check C99 6.10.3.2p1: ensure that # operators are followed by macro
1842 // parameters in function-like macro expansions.
Peter Collingbourne84021552011-02-28 02:37:51 +00001843 while (Tok.isNot(tok::eod)) {
Chris Lattner2451b522009-04-21 04:46:33 +00001844 LastTok = Tok;
Chris Lattner141e71f2008-03-09 01:54:53 +00001845
Eli Friedman4fa4b482012-11-14 02:18:46 +00001846 if (Tok.isNot(tok::hash) && Tok.isNot(tok::hashhash)) {
Chris Lattner32404692009-05-25 17:16:10 +00001847 MI->AddTokenToBody(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001848
Chris Lattner141e71f2008-03-09 01:54:53 +00001849 // Get the next token of the macro.
1850 LexUnexpandedToken(Tok);
1851 continue;
1852 }
Mike Stump1eb44332009-09-09 15:08:12 +00001853
Eli Friedman4fa4b482012-11-14 02:18:46 +00001854 if (Tok.is(tok::hashhash)) {
1855
1856 // If we see token pasting, check if it looks like the gcc comma
1857 // pasting extension. We'll use this information to suppress
1858 // diagnostics later on.
1859
1860 // Get the next token of the macro.
1861 LexUnexpandedToken(Tok);
1862
1863 if (Tok.is(tok::eod)) {
1864 MI->AddTokenToBody(LastTok);
1865 break;
1866 }
1867
1868 unsigned NumTokens = MI->getNumTokens();
1869 if (NumTokens && Tok.getIdentifierInfo() == Ident__VA_ARGS__ &&
1870 MI->getReplacementToken(NumTokens-1).is(tok::comma))
1871 MI->setHasCommaPasting();
1872
1873 // Things look ok, add the '##' and param name tokens to the macro.
1874 MI->AddTokenToBody(LastTok);
1875 MI->AddTokenToBody(Tok);
1876 LastTok = Tok;
1877
1878 // Get the next token of the macro.
1879 LexUnexpandedToken(Tok);
1880 continue;
1881 }
1882
Chris Lattner141e71f2008-03-09 01:54:53 +00001883 // Get the next token of the macro.
1884 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001885
Chris Lattner32404692009-05-25 17:16:10 +00001886 // Check for a valid macro arg identifier.
1887 if (Tok.getIdentifierInfo() == 0 ||
1888 MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
1889
1890 // If this is assembler-with-cpp mode, we accept random gibberish after
1891 // the '#' because '#' is often a comment character. However, change
1892 // the kind of the token to tok::unknown so that the preprocessor isn't
1893 // confused.
David Blaikie4e4d0842012-03-11 07:00:24 +00001894 if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) {
Chris Lattner32404692009-05-25 17:16:10 +00001895 LastTok.setKind(tok::unknown);
1896 } else {
1897 Diag(Tok, diag::err_pp_stringize_not_parameter);
1898 ReleaseMacroInfo(MI);
Mike Stump1eb44332009-09-09 15:08:12 +00001899
Chris Lattner32404692009-05-25 17:16:10 +00001900 // Disable __VA_ARGS__ again.
1901 Ident__VA_ARGS__->setIsPoisoned(true);
1902 return;
1903 }
Chris Lattner141e71f2008-03-09 01:54:53 +00001904 }
Mike Stump1eb44332009-09-09 15:08:12 +00001905
Chris Lattner32404692009-05-25 17:16:10 +00001906 // Things look ok, add the '#' and param name tokens to the macro.
1907 MI->AddTokenToBody(LastTok);
Chris Lattner141e71f2008-03-09 01:54:53 +00001908 MI->AddTokenToBody(Tok);
Chris Lattner32404692009-05-25 17:16:10 +00001909 LastTok = Tok;
Mike Stump1eb44332009-09-09 15:08:12 +00001910
Chris Lattner141e71f2008-03-09 01:54:53 +00001911 // Get the next token of the macro.
1912 LexUnexpandedToken(Tok);
1913 }
1914 }
Mike Stump1eb44332009-09-09 15:08:12 +00001915
1916
Chris Lattner141e71f2008-03-09 01:54:53 +00001917 // Disable __VA_ARGS__ again.
1918 Ident__VA_ARGS__->setIsPoisoned(true);
1919
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001920 // Check that there is no paste (##) operator at the beginning or end of the
Chris Lattner141e71f2008-03-09 01:54:53 +00001921 // replacement list.
1922 unsigned NumTokens = MI->getNumTokens();
1923 if (NumTokens != 0) {
1924 if (MI->getReplacementToken(0).is(tok::hashhash)) {
1925 Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
Ted Kremenek0ea76722008-12-15 19:56:42 +00001926 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001927 return;
1928 }
1929 if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
1930 Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
Ted Kremenek0ea76722008-12-15 19:56:42 +00001931 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001932 return;
1933 }
1934 }
Mike Stump1eb44332009-09-09 15:08:12 +00001935
Chris Lattner2451b522009-04-21 04:46:33 +00001936 MI->setDefinitionEndLoc(LastTok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001937
Chris Lattner141e71f2008-03-09 01:54:53 +00001938 // Finally, if this identifier already had a macro defined for it, verify that
Alexander Kornienko8a64bb52012-08-29 00:20:03 +00001939 // the macro bodies are identical, and issue diagnostics if they are not.
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00001940 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Chris Lattner41c3ae12009-01-16 19:50:11 +00001941 // It is very common for system headers to have tons of macro redefinitions
1942 // and for warnings to be disabled in system headers. If this is the case,
1943 // then don't bother calling MacroInfo::isIdenticalTo.
Chris Lattner7f549df2009-03-13 21:17:23 +00001944 if (!getDiagnostics().getSuppressSystemWarnings() ||
Chris Lattner41c3ae12009-01-16 19:50:11 +00001945 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) {
Argyrios Kyrtzidisa33e0502011-01-18 19:50:15 +00001946 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused())
Chris Lattner41c3ae12009-01-16 19:50:11 +00001947 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattner141e71f2008-03-09 01:54:53 +00001948
Richard Smitheed55e62013-03-06 00:46:00 +00001949 // Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and
1950 // C++ [cpp.predefined]p4, but allow it as an extension.
1951 if (OtherMI->isBuiltinMacro())
1952 Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro);
Chris Lattnerf47724b2010-08-17 15:55:45 +00001953 // Macros must be identical. This means all tokens and whitespace
Argyrios Kyrtzidisbd25ff82013-04-03 17:39:30 +00001954 // separation must be the same. C99 6.10.3p2.
Richard Smitheed55e62013-03-06 00:46:00 +00001955 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
Argyrios Kyrtzidisbd25ff82013-04-03 17:39:30 +00001956 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) {
Chris Lattner41c3ae12009-01-16 19:50:11 +00001957 Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef)
1958 << MacroNameTok.getIdentifierInfo();
1959 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
1960 }
Chris Lattner141e71f2008-03-09 01:54:53 +00001961 }
Argyrios Kyrtzidisa33e0502011-01-18 19:50:15 +00001962 if (OtherMI->isWarnIfUnused())
1963 WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc());
Chris Lattner141e71f2008-03-09 01:54:53 +00001964 }
Mike Stump1eb44332009-09-09 15:08:12 +00001965
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001966 DefMacroDirective *MD =
1967 appendDefMacroDirective(MacroNameTok.getIdentifierInfo(), MI);
Mike Stump1eb44332009-09-09 15:08:12 +00001968
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001969 assert(!MI->isUsed());
1970 // If we need warning for not using the macro, add its location in the
1971 // warn-because-unused-macro set. If it gets used it will be removed from set.
1972 if (isInPrimaryFile() && // don't warn for include'd macros.
1973 Diags->getDiagnosticLevel(diag::pp_macro_not_used,
David Blaikied6471f72011-09-25 23:23:43 +00001974 MI->getDefinitionLoc()) != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001975 MI->setIsWarnIfUnused(true);
1976 WarnUnusedMacroLocs.insert(MI->getDefinitionLoc());
1977 }
1978
Chris Lattnerf4a72b02009-04-12 01:39:54 +00001979 // If the callbacks want to know, tell them about the macro definition.
1980 if (Callbacks)
Argyrios Kyrtzidisc5159782013-02-24 00:05:14 +00001981 Callbacks->MacroDefined(MacroNameTok, MD);
Chris Lattner141e71f2008-03-09 01:54:53 +00001982}
1983
James Dennettdc201692012-06-22 05:46:07 +00001984/// HandleUndefDirective - Implements \#undef.
Chris Lattner141e71f2008-03-09 01:54:53 +00001985///
1986void Preprocessor::HandleUndefDirective(Token &UndefTok) {
1987 ++NumUndefined;
1988
1989 Token MacroNameTok;
1990 ReadMacroName(MacroNameTok, 2);
Mike Stump1eb44332009-09-09 15:08:12 +00001991
Chris Lattner141e71f2008-03-09 01:54:53 +00001992 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne84021552011-02-28 02:37:51 +00001993 if (MacroNameTok.is(tok::eod))
Chris Lattner141e71f2008-03-09 01:54:53 +00001994 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Chris Lattner141e71f2008-03-09 01:54:53 +00001996 // Check to see if this is the last token on the #undef line.
Chris Lattner35410d52009-04-14 05:07:49 +00001997 CheckEndOfDirective("undef");
Mike Stump1eb44332009-09-09 15:08:12 +00001998
Chris Lattner141e71f2008-03-09 01:54:53 +00001999 // Okay, we finally have a valid identifier to undef.
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00002000 MacroDirective *MD = getMacroDirective(MacroNameTok.getIdentifierInfo());
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002001 const MacroInfo *MI = MD ? MD->getMacroInfo() : 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002002
Argyrios Kyrtzidis36845472013-01-16 16:52:44 +00002003 // If the callbacks want to know, tell them about the macro #undef.
2004 // Note: no matter if the macro was defined or not.
2005 if (Callbacks)
Argyrios Kyrtzidisc5159782013-02-24 00:05:14 +00002006 Callbacks->MacroUndefined(MacroNameTok, MD);
Argyrios Kyrtzidis36845472013-01-16 16:52:44 +00002007
Chris Lattner141e71f2008-03-09 01:54:53 +00002008 // If the macro is not defined, this is a noop undef, just return.
2009 if (MI == 0) return;
2010
Argyrios Kyrtzidis1f8dcfc2011-07-11 20:39:47 +00002011 if (!MI->isUsed() && MI->isWarnIfUnused())
Chris Lattner141e71f2008-03-09 01:54:53 +00002012 Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattner41c17472009-04-21 03:42:09 +00002013
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00002014 if (MI->isWarnIfUnused())
2015 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
2016
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002017 appendMacroDirective(MacroNameTok.getIdentifierInfo(),
2018 AllocateUndefMacroDirective(MacroNameTok.getLocation()));
Chris Lattner141e71f2008-03-09 01:54:53 +00002019}
2020
2021
2022//===----------------------------------------------------------------------===//
2023// Preprocessor Conditional Directive Handling.
2024//===----------------------------------------------------------------------===//
2025
James Dennettdc201692012-06-22 05:46:07 +00002026/// HandleIfdefDirective - Implements the \#ifdef/\#ifndef directive. isIfndef
2027/// is true when this is a \#ifndef directive. ReadAnyTokensBeforeDirective is
2028/// true if any tokens have been returned or pp-directives activated before this
2029/// \#ifndef has been lexed.
Chris Lattner141e71f2008-03-09 01:54:53 +00002030///
2031void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
2032 bool ReadAnyTokensBeforeDirective) {
2033 ++NumIf;
2034 Token DirectiveTok = Result;
2035
2036 Token MacroNameTok;
2037 ReadMacroName(MacroNameTok);
Mike Stump1eb44332009-09-09 15:08:12 +00002038
Chris Lattner141e71f2008-03-09 01:54:53 +00002039 // Error reading macro name? If so, diagnostic already issued.
Peter Collingbourne84021552011-02-28 02:37:51 +00002040 if (MacroNameTok.is(tok::eod)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00002041 // Skip code until we get to #endif. This helps with recovery by not
2042 // emitting an error when the #endif is reached.
2043 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2044 /*Foundnonskip*/false, /*FoundElse*/false);
2045 return;
2046 }
Mike Stump1eb44332009-09-09 15:08:12 +00002047
Chris Lattner141e71f2008-03-09 01:54:53 +00002048 // Check to see if this is the last token on the #if[n]def line.
Chris Lattner35410d52009-04-14 05:07:49 +00002049 CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef");
Chris Lattner141e71f2008-03-09 01:54:53 +00002050
Chris Lattner13d283d2010-02-12 08:03:27 +00002051 IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
Argyrios Kyrtzidisc5159782013-02-24 00:05:14 +00002052 MacroDirective *MD = getMacroDirective(MII);
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002053 MacroInfo *MI = MD ? MD->getMacroInfo() : 0;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002054
Ted Kremenek60e45d42008-11-18 00:34:22 +00002055 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattner13d283d2010-02-12 08:03:27 +00002056 // If the start of a top-level #ifdef and if the macro is not defined,
2057 // inform MIOpt that this might be the start of a proper include guard.
2058 // Otherwise it is some other form of unknown conditional which we can't
2059 // handle.
2060 if (!ReadAnyTokensBeforeDirective && MI == 0) {
Chris Lattner141e71f2008-03-09 01:54:53 +00002061 assert(isIfndef && "#ifdef shouldn't reach here");
Chris Lattner13d283d2010-02-12 08:03:27 +00002062 CurPPLexer->MIOpt.EnterTopLevelIFNDEF(MII);
Chris Lattner141e71f2008-03-09 01:54:53 +00002063 } else
Ted Kremenek60e45d42008-11-18 00:34:22 +00002064 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattner141e71f2008-03-09 01:54:53 +00002065 }
2066
Chris Lattner141e71f2008-03-09 01:54:53 +00002067 // If there is a macro, process it.
2068 if (MI) // Mark it used.
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00002069 markMacroAsUsed(MI);
Mike Stump1eb44332009-09-09 15:08:12 +00002070
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002071 if (Callbacks) {
2072 if (isIfndef)
Argyrios Kyrtzidisc5159782013-02-24 00:05:14 +00002073 Callbacks->Ifndef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002074 else
Argyrios Kyrtzidisc5159782013-02-24 00:05:14 +00002075 Callbacks->Ifdef(DirectiveTok.getLocation(), MacroNameTok, MD);
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002076 }
2077
Chris Lattner141e71f2008-03-09 01:54:53 +00002078 // Should we include the stuff contained by this directive?
2079 if (!MI == isIfndef) {
2080 // Yes, remember that we are inside a conditional, then lex the next token.
Chris Lattner1d9c54d2009-12-14 04:54:40 +00002081 CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(),
2082 /*wasskip*/false, /*foundnonskip*/true,
2083 /*foundelse*/false);
Chris Lattner141e71f2008-03-09 01:54:53 +00002084 } else {
Craig Silverstein08985b92010-11-06 01:19:03 +00002085 // No, skip the contents of this block.
Chris Lattner141e71f2008-03-09 01:54:53 +00002086 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00002087 /*Foundnonskip*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +00002088 /*FoundElse*/false);
2089 }
2090}
2091
James Dennettdc201692012-06-22 05:46:07 +00002092/// HandleIfDirective - Implements the \#if directive.
Chris Lattner141e71f2008-03-09 01:54:53 +00002093///
2094void Preprocessor::HandleIfDirective(Token &IfToken,
2095 bool ReadAnyTokensBeforeDirective) {
2096 ++NumIf;
Mike Stump1eb44332009-09-09 15:08:12 +00002097
Craig Silverstein08985b92010-11-06 01:19:03 +00002098 // Parse and evaluate the conditional expression.
Chris Lattner141e71f2008-03-09 01:54:53 +00002099 IdentifierInfo *IfNDefMacro = 0;
Craig Silverstein08985b92010-11-06 01:19:03 +00002100 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
2101 const bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
2102 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Nuno Lopes0049db62008-06-01 18:31:24 +00002103
2104 // If this condition is equivalent to #ifndef X, and if this is the first
2105 // directive seen, handle it for the multiple-include optimization.
Ted Kremenek60e45d42008-11-18 00:34:22 +00002106 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattner13d283d2010-02-12 08:03:27 +00002107 if (!ReadAnyTokensBeforeDirective && IfNDefMacro && ConditionalTrue)
Ted Kremenek60e45d42008-11-18 00:34:22 +00002108 CurPPLexer->MIOpt.EnterTopLevelIFNDEF(IfNDefMacro);
Nuno Lopes0049db62008-06-01 18:31:24 +00002109 else
Ted Kremenek60e45d42008-11-18 00:34:22 +00002110 CurPPLexer->MIOpt.EnterTopLevelConditional();
Nuno Lopes0049db62008-06-01 18:31:24 +00002111 }
2112
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002113 if (Callbacks)
2114 Callbacks->If(IfToken.getLocation(),
2115 SourceRange(ConditionalBegin, ConditionalEnd));
2116
Chris Lattner141e71f2008-03-09 01:54:53 +00002117 // Should we include the stuff contained by this directive?
2118 if (ConditionalTrue) {
Chris Lattner141e71f2008-03-09 01:54:53 +00002119 // Yes, remember that we are inside a conditional, then lex the next token.
Ted Kremenek60e45d42008-11-18 00:34:22 +00002120 CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +00002121 /*foundnonskip*/true, /*foundelse*/false);
2122 } else {
Craig Silverstein08985b92010-11-06 01:19:03 +00002123 // No, skip the contents of this block.
Mike Stump1eb44332009-09-09 15:08:12 +00002124 SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +00002125 /*FoundElse*/false);
2126 }
2127}
2128
James Dennettdc201692012-06-22 05:46:07 +00002129/// HandleEndifDirective - Implements the \#endif directive.
Chris Lattner141e71f2008-03-09 01:54:53 +00002130///
2131void Preprocessor::HandleEndifDirective(Token &EndifToken) {
2132 ++NumEndif;
Mike Stump1eb44332009-09-09 15:08:12 +00002133
Chris Lattner141e71f2008-03-09 01:54:53 +00002134 // Check that this is the whole directive.
Chris Lattner35410d52009-04-14 05:07:49 +00002135 CheckEndOfDirective("endif");
Mike Stump1eb44332009-09-09 15:08:12 +00002136
Chris Lattner141e71f2008-03-09 01:54:53 +00002137 PPConditionalInfo CondInfo;
Ted Kremenek60e45d42008-11-18 00:34:22 +00002138 if (CurPPLexer->popConditionalLevel(CondInfo)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00002139 // No conditionals on the stack: this is an #endif without an #if.
Chris Lattner3692b092008-11-18 07:59:24 +00002140 Diag(EndifToken, diag::err_pp_endif_without_if);
2141 return;
Chris Lattner141e71f2008-03-09 01:54:53 +00002142 }
Mike Stump1eb44332009-09-09 15:08:12 +00002143
Chris Lattner141e71f2008-03-09 01:54:53 +00002144 // If this the end of a top-level #endif, inform MIOpt.
Ted Kremenek60e45d42008-11-18 00:34:22 +00002145 if (CurPPLexer->getConditionalStackDepth() == 0)
2146 CurPPLexer->MIOpt.ExitTopLevelConditional();
Mike Stump1eb44332009-09-09 15:08:12 +00002147
Ted Kremenek60e45d42008-11-18 00:34:22 +00002148 assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode &&
Chris Lattner141e71f2008-03-09 01:54:53 +00002149 "This code should only be reachable in the non-skipping case!");
Craig Silverstein08985b92010-11-06 01:19:03 +00002150
2151 if (Callbacks)
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002152 Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
Chris Lattner141e71f2008-03-09 01:54:53 +00002153}
2154
James Dennettdc201692012-06-22 05:46:07 +00002155/// HandleElseDirective - Implements the \#else directive.
Craig Silverstein08985b92010-11-06 01:19:03 +00002156///
Chris Lattner141e71f2008-03-09 01:54:53 +00002157void Preprocessor::HandleElseDirective(Token &Result) {
2158 ++NumElse;
Mike Stump1eb44332009-09-09 15:08:12 +00002159
Chris Lattner141e71f2008-03-09 01:54:53 +00002160 // #else directive in a non-skipping conditional... start skipping.
Chris Lattner35410d52009-04-14 05:07:49 +00002161 CheckEndOfDirective("else");
Mike Stump1eb44332009-09-09 15:08:12 +00002162
Chris Lattner141e71f2008-03-09 01:54:53 +00002163 PPConditionalInfo CI;
Chris Lattner3692b092008-11-18 07:59:24 +00002164 if (CurPPLexer->popConditionalLevel(CI)) {
2165 Diag(Result, diag::pp_err_else_without_if);
2166 return;
2167 }
Mike Stump1eb44332009-09-09 15:08:12 +00002168
Chris Lattner141e71f2008-03-09 01:54:53 +00002169 // If this is a top-level #else, inform the MIOpt.
Ted Kremenek60e45d42008-11-18 00:34:22 +00002170 if (CurPPLexer->getConditionalStackDepth() == 0)
2171 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattner141e71f2008-03-09 01:54:53 +00002172
2173 // If this is a #else with a #else before it, report the error.
2174 if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +00002175
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002176 if (Callbacks)
2177 Callbacks->Else(Result.getLocation(), CI.IfLoc);
2178
Craig Silverstein08985b92010-11-06 01:19:03 +00002179 // Finally, skip the rest of the contents of this block.
2180 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis6b4ff042011-09-27 17:32:05 +00002181 /*FoundElse*/true, Result.getLocation());
Chris Lattner141e71f2008-03-09 01:54:53 +00002182}
2183
James Dennettdc201692012-06-22 05:46:07 +00002184/// HandleElifDirective - Implements the \#elif directive.
Craig Silverstein08985b92010-11-06 01:19:03 +00002185///
Chris Lattner141e71f2008-03-09 01:54:53 +00002186void Preprocessor::HandleElifDirective(Token &ElifToken) {
2187 ++NumElse;
Mike Stump1eb44332009-09-09 15:08:12 +00002188
Chris Lattner141e71f2008-03-09 01:54:53 +00002189 // #elif directive in a non-skipping conditional... start skipping.
2190 // We don't care what the condition is, because we will always skip it (since
2191 // the block immediately before it was included).
Craig Silverstein08985b92010-11-06 01:19:03 +00002192 const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
Chris Lattner141e71f2008-03-09 01:54:53 +00002193 DiscardUntilEndOfDirective();
Craig Silverstein08985b92010-11-06 01:19:03 +00002194 const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
Chris Lattner141e71f2008-03-09 01:54:53 +00002195
2196 PPConditionalInfo CI;
Chris Lattner3692b092008-11-18 07:59:24 +00002197 if (CurPPLexer->popConditionalLevel(CI)) {
2198 Diag(ElifToken, diag::pp_err_elif_without_if);
2199 return;
2200 }
Mike Stump1eb44332009-09-09 15:08:12 +00002201
Chris Lattner141e71f2008-03-09 01:54:53 +00002202 // If this is a top-level #elif, inform the MIOpt.
Ted Kremenek60e45d42008-11-18 00:34:22 +00002203 if (CurPPLexer->getConditionalStackDepth() == 0)
2204 CurPPLexer->MIOpt.EnterTopLevelConditional();
Mike Stump1eb44332009-09-09 15:08:12 +00002205
Chris Lattner141e71f2008-03-09 01:54:53 +00002206 // If this is a #elif with a #else before it, report the error.
2207 if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
Argyrios Kyrtzidisbb660662012-03-05 05:48:09 +00002208
2209 if (Callbacks)
2210 Callbacks->Elif(ElifToken.getLocation(),
2211 SourceRange(ConditionalBegin, ConditionalEnd), CI.IfLoc);
Chris Lattner141e71f2008-03-09 01:54:53 +00002212
Craig Silverstein08985b92010-11-06 01:19:03 +00002213 // Finally, skip the rest of the contents of this block.
2214 SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
Argyrios Kyrtzidis6b4ff042011-09-27 17:32:05 +00002215 /*FoundElse*/CI.FoundElse,
2216 ElifToken.getLocation());
Chris Lattner141e71f2008-03-09 01:54:53 +00002217}