blob: a719a541a36342be24639818d23311540b735285 [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//===----------------------------------------------------------------------===//
9//
10// This file implements # directive processing for the Preprocessor.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Lex/Preprocessor.h"
Chris Lattner359cc442009-01-26 05:29:08 +000015#include "clang/Lex/LiteralSupport.h"
Chris Lattner141e71f2008-03-09 01:54:53 +000016#include "clang/Lex/HeaderSearch.h"
17#include "clang/Lex/MacroInfo.h"
Chris Lattner500d3292009-01-29 05:15:15 +000018#include "clang/Lex/LexDiagnostic.h"
Chris Lattner6e290142009-11-30 04:18:44 +000019#include "clang/Basic/FileManager.h"
Chris Lattner141e71f2008-03-09 01:54:53 +000020#include "clang/Basic/SourceManager.h"
Chris Lattner359cc442009-01-26 05:29:08 +000021#include "llvm/ADT/APInt.h"
Chris Lattner141e71f2008-03-09 01:54:53 +000022using namespace clang;
23
24//===----------------------------------------------------------------------===//
25// Utility Methods for Preprocessor Directive Handling.
26//===----------------------------------------------------------------------===//
27
Chris Lattner0301b3f2009-02-20 22:19:20 +000028MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) {
Ted Kremenek0ea76722008-12-15 19:56:42 +000029 MacroInfo *MI;
Mike Stump1eb44332009-09-09 15:08:12 +000030
Ted Kremenek0ea76722008-12-15 19:56:42 +000031 if (!MICache.empty()) {
32 MI = MICache.back();
33 MICache.pop_back();
Chris Lattner0301b3f2009-02-20 22:19:20 +000034 } else
35 MI = (MacroInfo*) BP.Allocate<MacroInfo>();
Ted Kremenek0ea76722008-12-15 19:56:42 +000036 new (MI) MacroInfo(L);
37 return MI;
38}
39
Chris Lattner0301b3f2009-02-20 22:19:20 +000040/// ReleaseMacroInfo - Release the specified MacroInfo. This memory will
41/// be reused for allocating new MacroInfo objects.
42void Preprocessor::ReleaseMacroInfo(MacroInfo* MI) {
43 MICache.push_back(MI);
Chris Lattner685befe2009-02-20 22:46:43 +000044 MI->FreeArgumentList(BP);
Chris Lattner0301b3f2009-02-20 22:19:20 +000045}
46
47
Chris Lattner141e71f2008-03-09 01:54:53 +000048/// DiscardUntilEndOfDirective - Read and discard all tokens remaining on the
49/// current line until the tok::eom token is found.
50void Preprocessor::DiscardUntilEndOfDirective() {
51 Token Tmp;
52 do {
53 LexUnexpandedToken(Tmp);
54 } while (Tmp.isNot(tok::eom));
55}
56
Chris Lattner141e71f2008-03-09 01:54:53 +000057/// ReadMacroName - Lex and validate a macro name, which occurs after a
58/// #define or #undef. This sets the token kind to eom and discards the rest
59/// of the macro line if the macro name is invalid. isDefineUndef is 1 if
60/// this is due to a a #define, 2 if #undef directive, 0 if it is something
61/// else (e.g. #ifdef).
62void Preprocessor::ReadMacroName(Token &MacroNameTok, char isDefineUndef) {
63 // Read the token, don't allow macro expansion on it.
64 LexUnexpandedToken(MacroNameTok);
Mike Stump1eb44332009-09-09 15:08:12 +000065
Chris Lattner141e71f2008-03-09 01:54:53 +000066 // Missing macro name?
Chris Lattner3692b092008-11-18 07:59:24 +000067 if (MacroNameTok.is(tok::eom)) {
68 Diag(MacroNameTok, diag::err_pp_missing_macro_name);
69 return;
70 }
Mike Stump1eb44332009-09-09 15:08:12 +000071
Chris Lattner141e71f2008-03-09 01:54:53 +000072 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
73 if (II == 0) {
74 std::string Spelling = getSpelling(MacroNameTok);
Chris Lattner9485d232008-12-13 20:12:40 +000075 const IdentifierInfo &Info = Identifiers.get(Spelling);
76 if (Info.isCPlusPlusOperatorKeyword())
Chris Lattner141e71f2008-03-09 01:54:53 +000077 // C++ 2.5p2: Alternative tokens behave the same as its primary token
78 // except for their spellings.
Chris Lattner56b05c82008-11-18 08:02:48 +000079 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling;
Chris Lattner141e71f2008-03-09 01:54:53 +000080 else
81 Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
82 // Fall through on error.
83 } else if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) {
84 // Error if defining "defined": C99 6.10.8.4.
85 Diag(MacroNameTok, diag::err_defined_macro_name);
86 } else if (isDefineUndef && II->hasMacroDefinition() &&
87 getMacroInfo(II)->isBuiltinMacro()) {
88 // Error if defining "__LINE__" and other builtins: C99 6.10.8.4.
89 if (isDefineUndef == 1)
90 Diag(MacroNameTok, diag::pp_redef_builtin_macro);
91 else
92 Diag(MacroNameTok, diag::pp_undef_builtin_macro);
93 } else {
94 // Okay, we got a good identifier node. Return it.
95 return;
96 }
Mike Stump1eb44332009-09-09 15:08:12 +000097
Chris Lattner141e71f2008-03-09 01:54:53 +000098 // Invalid macro name, read and discard the rest of the line. Then set the
99 // token kind to tok::eom.
100 MacroNameTok.setKind(tok::eom);
101 return DiscardUntilEndOfDirective();
102}
103
104/// CheckEndOfDirective - Ensure that the next token is a tok::eom token. If
Chris Lattnerab82f412009-04-17 23:30:53 +0000105/// not, emit a diagnostic and consume up until the eom. If EnableMacros is
106/// true, then we consider macros that expand to zero tokens as being ok.
107void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) {
Chris Lattner141e71f2008-03-09 01:54:53 +0000108 Token Tmp;
Chris Lattnerab82f412009-04-17 23:30:53 +0000109 // Lex unexpanded tokens for most directives: macros might expand to zero
110 // tokens, causing us to miss diagnosing invalid lines. Some directives (like
111 // #line) allow empty macros.
112 if (EnableMacros)
113 Lex(Tmp);
114 else
115 LexUnexpandedToken(Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000116
Chris Lattner141e71f2008-03-09 01:54:53 +0000117 // There should be no tokens after the directive, but we allow them as an
118 // extension.
119 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
120 LexUnexpandedToken(Tmp);
Mike Stump1eb44332009-09-09 15:08:12 +0000121
Chris Lattner141e71f2008-03-09 01:54:53 +0000122 if (Tmp.isNot(tok::eom)) {
Chris Lattner959875a2009-04-14 05:15:20 +0000123 // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89,
124 // because it is more trouble than it is worth to insert /**/ and check that
125 // there is no /**/ in the range also.
126 CodeModificationHint FixItHint;
127 if (Features.GNUMode || Features.C99 || Features.CPlusPlus)
128 FixItHint = CodeModificationHint::CreateInsertion(Tmp.getLocation(),"//");
129 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << FixItHint;
Chris Lattner141e71f2008-03-09 01:54:53 +0000130 DiscardUntilEndOfDirective();
131 }
132}
133
134
135
136/// SkipExcludedConditionalBlock - We just read a #if or related directive and
137/// decided that the subsequent tokens are in the #if'd out portion of the
138/// file. Lex the rest of the file, until we see an #endif. If
139/// FoundNonSkipPortion is true, then we have already emitted code for part of
140/// this #if directive, so #else/#elif blocks should never be entered. If ElseOk
141/// is true, then #else directives are ok, if not, then we have already seen one
142/// so a #else directive is a duplicate. When this returns, the caller can lex
143/// the first valid token.
144void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
145 bool FoundNonSkipPortion,
146 bool FoundElse) {
147 ++NumSkipped;
Ted Kremenekf6452c52008-11-18 01:04:47 +0000148 assert(CurTokenLexer == 0 && CurPPLexer && "Lexing a macro, not a file?");
Chris Lattner141e71f2008-03-09 01:54:53 +0000149
Ted Kremenek60e45d42008-11-18 00:34:22 +0000150 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +0000151 FoundNonSkipPortion, FoundElse);
Mike Stump1eb44332009-09-09 15:08:12 +0000152
Ted Kremenek268ee702008-12-12 18:34:08 +0000153 if (CurPTHLexer) {
154 PTHSkipExcludedConditionalBlock();
155 return;
156 }
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Chris Lattner141e71f2008-03-09 01:54:53 +0000158 // Enter raw mode to disable identifier lookup (and thus macro expansion),
159 // disabling warnings, etc.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000160 CurPPLexer->LexingRawMode = true;
Chris Lattner141e71f2008-03-09 01:54:53 +0000161 Token Tok;
162 while (1) {
Ted Kremenekf6452c52008-11-18 01:04:47 +0000163 if (CurLexer)
164 CurLexer->Lex(Tok);
165 else
166 CurPTHLexer->Lex(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Chris Lattner141e71f2008-03-09 01:54:53 +0000168 // If this is the end of the buffer, we have an error.
169 if (Tok.is(tok::eof)) {
170 // Emit errors for each unterminated conditional on the stack, including
171 // the current one.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000172 while (!CurPPLexer->ConditionalStack.empty()) {
173 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
Chris Lattner141e71f2008-03-09 01:54:53 +0000174 diag::err_pp_unterminated_conditional);
Ted Kremenek60e45d42008-11-18 00:34:22 +0000175 CurPPLexer->ConditionalStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +0000176 }
177
Chris Lattner141e71f2008-03-09 01:54:53 +0000178 // Just return and let the caller lex after this #include.
179 break;
180 }
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Chris Lattner141e71f2008-03-09 01:54:53 +0000182 // If this token is not a preprocessor directive, just skip it.
183 if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
184 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Chris Lattner141e71f2008-03-09 01:54:53 +0000186 // We just parsed a # character at the start of a line, so we're in
187 // directive mode. Tell the lexer this so any newlines we see will be
188 // converted into an EOM token (this terminates the macro).
Ted Kremenek60e45d42008-11-18 00:34:22 +0000189 CurPPLexer->ParsingPreprocessorDirective = true;
Ted Kremenekac6b06d2008-11-18 00:43:07 +0000190 if (CurLexer) CurLexer->SetCommentRetentionState(false);
Chris Lattner141e71f2008-03-09 01:54:53 +0000191
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Chris Lattner141e71f2008-03-09 01:54:53 +0000193 // Read the next token, the directive flavor.
194 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Chris Lattner141e71f2008-03-09 01:54:53 +0000196 // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
197 // something bogus), skip it.
198 if (Tok.isNot(tok::identifier)) {
Ted Kremenek60e45d42008-11-18 00:34:22 +0000199 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000200 // Restore comment saving mode.
Ted Kremenekac6b06d2008-11-18 00:43:07 +0000201 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
Chris Lattner141e71f2008-03-09 01:54:53 +0000202 continue;
203 }
204
205 // If the first letter isn't i or e, it isn't intesting to us. We know that
206 // this is safe in the face of spelling differences, because there is no way
207 // to spell an i/e in a strange way that is another letter. Skipping this
208 // allows us to avoid looking up the identifier info for #define/#undef and
209 // other common directives.
210 const char *RawCharData = SourceMgr.getCharacterData(Tok.getLocation());
211 char FirstChar = RawCharData[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000212 if (FirstChar >= 'a' && FirstChar <= 'z' &&
Chris Lattner141e71f2008-03-09 01:54:53 +0000213 FirstChar != 'i' && FirstChar != 'e') {
Ted Kremenek60e45d42008-11-18 00:34:22 +0000214 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000215 // Restore comment saving mode.
Ted Kremenekac6b06d2008-11-18 00:43:07 +0000216 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
Chris Lattner141e71f2008-03-09 01:54:53 +0000217 continue;
218 }
Mike Stump1eb44332009-09-09 15:08:12 +0000219
Chris Lattner141e71f2008-03-09 01:54:53 +0000220 // Get the identifier name without trigraphs or embedded newlines. Note
221 // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
222 // when skipping.
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000223 char DirectiveBuf[20];
224 llvm::StringRef Directive;
Chris Lattner141e71f2008-03-09 01:54:53 +0000225 if (!Tok.needsCleaning() && Tok.getLength() < 20) {
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000226 Directive = llvm::StringRef(RawCharData, Tok.getLength());
Chris Lattner141e71f2008-03-09 01:54:53 +0000227 } else {
228 std::string DirectiveStr = getSpelling(Tok);
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000229 unsigned IdLen = DirectiveStr.size();
Chris Lattner141e71f2008-03-09 01:54:53 +0000230 if (IdLen >= 20) {
Ted Kremenek60e45d42008-11-18 00:34:22 +0000231 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000232 // Restore comment saving mode.
Ted Kremenekac6b06d2008-11-18 00:43:07 +0000233 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
Chris Lattner141e71f2008-03-09 01:54:53 +0000234 continue;
235 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000236 memcpy(DirectiveBuf, &DirectiveStr[0], IdLen);
237 Directive = llvm::StringRef(DirectiveBuf, IdLen);
Chris Lattner141e71f2008-03-09 01:54:53 +0000238 }
Mike Stump1eb44332009-09-09 15:08:12 +0000239
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000240 if (Directive.startswith("if")) {
241 llvm::StringRef Sub = Directive.substr(2);
242 if (Sub.empty() || // "if"
243 Sub == "def" || // "ifdef"
244 Sub == "ndef") { // "ifndef"
Chris Lattner141e71f2008-03-09 01:54:53 +0000245 // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
246 // bother parsing the condition.
247 DiscardUntilEndOfDirective();
Ted Kremenek60e45d42008-11-18 00:34:22 +0000248 CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
Chris Lattner141e71f2008-03-09 01:54:53 +0000249 /*foundnonskip*/false,
250 /*fnddelse*/false);
251 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000252 } else if (Directive[0] == 'e') {
253 llvm::StringRef Sub = Directive.substr(1);
254 if (Sub == "ndif") { // "endif"
Chris Lattner35410d52009-04-14 05:07:49 +0000255 CheckEndOfDirective("endif");
Chris Lattner141e71f2008-03-09 01:54:53 +0000256 PPConditionalInfo CondInfo;
257 CondInfo.WasSkipping = true; // Silence bogus warning.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000258 bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
Chris Lattner141e71f2008-03-09 01:54:53 +0000259 InCond = InCond; // Silence warning in no-asserts mode.
260 assert(!InCond && "Can't be skipping if not in a conditional!");
Mike Stump1eb44332009-09-09 15:08:12 +0000261
Chris Lattner141e71f2008-03-09 01:54:53 +0000262 // If we popped the outermost skipping block, we're done skipping!
263 if (!CondInfo.WasSkipping)
264 break;
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000265 } else if (Sub == "lse") { // "else".
Chris Lattner141e71f2008-03-09 01:54:53 +0000266 // #else directive in a skipping conditional. If not in some other
267 // skipping conditional, and if #else hasn't already been seen, enter it
268 // as a non-skipping conditional.
Chris Lattner8fe00e72009-04-18 01:34:22 +0000269 DiscardUntilEndOfDirective(); // C99 6.10p4.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000270 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Chris Lattner141e71f2008-03-09 01:54:53 +0000272 // If this is a #else with a #else before it, report the error.
273 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +0000274
Chris Lattner141e71f2008-03-09 01:54:53 +0000275 // Note that we've seen a #else in this conditional.
276 CondInfo.FoundElse = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattner141e71f2008-03-09 01:54:53 +0000278 // If the conditional is at the top level, and the #if block wasn't
279 // entered, enter the #else block now.
280 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
281 CondInfo.FoundNonSkip = true;
282 break;
283 }
Benjamin Kramerb939a4e2009-12-31 13:32:38 +0000284 } else if (Sub == "lif") { // "elif".
Ted Kremenek60e45d42008-11-18 00:34:22 +0000285 PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
Chris Lattner141e71f2008-03-09 01:54:53 +0000286
287 bool ShouldEnter;
288 // If this is in a skipping block or if we're already handled this #if
289 // block, don't bother parsing the condition.
290 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
291 DiscardUntilEndOfDirective();
292 ShouldEnter = false;
293 } else {
294 // Restore the value of LexingRawMode so that identifiers are
295 // looked up, etc, inside the #elif expression.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000296 assert(CurPPLexer->LexingRawMode && "We have to be skipping here!");
297 CurPPLexer->LexingRawMode = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000298 IdentifierInfo *IfNDefMacro = 0;
299 ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
Ted Kremenek60e45d42008-11-18 00:34:22 +0000300 CurPPLexer->LexingRawMode = true;
Chris Lattner141e71f2008-03-09 01:54:53 +0000301 }
Mike Stump1eb44332009-09-09 15:08:12 +0000302
Chris Lattner141e71f2008-03-09 01:54:53 +0000303 // If this is a #elif with a #else before it, report the error.
304 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattner141e71f2008-03-09 01:54:53 +0000306 // If this condition is true, enter it!
307 if (ShouldEnter) {
308 CondInfo.FoundNonSkip = true;
309 break;
310 }
311 }
312 }
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Ted Kremenek60e45d42008-11-18 00:34:22 +0000314 CurPPLexer->ParsingPreprocessorDirective = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000315 // Restore comment saving mode.
Ted Kremenekac6b06d2008-11-18 00:43:07 +0000316 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
Chris Lattner141e71f2008-03-09 01:54:53 +0000317 }
318
319 // Finally, if we are out of the conditional (saw an #endif or ran off the end
320 // of the file, just stop skipping and return to lexing whatever came after
321 // the #if block.
Ted Kremenek60e45d42008-11-18 00:34:22 +0000322 CurPPLexer->LexingRawMode = false;
Chris Lattner141e71f2008-03-09 01:54:53 +0000323}
324
Ted Kremenek268ee702008-12-12 18:34:08 +0000325void Preprocessor::PTHSkipExcludedConditionalBlock() {
Mike Stump1eb44332009-09-09 15:08:12 +0000326
327 while (1) {
Ted Kremenek268ee702008-12-12 18:34:08 +0000328 assert(CurPTHLexer);
329 assert(CurPTHLexer->LexingRawMode == false);
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Ted Kremenek268ee702008-12-12 18:34:08 +0000331 // Skip to the next '#else', '#elif', or #endif.
332 if (CurPTHLexer->SkipBlock()) {
333 // We have reached an #endif. Both the '#' and 'endif' tokens
334 // have been consumed by the PTHLexer. Just pop off the condition level.
335 PPConditionalInfo CondInfo;
336 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
337 InCond = InCond; // Silence warning in no-asserts mode.
338 assert(!InCond && "Can't be skipping if not in a conditional!");
339 break;
340 }
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Ted Kremenek268ee702008-12-12 18:34:08 +0000342 // We have reached a '#else' or '#elif'. Lex the next token to get
343 // the directive flavor.
344 Token Tok;
345 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000346
Ted Kremenek268ee702008-12-12 18:34:08 +0000347 // We can actually look up the IdentifierInfo here since we aren't in
348 // raw mode.
349 tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID();
350
351 if (K == tok::pp_else) {
352 // #else: Enter the else condition. We aren't in a nested condition
353 // since we skip those. We're always in the one matching the last
354 // blocked we skipped.
355 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
356 // Note that we've seen a #else in this conditional.
357 CondInfo.FoundElse = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Ted Kremenek268ee702008-12-12 18:34:08 +0000359 // If the #if block wasn't entered then enter the #else block now.
360 if (!CondInfo.FoundNonSkip) {
361 CondInfo.FoundNonSkip = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Daniel Dunbar8533bd52009-04-13 17:57:49 +0000363 // Scan until the eom token.
Ted Kremeneke5680f32008-12-23 01:30:52 +0000364 CurPTHLexer->ParsingPreprocessorDirective = true;
Daniel Dunbar8533bd52009-04-13 17:57:49 +0000365 DiscardUntilEndOfDirective();
Ted Kremeneke5680f32008-12-23 01:30:52 +0000366 CurPTHLexer->ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Ted Kremenek268ee702008-12-12 18:34:08 +0000368 break;
369 }
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Ted Kremenek268ee702008-12-12 18:34:08 +0000371 // Otherwise skip this block.
372 continue;
373 }
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Ted Kremenek268ee702008-12-12 18:34:08 +0000375 assert(K == tok::pp_elif);
376 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
377
378 // If this is a #elif with a #else before it, report the error.
379 if (CondInfo.FoundElse)
380 Diag(Tok, diag::pp_err_elif_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Ted Kremenek268ee702008-12-12 18:34:08 +0000382 // If this is in a skipping block or if we're already handled this #if
Mike Stump1eb44332009-09-09 15:08:12 +0000383 // block, don't bother parsing the condition. We just skip this block.
Ted Kremenek268ee702008-12-12 18:34:08 +0000384 if (CondInfo.FoundNonSkip)
385 continue;
386
387 // Evaluate the condition of the #elif.
388 IdentifierInfo *IfNDefMacro = 0;
389 CurPTHLexer->ParsingPreprocessorDirective = true;
390 bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
391 CurPTHLexer->ParsingPreprocessorDirective = false;
392
393 // If this condition is true, enter it!
394 if (ShouldEnter) {
395 CondInfo.FoundNonSkip = true;
396 break;
397 }
398
399 // Otherwise, skip this block and go to the next one.
400 continue;
401 }
402}
403
Chris Lattner10725092008-03-09 04:17:44 +0000404/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
405/// return null on failure. isAngled indicates whether the file reference is
406/// for system #include's or not (i.e. using <> instead of "").
407const FileEntry *Preprocessor::LookupFile(const char *FilenameStart,
408 const char *FilenameEnd,
Chris Lattner804f6522010-01-10 00:24:58 +0000409 SourceLocation FilenameTokLoc,
Chris Lattner10725092008-03-09 04:17:44 +0000410 bool isAngled,
411 const DirectoryLookup *FromDir,
412 const DirectoryLookup *&CurDir) {
413 // If the header lookup mechanism may be relative to the current file, pass in
414 // info about where the current file is.
415 const FileEntry *CurFileEnt = 0;
416 if (!FromDir) {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000417 FileID FID = getCurrentFileLexer()->getFileID();
418 CurFileEnt = SourceMgr.getFileEntryForID(FID);
Mike Stump1eb44332009-09-09 15:08:12 +0000419
Chris Lattnerbe5c64d2009-02-04 19:45:07 +0000420 // If there is no file entry associated with this file, it must be the
421 // predefines buffer. Any other file is not lexed with a normal lexer, so
422 // it won't be scanned for preprocessor directives. If we have the
423 // predefines buffer, resolve #include references (which come from the
424 // -include command line argument) as if they came from the main file, this
425 // affects file lookup etc.
426 if (CurFileEnt == 0) {
427 FID = SourceMgr.getMainFileID();
428 CurFileEnt = SourceMgr.getFileEntryForID(FID);
429 }
Chris Lattner10725092008-03-09 04:17:44 +0000430 }
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Chris Lattner10725092008-03-09 04:17:44 +0000432 // Do a standard file entry lookup.
433 CurDir = CurDirLookup;
434 const FileEntry *FE =
Chris Lattnerbe5c64d2009-02-04 19:45:07 +0000435 HeaderInfo.LookupFile(FilenameStart, FilenameEnd,
436 isAngled, FromDir, CurDir, CurFileEnt);
Chris Lattner804f6522010-01-10 00:24:58 +0000437 if (FE) {
438 // Warn about normal quoted #include from framework headers. Since
439 // framework headers are published (both public and private ones) they
440 // should not do relative searches, they should do an include relative to
441 // their framework.
442 if (!isAngled && CurDir && FilenameTokLoc.isValid() &&
443 CurDir->isFramework() && CurDir == CurDirLookup)
444 Diag(FilenameTokLoc, diag::warn_pp_relative_include_from_framework);
445 return FE;
446 }
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Chris Lattner10725092008-03-09 04:17:44 +0000448 // Otherwise, see if this is a subframework header. If so, this is relative
449 // to one of the headers on the #include stack. Walk the list of the current
450 // headers on the #include stack and pass them to HeaderInfo.
Ted Kremenek81d24e12008-11-20 16:19:53 +0000451 if (IsFileLexer()) {
Ted Kremenek41938c82008-11-19 21:57:25 +0000452 if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID())))
Chris Lattner10725092008-03-09 04:17:44 +0000453 if ((FE = HeaderInfo.LookupSubframeworkHeader(FilenameStart, FilenameEnd,
454 CurFileEnt)))
455 return FE;
456 }
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Chris Lattner10725092008-03-09 04:17:44 +0000458 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
459 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
Ted Kremenek81d24e12008-11-20 16:19:53 +0000460 if (IsFileLexer(ISEntry)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000461 if ((CurFileEnt =
Ted Kremenek41938c82008-11-19 21:57:25 +0000462 SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID())))
Chris Lattner10725092008-03-09 04:17:44 +0000463 if ((FE = HeaderInfo.LookupSubframeworkHeader(FilenameStart,
464 FilenameEnd, CurFileEnt)))
465 return FE;
466 }
467 }
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Chris Lattner10725092008-03-09 04:17:44 +0000469 // Otherwise, we really couldn't find the file.
470 return 0;
471}
472
Chris Lattner141e71f2008-03-09 01:54:53 +0000473
474//===----------------------------------------------------------------------===//
475// Preprocessor Directive Handling.
476//===----------------------------------------------------------------------===//
477
478/// HandleDirective - This callback is invoked when the lexer sees a # token
Mike Stump1eb44332009-09-09 15:08:12 +0000479/// at the start of a line. This consumes the directive, modifies the
Chris Lattner141e71f2008-03-09 01:54:53 +0000480/// lexer/preprocessor state, and advances the lexer(s) so that the next token
481/// read is the correct one.
482void Preprocessor::HandleDirective(Token &Result) {
483 // FIXME: Traditional: # with whitespace before it not recognized by K&R?
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Chris Lattner141e71f2008-03-09 01:54:53 +0000485 // We just parsed a # character at the start of a line, so we're in directive
486 // mode. Tell the lexer this so any newlines we see will be converted into an
487 // EOM token (which terminates the directive).
Ted Kremenek60e45d42008-11-18 00:34:22 +0000488 CurPPLexer->ParsingPreprocessorDirective = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Chris Lattner141e71f2008-03-09 01:54:53 +0000490 ++NumDirectives;
Chris Lattner1d9c54d2009-12-14 04:54:40 +0000491
Chris Lattner141e71f2008-03-09 01:54:53 +0000492 // We are about to read a token. For the multiple-include optimization FA to
Mike Stump1eb44332009-09-09 15:08:12 +0000493 // work, we have to remember if we had read any tokens *before* this
Chris Lattner141e71f2008-03-09 01:54:53 +0000494 // pp-directive.
Chris Lattner1d9c54d2009-12-14 04:54:40 +0000495 bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Chris Lattner42aa16c2009-03-18 21:00:25 +0000497 // Save the '#' token in case we need to return it later.
498 Token SavedHash = Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Chris Lattner141e71f2008-03-09 01:54:53 +0000500 // Read the next token, the directive flavor. This isn't expanded due to
501 // C99 6.10.3p8.
502 LexUnexpandedToken(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Chris Lattner141e71f2008-03-09 01:54:53 +0000504 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
505 // #define A(x) #x
506 // A(abc
507 // #warning blah
508 // def)
509 // If so, the user is relying on non-portable behavior, emit a diagnostic.
510 if (InMacroArgs)
511 Diag(Result, diag::ext_embedded_directive);
Mike Stump1eb44332009-09-09 15:08:12 +0000512
Chris Lattner141e71f2008-03-09 01:54:53 +0000513TryAgain:
514 switch (Result.getKind()) {
515 case tok::eom:
516 return; // null directive.
517 case tok::comment:
518 // Handle stuff like "# /*foo*/ define X" in -E -C mode.
519 LexUnexpandedToken(Result);
520 goto TryAgain;
521
Chris Lattner478a18e2009-01-26 06:19:46 +0000522 case tok::numeric_constant: // # 7 GNU line marker directive.
Chris Lattner5f607c42009-03-18 20:41:10 +0000523 if (getLangOptions().AsmPreprocessor)
524 break; // # 4 is not a preprocessor directive in .S files.
Chris Lattner478a18e2009-01-26 06:19:46 +0000525 return HandleDigitDirective(Result);
Chris Lattner141e71f2008-03-09 01:54:53 +0000526 default:
527 IdentifierInfo *II = Result.getIdentifierInfo();
528 if (II == 0) break; // Not an identifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Chris Lattner141e71f2008-03-09 01:54:53 +0000530 // Ask what the preprocessor keyword ID is.
531 switch (II->getPPKeywordID()) {
532 default: break;
533 // C99 6.10.1 - Conditional Inclusion.
534 case tok::pp_if:
535 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
536 case tok::pp_ifdef:
537 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
538 case tok::pp_ifndef:
539 return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
540 case tok::pp_elif:
541 return HandleElifDirective(Result);
542 case tok::pp_else:
543 return HandleElseDirective(Result);
544 case tok::pp_endif:
545 return HandleEndifDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Chris Lattner141e71f2008-03-09 01:54:53 +0000547 // C99 6.10.2 - Source File Inclusion.
548 case tok::pp_include:
Chris Lattnerb8e240e2009-04-08 18:24:34 +0000549 return HandleIncludeDirective(Result); // Handle #include.
550 case tok::pp___include_macros:
Chris Lattnerde076652009-04-08 18:46:40 +0000551 return HandleIncludeMacrosDirective(Result); // Handle -imacros.
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattner141e71f2008-03-09 01:54:53 +0000553 // C99 6.10.3 - Macro Replacement.
554 case tok::pp_define:
555 return HandleDefineDirective(Result);
556 case tok::pp_undef:
557 return HandleUndefDirective(Result);
558
559 // C99 6.10.4 - Line Control.
560 case tok::pp_line:
Chris Lattner359cc442009-01-26 05:29:08 +0000561 return HandleLineDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Chris Lattner141e71f2008-03-09 01:54:53 +0000563 // C99 6.10.5 - Error Directive.
564 case tok::pp_error:
565 return HandleUserDiagnosticDirective(Result, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Chris Lattner141e71f2008-03-09 01:54:53 +0000567 // C99 6.10.6 - Pragma Directive.
568 case tok::pp_pragma:
569 return HandlePragmaDirective();
Mike Stump1eb44332009-09-09 15:08:12 +0000570
Chris Lattner141e71f2008-03-09 01:54:53 +0000571 // GNU Extensions.
572 case tok::pp_import:
573 return HandleImportDirective(Result);
574 case tok::pp_include_next:
575 return HandleIncludeNextDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Chris Lattner141e71f2008-03-09 01:54:53 +0000577 case tok::pp_warning:
578 Diag(Result, diag::ext_pp_warning_directive);
579 return HandleUserDiagnosticDirective(Result, true);
580 case tok::pp_ident:
581 return HandleIdentSCCSDirective(Result);
582 case tok::pp_sccs:
583 return HandleIdentSCCSDirective(Result);
584 case tok::pp_assert:
585 //isExtension = true; // FIXME: implement #assert
586 break;
587 case tok::pp_unassert:
588 //isExtension = true; // FIXME: implement #unassert
589 break;
590 }
591 break;
592 }
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Chris Lattner42aa16c2009-03-18 21:00:25 +0000594 // If this is a .S file, treat unknown # directives as non-preprocessor
595 // directives. This is important because # may be a comment or introduce
596 // various pseudo-ops. Just return the # token and push back the following
597 // token to be lexed next time.
598 if (getLangOptions().AsmPreprocessor) {
Daniel Dunbar3d399a02009-07-13 21:48:50 +0000599 Token *Toks = new Token[2];
Chris Lattner42aa16c2009-03-18 21:00:25 +0000600 // Return the # and the token after it.
Mike Stump1eb44332009-09-09 15:08:12 +0000601 Toks[0] = SavedHash;
Chris Lattner42aa16c2009-03-18 21:00:25 +0000602 Toks[1] = Result;
603 // Enter this token stream so that we re-lex the tokens. Make sure to
604 // enable macro expansion, in case the token after the # is an identifier
605 // that is expanded.
606 EnterTokenStream(Toks, 2, false, true);
607 return;
608 }
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Chris Lattner141e71f2008-03-09 01:54:53 +0000610 // If we reached here, the preprocessing token is not valid!
611 Diag(Result, diag::err_pp_invalid_directive);
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Chris Lattner141e71f2008-03-09 01:54:53 +0000613 // Read the rest of the PP line.
614 DiscardUntilEndOfDirective();
Mike Stump1eb44332009-09-09 15:08:12 +0000615
Chris Lattner141e71f2008-03-09 01:54:53 +0000616 // Okay, we're done parsing the directive.
617}
618
Chris Lattner478a18e2009-01-26 06:19:46 +0000619/// GetLineValue - Convert a numeric token into an unsigned value, emitting
620/// Diagnostic DiagID if it is invalid, and returning the value in Val.
621static bool GetLineValue(Token &DigitTok, unsigned &Val,
622 unsigned DiagID, Preprocessor &PP) {
623 if (DigitTok.isNot(tok::numeric_constant)) {
624 PP.Diag(DigitTok, DiagID);
Mike Stump1eb44332009-09-09 15:08:12 +0000625
Chris Lattner478a18e2009-01-26 06:19:46 +0000626 if (DigitTok.isNot(tok::eom))
627 PP.DiscardUntilEndOfDirective();
628 return true;
629 }
Mike Stump1eb44332009-09-09 15:08:12 +0000630
Chris Lattner478a18e2009-01-26 06:19:46 +0000631 llvm::SmallString<64> IntegerBuffer;
632 IntegerBuffer.resize(DigitTok.getLength());
633 const char *DigitTokBegin = &IntegerBuffer[0];
634 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin);
Mike Stump1eb44332009-09-09 15:08:12 +0000635
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000636 // Verify that we have a simple digit-sequence, and compute the value. This
637 // is always a simple digit string computed in decimal, so we do this manually
638 // here.
639 Val = 0;
640 for (unsigned i = 0; i != ActualLength; ++i) {
641 if (!isdigit(DigitTokBegin[i])) {
642 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i),
643 diag::err_pp_line_digit_sequence);
644 PP.DiscardUntilEndOfDirective();
645 return true;
646 }
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000648 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0');
649 if (NextVal < Val) { // overflow.
650 PP.Diag(DigitTok, DiagID);
651 PP.DiscardUntilEndOfDirective();
652 return true;
653 }
654 Val = NextVal;
Chris Lattner478a18e2009-01-26 06:19:46 +0000655 }
Mike Stump1eb44332009-09-09 15:08:12 +0000656
657 // Reject 0, this is needed both by #line numbers and flags.
Chris Lattner478a18e2009-01-26 06:19:46 +0000658 if (Val == 0) {
659 PP.Diag(DigitTok, DiagID);
660 PP.DiscardUntilEndOfDirective();
661 return true;
662 }
Mike Stump1eb44332009-09-09 15:08:12 +0000663
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000664 if (DigitTokBegin[0] == '0')
665 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal);
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Chris Lattner478a18e2009-01-26 06:19:46 +0000667 return false;
668}
669
Mike Stump1eb44332009-09-09 15:08:12 +0000670/// HandleLineDirective - Handle #line directive: C99 6.10.4. The two
Chris Lattner359cc442009-01-26 05:29:08 +0000671/// acceptable forms are:
672/// # line digit-sequence
673/// # line digit-sequence "s-char-sequence"
674void Preprocessor::HandleLineDirective(Token &Tok) {
675 // Read the line # and string argument. Per C99 6.10.4p5, these tokens are
676 // expanded.
677 Token DigitTok;
678 Lex(DigitTok);
679
Chris Lattner359cc442009-01-26 05:29:08 +0000680 // Validate the number and convert it to an unsigned.
Chris Lattner478a18e2009-01-26 06:19:46 +0000681 unsigned LineNo;
Chris Lattnerdc8c90d2009-04-18 18:35:15 +0000682 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
Chris Lattner359cc442009-01-26 05:29:08 +0000683 return;
Chris Lattner359cc442009-01-26 05:29:08 +0000684
Chris Lattner478a18e2009-01-26 06:19:46 +0000685 // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a
686 // number greater than 2147483647". C90 requires that the line # be <= 32767.
Chris Lattner359cc442009-01-26 05:29:08 +0000687 unsigned LineLimit = Features.C99 ? 2147483648U : 32768U;
688 if (LineNo >= LineLimit)
689 Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit;
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Chris Lattner5b9a5042009-01-26 07:57:50 +0000691 int FilenameID = -1;
Chris Lattner359cc442009-01-26 05:29:08 +0000692 Token StrTok;
693 Lex(StrTok);
694
695 // If the StrTok is "eom", then it wasn't present. Otherwise, it must be a
696 // string followed by eom.
Mike Stump1eb44332009-09-09 15:08:12 +0000697 if (StrTok.is(tok::eom))
Chris Lattner359cc442009-01-26 05:29:08 +0000698 ; // ok
699 else if (StrTok.isNot(tok::string_literal)) {
700 Diag(StrTok, diag::err_pp_line_invalid_filename);
701 DiscardUntilEndOfDirective();
702 return;
703 } else {
Chris Lattner5b9a5042009-01-26 07:57:50 +0000704 // Parse and validate the string, converting it into a unique ID.
705 StringLiteralParser Literal(&StrTok, 1, *this);
706 assert(!Literal.AnyWide && "Didn't allow wide strings in");
707 if (Literal.hadError)
708 return DiscardUntilEndOfDirective();
709 if (Literal.Pascal) {
710 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
711 return DiscardUntilEndOfDirective();
712 }
713 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString(),
714 Literal.GetStringLength());
Mike Stump1eb44332009-09-09 15:08:12 +0000715
Chris Lattnerab82f412009-04-17 23:30:53 +0000716 // Verify that there is nothing after the string, other than EOM. Because
717 // of C99 6.10.4p5, macros that expand to empty tokens are ok.
718 CheckEndOfDirective("line", true);
Chris Lattner359cc442009-01-26 05:29:08 +0000719 }
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Chris Lattner4c4ea172009-02-03 21:52:55 +0000721 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID);
Mike Stump1eb44332009-09-09 15:08:12 +0000722
Chris Lattner16629382009-03-27 17:13:49 +0000723 if (Callbacks)
724 Callbacks->FileChanged(DigitTok.getLocation(), PPCallbacks::RenameFile,
725 SrcMgr::C_User);
Chris Lattner359cc442009-01-26 05:29:08 +0000726}
727
Chris Lattner478a18e2009-01-26 06:19:46 +0000728/// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line
729/// marker directive.
730static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit,
731 bool &IsSystemHeader, bool &IsExternCHeader,
732 Preprocessor &PP) {
733 unsigned FlagVal;
734 Token FlagTok;
735 PP.Lex(FlagTok);
736 if (FlagTok.is(tok::eom)) return false;
737 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
738 return true;
739
740 if (FlagVal == 1) {
741 IsFileEntry = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000742
Chris Lattner478a18e2009-01-26 06:19:46 +0000743 PP.Lex(FlagTok);
744 if (FlagTok.is(tok::eom)) return false;
745 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
746 return true;
747 } else if (FlagVal == 2) {
748 IsFileExit = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000749
Chris Lattner137b6a62009-02-04 06:25:26 +0000750 SourceManager &SM = PP.getSourceManager();
751 // If we are leaving the current presumed file, check to make sure the
752 // presumed include stack isn't empty!
753 FileID CurFileID =
754 SM.getDecomposedInstantiationLoc(FlagTok.getLocation()).first;
755 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000756
Chris Lattner137b6a62009-02-04 06:25:26 +0000757 // If there is no include loc (main file) or if the include loc is in a
758 // different physical file, then we aren't in a "1" line marker flag region.
759 SourceLocation IncLoc = PLoc.getIncludeLoc();
760 if (IncLoc.isInvalid() ||
761 SM.getDecomposedInstantiationLoc(IncLoc).first != CurFileID) {
762 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop);
763 PP.DiscardUntilEndOfDirective();
764 return true;
765 }
Mike Stump1eb44332009-09-09 15:08:12 +0000766
Chris Lattner478a18e2009-01-26 06:19:46 +0000767 PP.Lex(FlagTok);
768 if (FlagTok.is(tok::eom)) return false;
769 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
770 return true;
771 }
772
773 // We must have 3 if there are still flags.
774 if (FlagVal != 3) {
775 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000776 PP.DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000777 return true;
778 }
Mike Stump1eb44332009-09-09 15:08:12 +0000779
Chris Lattner478a18e2009-01-26 06:19:46 +0000780 IsSystemHeader = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Chris Lattner478a18e2009-01-26 06:19:46 +0000782 PP.Lex(FlagTok);
783 if (FlagTok.is(tok::eom)) return false;
Chris Lattner9d79eba2009-02-04 05:21:58 +0000784 if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
Chris Lattner478a18e2009-01-26 06:19:46 +0000785 return true;
786
787 // We must have 4 if there is yet another flag.
788 if (FlagVal != 4) {
789 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000790 PP.DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000791 return true;
792 }
Mike Stump1eb44332009-09-09 15:08:12 +0000793
Chris Lattner478a18e2009-01-26 06:19:46 +0000794 IsExternCHeader = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000795
Chris Lattner478a18e2009-01-26 06:19:46 +0000796 PP.Lex(FlagTok);
797 if (FlagTok.is(tok::eom)) return false;
798
799 // There are no more valid flags here.
800 PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000801 PP.DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000802 return true;
803}
804
805/// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is
806/// one of the following forms:
807///
808/// # 42
Mike Stump1eb44332009-09-09 15:08:12 +0000809/// # 42 "file" ('1' | '2')?
Chris Lattner478a18e2009-01-26 06:19:46 +0000810/// # 42 "file" ('1' | '2')? '3' '4'?
811///
812void Preprocessor::HandleDigitDirective(Token &DigitTok) {
813 // Validate the number and convert it to an unsigned. GNU does not have a
814 // line # limit other than it fit in 32-bits.
815 unsigned LineNo;
816 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
817 *this))
818 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000819
Chris Lattner478a18e2009-01-26 06:19:46 +0000820 Token StrTok;
821 Lex(StrTok);
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Chris Lattner478a18e2009-01-26 06:19:46 +0000823 bool IsFileEntry = false, IsFileExit = false;
824 bool IsSystemHeader = false, IsExternCHeader = false;
Chris Lattner5b9a5042009-01-26 07:57:50 +0000825 int FilenameID = -1;
826
Chris Lattner478a18e2009-01-26 06:19:46 +0000827 // If the StrTok is "eom", then it wasn't present. Otherwise, it must be a
828 // string followed by eom.
Mike Stump1eb44332009-09-09 15:08:12 +0000829 if (StrTok.is(tok::eom))
Chris Lattner478a18e2009-01-26 06:19:46 +0000830 ; // ok
831 else if (StrTok.isNot(tok::string_literal)) {
832 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000833 return DiscardUntilEndOfDirective();
Chris Lattner478a18e2009-01-26 06:19:46 +0000834 } else {
Chris Lattner5b9a5042009-01-26 07:57:50 +0000835 // Parse and validate the string, converting it into a unique ID.
836 StringLiteralParser Literal(&StrTok, 1, *this);
837 assert(!Literal.AnyWide && "Didn't allow wide strings in");
838 if (Literal.hadError)
839 return DiscardUntilEndOfDirective();
840 if (Literal.Pascal) {
841 Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
842 return DiscardUntilEndOfDirective();
843 }
844 FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString(),
845 Literal.GetStringLength());
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Chris Lattner478a18e2009-01-26 06:19:46 +0000847 // If a filename was present, read any flags that are present.
Mike Stump1eb44332009-09-09 15:08:12 +0000848 if (ReadLineMarkerFlags(IsFileEntry, IsFileExit,
Chris Lattner5b9a5042009-01-26 07:57:50 +0000849 IsSystemHeader, IsExternCHeader, *this))
Chris Lattner478a18e2009-01-26 06:19:46 +0000850 return;
Chris Lattner478a18e2009-01-26 06:19:46 +0000851 }
Mike Stump1eb44332009-09-09 15:08:12 +0000852
Chris Lattner9d79eba2009-02-04 05:21:58 +0000853 // Create a line note with this information.
854 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID,
Mike Stump1eb44332009-09-09 15:08:12 +0000855 IsFileEntry, IsFileExit,
Chris Lattner9d79eba2009-02-04 05:21:58 +0000856 IsSystemHeader, IsExternCHeader);
Mike Stump1eb44332009-09-09 15:08:12 +0000857
Chris Lattner16629382009-03-27 17:13:49 +0000858 // If the preprocessor has callbacks installed, notify them of the #line
859 // change. This is used so that the line marker comes out in -E mode for
860 // example.
861 if (Callbacks) {
862 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile;
863 if (IsFileEntry)
864 Reason = PPCallbacks::EnterFile;
865 else if (IsFileExit)
866 Reason = PPCallbacks::ExitFile;
867 SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User;
868 if (IsExternCHeader)
869 FileKind = SrcMgr::C_ExternCSystem;
870 else if (IsSystemHeader)
871 FileKind = SrcMgr::C_System;
Mike Stump1eb44332009-09-09 15:08:12 +0000872
Chris Lattner16629382009-03-27 17:13:49 +0000873 Callbacks->FileChanged(DigitTok.getLocation(), Reason, FileKind);
874 }
Chris Lattner478a18e2009-01-26 06:19:46 +0000875}
876
877
Chris Lattner099dd052009-01-26 05:30:54 +0000878/// HandleUserDiagnosticDirective - Handle a #warning or #error directive.
879///
Mike Stump1eb44332009-09-09 15:08:12 +0000880void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
Chris Lattner141e71f2008-03-09 01:54:53 +0000881 bool isWarning) {
Chris Lattner099dd052009-01-26 05:30:54 +0000882 // PTH doesn't emit #warning or #error directives.
883 if (CurPTHLexer)
Chris Lattner359cc442009-01-26 05:29:08 +0000884 return CurPTHLexer->DiscardToEndOfLine();
885
Chris Lattner141e71f2008-03-09 01:54:53 +0000886 // Read the rest of the line raw. We do this because we don't want macros
887 // to be expanded and we don't require that the tokens be valid preprocessing
888 // tokens. For example, this is allowed: "#warning ` 'foo". GCC does
889 // collapse multiple consequtive white space between tokens, but this isn't
890 // specified by the standard.
Chris Lattner359cc442009-01-26 05:29:08 +0000891 std::string Message = CurLexer->ReadToEndOfLine();
892 if (isWarning)
893 Diag(Tok, diag::pp_hash_warning) << Message;
894 else
895 Diag(Tok, diag::err_pp_hash_error) << Message;
Chris Lattner141e71f2008-03-09 01:54:53 +0000896}
897
898/// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
899///
900void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
901 // Yes, this directive is an extension.
902 Diag(Tok, diag::ext_pp_ident_directive);
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Chris Lattner141e71f2008-03-09 01:54:53 +0000904 // Read the string argument.
905 Token StrTok;
906 Lex(StrTok);
Mike Stump1eb44332009-09-09 15:08:12 +0000907
Chris Lattner141e71f2008-03-09 01:54:53 +0000908 // If the token kind isn't a string, it's a malformed directive.
909 if (StrTok.isNot(tok::string_literal) &&
Chris Lattner3692b092008-11-18 07:59:24 +0000910 StrTok.isNot(tok::wide_string_literal)) {
911 Diag(StrTok, diag::err_pp_malformed_ident);
Chris Lattner099dd052009-01-26 05:30:54 +0000912 if (StrTok.isNot(tok::eom))
913 DiscardUntilEndOfDirective();
Chris Lattner3692b092008-11-18 07:59:24 +0000914 return;
915 }
Mike Stump1eb44332009-09-09 15:08:12 +0000916
Chris Lattner141e71f2008-03-09 01:54:53 +0000917 // Verify that there is nothing after the string, other than EOM.
Chris Lattner35410d52009-04-14 05:07:49 +0000918 CheckEndOfDirective("ident");
Chris Lattner141e71f2008-03-09 01:54:53 +0000919
920 if (Callbacks)
921 Callbacks->Ident(Tok.getLocation(), getSpelling(StrTok));
922}
923
924//===----------------------------------------------------------------------===//
925// Preprocessor Include Directive Handling.
926//===----------------------------------------------------------------------===//
927
928/// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
929/// checked and spelled filename, e.g. as an operand of #include. This returns
930/// true if the input filename was in <>'s or false if it were in ""'s. The
931/// caller is expected to provide a buffer that is large enough to hold the
932/// spelling of the filename, but is also expected to handle the case when
933/// this method decides to use a different buffer.
934bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
935 const char *&BufStart,
936 const char *&BufEnd) {
937 // Get the text form of the filename.
938 assert(BufStart != BufEnd && "Can't have tokens with empty spellings!");
Mike Stump1eb44332009-09-09 15:08:12 +0000939
Chris Lattner141e71f2008-03-09 01:54:53 +0000940 // Make sure the filename is <x> or "x".
941 bool isAngled;
942 if (BufStart[0] == '<') {
943 if (BufEnd[-1] != '>') {
944 Diag(Loc, diag::err_pp_expects_filename);
945 BufStart = 0;
946 return true;
947 }
948 isAngled = true;
949 } else if (BufStart[0] == '"') {
950 if (BufEnd[-1] != '"') {
951 Diag(Loc, diag::err_pp_expects_filename);
952 BufStart = 0;
953 return true;
954 }
955 isAngled = false;
956 } else {
957 Diag(Loc, diag::err_pp_expects_filename);
958 BufStart = 0;
959 return true;
960 }
Mike Stump1eb44332009-09-09 15:08:12 +0000961
Chris Lattner141e71f2008-03-09 01:54:53 +0000962 // Diagnose #include "" as invalid.
963 if (BufEnd-BufStart <= 2) {
964 Diag(Loc, diag::err_pp_empty_filename);
965 BufStart = 0;
966 return "";
967 }
Mike Stump1eb44332009-09-09 15:08:12 +0000968
Chris Lattner141e71f2008-03-09 01:54:53 +0000969 // Skip the brackets.
970 ++BufStart;
971 --BufEnd;
972 return isAngled;
973}
974
975/// ConcatenateIncludeName - Handle cases where the #include name is expanded
976/// from a macro as multiple tokens, which need to be glued together. This
977/// occurs for code like:
978/// #define FOO <a/b.h>
979/// #include FOO
980/// because in this case, "<a/b.h>" is returned as 7 tokens, not one.
981///
982/// This code concatenates and consumes tokens up to the '>' token. It returns
983/// false if the > was found, otherwise it returns true if it finds and consumes
984/// the EOM marker.
John Thompsona28cc092009-10-30 13:49:06 +0000985bool Preprocessor::ConcatenateIncludeName(
986 llvm::SmallVector<char, 128> &FilenameBuffer) {
Chris Lattner141e71f2008-03-09 01:54:53 +0000987 Token CurTok;
Mike Stump1eb44332009-09-09 15:08:12 +0000988
John Thompsona28cc092009-10-30 13:49:06 +0000989 Lex(CurTok);
Chris Lattner141e71f2008-03-09 01:54:53 +0000990 while (CurTok.isNot(tok::eom)) {
991 // Append the spelling of this token to the buffer. If there was a space
992 // before it, add it now.
993 if (CurTok.hasLeadingSpace())
994 FilenameBuffer.push_back(' ');
Mike Stump1eb44332009-09-09 15:08:12 +0000995
Chris Lattner141e71f2008-03-09 01:54:53 +0000996 // Get the spelling of the token, directly into FilenameBuffer if possible.
997 unsigned PreAppendSize = FilenameBuffer.size();
998 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Chris Lattner141e71f2008-03-09 01:54:53 +00001000 const char *BufPtr = &FilenameBuffer[PreAppendSize];
John Thompsona28cc092009-10-30 13:49:06 +00001001 unsigned ActualLen = getSpelling(CurTok, BufPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001002
Chris Lattner141e71f2008-03-09 01:54:53 +00001003 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1004 if (BufPtr != &FilenameBuffer[PreAppendSize])
1005 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
Mike Stump1eb44332009-09-09 15:08:12 +00001006
Chris Lattner141e71f2008-03-09 01:54:53 +00001007 // Resize FilenameBuffer to the correct size.
1008 if (CurTok.getLength() != ActualLen)
1009 FilenameBuffer.resize(PreAppendSize+ActualLen);
Mike Stump1eb44332009-09-09 15:08:12 +00001010
Chris Lattner141e71f2008-03-09 01:54:53 +00001011 // If we found the '>' marker, return success.
1012 if (CurTok.is(tok::greater))
1013 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001014
John Thompsona28cc092009-10-30 13:49:06 +00001015 Lex(CurTok);
Chris Lattner141e71f2008-03-09 01:54:53 +00001016 }
1017
1018 // If we hit the eom marker, emit an error and return true so that the caller
1019 // knows the EOM has been read.
John Thompsona28cc092009-10-30 13:49:06 +00001020 Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
Chris Lattner141e71f2008-03-09 01:54:53 +00001021 return true;
1022}
1023
1024/// HandleIncludeDirective - The "#include" tokens have just been read, read the
1025/// file to be included from the lexer, then include it! This is a common
1026/// routine with functionality shared between #include, #include_next and
Chris Lattner72181832008-09-26 20:12:23 +00001027/// #import. LookupFrom is set when this is a #include_next directive, it
Mike Stump1eb44332009-09-09 15:08:12 +00001028/// specifies the file to start searching from.
Chris Lattner141e71f2008-03-09 01:54:53 +00001029void Preprocessor::HandleIncludeDirective(Token &IncludeTok,
1030 const DirectoryLookup *LookupFrom,
1031 bool isImport) {
1032
1033 Token FilenameTok;
Ted Kremenek60e45d42008-11-18 00:34:22 +00001034 CurPPLexer->LexIncludeFilename(FilenameTok);
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Chris Lattner141e71f2008-03-09 01:54:53 +00001036 // Reserve a buffer to get the spelling.
1037 llvm::SmallVector<char, 128> FilenameBuffer;
1038 const char *FilenameStart, *FilenameEnd;
1039
1040 switch (FilenameTok.getKind()) {
1041 case tok::eom:
1042 // If the token kind is EOM, the error has already been diagnosed.
1043 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Chris Lattner141e71f2008-03-09 01:54:53 +00001045 case tok::angle_string_literal:
1046 case tok::string_literal: {
1047 FilenameBuffer.resize(FilenameTok.getLength());
1048 FilenameStart = &FilenameBuffer[0];
1049 unsigned Len = getSpelling(FilenameTok, FilenameStart);
1050 FilenameEnd = FilenameStart+Len;
1051 break;
1052 }
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Chris Lattner141e71f2008-03-09 01:54:53 +00001054 case tok::less:
1055 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1056 // case, glue the tokens together into FilenameBuffer and interpret those.
1057 FilenameBuffer.push_back('<');
John Thompsona28cc092009-10-30 13:49:06 +00001058 if (ConcatenateIncludeName(FilenameBuffer))
Chris Lattner141e71f2008-03-09 01:54:53 +00001059 return; // Found <eom> but no ">"? Diagnostic already emitted.
Jay Foadbeaaccd2009-05-21 09:52:38 +00001060 FilenameStart = FilenameBuffer.data();
1061 FilenameEnd = FilenameStart + FilenameBuffer.size();
Chris Lattner141e71f2008-03-09 01:54:53 +00001062 break;
1063 default:
1064 Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1065 DiscardUntilEndOfDirective();
1066 return;
1067 }
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Chris Lattner141e71f2008-03-09 01:54:53 +00001069 bool isAngled = GetIncludeFilenameSpelling(FilenameTok.getLocation(),
1070 FilenameStart, FilenameEnd);
1071 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1072 // error.
1073 if (FilenameStart == 0) {
1074 DiscardUntilEndOfDirective();
1075 return;
1076 }
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001078 // Verify that there is nothing after the filename, other than EOM. Note that
1079 // we allow macros that expand to nothing after the filename, because this
1080 // falls into the category of "#include pp-tokens new-line" specified in
1081 // C99 6.10.2p4.
Daniel Dunbare013d682009-10-18 20:26:12 +00001082 CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true);
Chris Lattner141e71f2008-03-09 01:54:53 +00001083
1084 // Check that we don't have infinite #include recursion.
Chris Lattner3692b092008-11-18 07:59:24 +00001085 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
1086 Diag(FilenameTok, diag::err_pp_include_too_deep);
1087 return;
1088 }
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Chris Lattner141e71f2008-03-09 01:54:53 +00001090 // Search include directories.
1091 const DirectoryLookup *CurDir;
1092 const FileEntry *File = LookupFile(FilenameStart, FilenameEnd,
Chris Lattner804f6522010-01-10 00:24:58 +00001093 FilenameTok.getLocation(),
Chris Lattner141e71f2008-03-09 01:54:53 +00001094 isAngled, LookupFrom, CurDir);
Chris Lattner3692b092008-11-18 07:59:24 +00001095 if (File == 0) {
1096 Diag(FilenameTok, diag::err_pp_file_not_found)
1097 << std::string(FilenameStart, FilenameEnd);
1098 return;
1099 }
Chris Lattner804f6522010-01-10 00:24:58 +00001100
Chris Lattner72181832008-09-26 20:12:23 +00001101 // Ask HeaderInfo if we should enter this #include file. If not, #including
1102 // this file will have no effect.
1103 if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport))
Chris Lattner141e71f2008-03-09 01:54:53 +00001104 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001105
Chris Lattner72181832008-09-26 20:12:23 +00001106 // The #included file will be considered to be a system header if either it is
1107 // in a system include directory, or if the #includer is a system include
1108 // header.
Mike Stump1eb44332009-09-09 15:08:12 +00001109 SrcMgr::CharacteristicKind FileCharacter =
Chris Lattner0b9e7362008-09-26 21:18:42 +00001110 std::max(HeaderInfo.getFileDirFlavor(File),
Chris Lattner693faa62009-01-19 07:59:15 +00001111 SourceMgr.getFileCharacteristic(FilenameTok.getLocation()));
Mike Stump1eb44332009-09-09 15:08:12 +00001112
Chris Lattner141e71f2008-03-09 01:54:53 +00001113 // Look up the file, create a File ID for it.
Chris Lattner2b2453a2009-01-17 06:22:33 +00001114 FileID FID = SourceMgr.createFileID(File, FilenameTok.getLocation(),
1115 FileCharacter);
1116 if (FID.isInvalid()) {
Chris Lattner56b05c82008-11-18 08:02:48 +00001117 Diag(FilenameTok, diag::err_pp_file_not_found)
1118 << std::string(FilenameStart, FilenameEnd);
1119 return;
1120 }
Chris Lattner141e71f2008-03-09 01:54:53 +00001121
1122 // Finally, if all is good, enter the new file!
Chris Lattner39d98412009-12-01 22:52:33 +00001123 std::string ErrorStr;
Daniel Dunbar63ceaa32009-12-06 09:19:12 +00001124 if (EnterSourceFile(FID, CurDir, ErrorStr))
Chris Lattner6e290142009-11-30 04:18:44 +00001125 Diag(FilenameTok, diag::err_pp_error_opening_file)
Chris Lattner39d98412009-12-01 22:52:33 +00001126 << std::string(SourceMgr.getFileEntryForID(FID)->getName()) << ErrorStr;
Chris Lattner141e71f2008-03-09 01:54:53 +00001127}
1128
1129/// HandleIncludeNextDirective - Implements #include_next.
1130///
1131void Preprocessor::HandleIncludeNextDirective(Token &IncludeNextTok) {
1132 Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
Mike Stump1eb44332009-09-09 15:08:12 +00001133
Chris Lattner141e71f2008-03-09 01:54:53 +00001134 // #include_next is like #include, except that we start searching after
1135 // the current found directory. If we can't do this, issue a
1136 // diagnostic.
1137 const DirectoryLookup *Lookup = CurDirLookup;
1138 if (isInPrimaryFile()) {
1139 Lookup = 0;
1140 Diag(IncludeNextTok, diag::pp_include_next_in_primary);
1141 } else if (Lookup == 0) {
1142 Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1143 } else {
1144 // Start looking up in the next directory.
1145 ++Lookup;
1146 }
Mike Stump1eb44332009-09-09 15:08:12 +00001147
Chris Lattner141e71f2008-03-09 01:54:53 +00001148 return HandleIncludeDirective(IncludeNextTok, Lookup);
1149}
1150
1151/// HandleImportDirective - Implements #import.
1152///
1153void Preprocessor::HandleImportDirective(Token &ImportTok) {
Chris Lattnerb627c8d2009-03-06 04:28:03 +00001154 if (!Features.ObjC1) // #import is standard for ObjC.
1155 Diag(ImportTok, diag::ext_pp_import_directive);
Mike Stump1eb44332009-09-09 15:08:12 +00001156
Chris Lattner141e71f2008-03-09 01:54:53 +00001157 return HandleIncludeDirective(ImportTok, 0, true);
1158}
1159
Chris Lattnerde076652009-04-08 18:46:40 +00001160/// HandleIncludeMacrosDirective - The -imacros command line option turns into a
1161/// pseudo directive in the predefines buffer. This handles it by sucking all
1162/// tokens through the preprocessor and discarding them (only keeping the side
1163/// effects on the preprocessor).
1164void Preprocessor::HandleIncludeMacrosDirective(Token &IncludeMacrosTok) {
1165 // This directive should only occur in the predefines buffer. If not, emit an
1166 // error and reject it.
1167 SourceLocation Loc = IncludeMacrosTok.getLocation();
1168 if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) {
1169 Diag(IncludeMacrosTok.getLocation(),
1170 diag::pp_include_macros_out_of_predefines);
1171 DiscardUntilEndOfDirective();
1172 return;
1173 }
Mike Stump1eb44332009-09-09 15:08:12 +00001174
Chris Lattnerfd105112009-04-08 20:53:24 +00001175 // Treat this as a normal #include for checking purposes. If this is
1176 // successful, it will push a new lexer onto the include stack.
1177 HandleIncludeDirective(IncludeMacrosTok, 0, false);
Mike Stump1eb44332009-09-09 15:08:12 +00001178
Chris Lattnerfd105112009-04-08 20:53:24 +00001179 Token TmpTok;
1180 do {
1181 Lex(TmpTok);
1182 assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!");
1183 } while (TmpTok.isNot(tok::hashhash));
Chris Lattnerde076652009-04-08 18:46:40 +00001184}
1185
Chris Lattner141e71f2008-03-09 01:54:53 +00001186//===----------------------------------------------------------------------===//
1187// Preprocessor Macro Directive Handling.
1188//===----------------------------------------------------------------------===//
1189
1190/// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1191/// definition has just been read. Lex the rest of the arguments and the
1192/// closing ), updating MI with what we learn. Return true if an error occurs
1193/// parsing the arg list.
1194bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI) {
1195 llvm::SmallVector<IdentifierInfo*, 32> Arguments;
Mike Stump1eb44332009-09-09 15:08:12 +00001196
Chris Lattner141e71f2008-03-09 01:54:53 +00001197 Token Tok;
1198 while (1) {
1199 LexUnexpandedToken(Tok);
1200 switch (Tok.getKind()) {
1201 case tok::r_paren:
1202 // Found the end of the argument list.
Chris Lattnercf29e072009-02-20 22:31:31 +00001203 if (Arguments.empty()) // #define FOO()
Chris Lattner141e71f2008-03-09 01:54:53 +00001204 return false;
Chris Lattner141e71f2008-03-09 01:54:53 +00001205 // Otherwise we have #define FOO(A,)
1206 Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1207 return true;
1208 case tok::ellipsis: // #define X(... -> C99 varargs
1209 // Warn if use of C99 feature in non-C99 mode.
1210 if (!Features.C99) Diag(Tok, diag::ext_variadic_macro);
1211
1212 // Lex the token after the identifier.
1213 LexUnexpandedToken(Tok);
1214 if (Tok.isNot(tok::r_paren)) {
1215 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1216 return true;
1217 }
1218 // Add the __VA_ARGS__ identifier as an argument.
1219 Arguments.push_back(Ident__VA_ARGS__);
1220 MI->setIsC99Varargs();
Chris Lattner685befe2009-02-20 22:46:43 +00001221 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattner141e71f2008-03-09 01:54:53 +00001222 return false;
1223 case tok::eom: // #define X(
1224 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1225 return true;
1226 default:
1227 // Handle keywords and identifiers here to accept things like
1228 // #define Foo(for) for.
1229 IdentifierInfo *II = Tok.getIdentifierInfo();
1230 if (II == 0) {
1231 // #define X(1
1232 Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
1233 return true;
1234 }
1235
1236 // If this is already used as an argument, it is used multiple times (e.g.
1237 // #define X(A,A.
Mike Stump1eb44332009-09-09 15:08:12 +00001238 if (std::find(Arguments.begin(), Arguments.end(), II) !=
Chris Lattner141e71f2008-03-09 01:54:53 +00001239 Arguments.end()) { // C99 6.10.3p6
Chris Lattner6cf3ed72008-11-19 07:33:58 +00001240 Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II;
Chris Lattner141e71f2008-03-09 01:54:53 +00001241 return true;
1242 }
Mike Stump1eb44332009-09-09 15:08:12 +00001243
Chris Lattner141e71f2008-03-09 01:54:53 +00001244 // Add the argument to the macro info.
1245 Arguments.push_back(II);
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Chris Lattner141e71f2008-03-09 01:54:53 +00001247 // Lex the token after the identifier.
1248 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001249
Chris Lattner141e71f2008-03-09 01:54:53 +00001250 switch (Tok.getKind()) {
1251 default: // #define X(A B
1252 Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
1253 return true;
1254 case tok::r_paren: // #define X(A)
Chris Lattner685befe2009-02-20 22:46:43 +00001255 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattner141e71f2008-03-09 01:54:53 +00001256 return false;
1257 case tok::comma: // #define X(A,
1258 break;
1259 case tok::ellipsis: // #define X(A... -> GCC extension
1260 // Diagnose extension.
1261 Diag(Tok, diag::ext_named_variadic_macro);
Mike Stump1eb44332009-09-09 15:08:12 +00001262
Chris Lattner141e71f2008-03-09 01:54:53 +00001263 // Lex the token after the identifier.
1264 LexUnexpandedToken(Tok);
1265 if (Tok.isNot(tok::r_paren)) {
1266 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1267 return true;
1268 }
Mike Stump1eb44332009-09-09 15:08:12 +00001269
Chris Lattner141e71f2008-03-09 01:54:53 +00001270 MI->setIsGNUVarargs();
Chris Lattner685befe2009-02-20 22:46:43 +00001271 MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
Chris Lattner141e71f2008-03-09 01:54:53 +00001272 return false;
1273 }
1274 }
1275 }
1276}
1277
1278/// HandleDefineDirective - Implements #define. This consumes the entire macro
1279/// line then lets the caller lex the next real token.
1280void Preprocessor::HandleDefineDirective(Token &DefineTok) {
1281 ++NumDefined;
1282
1283 Token MacroNameTok;
1284 ReadMacroName(MacroNameTok, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001285
Chris Lattner141e71f2008-03-09 01:54:53 +00001286 // Error reading macro name? If so, diagnostic already issued.
1287 if (MacroNameTok.is(tok::eom))
1288 return;
1289
Chris Lattner2451b522009-04-21 04:46:33 +00001290 Token LastTok = MacroNameTok;
1291
Chris Lattner141e71f2008-03-09 01:54:53 +00001292 // If we are supposed to keep comments in #defines, reenable comment saving
1293 // mode.
Ted Kremenekac6b06d2008-11-18 00:43:07 +00001294 if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments);
Mike Stump1eb44332009-09-09 15:08:12 +00001295
Chris Lattner141e71f2008-03-09 01:54:53 +00001296 // Create the new macro.
Ted Kremenek0ea76722008-12-15 19:56:42 +00001297 MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001298
Chris Lattner141e71f2008-03-09 01:54:53 +00001299 Token Tok;
1300 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001301
Chris Lattner141e71f2008-03-09 01:54:53 +00001302 // If this is a function-like macro definition, parse the argument list,
1303 // marking each of the identifiers as being used as macro arguments. Also,
1304 // check other constraints on the first token of the macro body.
1305 if (Tok.is(tok::eom)) {
1306 // If there is no body to this macro, we have no special handling here.
Chris Lattner6272bcf2009-04-18 02:23:25 +00001307 } else if (Tok.hasLeadingSpace()) {
1308 // This is a normal token with leading space. Clear the leading space
1309 // marker on the first token to get proper expansion.
1310 Tok.clearFlag(Token::LeadingSpace);
1311 } else if (Tok.is(tok::l_paren)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001312 // This is a function-like macro definition. Read the argument list.
1313 MI->setIsFunctionLike();
1314 if (ReadMacroDefinitionArgList(MI)) {
1315 // Forget about MI.
Ted Kremenek0ea76722008-12-15 19:56:42 +00001316 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001317 // Throw away the rest of the line.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001318 if (CurPPLexer->ParsingPreprocessorDirective)
Chris Lattner141e71f2008-03-09 01:54:53 +00001319 DiscardUntilEndOfDirective();
1320 return;
1321 }
1322
Chris Lattner8fde5972009-04-19 18:26:34 +00001323 // If this is a definition of a variadic C99 function-like macro, not using
1324 // the GNU named varargs extension, enabled __VA_ARGS__.
Mike Stump1eb44332009-09-09 15:08:12 +00001325
Chris Lattner8fde5972009-04-19 18:26:34 +00001326 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
1327 // This gets unpoisoned where it is allowed.
1328 assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
1329 if (MI->isC99Varargs())
1330 Ident__VA_ARGS__->setIsPoisoned(false);
Mike Stump1eb44332009-09-09 15:08:12 +00001331
Chris Lattner141e71f2008-03-09 01:54:53 +00001332 // Read the first token after the arg list for down below.
1333 LexUnexpandedToken(Tok);
Chris Lattner6272bcf2009-04-18 02:23:25 +00001334 } else if (Features.C99) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001335 // C99 requires whitespace between the macro definition and the body. Emit
1336 // a diagnostic for something like "#define X+".
Chris Lattner6272bcf2009-04-18 02:23:25 +00001337 Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
Chris Lattner141e71f2008-03-09 01:54:53 +00001338 } else {
Chris Lattner6272bcf2009-04-18 02:23:25 +00001339 // C90 6.8 TC1 says: "In the definition of an object-like macro, if the
1340 // first character of a replacement list is not a character required by
1341 // subclause 5.2.1, then there shall be white-space separation between the
1342 // identifier and the replacement list.". 5.2.1 lists this set:
1343 // "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which
1344 // is irrelevant here.
1345 bool isInvalid = false;
1346 if (Tok.is(tok::at)) // @ is not in the list above.
1347 isInvalid = true;
1348 else if (Tok.is(tok::unknown)) {
1349 // If we have an unknown token, it is something strange like "`". Since
1350 // all of valid characters would have lexed into a single character
1351 // token of some sort, we know this is not a valid case.
1352 isInvalid = true;
1353 }
1354 if (isInvalid)
1355 Diag(Tok, diag::ext_missing_whitespace_after_macro_name);
1356 else
1357 Diag(Tok, diag::warn_missing_whitespace_after_macro_name);
Chris Lattner141e71f2008-03-09 01:54:53 +00001358 }
Chris Lattner2451b522009-04-21 04:46:33 +00001359
1360 if (!Tok.is(tok::eom))
1361 LastTok = Tok;
1362
Chris Lattner141e71f2008-03-09 01:54:53 +00001363 // Read the rest of the macro body.
1364 if (MI->isObjectLike()) {
1365 // Object-like macros are very simple, just read their body.
1366 while (Tok.isNot(tok::eom)) {
Chris Lattner2451b522009-04-21 04:46:33 +00001367 LastTok = Tok;
Chris Lattner141e71f2008-03-09 01:54:53 +00001368 MI->AddTokenToBody(Tok);
1369 // Get the next token of the macro.
1370 LexUnexpandedToken(Tok);
1371 }
Mike Stump1eb44332009-09-09 15:08:12 +00001372
Chris Lattner141e71f2008-03-09 01:54:53 +00001373 } else {
Chris Lattner32404692009-05-25 17:16:10 +00001374 // Otherwise, read the body of a function-like macro. While we are at it,
1375 // check C99 6.10.3.2p1: ensure that # operators are followed by macro
1376 // parameters in function-like macro expansions.
Chris Lattner141e71f2008-03-09 01:54:53 +00001377 while (Tok.isNot(tok::eom)) {
Chris Lattner2451b522009-04-21 04:46:33 +00001378 LastTok = Tok;
Chris Lattner141e71f2008-03-09 01:54:53 +00001379
Chris Lattner141e71f2008-03-09 01:54:53 +00001380 if (Tok.isNot(tok::hash)) {
Chris Lattner32404692009-05-25 17:16:10 +00001381 MI->AddTokenToBody(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001382
Chris Lattner141e71f2008-03-09 01:54:53 +00001383 // Get the next token of the macro.
1384 LexUnexpandedToken(Tok);
1385 continue;
1386 }
Mike Stump1eb44332009-09-09 15:08:12 +00001387
Chris Lattner141e71f2008-03-09 01:54:53 +00001388 // Get the next token of the macro.
1389 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Chris Lattner32404692009-05-25 17:16:10 +00001391 // Check for a valid macro arg identifier.
1392 if (Tok.getIdentifierInfo() == 0 ||
1393 MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
1394
1395 // If this is assembler-with-cpp mode, we accept random gibberish after
1396 // the '#' because '#' is often a comment character. However, change
1397 // the kind of the token to tok::unknown so that the preprocessor isn't
1398 // confused.
1399 if (getLangOptions().AsmPreprocessor && Tok.isNot(tok::eom)) {
1400 LastTok.setKind(tok::unknown);
1401 } else {
1402 Diag(Tok, diag::err_pp_stringize_not_parameter);
1403 ReleaseMacroInfo(MI);
Mike Stump1eb44332009-09-09 15:08:12 +00001404
Chris Lattner32404692009-05-25 17:16:10 +00001405 // Disable __VA_ARGS__ again.
1406 Ident__VA_ARGS__->setIsPoisoned(true);
1407 return;
1408 }
Chris Lattner141e71f2008-03-09 01:54:53 +00001409 }
Mike Stump1eb44332009-09-09 15:08:12 +00001410
Chris Lattner32404692009-05-25 17:16:10 +00001411 // Things look ok, add the '#' and param name tokens to the macro.
1412 MI->AddTokenToBody(LastTok);
Chris Lattner141e71f2008-03-09 01:54:53 +00001413 MI->AddTokenToBody(Tok);
Chris Lattner32404692009-05-25 17:16:10 +00001414 LastTok = Tok;
Mike Stump1eb44332009-09-09 15:08:12 +00001415
Chris Lattner141e71f2008-03-09 01:54:53 +00001416 // Get the next token of the macro.
1417 LexUnexpandedToken(Tok);
1418 }
1419 }
Mike Stump1eb44332009-09-09 15:08:12 +00001420
1421
Chris Lattner141e71f2008-03-09 01:54:53 +00001422 // Disable __VA_ARGS__ again.
1423 Ident__VA_ARGS__->setIsPoisoned(true);
1424
1425 // Check that there is no paste (##) operator at the begining or end of the
1426 // replacement list.
1427 unsigned NumTokens = MI->getNumTokens();
1428 if (NumTokens != 0) {
1429 if (MI->getReplacementToken(0).is(tok::hashhash)) {
1430 Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
Ted Kremenek0ea76722008-12-15 19:56:42 +00001431 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001432 return;
1433 }
1434 if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
1435 Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
Ted Kremenek0ea76722008-12-15 19:56:42 +00001436 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001437 return;
1438 }
1439 }
Mike Stump1eb44332009-09-09 15:08:12 +00001440
Chris Lattner141e71f2008-03-09 01:54:53 +00001441 // If this is the primary source file, remember that this macro hasn't been
1442 // used yet.
1443 if (isInPrimaryFile())
1444 MI->setIsUsed(false);
Chris Lattner2451b522009-04-21 04:46:33 +00001445
1446 MI->setDefinitionEndLoc(LastTok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001447
Chris Lattner141e71f2008-03-09 01:54:53 +00001448 // Finally, if this identifier already had a macro defined for it, verify that
1449 // the macro bodies are identical and free the old definition.
1450 if (MacroInfo *OtherMI = getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Chris Lattner41c3ae12009-01-16 19:50:11 +00001451 // It is very common for system headers to have tons of macro redefinitions
1452 // and for warnings to be disabled in system headers. If this is the case,
1453 // then don't bother calling MacroInfo::isIdenticalTo.
Chris Lattner7f549df2009-03-13 21:17:23 +00001454 if (!getDiagnostics().getSuppressSystemWarnings() ||
Chris Lattner41c3ae12009-01-16 19:50:11 +00001455 !SourceMgr.isInSystemHeader(DefineTok.getLocation())) {
1456 if (!OtherMI->isUsed())
1457 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattner141e71f2008-03-09 01:54:53 +00001458
Chris Lattner41c3ae12009-01-16 19:50:11 +00001459 // Macros must be identical. This means all tokes and whitespace
1460 // separation must be the same. C99 6.10.3.2.
1461 if (!MI->isIdenticalTo(*OtherMI, *this)) {
1462 Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef)
1463 << MacroNameTok.getIdentifierInfo();
1464 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
1465 }
Chris Lattner141e71f2008-03-09 01:54:53 +00001466 }
Mike Stump1eb44332009-09-09 15:08:12 +00001467
Ted Kremenek0ea76722008-12-15 19:56:42 +00001468 ReleaseMacroInfo(OtherMI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001469 }
Mike Stump1eb44332009-09-09 15:08:12 +00001470
Chris Lattner141e71f2008-03-09 01:54:53 +00001471 setMacroInfo(MacroNameTok.getIdentifierInfo(), MI);
Mike Stump1eb44332009-09-09 15:08:12 +00001472
Chris Lattnerf4a72b02009-04-12 01:39:54 +00001473 // If the callbacks want to know, tell them about the macro definition.
1474 if (Callbacks)
1475 Callbacks->MacroDefined(MacroNameTok.getIdentifierInfo(), MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001476}
1477
1478/// HandleUndefDirective - Implements #undef.
1479///
1480void Preprocessor::HandleUndefDirective(Token &UndefTok) {
1481 ++NumUndefined;
1482
1483 Token MacroNameTok;
1484 ReadMacroName(MacroNameTok, 2);
Mike Stump1eb44332009-09-09 15:08:12 +00001485
Chris Lattner141e71f2008-03-09 01:54:53 +00001486 // Error reading macro name? If so, diagnostic already issued.
1487 if (MacroNameTok.is(tok::eom))
1488 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Chris Lattner141e71f2008-03-09 01:54:53 +00001490 // Check to see if this is the last token on the #undef line.
Chris Lattner35410d52009-04-14 05:07:49 +00001491 CheckEndOfDirective("undef");
Mike Stump1eb44332009-09-09 15:08:12 +00001492
Chris Lattner141e71f2008-03-09 01:54:53 +00001493 // Okay, we finally have a valid identifier to undef.
1494 MacroInfo *MI = getMacroInfo(MacroNameTok.getIdentifierInfo());
Mike Stump1eb44332009-09-09 15:08:12 +00001495
Chris Lattner141e71f2008-03-09 01:54:53 +00001496 // If the macro is not defined, this is a noop undef, just return.
1497 if (MI == 0) return;
1498
1499 if (!MI->isUsed())
1500 Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
Chris Lattner41c17472009-04-21 03:42:09 +00001501
1502 // If the callbacks want to know, tell them about the macro #undef.
1503 if (Callbacks)
1504 Callbacks->MacroUndefined(MacroNameTok.getIdentifierInfo(), MI);
1505
Chris Lattner141e71f2008-03-09 01:54:53 +00001506 // Free macro definition.
Ted Kremenek0ea76722008-12-15 19:56:42 +00001507 ReleaseMacroInfo(MI);
Chris Lattner141e71f2008-03-09 01:54:53 +00001508 setMacroInfo(MacroNameTok.getIdentifierInfo(), 0);
1509}
1510
1511
1512//===----------------------------------------------------------------------===//
1513// Preprocessor Conditional Directive Handling.
1514//===----------------------------------------------------------------------===//
1515
1516/// HandleIfdefDirective - Implements the #ifdef/#ifndef directive. isIfndef is
1517/// true when this is a #ifndef directive. ReadAnyTokensBeforeDirective is true
1518/// if any tokens have been returned or pp-directives activated before this
1519/// #ifndef has been lexed.
1520///
1521void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
1522 bool ReadAnyTokensBeforeDirective) {
1523 ++NumIf;
1524 Token DirectiveTok = Result;
1525
1526 Token MacroNameTok;
1527 ReadMacroName(MacroNameTok);
Mike Stump1eb44332009-09-09 15:08:12 +00001528
Chris Lattner141e71f2008-03-09 01:54:53 +00001529 // Error reading macro name? If so, diagnostic already issued.
1530 if (MacroNameTok.is(tok::eom)) {
1531 // Skip code until we get to #endif. This helps with recovery by not
1532 // emitting an error when the #endif is reached.
1533 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
1534 /*Foundnonskip*/false, /*FoundElse*/false);
1535 return;
1536 }
Mike Stump1eb44332009-09-09 15:08:12 +00001537
Chris Lattner141e71f2008-03-09 01:54:53 +00001538 // Check to see if this is the last token on the #if[n]def line.
Chris Lattner35410d52009-04-14 05:07:49 +00001539 CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef");
Chris Lattner141e71f2008-03-09 01:54:53 +00001540
Ted Kremenek60e45d42008-11-18 00:34:22 +00001541 if (CurPPLexer->getConditionalStackDepth() == 0) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001542 // If the start of a top-level #ifdef, inform MIOpt.
1543 if (!ReadAnyTokensBeforeDirective) {
1544 assert(isIfndef && "#ifdef shouldn't reach here");
Ted Kremenek60e45d42008-11-18 00:34:22 +00001545 CurPPLexer->MIOpt.EnterTopLevelIFNDEF(MacroNameTok.getIdentifierInfo());
Chris Lattner141e71f2008-03-09 01:54:53 +00001546 } else
Ted Kremenek60e45d42008-11-18 00:34:22 +00001547 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattner141e71f2008-03-09 01:54:53 +00001548 }
1549
1550 IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
1551 MacroInfo *MI = getMacroInfo(MII);
1552
1553 // If there is a macro, process it.
1554 if (MI) // Mark it used.
1555 MI->setIsUsed(true);
Mike Stump1eb44332009-09-09 15:08:12 +00001556
Chris Lattner141e71f2008-03-09 01:54:53 +00001557 // Should we include the stuff contained by this directive?
1558 if (!MI == isIfndef) {
1559 // Yes, remember that we are inside a conditional, then lex the next token.
Chris Lattner1d9c54d2009-12-14 04:54:40 +00001560 CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(),
1561 /*wasskip*/false, /*foundnonskip*/true,
1562 /*foundelse*/false);
Chris Lattner141e71f2008-03-09 01:54:53 +00001563 } else {
1564 // No, skip the contents of this block and return the first token after it.
1565 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001566 /*Foundnonskip*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +00001567 /*FoundElse*/false);
1568 }
1569}
1570
1571/// HandleIfDirective - Implements the #if directive.
1572///
1573void Preprocessor::HandleIfDirective(Token &IfToken,
1574 bool ReadAnyTokensBeforeDirective) {
1575 ++NumIf;
Mike Stump1eb44332009-09-09 15:08:12 +00001576
Chris Lattner141e71f2008-03-09 01:54:53 +00001577 // Parse and evaluation the conditional expression.
1578 IdentifierInfo *IfNDefMacro = 0;
1579 bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
Mike Stump1eb44332009-09-09 15:08:12 +00001580
Nuno Lopes0049db62008-06-01 18:31:24 +00001581
1582 // If this condition is equivalent to #ifndef X, and if this is the first
1583 // directive seen, handle it for the multiple-include optimization.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001584 if (CurPPLexer->getConditionalStackDepth() == 0) {
Nuno Lopes0049db62008-06-01 18:31:24 +00001585 if (!ReadAnyTokensBeforeDirective && IfNDefMacro)
Ted Kremenek60e45d42008-11-18 00:34:22 +00001586 CurPPLexer->MIOpt.EnterTopLevelIFNDEF(IfNDefMacro);
Nuno Lopes0049db62008-06-01 18:31:24 +00001587 else
Ted Kremenek60e45d42008-11-18 00:34:22 +00001588 CurPPLexer->MIOpt.EnterTopLevelConditional();
Nuno Lopes0049db62008-06-01 18:31:24 +00001589 }
1590
Chris Lattner141e71f2008-03-09 01:54:53 +00001591 // Should we include the stuff contained by this directive?
1592 if (ConditionalTrue) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001593 // Yes, remember that we are inside a conditional, then lex the next token.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001594 CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +00001595 /*foundnonskip*/true, /*foundelse*/false);
1596 } else {
1597 // No, skip the contents of this block and return the first token after it.
Mike Stump1eb44332009-09-09 15:08:12 +00001598 SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
Chris Lattner141e71f2008-03-09 01:54:53 +00001599 /*FoundElse*/false);
1600 }
1601}
1602
1603/// HandleEndifDirective - Implements the #endif directive.
1604///
1605void Preprocessor::HandleEndifDirective(Token &EndifToken) {
1606 ++NumEndif;
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Chris Lattner141e71f2008-03-09 01:54:53 +00001608 // Check that this is the whole directive.
Chris Lattner35410d52009-04-14 05:07:49 +00001609 CheckEndOfDirective("endif");
Mike Stump1eb44332009-09-09 15:08:12 +00001610
Chris Lattner141e71f2008-03-09 01:54:53 +00001611 PPConditionalInfo CondInfo;
Ted Kremenek60e45d42008-11-18 00:34:22 +00001612 if (CurPPLexer->popConditionalLevel(CondInfo)) {
Chris Lattner141e71f2008-03-09 01:54:53 +00001613 // No conditionals on the stack: this is an #endif without an #if.
Chris Lattner3692b092008-11-18 07:59:24 +00001614 Diag(EndifToken, diag::err_pp_endif_without_if);
1615 return;
Chris Lattner141e71f2008-03-09 01:54:53 +00001616 }
Mike Stump1eb44332009-09-09 15:08:12 +00001617
Chris Lattner141e71f2008-03-09 01:54:53 +00001618 // If this the end of a top-level #endif, inform MIOpt.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001619 if (CurPPLexer->getConditionalStackDepth() == 0)
1620 CurPPLexer->MIOpt.ExitTopLevelConditional();
Mike Stump1eb44332009-09-09 15:08:12 +00001621
Ted Kremenek60e45d42008-11-18 00:34:22 +00001622 assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode &&
Chris Lattner141e71f2008-03-09 01:54:53 +00001623 "This code should only be reachable in the non-skipping case!");
1624}
1625
1626
1627void Preprocessor::HandleElseDirective(Token &Result) {
1628 ++NumElse;
Mike Stump1eb44332009-09-09 15:08:12 +00001629
Chris Lattner141e71f2008-03-09 01:54:53 +00001630 // #else directive in a non-skipping conditional... start skipping.
Chris Lattner35410d52009-04-14 05:07:49 +00001631 CheckEndOfDirective("else");
Mike Stump1eb44332009-09-09 15:08:12 +00001632
Chris Lattner141e71f2008-03-09 01:54:53 +00001633 PPConditionalInfo CI;
Chris Lattner3692b092008-11-18 07:59:24 +00001634 if (CurPPLexer->popConditionalLevel(CI)) {
1635 Diag(Result, diag::pp_err_else_without_if);
1636 return;
1637 }
Mike Stump1eb44332009-09-09 15:08:12 +00001638
Chris Lattner141e71f2008-03-09 01:54:53 +00001639 // If this is a top-level #else, inform the MIOpt.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001640 if (CurPPLexer->getConditionalStackDepth() == 0)
1641 CurPPLexer->MIOpt.EnterTopLevelConditional();
Chris Lattner141e71f2008-03-09 01:54:53 +00001642
1643 // If this is a #else with a #else before it, report the error.
1644 if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Chris Lattner141e71f2008-03-09 01:54:53 +00001646 // Finally, skip the rest of the contents of this block and return the first
1647 // token after it.
1648 return SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
1649 /*FoundElse*/true);
1650}
1651
1652void Preprocessor::HandleElifDirective(Token &ElifToken) {
1653 ++NumElse;
Mike Stump1eb44332009-09-09 15:08:12 +00001654
Chris Lattner141e71f2008-03-09 01:54:53 +00001655 // #elif directive in a non-skipping conditional... start skipping.
1656 // We don't care what the condition is, because we will always skip it (since
1657 // the block immediately before it was included).
1658 DiscardUntilEndOfDirective();
1659
1660 PPConditionalInfo CI;
Chris Lattner3692b092008-11-18 07:59:24 +00001661 if (CurPPLexer->popConditionalLevel(CI)) {
1662 Diag(ElifToken, diag::pp_err_elif_without_if);
1663 return;
1664 }
Mike Stump1eb44332009-09-09 15:08:12 +00001665
Chris Lattner141e71f2008-03-09 01:54:53 +00001666 // If this is a top-level #elif, inform the MIOpt.
Ted Kremenek60e45d42008-11-18 00:34:22 +00001667 if (CurPPLexer->getConditionalStackDepth() == 0)
1668 CurPPLexer->MIOpt.EnterTopLevelConditional();
Mike Stump1eb44332009-09-09 15:08:12 +00001669
Chris Lattner141e71f2008-03-09 01:54:53 +00001670 // If this is a #elif with a #else before it, report the error.
1671 if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
1672
1673 // Finally, skip the rest of the contents of this block and return the first
1674 // token after it.
1675 return SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
1676 /*FoundElse*/CI.FoundElse);
1677}
1678