blob: 1f07a70d3a5592e15f62ab51503e4a4ae5293a4c [file] [log] [blame]
Joao Matos3e1ec722012-08-31 21:34:27 +00001//===--- MacroExpansion.cpp - Top level Macro Expansion -------------------===//
2//
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 the top level handling of macro expasion for the
11// preprocessor.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Preprocessor.h"
16#include "MacroArgs.h"
17#include "clang/Lex/MacroInfo.h"
18#include "clang/Basic/SourceManager.h"
19#include "clang/Basic/FileManager.h"
20#include "clang/Basic/TargetInfo.h"
21#include "clang/Lex/LexDiagnostic.h"
22#include "clang/Lex/CodeCompletionHandler.h"
23#include "clang/Lex/ExternalPreprocessorSource.h"
24#include "clang/Lex/LiteralSupport.h"
25#include "llvm/ADT/StringSwitch.h"
26#include "llvm/ADT/STLExtras.h"
27#include "llvm/Config/llvm-config.h"
28#include "llvm/Support/raw_ostream.h"
29#include "llvm/Support/ErrorHandling.h"
Dmitri Gribenko33d054b2012-09-24 20:56:28 +000030#include "llvm/Support/Format.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000031#include <cstdio>
32#include <ctime>
33using namespace clang;
34
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +000035MacroInfo *Preprocessor::getMacroInfoHistory(IdentifierInfo *II) const {
36 assert(II->hadMacroDefinition() && "Identifier has not been not a macro!");
Joao Matos3e1ec722012-08-31 21:34:27 +000037
38 macro_iterator Pos = Macros.find(II);
Joao Matos3e1ec722012-08-31 21:34:27 +000039 assert(Pos != Macros.end() && "Identifier macro info is missing!");
Joao Matos3e1ec722012-08-31 21:34:27 +000040 return Pos->second;
41}
42
43/// setMacroInfo - Specify a macro for this identifier.
44///
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000045void Preprocessor::setMacroInfo(IdentifierInfo *II, MacroInfo *MI) {
Joao Matos3e1ec722012-08-31 21:34:27 +000046 assert(MI && "MacroInfo should be non-zero!");
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000047 assert(MI->getUndefLoc().isInvalid() &&
48 "Undefined macros cannot be registered");
49
50 MacroInfo *&StoredMI = Macros[II];
51 MI->setPreviousDefinition(StoredMI);
52 StoredMI = MI;
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +000053 II->setHasMacroDefinition(MI->getUndefLoc().isInvalid());
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000054 if (II->isFromAST())
Joao Matos3e1ec722012-08-31 21:34:27 +000055 II->setChangedSinceDeserialization();
56}
57
Douglas Gregor3ab50fe2012-10-11 17:41:54 +000058void Preprocessor::addLoadedMacroInfo(IdentifierInfo *II, MacroInfo *MI,
59 MacroInfo *Hint) {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000060 assert(MI && "Missing macro?");
61 assert(MI->isFromAST() && "Macro is not from an AST?");
62 assert(!MI->getPreviousDefinition() && "Macro already in chain?");
63
64 MacroInfo *&StoredMI = Macros[II];
65
66 // Easy case: this is the first macro definition for this macro.
67 if (!StoredMI) {
68 StoredMI = MI;
69
70 if (MI->isDefined())
71 II->setHasMacroDefinition(true);
72 return;
73 }
74
75 // If this macro is a definition and this identifier has been neither
76 // defined nor undef'd in the current translation unit, add this macro
77 // to the end of the chain of definitions.
78 if (MI->isDefined() && StoredMI->isFromAST()) {
79 // Simple case: if this is the first actual definition, just put it at
80 // th beginning.
81 if (!StoredMI->isDefined()) {
82 MI->setPreviousDefinition(StoredMI);
83 StoredMI = MI;
84
85 II->setHasMacroDefinition(true);
86 return;
87 }
88
89 // Find the end of the definition chain.
Douglas Gregor54c8a402012-10-12 00:16:50 +000090 MacroInfo *Prev;
91 MacroInfo *PrevPrev = StoredMI;
Douglas Gregore8219a62012-10-11 21:07:39 +000092 bool Ambiguous = StoredMI->isAmbiguous();
93 bool MatchedOther = false;
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000094 do {
Douglas Gregor54c8a402012-10-12 00:16:50 +000095 Prev = PrevPrev;
96
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000097 // If the macros are not identical, we have an ambiguity.
Douglas Gregore8219a62012-10-11 21:07:39 +000098 if (!Prev->isIdenticalTo(*MI, *this)) {
99 if (!Ambiguous) {
100 Ambiguous = true;
101 StoredMI->setAmbiguous(true);
102 }
103 } else {
104 MatchedOther = true;
105 }
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000106 } while ((PrevPrev = Prev->getPreviousDefinition()) &&
107 PrevPrev->isDefined());
108
Douglas Gregore8219a62012-10-11 21:07:39 +0000109 // If there are ambiguous definitions, and we didn't match any other
110 // definition, then mark us as ambiguous.
111 if (Ambiguous && !MatchedOther)
112 MI->setAmbiguous(true);
Douglas Gregor7097be92012-10-11 00:48:48 +0000113
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000114 // Wire this macro information into the chain.
115 MI->setPreviousDefinition(Prev->getPreviousDefinition());
116 Prev->setPreviousDefinition(MI);
117 return;
118 }
119
120 // The macro is not a definition; put it at the end of the list.
Douglas Gregor3ab50fe2012-10-11 17:41:54 +0000121 MacroInfo *Prev = Hint? Hint : StoredMI;
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000122 while (Prev->getPreviousDefinition())
123 Prev = Prev->getPreviousDefinition();
124 Prev->setPreviousDefinition(MI);
125}
126
127void Preprocessor::makeLoadedMacroInfoVisible(IdentifierInfo *II,
128 MacroInfo *MI) {
129 assert(MI->isFromAST() && "Macro must be from the AST");
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000130
131 MacroInfo *&StoredMI = Macros[II];
132 if (StoredMI == MI) {
133 // Easy case: this is the first macro anyway.
Douglas Gregor54c8a402012-10-12 00:16:50 +0000134 II->setHasMacroDefinition(MI->isDefined());
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000135 return;
136 }
137
138 // Go find the macro and pull it out of the list.
Douglas Gregor54c8a402012-10-12 00:16:50 +0000139 // FIXME: Yes, this is O(N), and making a pile of macros visible or hidden
140 // would be quadratic, but it's extremely rare.
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000141 MacroInfo *Prev = StoredMI;
142 while (Prev->getPreviousDefinition() != MI)
143 Prev = Prev->getPreviousDefinition();
144 Prev->setPreviousDefinition(MI->getPreviousDefinition());
Douglas Gregor54c8a402012-10-12 00:16:50 +0000145 MI->setPreviousDefinition(0);
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000146
147 // Add the macro back to the list.
148 addLoadedMacroInfo(II, MI);
Douglas Gregor54c8a402012-10-12 00:16:50 +0000149
150 II->setHasMacroDefinition(StoredMI->isDefined());
151 if (II->isFromAST())
152 II->setChangedSinceDeserialization();
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000153}
154
Joao Matos3e1ec722012-08-31 21:34:27 +0000155/// \brief Undefine a macro for this identifier.
156void Preprocessor::clearMacroInfo(IdentifierInfo *II) {
157 assert(II->hasMacroDefinition() && "Macro is not defined!");
158 assert(Macros[II]->getUndefLoc().isValid() && "Macro is still defined!");
159 II->setHasMacroDefinition(false);
160 if (II->isFromAST())
161 II->setChangedSinceDeserialization();
162}
163
164/// RegisterBuiltinMacro - Register the specified identifier in the identifier
165/// table and mark it as a builtin macro to be expanded.
166static IdentifierInfo *RegisterBuiltinMacro(Preprocessor &PP, const char *Name){
167 // Get the identifier.
168 IdentifierInfo *Id = PP.getIdentifierInfo(Name);
169
170 // Mark it as being a macro that is builtin.
171 MacroInfo *MI = PP.AllocateMacroInfo(SourceLocation());
172 MI->setIsBuiltinMacro();
173 PP.setMacroInfo(Id, MI);
174 return Id;
175}
176
177
178/// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the
179/// identifier table.
180void Preprocessor::RegisterBuiltinMacros() {
181 Ident__LINE__ = RegisterBuiltinMacro(*this, "__LINE__");
182 Ident__FILE__ = RegisterBuiltinMacro(*this, "__FILE__");
183 Ident__DATE__ = RegisterBuiltinMacro(*this, "__DATE__");
184 Ident__TIME__ = RegisterBuiltinMacro(*this, "__TIME__");
185 Ident__COUNTER__ = RegisterBuiltinMacro(*this, "__COUNTER__");
186 Ident_Pragma = RegisterBuiltinMacro(*this, "_Pragma");
187
188 // GCC Extensions.
189 Ident__BASE_FILE__ = RegisterBuiltinMacro(*this, "__BASE_FILE__");
190 Ident__INCLUDE_LEVEL__ = RegisterBuiltinMacro(*this, "__INCLUDE_LEVEL__");
191 Ident__TIMESTAMP__ = RegisterBuiltinMacro(*this, "__TIMESTAMP__");
192
193 // Clang Extensions.
194 Ident__has_feature = RegisterBuiltinMacro(*this, "__has_feature");
195 Ident__has_extension = RegisterBuiltinMacro(*this, "__has_extension");
196 Ident__has_builtin = RegisterBuiltinMacro(*this, "__has_builtin");
197 Ident__has_attribute = RegisterBuiltinMacro(*this, "__has_attribute");
198 Ident__has_include = RegisterBuiltinMacro(*this, "__has_include");
199 Ident__has_include_next = RegisterBuiltinMacro(*this, "__has_include_next");
200 Ident__has_warning = RegisterBuiltinMacro(*this, "__has_warning");
201
Douglas Gregorb09de512012-09-25 15:44:52 +0000202 // Modules.
203 if (LangOpts.Modules) {
204 Ident__building_module = RegisterBuiltinMacro(*this, "__building_module");
205
206 // __MODULE__
207 if (!LangOpts.CurrentModule.empty())
208 Ident__MODULE__ = RegisterBuiltinMacro(*this, "__MODULE__");
209 else
210 Ident__MODULE__ = 0;
211 } else {
212 Ident__building_module = 0;
213 Ident__MODULE__ = 0;
214 }
215
Joao Matos3e1ec722012-08-31 21:34:27 +0000216 // Microsoft Extensions.
217 if (LangOpts.MicrosoftExt)
218 Ident__pragma = RegisterBuiltinMacro(*this, "__pragma");
219 else
220 Ident__pragma = 0;
221}
222
223/// isTrivialSingleTokenExpansion - Return true if MI, which has a single token
224/// in its expansion, currently expands to that token literally.
225static bool isTrivialSingleTokenExpansion(const MacroInfo *MI,
226 const IdentifierInfo *MacroIdent,
227 Preprocessor &PP) {
228 IdentifierInfo *II = MI->getReplacementToken(0).getIdentifierInfo();
229
230 // If the token isn't an identifier, it's always literally expanded.
231 if (II == 0) return true;
232
233 // If the information about this identifier is out of date, update it from
234 // the external source.
235 if (II->isOutOfDate())
236 PP.getExternalSource()->updateOutOfDateIdentifier(*II);
237
238 // If the identifier is a macro, and if that macro is enabled, it may be
239 // expanded so it's not a trivial expansion.
240 if (II->hasMacroDefinition() && PP.getMacroInfo(II)->isEnabled() &&
241 // Fast expanding "#define X X" is ok, because X would be disabled.
242 II != MacroIdent)
243 return false;
244
245 // If this is an object-like macro invocation, it is safe to trivially expand
246 // it.
247 if (MI->isObjectLike()) return true;
248
249 // If this is a function-like macro invocation, it's safe to trivially expand
250 // as long as the identifier is not a macro argument.
251 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
252 I != E; ++I)
253 if (*I == II)
254 return false; // Identifier is a macro argument.
255
256 return true;
257}
258
259
260/// isNextPPTokenLParen - Determine whether the next preprocessor token to be
261/// lexed is a '('. If so, consume the token and return true, if not, this
262/// method should have no observable side-effect on the lexed tokens.
263bool Preprocessor::isNextPPTokenLParen() {
264 // Do some quick tests for rejection cases.
265 unsigned Val;
266 if (CurLexer)
267 Val = CurLexer->isNextPPTokenLParen();
268 else if (CurPTHLexer)
269 Val = CurPTHLexer->isNextPPTokenLParen();
270 else
271 Val = CurTokenLexer->isNextTokenLParen();
272
273 if (Val == 2) {
274 // We have run off the end. If it's a source file we don't
275 // examine enclosing ones (C99 5.1.1.2p4). Otherwise walk up the
276 // macro stack.
277 if (CurPPLexer)
278 return false;
279 for (unsigned i = IncludeMacroStack.size(); i != 0; --i) {
280 IncludeStackInfo &Entry = IncludeMacroStack[i-1];
281 if (Entry.TheLexer)
282 Val = Entry.TheLexer->isNextPPTokenLParen();
283 else if (Entry.ThePTHLexer)
284 Val = Entry.ThePTHLexer->isNextPPTokenLParen();
285 else
286 Val = Entry.TheTokenLexer->isNextTokenLParen();
287
288 if (Val != 2)
289 break;
290
291 // Ran off the end of a source file?
292 if (Entry.ThePPLexer)
293 return false;
294 }
295 }
296
297 // Okay, if we know that the token is a '(', lex it and return. Otherwise we
298 // have found something that isn't a '(' or we found the end of the
299 // translation unit. In either case, return false.
300 return Val == 1;
301}
302
303/// HandleMacroExpandedIdentifier - If an identifier token is read that is to be
304/// expanded as a macro, handle it and return the next token as 'Identifier'.
305bool Preprocessor::HandleMacroExpandedIdentifier(Token &Identifier,
306 MacroInfo *MI) {
307 // If this is a macro expansion in the "#if !defined(x)" line for the file,
308 // then the macro could expand to different things in other contexts, we need
309 // to disable the optimization in this case.
310 if (CurPPLexer) CurPPLexer->MIOpt.ExpandedMacro();
311
312 // If this is a builtin macro, like __LINE__ or _Pragma, handle it specially.
313 if (MI->isBuiltinMacro()) {
314 if (Callbacks) Callbacks->MacroExpands(Identifier, MI,
315 Identifier.getLocation());
316 ExpandBuiltinMacro(Identifier);
317 return false;
318 }
319
320 /// Args - If this is a function-like macro expansion, this contains,
321 /// for each macro argument, the list of tokens that were provided to the
322 /// invocation.
323 MacroArgs *Args = 0;
324
325 // Remember where the end of the expansion occurred. For an object-like
326 // macro, this is the identifier. For a function-like macro, this is the ')'.
327 SourceLocation ExpansionEnd = Identifier.getLocation();
328
329 // If this is a function-like macro, read the arguments.
330 if (MI->isFunctionLike()) {
331 // C99 6.10.3p10: If the preprocessing token immediately after the macro
332 // name isn't a '(', this macro should not be expanded.
333 if (!isNextPPTokenLParen())
334 return true;
335
336 // Remember that we are now parsing the arguments to a macro invocation.
337 // Preprocessor directives used inside macro arguments are not portable, and
338 // this enables the warning.
339 InMacroArgs = true;
340 Args = ReadFunctionLikeMacroArgs(Identifier, MI, ExpansionEnd);
341
342 // Finished parsing args.
343 InMacroArgs = false;
344
345 // If there was an error parsing the arguments, bail out.
346 if (Args == 0) return false;
347
348 ++NumFnMacroExpanded;
349 } else {
350 ++NumMacroExpanded;
351 }
352
353 // Notice that this macro has been used.
354 markMacroAsUsed(MI);
355
356 // Remember where the token is expanded.
357 SourceLocation ExpandLoc = Identifier.getLocation();
358 SourceRange ExpansionRange(ExpandLoc, ExpansionEnd);
359
360 if (Callbacks) {
361 if (InMacroArgs) {
362 // We can have macro expansion inside a conditional directive while
363 // reading the function macro arguments. To ensure, in that case, that
364 // MacroExpands callbacks still happen in source order, queue this
365 // callback to have it happen after the function macro callback.
366 DelayedMacroExpandsCallbacks.push_back(
367 MacroExpandsInfo(Identifier, MI, ExpansionRange));
368 } else {
369 Callbacks->MacroExpands(Identifier, MI, ExpansionRange);
370 if (!DelayedMacroExpandsCallbacks.empty()) {
371 for (unsigned i=0, e = DelayedMacroExpandsCallbacks.size(); i!=e; ++i) {
372 MacroExpandsInfo &Info = DelayedMacroExpandsCallbacks[i];
373 Callbacks->MacroExpands(Info.Tok, Info.MI, Info.Range);
374 }
375 DelayedMacroExpandsCallbacks.clear();
376 }
377 }
378 }
Douglas Gregore8219a62012-10-11 21:07:39 +0000379
380 // If the macro definition is ambiguous, complain.
381 if (MI->isAmbiguous()) {
382 Diag(Identifier, diag::warn_pp_ambiguous_macro)
383 << Identifier.getIdentifierInfo();
384 Diag(MI->getDefinitionLoc(), diag::note_pp_ambiguous_macro_chosen)
385 << Identifier.getIdentifierInfo();
386 for (MacroInfo *PrevMI = MI->getPreviousDefinition();
387 PrevMI && PrevMI->isDefined();
388 PrevMI = PrevMI->getPreviousDefinition()) {
389 if (PrevMI->isAmbiguous()) {
390 Diag(PrevMI->getDefinitionLoc(), diag::note_pp_ambiguous_macro_other)
391 << Identifier.getIdentifierInfo();
392 }
393 }
394 }
395
Joao Matos3e1ec722012-08-31 21:34:27 +0000396 // If we started lexing a macro, enter the macro expansion body.
397
398 // If this macro expands to no tokens, don't bother to push it onto the
399 // expansion stack, only to take it right back off.
400 if (MI->getNumTokens() == 0) {
401 // No need for arg info.
402 if (Args) Args->destroy(*this);
403
404 // Ignore this macro use, just return the next token in the current
405 // buffer.
406 bool HadLeadingSpace = Identifier.hasLeadingSpace();
407 bool IsAtStartOfLine = Identifier.isAtStartOfLine();
408
409 Lex(Identifier);
410
411 // If the identifier isn't on some OTHER line, inherit the leading
412 // whitespace/first-on-a-line property of this token. This handles
413 // stuff like "! XX," -> "! ," and " XX," -> " ,", when XX is
414 // empty.
415 if (!Identifier.isAtStartOfLine()) {
416 if (IsAtStartOfLine) Identifier.setFlag(Token::StartOfLine);
417 if (HadLeadingSpace) Identifier.setFlag(Token::LeadingSpace);
418 }
419 Identifier.setFlag(Token::LeadingEmptyMacro);
420 ++NumFastMacroExpanded;
421 return false;
422
423 } else if (MI->getNumTokens() == 1 &&
424 isTrivialSingleTokenExpansion(MI, Identifier.getIdentifierInfo(),
425 *this)) {
426 // Otherwise, if this macro expands into a single trivially-expanded
427 // token: expand it now. This handles common cases like
428 // "#define VAL 42".
429
430 // No need for arg info.
431 if (Args) Args->destroy(*this);
432
433 // Propagate the isAtStartOfLine/hasLeadingSpace markers of the macro
434 // identifier to the expanded token.
435 bool isAtStartOfLine = Identifier.isAtStartOfLine();
436 bool hasLeadingSpace = Identifier.hasLeadingSpace();
437
438 // Replace the result token.
439 Identifier = MI->getReplacementToken(0);
440
441 // Restore the StartOfLine/LeadingSpace markers.
442 Identifier.setFlagValue(Token::StartOfLine , isAtStartOfLine);
443 Identifier.setFlagValue(Token::LeadingSpace, hasLeadingSpace);
444
445 // Update the tokens location to include both its expansion and physical
446 // locations.
447 SourceLocation Loc =
448 SourceMgr.createExpansionLoc(Identifier.getLocation(), ExpandLoc,
449 ExpansionEnd,Identifier.getLength());
450 Identifier.setLocation(Loc);
451
452 // If this is a disabled macro or #define X X, we must mark the result as
453 // unexpandable.
454 if (IdentifierInfo *NewII = Identifier.getIdentifierInfo()) {
455 if (MacroInfo *NewMI = getMacroInfo(NewII))
456 if (!NewMI->isEnabled() || NewMI == MI) {
457 Identifier.setFlag(Token::DisableExpand);
458 Diag(Identifier, diag::pp_disabled_macro_expansion);
459 }
460 }
461
462 // Since this is not an identifier token, it can't be macro expanded, so
463 // we're done.
464 ++NumFastMacroExpanded;
465 return false;
466 }
467
468 // Start expanding the macro.
469 EnterMacro(Identifier, ExpansionEnd, MI, Args);
470
471 // Now that the macro is at the top of the include stack, ask the
472 // preprocessor to read the next token from it.
473 Lex(Identifier);
474 return false;
475}
476
477/// ReadFunctionLikeMacroArgs - After reading "MACRO" and knowing that the next
478/// token is the '(' of the macro, this method is invoked to read all of the
479/// actual arguments specified for the macro invocation. This returns null on
480/// error.
481MacroArgs *Preprocessor::ReadFunctionLikeMacroArgs(Token &MacroName,
482 MacroInfo *MI,
483 SourceLocation &MacroEnd) {
484 // The number of fixed arguments to parse.
485 unsigned NumFixedArgsLeft = MI->getNumArgs();
486 bool isVariadic = MI->isVariadic();
487
488 // Outer loop, while there are more arguments, keep reading them.
489 Token Tok;
490
491 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
492 // an argument value in a macro could expand to ',' or '(' or ')'.
493 LexUnexpandedToken(Tok);
494 assert(Tok.is(tok::l_paren) && "Error computing l-paren-ness?");
495
496 // ArgTokens - Build up a list of tokens that make up each argument. Each
497 // argument is separated by an EOF token. Use a SmallVector so we can avoid
498 // heap allocations in the common case.
499 SmallVector<Token, 64> ArgTokens;
500
501 unsigned NumActuals = 0;
502 while (Tok.isNot(tok::r_paren)) {
503 assert((Tok.is(tok::l_paren) || Tok.is(tok::comma)) &&
504 "only expect argument separators here");
505
506 unsigned ArgTokenStart = ArgTokens.size();
507 SourceLocation ArgStartLoc = Tok.getLocation();
508
509 // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note
510 // that we already consumed the first one.
511 unsigned NumParens = 0;
512
513 while (1) {
514 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
515 // an argument value in a macro could expand to ',' or '(' or ')'.
516 LexUnexpandedToken(Tok);
517
518 if (Tok.is(tok::eof) || Tok.is(tok::eod)) { // "#if f(<eof>" & "#if f(\n"
519 Diag(MacroName, diag::err_unterm_macro_invoc);
520 // Do not lose the EOF/EOD. Return it to the client.
521 MacroName = Tok;
522 return 0;
523 } else if (Tok.is(tok::r_paren)) {
524 // If we found the ) token, the macro arg list is done.
525 if (NumParens-- == 0) {
526 MacroEnd = Tok.getLocation();
527 break;
528 }
529 } else if (Tok.is(tok::l_paren)) {
530 ++NumParens;
Nico Weber93dec512012-09-26 08:19:01 +0000531 } else if (Tok.is(tok::comma) && NumParens == 0) {
Joao Matos3e1ec722012-08-31 21:34:27 +0000532 // Comma ends this argument if there are more fixed arguments expected.
533 // However, if this is a variadic macro, and this is part of the
534 // variadic part, then the comma is just an argument token.
535 if (!isVariadic) break;
536 if (NumFixedArgsLeft > 1)
537 break;
538 } else if (Tok.is(tok::comment) && !KeepMacroComments) {
539 // If this is a comment token in the argument list and we're just in
540 // -C mode (not -CC mode), discard the comment.
541 continue;
542 } else if (Tok.getIdentifierInfo() != 0) {
543 // Reading macro arguments can cause macros that we are currently
544 // expanding from to be popped off the expansion stack. Doing so causes
545 // them to be reenabled for expansion. Here we record whether any
546 // identifiers we lex as macro arguments correspond to disabled macros.
547 // If so, we mark the token as noexpand. This is a subtle aspect of
548 // C99 6.10.3.4p2.
549 if (MacroInfo *MI = getMacroInfo(Tok.getIdentifierInfo()))
550 if (!MI->isEnabled())
551 Tok.setFlag(Token::DisableExpand);
552 } else if (Tok.is(tok::code_completion)) {
553 if (CodeComplete)
554 CodeComplete->CodeCompleteMacroArgument(MacroName.getIdentifierInfo(),
555 MI, NumActuals);
556 // Don't mark that we reached the code-completion point because the
557 // parser is going to handle the token and there will be another
558 // code-completion callback.
559 }
560
561 ArgTokens.push_back(Tok);
562 }
563
564 // If this was an empty argument list foo(), don't add this as an empty
565 // argument.
566 if (ArgTokens.empty() && Tok.getKind() == tok::r_paren)
567 break;
568
569 // If this is not a variadic macro, and too many args were specified, emit
570 // an error.
571 if (!isVariadic && NumFixedArgsLeft == 0) {
572 if (ArgTokens.size() != ArgTokenStart)
573 ArgStartLoc = ArgTokens[ArgTokenStart].getLocation();
574
575 // Emit the diagnostic at the macro name in case there is a missing ).
576 // Emitting it at the , could be far away from the macro name.
577 Diag(ArgStartLoc, diag::err_too_many_args_in_macro_invoc);
578 return 0;
579 }
580
581 // Empty arguments are standard in C99 and C++0x, and are supported as an extension in
582 // other modes.
583 if (ArgTokens.size() == ArgTokenStart && !LangOpts.C99)
584 Diag(Tok, LangOpts.CPlusPlus0x ?
585 diag::warn_cxx98_compat_empty_fnmacro_arg :
586 diag::ext_empty_fnmacro_arg);
587
588 // Add a marker EOF token to the end of the token list for this argument.
589 Token EOFTok;
590 EOFTok.startToken();
591 EOFTok.setKind(tok::eof);
592 EOFTok.setLocation(Tok.getLocation());
593 EOFTok.setLength(0);
594 ArgTokens.push_back(EOFTok);
595 ++NumActuals;
596 assert(NumFixedArgsLeft != 0 && "Too many arguments parsed");
597 --NumFixedArgsLeft;
598 }
599
600 // Okay, we either found the r_paren. Check to see if we parsed too few
601 // arguments.
602 unsigned MinArgsExpected = MI->getNumArgs();
603
604 // See MacroArgs instance var for description of this.
605 bool isVarargsElided = false;
606
607 if (NumActuals < MinArgsExpected) {
608 // There are several cases where too few arguments is ok, handle them now.
609 if (NumActuals == 0 && MinArgsExpected == 1) {
610 // #define A(X) or #define A(...) ---> A()
611
612 // If there is exactly one argument, and that argument is missing,
613 // then we have an empty "()" argument empty list. This is fine, even if
614 // the macro expects one argument (the argument is just empty).
615 isVarargsElided = MI->isVariadic();
616 } else if (MI->isVariadic() &&
617 (NumActuals+1 == MinArgsExpected || // A(x, ...) -> A(X)
618 (NumActuals == 0 && MinArgsExpected == 2))) {// A(x,...) -> A()
619 // Varargs where the named vararg parameter is missing: OK as extension.
620 // #define A(x, ...)
621 // A("blah")
Eli Friedman4fa4b482012-11-14 02:18:46 +0000622 //
623 // If the macro contains the comma pasting extension, the diagnostic
624 // is suppressed; we know we'll get another diagnostic later.
625 if (!MI->hasCommaPasting()) {
626 Diag(Tok, diag::ext_missing_varargs_arg);
627 Diag(MI->getDefinitionLoc(), diag::note_macro_here)
628 << MacroName.getIdentifierInfo();
629 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000630
631 // Remember this occurred, allowing us to elide the comma when used for
632 // cases like:
633 // #define A(x, foo...) blah(a, ## foo)
634 // #define B(x, ...) blah(a, ## __VA_ARGS__)
635 // #define C(...) blah(a, ## __VA_ARGS__)
636 // A(x) B(x) C()
637 isVarargsElided = true;
638 } else {
639 // Otherwise, emit the error.
640 Diag(Tok, diag::err_too_few_args_in_macro_invoc);
641 return 0;
642 }
643
644 // Add a marker EOF token to the end of the token list for this argument.
645 SourceLocation EndLoc = Tok.getLocation();
646 Tok.startToken();
647 Tok.setKind(tok::eof);
648 Tok.setLocation(EndLoc);
649 Tok.setLength(0);
650 ArgTokens.push_back(Tok);
651
652 // If we expect two arguments, add both as empty.
653 if (NumActuals == 0 && MinArgsExpected == 2)
654 ArgTokens.push_back(Tok);
655
656 } else if (NumActuals > MinArgsExpected && !MI->isVariadic()) {
657 // Emit the diagnostic at the macro name in case there is a missing ).
658 // Emitting it at the , could be far away from the macro name.
659 Diag(MacroName, diag::err_too_many_args_in_macro_invoc);
660 return 0;
661 }
662
663 return MacroArgs::create(MI, ArgTokens, isVarargsElided, *this);
664}
665
666/// \brief Keeps macro expanded tokens for TokenLexers.
667//
668/// Works like a stack; a TokenLexer adds the macro expanded tokens that is
669/// going to lex in the cache and when it finishes the tokens are removed
670/// from the end of the cache.
671Token *Preprocessor::cacheMacroExpandedTokens(TokenLexer *tokLexer,
672 ArrayRef<Token> tokens) {
673 assert(tokLexer);
674 if (tokens.empty())
675 return 0;
676
677 size_t newIndex = MacroExpandedTokens.size();
678 bool cacheNeedsToGrow = tokens.size() >
679 MacroExpandedTokens.capacity()-MacroExpandedTokens.size();
680 MacroExpandedTokens.append(tokens.begin(), tokens.end());
681
682 if (cacheNeedsToGrow) {
683 // Go through all the TokenLexers whose 'Tokens' pointer points in the
684 // buffer and update the pointers to the (potential) new buffer array.
685 for (unsigned i = 0, e = MacroExpandingLexersStack.size(); i != e; ++i) {
686 TokenLexer *prevLexer;
687 size_t tokIndex;
688 llvm::tie(prevLexer, tokIndex) = MacroExpandingLexersStack[i];
689 prevLexer->Tokens = MacroExpandedTokens.data() + tokIndex;
690 }
691 }
692
693 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex));
694 return MacroExpandedTokens.data() + newIndex;
695}
696
697void Preprocessor::removeCachedMacroExpandedTokensOfLastLexer() {
698 assert(!MacroExpandingLexersStack.empty());
699 size_t tokIndex = MacroExpandingLexersStack.back().second;
700 assert(tokIndex < MacroExpandedTokens.size());
701 // Pop the cached macro expanded tokens from the end.
702 MacroExpandedTokens.resize(tokIndex);
703 MacroExpandingLexersStack.pop_back();
704}
705
706/// ComputeDATE_TIME - Compute the current time, enter it into the specified
707/// scratch buffer, then return DATELoc/TIMELoc locations with the position of
708/// the identifier tokens inserted.
709static void ComputeDATE_TIME(SourceLocation &DATELoc, SourceLocation &TIMELoc,
710 Preprocessor &PP) {
711 time_t TT = time(0);
712 struct tm *TM = localtime(&TT);
713
714 static const char * const Months[] = {
715 "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
716 };
717
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000718 {
719 SmallString<32> TmpBuffer;
720 llvm::raw_svector_ostream TmpStream(TmpBuffer);
721 TmpStream << llvm::format("\"%s %2d %4d\"", Months[TM->tm_mon],
722 TM->tm_mday, TM->tm_year + 1900);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000723 Token TmpTok;
724 TmpTok.startToken();
Dmitri Gribenko374b3832012-09-24 21:07:17 +0000725 PP.CreateString(TmpStream.str(), TmpTok);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000726 DATELoc = TmpTok.getLocation();
727 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000728
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000729 {
730 SmallString<32> TmpBuffer;
731 llvm::raw_svector_ostream TmpStream(TmpBuffer);
732 TmpStream << llvm::format("\"%02d:%02d:%02d\"",
733 TM->tm_hour, TM->tm_min, TM->tm_sec);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000734 Token TmpTok;
735 TmpTok.startToken();
Dmitri Gribenko374b3832012-09-24 21:07:17 +0000736 PP.CreateString(TmpStream.str(), TmpTok);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000737 TIMELoc = TmpTok.getLocation();
738 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000739}
740
741
742/// HasFeature - Return true if we recognize and implement the feature
743/// specified by the identifier as a standard language feature.
744static bool HasFeature(const Preprocessor &PP, const IdentifierInfo *II) {
745 const LangOptions &LangOpts = PP.getLangOpts();
746 StringRef Feature = II->getName();
747
748 // Normalize the feature name, __foo__ becomes foo.
749 if (Feature.startswith("__") && Feature.endswith("__") && Feature.size() >= 4)
750 Feature = Feature.substr(2, Feature.size() - 4);
751
752 return llvm::StringSwitch<bool>(Feature)
Richard Smithca1b62a2012-11-05 21:48:12 +0000753 .Case("address_sanitizer", LangOpts.SanitizeAddress)
Joao Matos3e1ec722012-08-31 21:34:27 +0000754 .Case("attribute_analyzer_noreturn", true)
755 .Case("attribute_availability", true)
756 .Case("attribute_availability_with_message", true)
757 .Case("attribute_cf_returns_not_retained", true)
758 .Case("attribute_cf_returns_retained", true)
759 .Case("attribute_deprecated_with_message", true)
760 .Case("attribute_ext_vector_type", true)
761 .Case("attribute_ns_returns_not_retained", true)
762 .Case("attribute_ns_returns_retained", true)
763 .Case("attribute_ns_consumes_self", true)
764 .Case("attribute_ns_consumed", true)
765 .Case("attribute_cf_consumed", true)
766 .Case("attribute_objc_ivar_unused", true)
767 .Case("attribute_objc_method_family", true)
768 .Case("attribute_overloadable", true)
769 .Case("attribute_unavailable_with_message", true)
770 .Case("attribute_unused_on_fields", true)
771 .Case("blocks", LangOpts.Blocks)
772 .Case("cxx_exceptions", LangOpts.Exceptions)
773 .Case("cxx_rtti", LangOpts.RTTI)
774 .Case("enumerator_attributes", true)
775 // Objective-C features
776 .Case("objc_arr", LangOpts.ObjCAutoRefCount) // FIXME: REMOVE?
777 .Case("objc_arc", LangOpts.ObjCAutoRefCount)
778 .Case("objc_arc_weak", LangOpts.ObjCARCWeak)
779 .Case("objc_default_synthesize_properties", LangOpts.ObjC2)
780 .Case("objc_fixed_enum", LangOpts.ObjC2)
781 .Case("objc_instancetype", LangOpts.ObjC2)
782 .Case("objc_modules", LangOpts.ObjC2 && LangOpts.Modules)
783 .Case("objc_nonfragile_abi", LangOpts.ObjCRuntime.isNonFragile())
784 .Case("objc_weak_class", LangOpts.ObjCRuntime.hasWeakClassImport())
785 .Case("ownership_holds", true)
786 .Case("ownership_returns", true)
787 .Case("ownership_takes", true)
788 .Case("objc_bool", true)
789 .Case("objc_subscripting", LangOpts.ObjCRuntime.isNonFragile())
790 .Case("objc_array_literals", LangOpts.ObjC2)
791 .Case("objc_dictionary_literals", LangOpts.ObjC2)
792 .Case("objc_boxed_expressions", LangOpts.ObjC2)
793 .Case("arc_cf_code_audited", true)
794 // C11 features
795 .Case("c_alignas", LangOpts.C11)
796 .Case("c_atomic", LangOpts.C11)
797 .Case("c_generic_selections", LangOpts.C11)
798 .Case("c_static_assert", LangOpts.C11)
799 // C++11 features
800 .Case("cxx_access_control_sfinae", LangOpts.CPlusPlus0x)
801 .Case("cxx_alias_templates", LangOpts.CPlusPlus0x)
802 .Case("cxx_alignas", LangOpts.CPlusPlus0x)
803 .Case("cxx_atomic", LangOpts.CPlusPlus0x)
804 .Case("cxx_attributes", LangOpts.CPlusPlus0x)
805 .Case("cxx_auto_type", LangOpts.CPlusPlus0x)
806 .Case("cxx_constexpr", LangOpts.CPlusPlus0x)
807 .Case("cxx_decltype", LangOpts.CPlusPlus0x)
808 .Case("cxx_decltype_incomplete_return_types", LangOpts.CPlusPlus0x)
809 .Case("cxx_default_function_template_args", LangOpts.CPlusPlus0x)
810 .Case("cxx_defaulted_functions", LangOpts.CPlusPlus0x)
811 .Case("cxx_delegating_constructors", LangOpts.CPlusPlus0x)
812 .Case("cxx_deleted_functions", LangOpts.CPlusPlus0x)
813 .Case("cxx_explicit_conversions", LangOpts.CPlusPlus0x)
814 .Case("cxx_generalized_initializers", LangOpts.CPlusPlus0x)
815 .Case("cxx_implicit_moves", LangOpts.CPlusPlus0x)
816 //.Case("cxx_inheriting_constructors", false)
817 .Case("cxx_inline_namespaces", LangOpts.CPlusPlus0x)
818 .Case("cxx_lambdas", LangOpts.CPlusPlus0x)
819 .Case("cxx_local_type_template_args", LangOpts.CPlusPlus0x)
820 .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus0x)
821 .Case("cxx_noexcept", LangOpts.CPlusPlus0x)
822 .Case("cxx_nullptr", LangOpts.CPlusPlus0x)
823 .Case("cxx_override_control", LangOpts.CPlusPlus0x)
824 .Case("cxx_range_for", LangOpts.CPlusPlus0x)
825 .Case("cxx_raw_string_literals", LangOpts.CPlusPlus0x)
826 .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus0x)
827 .Case("cxx_rvalue_references", LangOpts.CPlusPlus0x)
828 .Case("cxx_strong_enums", LangOpts.CPlusPlus0x)
829 .Case("cxx_static_assert", LangOpts.CPlusPlus0x)
830 .Case("cxx_trailing_return", LangOpts.CPlusPlus0x)
831 .Case("cxx_unicode_literals", LangOpts.CPlusPlus0x)
832 .Case("cxx_unrestricted_unions", LangOpts.CPlusPlus0x)
833 .Case("cxx_user_literals", LangOpts.CPlusPlus0x)
834 .Case("cxx_variadic_templates", LangOpts.CPlusPlus0x)
835 // Type traits
836 .Case("has_nothrow_assign", LangOpts.CPlusPlus)
837 .Case("has_nothrow_copy", LangOpts.CPlusPlus)
838 .Case("has_nothrow_constructor", LangOpts.CPlusPlus)
839 .Case("has_trivial_assign", LangOpts.CPlusPlus)
840 .Case("has_trivial_copy", LangOpts.CPlusPlus)
841 .Case("has_trivial_constructor", LangOpts.CPlusPlus)
842 .Case("has_trivial_destructor", LangOpts.CPlusPlus)
843 .Case("has_virtual_destructor", LangOpts.CPlusPlus)
844 .Case("is_abstract", LangOpts.CPlusPlus)
845 .Case("is_base_of", LangOpts.CPlusPlus)
846 .Case("is_class", LangOpts.CPlusPlus)
847 .Case("is_convertible_to", LangOpts.CPlusPlus)
848 // __is_empty is available only if the horrible
849 // "struct __is_empty" parsing hack hasn't been needed in this
850 // translation unit. If it has, __is_empty reverts to a normal
851 // identifier and __has_feature(is_empty) evaluates false.
852 .Case("is_empty", LangOpts.CPlusPlus)
853 .Case("is_enum", LangOpts.CPlusPlus)
854 .Case("is_final", LangOpts.CPlusPlus)
855 .Case("is_literal", LangOpts.CPlusPlus)
856 .Case("is_standard_layout", LangOpts.CPlusPlus)
857 .Case("is_pod", LangOpts.CPlusPlus)
858 .Case("is_polymorphic", LangOpts.CPlusPlus)
859 .Case("is_trivial", LangOpts.CPlusPlus)
860 .Case("is_trivially_assignable", LangOpts.CPlusPlus)
861 .Case("is_trivially_constructible", LangOpts.CPlusPlus)
862 .Case("is_trivially_copyable", LangOpts.CPlusPlus)
863 .Case("is_union", LangOpts.CPlusPlus)
864 .Case("modules", LangOpts.Modules)
865 .Case("tls", PP.getTargetInfo().isTLSSupported())
866 .Case("underlying_type", LangOpts.CPlusPlus)
867 .Default(false);
868}
869
870/// HasExtension - Return true if we recognize and implement the feature
871/// specified by the identifier, either as an extension or a standard language
872/// feature.
873static bool HasExtension(const Preprocessor &PP, const IdentifierInfo *II) {
874 if (HasFeature(PP, II))
875 return true;
876
877 // If the use of an extension results in an error diagnostic, extensions are
878 // effectively unavailable, so just return false here.
879 if (PP.getDiagnostics().getExtensionHandlingBehavior() ==
880 DiagnosticsEngine::Ext_Error)
881 return false;
882
883 const LangOptions &LangOpts = PP.getLangOpts();
884 StringRef Extension = II->getName();
885
886 // Normalize the extension name, __foo__ becomes foo.
887 if (Extension.startswith("__") && Extension.endswith("__") &&
888 Extension.size() >= 4)
889 Extension = Extension.substr(2, Extension.size() - 4);
890
891 // Because we inherit the feature list from HasFeature, this string switch
892 // must be less restrictive than HasFeature's.
893 return llvm::StringSwitch<bool>(Extension)
894 // C11 features supported by other languages as extensions.
895 .Case("c_alignas", true)
896 .Case("c_atomic", true)
897 .Case("c_generic_selections", true)
898 .Case("c_static_assert", true)
899 // C++0x features supported by other languages as extensions.
900 .Case("cxx_atomic", LangOpts.CPlusPlus)
901 .Case("cxx_deleted_functions", LangOpts.CPlusPlus)
902 .Case("cxx_explicit_conversions", LangOpts.CPlusPlus)
903 .Case("cxx_inline_namespaces", LangOpts.CPlusPlus)
904 .Case("cxx_local_type_template_args", LangOpts.CPlusPlus)
905 .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus)
906 .Case("cxx_override_control", LangOpts.CPlusPlus)
907 .Case("cxx_range_for", LangOpts.CPlusPlus)
908 .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus)
909 .Case("cxx_rvalue_references", LangOpts.CPlusPlus)
910 .Default(false);
911}
912
913/// HasAttribute - Return true if we recognize and implement the attribute
914/// specified by the given identifier.
915static bool HasAttribute(const IdentifierInfo *II) {
916 StringRef Name = II->getName();
917 // Normalize the attribute name, __foo__ becomes foo.
918 if (Name.startswith("__") && Name.endswith("__") && Name.size() >= 4)
919 Name = Name.substr(2, Name.size() - 4);
920
921 // FIXME: Do we need to handle namespaces here?
922 return llvm::StringSwitch<bool>(Name)
923#include "clang/Lex/AttrSpellings.inc"
924 .Default(false);
925}
926
927/// EvaluateHasIncludeCommon - Process a '__has_include("path")'
928/// or '__has_include_next("path")' expression.
929/// Returns true if successful.
930static bool EvaluateHasIncludeCommon(Token &Tok,
931 IdentifierInfo *II, Preprocessor &PP,
932 const DirectoryLookup *LookupFrom) {
Richard Trieu97bc3d52012-10-22 20:28:48 +0000933 // Save the location of the current token. If a '(' is later found, use
934 // that location. If no, use the end of this location instead.
935 SourceLocation LParenLoc = Tok.getLocation();
Joao Matos3e1ec722012-08-31 21:34:27 +0000936
937 // Get '('.
938 PP.LexNonComment(Tok);
939
940 // Ensure we have a '('.
941 if (Tok.isNot(tok::l_paren)) {
Richard Trieu97bc3d52012-10-22 20:28:48 +0000942 // No '(', use end of last token.
943 LParenLoc = PP.getLocForEndOfToken(LParenLoc);
944 PP.Diag(LParenLoc, diag::err_pp_missing_lparen) << II->getName();
945 // If the next token looks like a filename or the start of one,
946 // assume it is and process it as such.
947 if (!Tok.is(tok::angle_string_literal) && !Tok.is(tok::string_literal) &&
948 !Tok.is(tok::less))
949 return false;
950 } else {
951 // Save '(' location for possible missing ')' message.
952 LParenLoc = Tok.getLocation();
953
954 // Get the file name.
955 PP.getCurrentLexer()->LexIncludeFilename(Tok);
Joao Matos3e1ec722012-08-31 21:34:27 +0000956 }
957
Joao Matos3e1ec722012-08-31 21:34:27 +0000958 // Reserve a buffer to get the spelling.
959 SmallString<128> FilenameBuffer;
960 StringRef Filename;
961 SourceLocation EndLoc;
962
963 switch (Tok.getKind()) {
964 case tok::eod:
965 // If the token kind is EOD, the error has already been diagnosed.
966 return false;
967
968 case tok::angle_string_literal:
969 case tok::string_literal: {
970 bool Invalid = false;
971 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
972 if (Invalid)
973 return false;
974 break;
975 }
976
977 case tok::less:
978 // This could be a <foo/bar.h> file coming from a macro expansion. In this
979 // case, glue the tokens together into FilenameBuffer and interpret those.
980 FilenameBuffer.push_back('<');
Richard Trieu97bc3d52012-10-22 20:28:48 +0000981 if (PP.ConcatenateIncludeName(FilenameBuffer, EndLoc)) {
982 // Let the caller know a <eod> was found by changing the Token kind.
983 Tok.setKind(tok::eod);
Joao Matos3e1ec722012-08-31 21:34:27 +0000984 return false; // Found <eod> but no ">"? Diagnostic already emitted.
Richard Trieu97bc3d52012-10-22 20:28:48 +0000985 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000986 Filename = FilenameBuffer.str();
987 break;
988 default:
989 PP.Diag(Tok.getLocation(), diag::err_pp_expects_filename);
990 return false;
991 }
992
Richard Trieu97bc3d52012-10-22 20:28:48 +0000993 SourceLocation FilenameLoc = Tok.getLocation();
994
Joao Matos3e1ec722012-08-31 21:34:27 +0000995 // Get ')'.
996 PP.LexNonComment(Tok);
997
998 // Ensure we have a trailing ).
999 if (Tok.isNot(tok::r_paren)) {
Richard Trieu97bc3d52012-10-22 20:28:48 +00001000 PP.Diag(PP.getLocForEndOfToken(FilenameLoc), diag::err_pp_missing_rparen)
1001 << II->getName();
Joao Matos3e1ec722012-08-31 21:34:27 +00001002 PP.Diag(LParenLoc, diag::note_matching) << "(";
1003 return false;
1004 }
1005
1006 bool isAngled = PP.GetIncludeFilenameSpelling(Tok.getLocation(), Filename);
1007 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1008 // error.
1009 if (Filename.empty())
1010 return false;
1011
1012 // Search include directories.
1013 const DirectoryLookup *CurDir;
1014 const FileEntry *File =
1015 PP.LookupFile(Filename, isAngled, LookupFrom, CurDir, NULL, NULL, NULL);
1016
1017 // Get the result value. A result of true means the file exists.
1018 return File != 0;
1019}
1020
1021/// EvaluateHasInclude - Process a '__has_include("path")' expression.
1022/// Returns true if successful.
1023static bool EvaluateHasInclude(Token &Tok, IdentifierInfo *II,
1024 Preprocessor &PP) {
1025 return EvaluateHasIncludeCommon(Tok, II, PP, NULL);
1026}
1027
1028/// EvaluateHasIncludeNext - Process '__has_include_next("path")' expression.
1029/// Returns true if successful.
1030static bool EvaluateHasIncludeNext(Token &Tok,
1031 IdentifierInfo *II, Preprocessor &PP) {
1032 // __has_include_next is like __has_include, except that we start
1033 // searching after the current found directory. If we can't do this,
1034 // issue a diagnostic.
1035 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
1036 if (PP.isInPrimaryFile()) {
1037 Lookup = 0;
1038 PP.Diag(Tok, diag::pp_include_next_in_primary);
1039 } else if (Lookup == 0) {
1040 PP.Diag(Tok, diag::pp_include_next_absolute_path);
1041 } else {
1042 // Start looking up in the next directory.
1043 ++Lookup;
1044 }
1045
1046 return EvaluateHasIncludeCommon(Tok, II, PP, Lookup);
1047}
1048
Douglas Gregorb09de512012-09-25 15:44:52 +00001049/// \brief Process __building_module(identifier) expression.
1050/// \returns true if we are building the named module, false otherwise.
1051static bool EvaluateBuildingModule(Token &Tok,
1052 IdentifierInfo *II, Preprocessor &PP) {
1053 // Get '('.
1054 PP.LexNonComment(Tok);
1055
1056 // Ensure we have a '('.
1057 if (Tok.isNot(tok::l_paren)) {
1058 PP.Diag(Tok.getLocation(), diag::err_pp_missing_lparen) << II->getName();
1059 return false;
1060 }
1061
1062 // Save '(' location for possible missing ')' message.
1063 SourceLocation LParenLoc = Tok.getLocation();
1064
1065 // Get the module name.
1066 PP.LexNonComment(Tok);
1067
1068 // Ensure that we have an identifier.
1069 if (Tok.isNot(tok::identifier)) {
1070 PP.Diag(Tok.getLocation(), diag::err_expected_id_building_module);
1071 return false;
1072 }
1073
1074 bool Result
1075 = Tok.getIdentifierInfo()->getName() == PP.getLangOpts().CurrentModule;
1076
1077 // Get ')'.
1078 PP.LexNonComment(Tok);
1079
1080 // Ensure we have a trailing ).
1081 if (Tok.isNot(tok::r_paren)) {
1082 PP.Diag(Tok.getLocation(), diag::err_pp_missing_rparen) << II->getName();
1083 PP.Diag(LParenLoc, diag::note_matching) << "(";
1084 return false;
1085 }
1086
1087 return Result;
1088}
1089
Joao Matos3e1ec722012-08-31 21:34:27 +00001090/// ExpandBuiltinMacro - If an identifier token is read that is to be expanded
1091/// as a builtin macro, handle it and return the next token as 'Tok'.
1092void Preprocessor::ExpandBuiltinMacro(Token &Tok) {
1093 // Figure out which token this is.
1094 IdentifierInfo *II = Tok.getIdentifierInfo();
1095 assert(II && "Can't be a macro without id info!");
1096
1097 // If this is an _Pragma or Microsoft __pragma directive, expand it,
1098 // invoke the pragma handler, then lex the token after it.
1099 if (II == Ident_Pragma)
1100 return Handle_Pragma(Tok);
1101 else if (II == Ident__pragma) // in non-MS mode this is null
1102 return HandleMicrosoft__pragma(Tok);
1103
1104 ++NumBuiltinMacroExpanded;
1105
1106 SmallString<128> TmpBuffer;
1107 llvm::raw_svector_ostream OS(TmpBuffer);
1108
1109 // Set up the return result.
1110 Tok.setIdentifierInfo(0);
1111 Tok.clearFlag(Token::NeedsCleaning);
1112
1113 if (II == Ident__LINE__) {
1114 // C99 6.10.8: "__LINE__: The presumed line number (within the current
1115 // source file) of the current source line (an integer constant)". This can
1116 // be affected by #line.
1117 SourceLocation Loc = Tok.getLocation();
1118
1119 // Advance to the location of the first _, this might not be the first byte
1120 // of the token if it starts with an escaped newline.
1121 Loc = AdvanceToTokenCharacter(Loc, 0);
1122
1123 // One wrinkle here is that GCC expands __LINE__ to location of the *end* of
1124 // a macro expansion. This doesn't matter for object-like macros, but
1125 // can matter for a function-like macro that expands to contain __LINE__.
1126 // Skip down through expansion points until we find a file loc for the
1127 // end of the expansion history.
1128 Loc = SourceMgr.getExpansionRange(Loc).second;
1129 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc);
1130
1131 // __LINE__ expands to a simple numeric value.
1132 OS << (PLoc.isValid()? PLoc.getLine() : 1);
1133 Tok.setKind(tok::numeric_constant);
1134 } else if (II == Ident__FILE__ || II == Ident__BASE_FILE__) {
1135 // C99 6.10.8: "__FILE__: The presumed name of the current source file (a
1136 // character string literal)". This can be affected by #line.
1137 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
1138
1139 // __BASE_FILE__ is a GNU extension that returns the top of the presumed
1140 // #include stack instead of the current file.
1141 if (II == Ident__BASE_FILE__ && PLoc.isValid()) {
1142 SourceLocation NextLoc = PLoc.getIncludeLoc();
1143 while (NextLoc.isValid()) {
1144 PLoc = SourceMgr.getPresumedLoc(NextLoc);
1145 if (PLoc.isInvalid())
1146 break;
1147
1148 NextLoc = PLoc.getIncludeLoc();
1149 }
1150 }
1151
1152 // Escape this filename. Turn '\' -> '\\' '"' -> '\"'
1153 SmallString<128> FN;
1154 if (PLoc.isValid()) {
1155 FN += PLoc.getFilename();
1156 Lexer::Stringify(FN);
1157 OS << '"' << FN.str() << '"';
1158 }
1159 Tok.setKind(tok::string_literal);
1160 } else if (II == Ident__DATE__) {
1161 if (!DATELoc.isValid())
1162 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
1163 Tok.setKind(tok::string_literal);
1164 Tok.setLength(strlen("\"Mmm dd yyyy\""));
1165 Tok.setLocation(SourceMgr.createExpansionLoc(DATELoc, Tok.getLocation(),
1166 Tok.getLocation(),
1167 Tok.getLength()));
1168 return;
1169 } else if (II == Ident__TIME__) {
1170 if (!TIMELoc.isValid())
1171 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
1172 Tok.setKind(tok::string_literal);
1173 Tok.setLength(strlen("\"hh:mm:ss\""));
1174 Tok.setLocation(SourceMgr.createExpansionLoc(TIMELoc, Tok.getLocation(),
1175 Tok.getLocation(),
1176 Tok.getLength()));
1177 return;
1178 } else if (II == Ident__INCLUDE_LEVEL__) {
1179 // Compute the presumed include depth of this token. This can be affected
1180 // by GNU line markers.
1181 unsigned Depth = 0;
1182
1183 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
1184 if (PLoc.isValid()) {
1185 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc());
1186 for (; PLoc.isValid(); ++Depth)
1187 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc());
1188 }
1189
1190 // __INCLUDE_LEVEL__ expands to a simple numeric value.
1191 OS << Depth;
1192 Tok.setKind(tok::numeric_constant);
1193 } else if (II == Ident__TIMESTAMP__) {
1194 // MSVC, ICC, GCC, VisualAge C++ extension. The generated string should be
1195 // of the form "Ddd Mmm dd hh::mm::ss yyyy", which is returned by asctime.
1196
1197 // Get the file that we are lexing out of. If we're currently lexing from
1198 // a macro, dig into the include stack.
1199 const FileEntry *CurFile = 0;
1200 PreprocessorLexer *TheLexer = getCurrentFileLexer();
1201
1202 if (TheLexer)
1203 CurFile = SourceMgr.getFileEntryForID(TheLexer->getFileID());
1204
1205 const char *Result;
1206 if (CurFile) {
1207 time_t TT = CurFile->getModificationTime();
1208 struct tm *TM = localtime(&TT);
1209 Result = asctime(TM);
1210 } else {
1211 Result = "??? ??? ?? ??:??:?? ????\n";
1212 }
1213 // Surround the string with " and strip the trailing newline.
1214 OS << '"' << StringRef(Result, strlen(Result)-1) << '"';
1215 Tok.setKind(tok::string_literal);
1216 } else if (II == Ident__COUNTER__) {
1217 // __COUNTER__ expands to a simple numeric value.
1218 OS << CounterValue++;
1219 Tok.setKind(tok::numeric_constant);
1220 } else if (II == Ident__has_feature ||
1221 II == Ident__has_extension ||
1222 II == Ident__has_builtin ||
1223 II == Ident__has_attribute) {
1224 // The argument to these builtins should be a parenthesized identifier.
1225 SourceLocation StartLoc = Tok.getLocation();
1226
1227 bool IsValid = false;
1228 IdentifierInfo *FeatureII = 0;
1229
1230 // Read the '('.
1231 Lex(Tok);
1232 if (Tok.is(tok::l_paren)) {
1233 // Read the identifier
1234 Lex(Tok);
1235 if (Tok.is(tok::identifier) || Tok.is(tok::kw_const)) {
1236 FeatureII = Tok.getIdentifierInfo();
1237
1238 // Read the ')'.
1239 Lex(Tok);
1240 if (Tok.is(tok::r_paren))
1241 IsValid = true;
1242 }
1243 }
1244
1245 bool Value = false;
1246 if (!IsValid)
1247 Diag(StartLoc, diag::err_feature_check_malformed);
1248 else if (II == Ident__has_builtin) {
1249 // Check for a builtin is trivial.
1250 Value = FeatureII->getBuiltinID() != 0;
1251 } else if (II == Ident__has_attribute)
1252 Value = HasAttribute(FeatureII);
1253 else if (II == Ident__has_extension)
1254 Value = HasExtension(*this, FeatureII);
1255 else {
1256 assert(II == Ident__has_feature && "Must be feature check");
1257 Value = HasFeature(*this, FeatureII);
1258 }
1259
1260 OS << (int)Value;
1261 if (IsValid)
1262 Tok.setKind(tok::numeric_constant);
1263 } else if (II == Ident__has_include ||
1264 II == Ident__has_include_next) {
1265 // The argument to these two builtins should be a parenthesized
1266 // file name string literal using angle brackets (<>) or
1267 // double-quotes ("").
1268 bool Value;
1269 if (II == Ident__has_include)
1270 Value = EvaluateHasInclude(Tok, II, *this);
1271 else
1272 Value = EvaluateHasIncludeNext(Tok, II, *this);
1273 OS << (int)Value;
Richard Trieu97bc3d52012-10-22 20:28:48 +00001274 if (Tok.is(tok::r_paren))
1275 Tok.setKind(tok::numeric_constant);
Joao Matos3e1ec722012-08-31 21:34:27 +00001276 } else if (II == Ident__has_warning) {
1277 // The argument should be a parenthesized string literal.
1278 // The argument to these builtins should be a parenthesized identifier.
1279 SourceLocation StartLoc = Tok.getLocation();
1280 bool IsValid = false;
1281 bool Value = false;
1282 // Read the '('.
1283 Lex(Tok);
1284 do {
1285 if (Tok.is(tok::l_paren)) {
1286 // Read the string.
1287 Lex(Tok);
1288
1289 // We need at least one string literal.
1290 if (!Tok.is(tok::string_literal)) {
1291 StartLoc = Tok.getLocation();
1292 IsValid = false;
1293 // Eat tokens until ')'.
Andy Gibbsb9971ba2012-11-17 19:14:53 +00001294 while (Tok.isNot(tok::r_paren)
1295 && Tok.isNot(tok::eod)
1296 && Tok.isNot(tok::eof))
1297 Lex(Tok);
Joao Matos3e1ec722012-08-31 21:34:27 +00001298 break;
1299 }
1300
1301 // String concatenation allows multiple strings, which can even come
1302 // from macro expansion.
1303 SmallVector<Token, 4> StrToks;
1304 while (Tok.is(tok::string_literal)) {
1305 // Complain about, and drop, any ud-suffix.
1306 if (Tok.hasUDSuffix())
1307 Diag(Tok, diag::err_invalid_string_udl);
1308 StrToks.push_back(Tok);
1309 LexUnexpandedToken(Tok);
1310 }
1311
1312 // Is the end a ')'?
1313 if (!(IsValid = Tok.is(tok::r_paren)))
1314 break;
1315
1316 // Concatenate and parse the strings.
1317 StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
1318 assert(Literal.isAscii() && "Didn't allow wide strings in");
1319 if (Literal.hadError)
1320 break;
1321 if (Literal.Pascal) {
1322 Diag(Tok, diag::warn_pragma_diagnostic_invalid);
1323 break;
1324 }
1325
1326 StringRef WarningName(Literal.GetString());
1327
1328 if (WarningName.size() < 3 || WarningName[0] != '-' ||
1329 WarningName[1] != 'W') {
1330 Diag(StrToks[0].getLocation(), diag::warn_has_warning_invalid_option);
1331 break;
1332 }
1333
1334 // Finally, check if the warning flags maps to a diagnostic group.
1335 // We construct a SmallVector here to talk to getDiagnosticIDs().
1336 // Although we don't use the result, this isn't a hot path, and not
1337 // worth special casing.
1338 llvm::SmallVector<diag::kind, 10> Diags;
1339 Value = !getDiagnostics().getDiagnosticIDs()->
1340 getDiagnosticsInGroup(WarningName.substr(2), Diags);
1341 }
1342 } while (false);
1343
1344 if (!IsValid)
1345 Diag(StartLoc, diag::err_warning_check_malformed);
1346
1347 OS << (int)Value;
Andy Gibbsb9971ba2012-11-17 19:14:53 +00001348 if (IsValid)
1349 Tok.setKind(tok::numeric_constant);
Douglas Gregorb09de512012-09-25 15:44:52 +00001350 } else if (II == Ident__building_module) {
1351 // The argument to this builtin should be an identifier. The
1352 // builtin evaluates to 1 when that identifier names the module we are
1353 // currently building.
1354 OS << (int)EvaluateBuildingModule(Tok, II, *this);
1355 Tok.setKind(tok::numeric_constant);
1356 } else if (II == Ident__MODULE__) {
1357 // The current module as an identifier.
1358 OS << getLangOpts().CurrentModule;
1359 IdentifierInfo *ModuleII = getIdentifierInfo(getLangOpts().CurrentModule);
1360 Tok.setIdentifierInfo(ModuleII);
1361 Tok.setKind(ModuleII->getTokenID());
Joao Matos3e1ec722012-08-31 21:34:27 +00001362 } else {
1363 llvm_unreachable("Unknown identifier!");
1364 }
Dmitri Gribenko374b3832012-09-24 21:07:17 +00001365 CreateString(OS.str(), Tok, Tok.getLocation(), Tok.getLocation());
Joao Matos3e1ec722012-08-31 21:34:27 +00001366}
1367
1368void Preprocessor::markMacroAsUsed(MacroInfo *MI) {
1369 // If the 'used' status changed, and the macro requires 'unused' warning,
1370 // remove its SourceLocation from the warn-for-unused-macro locations.
1371 if (MI->isWarnIfUnused() && !MI->isUsed())
1372 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
1373 MI->setIsUsed(true);
1374}