blob: 7901705fec33d7ca466035078b89bce85892a772 [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"
Joao Matos3e1ec722012-08-31 21:34:27 +000017#include "clang/Basic/FileManager.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/Basic/SourceManager.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000019#include "clang/Basic/TargetInfo.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000020#include "clang/Lex/CodeCompletionHandler.h"
21#include "clang/Lex/ExternalPreprocessorSource.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Lex/LexDiagnostic.h"
23#include "clang/Lex/MacroInfo.h"
24#include "llvm/ADT/STLExtras.h"
Andy Gibbs02a17682012-11-17 19:15:38 +000025#include "llvm/ADT/SmallString.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000026#include "llvm/ADT/StringSwitch.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000027#include "llvm/Config/llvm-config.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000028#include "llvm/Support/ErrorHandling.h"
Dmitri Gribenko33d054b2012-09-24 20:56:28 +000029#include "llvm/Support/Format.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000030#include "llvm/Support/raw_ostream.h"
Joao Matos3e1ec722012-08-31 21:34:27 +000031#include <cstdio>
32#include <ctime>
33using namespace clang;
34
Dmitri Gribenkob3958472013-01-14 00:36:42 +000035MacroInfo *Preprocessor::getMacroInfoHistory(const IdentifierInfo *II) const {
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +000036 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 Gregord3b036e2013-01-18 04:34:14 +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?");
Douglas Gregord3b036e2013-01-18 04:34:14 +000062 assert(!MI->getPreviousDefinition() && "Macro already in chain?");
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000063
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()) {
Douglas Gregord3b036e2013-01-18 04:34:14 +000082 MI->setPreviousDefinition(StoredMI);
Douglas Gregor6c6c54a2012-10-11 00:46:49 +000083 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.
Douglas Gregord3b036e2013-01-18 04:34:14 +0000115 MI->setPreviousDefinition(Prev->getPreviousDefinition());
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000116 Prev->setPreviousDefinition(MI);
117 return;
118 }
119
120 // The macro is not a definition; put it at the end of the list.
Douglas Gregord3b036e2013-01-18 04:34:14 +0000121 MacroInfo *Prev = Hint? Hint : StoredMI;
122 while (Prev->getPreviousDefinition())
123 Prev = Prev->getPreviousDefinition();
124 Prev->setPreviousDefinition(MI);
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000125}
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;
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000500 bool ContainsCodeCompletionTok = false;
Joao Matos3e1ec722012-08-31 21:34:27 +0000501
502 unsigned NumActuals = 0;
503 while (Tok.isNot(tok::r_paren)) {
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000504 if (ContainsCodeCompletionTok && (Tok.is(tok::eof) || Tok.is(tok::eod)))
505 break;
506
Joao Matos3e1ec722012-08-31 21:34:27 +0000507 assert((Tok.is(tok::l_paren) || Tok.is(tok::comma)) &&
508 "only expect argument separators here");
509
510 unsigned ArgTokenStart = ArgTokens.size();
511 SourceLocation ArgStartLoc = Tok.getLocation();
512
513 // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note
514 // that we already consumed the first one.
515 unsigned NumParens = 0;
516
517 while (1) {
518 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
519 // an argument value in a macro could expand to ',' or '(' or ')'.
520 LexUnexpandedToken(Tok);
521
522 if (Tok.is(tok::eof) || Tok.is(tok::eod)) { // "#if f(<eof>" & "#if f(\n"
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000523 if (!ContainsCodeCompletionTok) {
524 Diag(MacroName, diag::err_unterm_macro_invoc);
525 Diag(MI->getDefinitionLoc(), diag::note_macro_here)
526 << MacroName.getIdentifierInfo();
527 // Do not lose the EOF/EOD. Return it to the client.
528 MacroName = Tok;
529 return 0;
530 } else {
Argyrios Kyrtzidisbb06b502012-12-22 04:48:10 +0000531 // Do not lose the EOF/EOD.
532 Token *Toks = new Token[1];
533 Toks[0] = Tok;
534 EnterTokenStream(Toks, 1, true, true);
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000535 break;
536 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000537 } else if (Tok.is(tok::r_paren)) {
538 // If we found the ) token, the macro arg list is done.
539 if (NumParens-- == 0) {
540 MacroEnd = Tok.getLocation();
541 break;
542 }
543 } else if (Tok.is(tok::l_paren)) {
544 ++NumParens;
Nico Weber93dec512012-09-26 08:19:01 +0000545 } else if (Tok.is(tok::comma) && NumParens == 0) {
Joao Matos3e1ec722012-08-31 21:34:27 +0000546 // Comma ends this argument if there are more fixed arguments expected.
547 // However, if this is a variadic macro, and this is part of the
548 // variadic part, then the comma is just an argument token.
549 if (!isVariadic) break;
550 if (NumFixedArgsLeft > 1)
551 break;
552 } else if (Tok.is(tok::comment) && !KeepMacroComments) {
553 // If this is a comment token in the argument list and we're just in
554 // -C mode (not -CC mode), discard the comment.
555 continue;
556 } else if (Tok.getIdentifierInfo() != 0) {
557 // Reading macro arguments can cause macros that we are currently
558 // expanding from to be popped off the expansion stack. Doing so causes
559 // them to be reenabled for expansion. Here we record whether any
560 // identifiers we lex as macro arguments correspond to disabled macros.
561 // If so, we mark the token as noexpand. This is a subtle aspect of
562 // C99 6.10.3.4p2.
563 if (MacroInfo *MI = getMacroInfo(Tok.getIdentifierInfo()))
564 if (!MI->isEnabled())
565 Tok.setFlag(Token::DisableExpand);
566 } else if (Tok.is(tok::code_completion)) {
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000567 ContainsCodeCompletionTok = true;
Joao Matos3e1ec722012-08-31 21:34:27 +0000568 if (CodeComplete)
569 CodeComplete->CodeCompleteMacroArgument(MacroName.getIdentifierInfo(),
570 MI, NumActuals);
571 // Don't mark that we reached the code-completion point because the
572 // parser is going to handle the token and there will be another
573 // code-completion callback.
574 }
575
576 ArgTokens.push_back(Tok);
577 }
578
579 // If this was an empty argument list foo(), don't add this as an empty
580 // argument.
581 if (ArgTokens.empty() && Tok.getKind() == tok::r_paren)
582 break;
583
584 // If this is not a variadic macro, and too many args were specified, emit
585 // an error.
586 if (!isVariadic && NumFixedArgsLeft == 0) {
587 if (ArgTokens.size() != ArgTokenStart)
588 ArgStartLoc = ArgTokens[ArgTokenStart].getLocation();
589
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000590 if (!ContainsCodeCompletionTok) {
591 // Emit the diagnostic at the macro name in case there is a missing ).
592 // Emitting it at the , could be far away from the macro name.
593 Diag(ArgStartLoc, diag::err_too_many_args_in_macro_invoc);
594 Diag(MI->getDefinitionLoc(), diag::note_macro_here)
595 << MacroName.getIdentifierInfo();
596 return 0;
597 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000598 }
599
600 // Empty arguments are standard in C99 and C++0x, and are supported as an extension in
601 // other modes.
602 if (ArgTokens.size() == ArgTokenStart && !LangOpts.C99)
Richard Smith80ad52f2013-01-02 11:42:31 +0000603 Diag(Tok, LangOpts.CPlusPlus11 ?
Joao Matos3e1ec722012-08-31 21:34:27 +0000604 diag::warn_cxx98_compat_empty_fnmacro_arg :
605 diag::ext_empty_fnmacro_arg);
606
607 // Add a marker EOF token to the end of the token list for this argument.
608 Token EOFTok;
609 EOFTok.startToken();
610 EOFTok.setKind(tok::eof);
611 EOFTok.setLocation(Tok.getLocation());
612 EOFTok.setLength(0);
613 ArgTokens.push_back(EOFTok);
614 ++NumActuals;
615 assert(NumFixedArgsLeft != 0 && "Too many arguments parsed");
616 --NumFixedArgsLeft;
617 }
618
619 // Okay, we either found the r_paren. Check to see if we parsed too few
620 // arguments.
621 unsigned MinArgsExpected = MI->getNumArgs();
622
623 // See MacroArgs instance var for description of this.
624 bool isVarargsElided = false;
625
Argyrios Kyrtzidisf1e5b152012-12-21 01:51:12 +0000626 if (ContainsCodeCompletionTok) {
627 // Recover from not-fully-formed macro invocation during code-completion.
628 Token EOFTok;
629 EOFTok.startToken();
630 EOFTok.setKind(tok::eof);
631 EOFTok.setLocation(Tok.getLocation());
632 EOFTok.setLength(0);
633 for (; NumActuals < MinArgsExpected; ++NumActuals)
634 ArgTokens.push_back(EOFTok);
635 }
636
Joao Matos3e1ec722012-08-31 21:34:27 +0000637 if (NumActuals < MinArgsExpected) {
638 // There are several cases where too few arguments is ok, handle them now.
639 if (NumActuals == 0 && MinArgsExpected == 1) {
640 // #define A(X) or #define A(...) ---> A()
641
642 // If there is exactly one argument, and that argument is missing,
643 // then we have an empty "()" argument empty list. This is fine, even if
644 // the macro expects one argument (the argument is just empty).
645 isVarargsElided = MI->isVariadic();
646 } else if (MI->isVariadic() &&
647 (NumActuals+1 == MinArgsExpected || // A(x, ...) -> A(X)
648 (NumActuals == 0 && MinArgsExpected == 2))) {// A(x,...) -> A()
649 // Varargs where the named vararg parameter is missing: OK as extension.
650 // #define A(x, ...)
651 // A("blah")
Eli Friedman4fa4b482012-11-14 02:18:46 +0000652 //
653 // If the macro contains the comma pasting extension, the diagnostic
654 // is suppressed; we know we'll get another diagnostic later.
655 if (!MI->hasCommaPasting()) {
656 Diag(Tok, diag::ext_missing_varargs_arg);
657 Diag(MI->getDefinitionLoc(), diag::note_macro_here)
658 << MacroName.getIdentifierInfo();
659 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000660
661 // Remember this occurred, allowing us to elide the comma when used for
662 // cases like:
663 // #define A(x, foo...) blah(a, ## foo)
664 // #define B(x, ...) blah(a, ## __VA_ARGS__)
665 // #define C(...) blah(a, ## __VA_ARGS__)
666 // A(x) B(x) C()
667 isVarargsElided = true;
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000668 } else if (!ContainsCodeCompletionTok) {
Joao Matos3e1ec722012-08-31 21:34:27 +0000669 // Otherwise, emit the error.
670 Diag(Tok, diag::err_too_few_args_in_macro_invoc);
Argyrios Kyrtzidis0ee8de72012-12-14 18:53:47 +0000671 Diag(MI->getDefinitionLoc(), diag::note_macro_here)
672 << MacroName.getIdentifierInfo();
Joao Matos3e1ec722012-08-31 21:34:27 +0000673 return 0;
674 }
675
676 // Add a marker EOF token to the end of the token list for this argument.
677 SourceLocation EndLoc = Tok.getLocation();
678 Tok.startToken();
679 Tok.setKind(tok::eof);
680 Tok.setLocation(EndLoc);
681 Tok.setLength(0);
682 ArgTokens.push_back(Tok);
683
684 // If we expect two arguments, add both as empty.
685 if (NumActuals == 0 && MinArgsExpected == 2)
686 ArgTokens.push_back(Tok);
687
Argyrios Kyrtzidiscd0fd182012-12-21 01:17:20 +0000688 } else if (NumActuals > MinArgsExpected && !MI->isVariadic() &&
689 !ContainsCodeCompletionTok) {
Joao Matos3e1ec722012-08-31 21:34:27 +0000690 // Emit the diagnostic at the macro name in case there is a missing ).
691 // Emitting it at the , could be far away from the macro name.
692 Diag(MacroName, diag::err_too_many_args_in_macro_invoc);
Argyrios Kyrtzidis0ee8de72012-12-14 18:53:47 +0000693 Diag(MI->getDefinitionLoc(), diag::note_macro_here)
694 << MacroName.getIdentifierInfo();
Joao Matos3e1ec722012-08-31 21:34:27 +0000695 return 0;
696 }
697
698 return MacroArgs::create(MI, ArgTokens, isVarargsElided, *this);
699}
700
701/// \brief Keeps macro expanded tokens for TokenLexers.
702//
703/// Works like a stack; a TokenLexer adds the macro expanded tokens that is
704/// going to lex in the cache and when it finishes the tokens are removed
705/// from the end of the cache.
706Token *Preprocessor::cacheMacroExpandedTokens(TokenLexer *tokLexer,
707 ArrayRef<Token> tokens) {
708 assert(tokLexer);
709 if (tokens.empty())
710 return 0;
711
712 size_t newIndex = MacroExpandedTokens.size();
713 bool cacheNeedsToGrow = tokens.size() >
714 MacroExpandedTokens.capacity()-MacroExpandedTokens.size();
715 MacroExpandedTokens.append(tokens.begin(), tokens.end());
716
717 if (cacheNeedsToGrow) {
718 // Go through all the TokenLexers whose 'Tokens' pointer points in the
719 // buffer and update the pointers to the (potential) new buffer array.
720 for (unsigned i = 0, e = MacroExpandingLexersStack.size(); i != e; ++i) {
721 TokenLexer *prevLexer;
722 size_t tokIndex;
723 llvm::tie(prevLexer, tokIndex) = MacroExpandingLexersStack[i];
724 prevLexer->Tokens = MacroExpandedTokens.data() + tokIndex;
725 }
726 }
727
728 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex));
729 return MacroExpandedTokens.data() + newIndex;
730}
731
732void Preprocessor::removeCachedMacroExpandedTokensOfLastLexer() {
733 assert(!MacroExpandingLexersStack.empty());
734 size_t tokIndex = MacroExpandingLexersStack.back().second;
735 assert(tokIndex < MacroExpandedTokens.size());
736 // Pop the cached macro expanded tokens from the end.
737 MacroExpandedTokens.resize(tokIndex);
738 MacroExpandingLexersStack.pop_back();
739}
740
741/// ComputeDATE_TIME - Compute the current time, enter it into the specified
742/// scratch buffer, then return DATELoc/TIMELoc locations with the position of
743/// the identifier tokens inserted.
744static void ComputeDATE_TIME(SourceLocation &DATELoc, SourceLocation &TIMELoc,
745 Preprocessor &PP) {
746 time_t TT = time(0);
747 struct tm *TM = localtime(&TT);
748
749 static const char * const Months[] = {
750 "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
751 };
752
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000753 {
754 SmallString<32> TmpBuffer;
755 llvm::raw_svector_ostream TmpStream(TmpBuffer);
756 TmpStream << llvm::format("\"%s %2d %4d\"", Months[TM->tm_mon],
757 TM->tm_mday, TM->tm_year + 1900);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000758 Token TmpTok;
759 TmpTok.startToken();
Dmitri Gribenko374b3832012-09-24 21:07:17 +0000760 PP.CreateString(TmpStream.str(), TmpTok);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000761 DATELoc = TmpTok.getLocation();
762 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000763
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000764 {
765 SmallString<32> TmpBuffer;
766 llvm::raw_svector_ostream TmpStream(TmpBuffer);
767 TmpStream << llvm::format("\"%02d:%02d:%02d\"",
768 TM->tm_hour, TM->tm_min, TM->tm_sec);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000769 Token TmpTok;
770 TmpTok.startToken();
Dmitri Gribenko374b3832012-09-24 21:07:17 +0000771 PP.CreateString(TmpStream.str(), TmpTok);
Dmitri Gribenko33d054b2012-09-24 20:56:28 +0000772 TIMELoc = TmpTok.getLocation();
773 }
Joao Matos3e1ec722012-08-31 21:34:27 +0000774}
775
776
777/// HasFeature - Return true if we recognize and implement the feature
778/// specified by the identifier as a standard language feature.
779static bool HasFeature(const Preprocessor &PP, const IdentifierInfo *II) {
780 const LangOptions &LangOpts = PP.getLangOpts();
781 StringRef Feature = II->getName();
782
783 // Normalize the feature name, __foo__ becomes foo.
784 if (Feature.startswith("__") && Feature.endswith("__") && Feature.size() >= 4)
785 Feature = Feature.substr(2, Feature.size() - 4);
786
787 return llvm::StringSwitch<bool>(Feature)
Will Dietz4f45bc02013-01-18 11:30:38 +0000788 .Case("address_sanitizer", LangOpts.Sanitize.Address)
Joao Matos3e1ec722012-08-31 21:34:27 +0000789 .Case("attribute_analyzer_noreturn", true)
790 .Case("attribute_availability", true)
791 .Case("attribute_availability_with_message", true)
792 .Case("attribute_cf_returns_not_retained", true)
793 .Case("attribute_cf_returns_retained", true)
794 .Case("attribute_deprecated_with_message", true)
795 .Case("attribute_ext_vector_type", true)
796 .Case("attribute_ns_returns_not_retained", true)
797 .Case("attribute_ns_returns_retained", true)
798 .Case("attribute_ns_consumes_self", true)
799 .Case("attribute_ns_consumed", true)
800 .Case("attribute_cf_consumed", true)
801 .Case("attribute_objc_ivar_unused", true)
802 .Case("attribute_objc_method_family", true)
803 .Case("attribute_overloadable", true)
804 .Case("attribute_unavailable_with_message", true)
805 .Case("attribute_unused_on_fields", true)
806 .Case("blocks", LangOpts.Blocks)
807 .Case("cxx_exceptions", LangOpts.Exceptions)
808 .Case("cxx_rtti", LangOpts.RTTI)
809 .Case("enumerator_attributes", true)
Will Dietz4f45bc02013-01-18 11:30:38 +0000810 .Case("memory_sanitizer", LangOpts.Sanitize.Memory)
811 .Case("thread_sanitizer", LangOpts.Sanitize.Thread)
Joao Matos3e1ec722012-08-31 21:34:27 +0000812 // Objective-C features
813 .Case("objc_arr", LangOpts.ObjCAutoRefCount) // FIXME: REMOVE?
814 .Case("objc_arc", LangOpts.ObjCAutoRefCount)
815 .Case("objc_arc_weak", LangOpts.ObjCARCWeak)
816 .Case("objc_default_synthesize_properties", LangOpts.ObjC2)
817 .Case("objc_fixed_enum", LangOpts.ObjC2)
818 .Case("objc_instancetype", LangOpts.ObjC2)
819 .Case("objc_modules", LangOpts.ObjC2 && LangOpts.Modules)
820 .Case("objc_nonfragile_abi", LangOpts.ObjCRuntime.isNonFragile())
Ted Kremeneke4057c22013-01-04 19:04:44 +0000821 .Case("objc_property_explicit_atomic", true) // Does clang support explicit "atomic" keyword?
Joao Matos3e1ec722012-08-31 21:34:27 +0000822 .Case("objc_weak_class", LangOpts.ObjCRuntime.hasWeakClassImport())
823 .Case("ownership_holds", true)
824 .Case("ownership_returns", true)
825 .Case("ownership_takes", true)
826 .Case("objc_bool", true)
827 .Case("objc_subscripting", LangOpts.ObjCRuntime.isNonFragile())
828 .Case("objc_array_literals", LangOpts.ObjC2)
829 .Case("objc_dictionary_literals", LangOpts.ObjC2)
830 .Case("objc_boxed_expressions", LangOpts.ObjC2)
831 .Case("arc_cf_code_audited", true)
832 // C11 features
833 .Case("c_alignas", LangOpts.C11)
834 .Case("c_atomic", LangOpts.C11)
835 .Case("c_generic_selections", LangOpts.C11)
836 .Case("c_static_assert", LangOpts.C11)
837 // C++11 features
Richard Smith80ad52f2013-01-02 11:42:31 +0000838 .Case("cxx_access_control_sfinae", LangOpts.CPlusPlus11)
839 .Case("cxx_alias_templates", LangOpts.CPlusPlus11)
840 .Case("cxx_alignas", LangOpts.CPlusPlus11)
841 .Case("cxx_atomic", LangOpts.CPlusPlus11)
842 .Case("cxx_attributes", LangOpts.CPlusPlus11)
843 .Case("cxx_auto_type", LangOpts.CPlusPlus11)
844 .Case("cxx_constexpr", LangOpts.CPlusPlus11)
845 .Case("cxx_decltype", LangOpts.CPlusPlus11)
846 .Case("cxx_decltype_incomplete_return_types", LangOpts.CPlusPlus11)
847 .Case("cxx_default_function_template_args", LangOpts.CPlusPlus11)
848 .Case("cxx_defaulted_functions", LangOpts.CPlusPlus11)
849 .Case("cxx_delegating_constructors", LangOpts.CPlusPlus11)
850 .Case("cxx_deleted_functions", LangOpts.CPlusPlus11)
851 .Case("cxx_explicit_conversions", LangOpts.CPlusPlus11)
852 .Case("cxx_generalized_initializers", LangOpts.CPlusPlus11)
853 .Case("cxx_implicit_moves", LangOpts.CPlusPlus11)
Joao Matos3e1ec722012-08-31 21:34:27 +0000854 //.Case("cxx_inheriting_constructors", false)
Richard Smith80ad52f2013-01-02 11:42:31 +0000855 .Case("cxx_inline_namespaces", LangOpts.CPlusPlus11)
856 .Case("cxx_lambdas", LangOpts.CPlusPlus11)
857 .Case("cxx_local_type_template_args", LangOpts.CPlusPlus11)
858 .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus11)
859 .Case("cxx_noexcept", LangOpts.CPlusPlus11)
860 .Case("cxx_nullptr", LangOpts.CPlusPlus11)
861 .Case("cxx_override_control", LangOpts.CPlusPlus11)
862 .Case("cxx_range_for", LangOpts.CPlusPlus11)
863 .Case("cxx_raw_string_literals", LangOpts.CPlusPlus11)
864 .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus11)
865 .Case("cxx_rvalue_references", LangOpts.CPlusPlus11)
866 .Case("cxx_strong_enums", LangOpts.CPlusPlus11)
867 .Case("cxx_static_assert", LangOpts.CPlusPlus11)
868 .Case("cxx_trailing_return", LangOpts.CPlusPlus11)
869 .Case("cxx_unicode_literals", LangOpts.CPlusPlus11)
870 .Case("cxx_unrestricted_unions", LangOpts.CPlusPlus11)
871 .Case("cxx_user_literals", LangOpts.CPlusPlus11)
872 .Case("cxx_variadic_templates", LangOpts.CPlusPlus11)
Joao Matos3e1ec722012-08-31 21:34:27 +0000873 // Type traits
874 .Case("has_nothrow_assign", LangOpts.CPlusPlus)
875 .Case("has_nothrow_copy", LangOpts.CPlusPlus)
876 .Case("has_nothrow_constructor", LangOpts.CPlusPlus)
877 .Case("has_trivial_assign", LangOpts.CPlusPlus)
878 .Case("has_trivial_copy", LangOpts.CPlusPlus)
879 .Case("has_trivial_constructor", LangOpts.CPlusPlus)
880 .Case("has_trivial_destructor", LangOpts.CPlusPlus)
881 .Case("has_virtual_destructor", LangOpts.CPlusPlus)
882 .Case("is_abstract", LangOpts.CPlusPlus)
883 .Case("is_base_of", LangOpts.CPlusPlus)
884 .Case("is_class", LangOpts.CPlusPlus)
885 .Case("is_convertible_to", LangOpts.CPlusPlus)
Joao Matos3e1ec722012-08-31 21:34:27 +0000886 .Case("is_empty", LangOpts.CPlusPlus)
887 .Case("is_enum", LangOpts.CPlusPlus)
888 .Case("is_final", LangOpts.CPlusPlus)
889 .Case("is_literal", LangOpts.CPlusPlus)
890 .Case("is_standard_layout", LangOpts.CPlusPlus)
891 .Case("is_pod", LangOpts.CPlusPlus)
892 .Case("is_polymorphic", LangOpts.CPlusPlus)
893 .Case("is_trivial", LangOpts.CPlusPlus)
894 .Case("is_trivially_assignable", LangOpts.CPlusPlus)
895 .Case("is_trivially_constructible", LangOpts.CPlusPlus)
896 .Case("is_trivially_copyable", LangOpts.CPlusPlus)
897 .Case("is_union", LangOpts.CPlusPlus)
898 .Case("modules", LangOpts.Modules)
899 .Case("tls", PP.getTargetInfo().isTLSSupported())
900 .Case("underlying_type", LangOpts.CPlusPlus)
901 .Default(false);
902}
903
904/// HasExtension - Return true if we recognize and implement the feature
905/// specified by the identifier, either as an extension or a standard language
906/// feature.
907static bool HasExtension(const Preprocessor &PP, const IdentifierInfo *II) {
908 if (HasFeature(PP, II))
909 return true;
910
911 // If the use of an extension results in an error diagnostic, extensions are
912 // effectively unavailable, so just return false here.
913 if (PP.getDiagnostics().getExtensionHandlingBehavior() ==
914 DiagnosticsEngine::Ext_Error)
915 return false;
916
917 const LangOptions &LangOpts = PP.getLangOpts();
918 StringRef Extension = II->getName();
919
920 // Normalize the extension name, __foo__ becomes foo.
921 if (Extension.startswith("__") && Extension.endswith("__") &&
922 Extension.size() >= 4)
923 Extension = Extension.substr(2, Extension.size() - 4);
924
925 // Because we inherit the feature list from HasFeature, this string switch
926 // must be less restrictive than HasFeature's.
927 return llvm::StringSwitch<bool>(Extension)
928 // C11 features supported by other languages as extensions.
929 .Case("c_alignas", true)
930 .Case("c_atomic", true)
931 .Case("c_generic_selections", true)
932 .Case("c_static_assert", true)
933 // C++0x features supported by other languages as extensions.
934 .Case("cxx_atomic", LangOpts.CPlusPlus)
935 .Case("cxx_deleted_functions", LangOpts.CPlusPlus)
936 .Case("cxx_explicit_conversions", LangOpts.CPlusPlus)
937 .Case("cxx_inline_namespaces", LangOpts.CPlusPlus)
938 .Case("cxx_local_type_template_args", LangOpts.CPlusPlus)
939 .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus)
940 .Case("cxx_override_control", LangOpts.CPlusPlus)
941 .Case("cxx_range_for", LangOpts.CPlusPlus)
942 .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus)
943 .Case("cxx_rvalue_references", LangOpts.CPlusPlus)
944 .Default(false);
945}
946
947/// HasAttribute - Return true if we recognize and implement the attribute
948/// specified by the given identifier.
949static bool HasAttribute(const IdentifierInfo *II) {
950 StringRef Name = II->getName();
951 // Normalize the attribute name, __foo__ becomes foo.
952 if (Name.startswith("__") && Name.endswith("__") && Name.size() >= 4)
953 Name = Name.substr(2, Name.size() - 4);
954
955 // FIXME: Do we need to handle namespaces here?
956 return llvm::StringSwitch<bool>(Name)
957#include "clang/Lex/AttrSpellings.inc"
958 .Default(false);
959}
960
961/// EvaluateHasIncludeCommon - Process a '__has_include("path")'
962/// or '__has_include_next("path")' expression.
963/// Returns true if successful.
964static bool EvaluateHasIncludeCommon(Token &Tok,
965 IdentifierInfo *II, Preprocessor &PP,
966 const DirectoryLookup *LookupFrom) {
Richard Trieu97bc3d52012-10-22 20:28:48 +0000967 // Save the location of the current token. If a '(' is later found, use
Aaron Ballman6b716c52013-01-15 21:59:46 +0000968 // that location. If not, use the end of this location instead.
Richard Trieu97bc3d52012-10-22 20:28:48 +0000969 SourceLocation LParenLoc = Tok.getLocation();
Joao Matos3e1ec722012-08-31 21:34:27 +0000970
Aaron Ballman31672b12013-01-16 19:32:21 +0000971 // These expressions are only allowed within a preprocessor directive.
972 if (!PP.isParsingIfOrElifDirective()) {
973 PP.Diag(LParenLoc, diag::err_pp_directive_required) << II->getName();
974 return false;
975 }
976
Joao Matos3e1ec722012-08-31 21:34:27 +0000977 // Get '('.
978 PP.LexNonComment(Tok);
979
980 // Ensure we have a '('.
981 if (Tok.isNot(tok::l_paren)) {
Richard Trieu97bc3d52012-10-22 20:28:48 +0000982 // No '(', use end of last token.
983 LParenLoc = PP.getLocForEndOfToken(LParenLoc);
984 PP.Diag(LParenLoc, diag::err_pp_missing_lparen) << II->getName();
985 // If the next token looks like a filename or the start of one,
986 // assume it is and process it as such.
987 if (!Tok.is(tok::angle_string_literal) && !Tok.is(tok::string_literal) &&
988 !Tok.is(tok::less))
989 return false;
990 } else {
991 // Save '(' location for possible missing ')' message.
992 LParenLoc = Tok.getLocation();
993
Eli Friedmana0f2d022013-01-09 02:20:00 +0000994 if (PP.getCurrentLexer()) {
995 // Get the file name.
996 PP.getCurrentLexer()->LexIncludeFilename(Tok);
997 } else {
998 // We're in a macro, so we can't use LexIncludeFilename; just
999 // grab the next token.
1000 PP.Lex(Tok);
1001 }
Joao Matos3e1ec722012-08-31 21:34:27 +00001002 }
1003
Joao Matos3e1ec722012-08-31 21:34:27 +00001004 // Reserve a buffer to get the spelling.
1005 SmallString<128> FilenameBuffer;
1006 StringRef Filename;
1007 SourceLocation EndLoc;
1008
1009 switch (Tok.getKind()) {
1010 case tok::eod:
1011 // If the token kind is EOD, the error has already been diagnosed.
1012 return false;
1013
1014 case tok::angle_string_literal:
1015 case tok::string_literal: {
1016 bool Invalid = false;
1017 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
1018 if (Invalid)
1019 return false;
1020 break;
1021 }
1022
1023 case tok::less:
1024 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1025 // case, glue the tokens together into FilenameBuffer and interpret those.
1026 FilenameBuffer.push_back('<');
Richard Trieu97bc3d52012-10-22 20:28:48 +00001027 if (PP.ConcatenateIncludeName(FilenameBuffer, EndLoc)) {
1028 // Let the caller know a <eod> was found by changing the Token kind.
1029 Tok.setKind(tok::eod);
Joao Matos3e1ec722012-08-31 21:34:27 +00001030 return false; // Found <eod> but no ">"? Diagnostic already emitted.
Richard Trieu97bc3d52012-10-22 20:28:48 +00001031 }
Joao Matos3e1ec722012-08-31 21:34:27 +00001032 Filename = FilenameBuffer.str();
1033 break;
1034 default:
1035 PP.Diag(Tok.getLocation(), diag::err_pp_expects_filename);
1036 return false;
1037 }
1038
Richard Trieu97bc3d52012-10-22 20:28:48 +00001039 SourceLocation FilenameLoc = Tok.getLocation();
1040
Joao Matos3e1ec722012-08-31 21:34:27 +00001041 // Get ')'.
1042 PP.LexNonComment(Tok);
1043
1044 // Ensure we have a trailing ).
1045 if (Tok.isNot(tok::r_paren)) {
Richard Trieu97bc3d52012-10-22 20:28:48 +00001046 PP.Diag(PP.getLocForEndOfToken(FilenameLoc), diag::err_pp_missing_rparen)
1047 << II->getName();
Joao Matos3e1ec722012-08-31 21:34:27 +00001048 PP.Diag(LParenLoc, diag::note_matching) << "(";
1049 return false;
1050 }
1051
1052 bool isAngled = PP.GetIncludeFilenameSpelling(Tok.getLocation(), Filename);
1053 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1054 // error.
1055 if (Filename.empty())
1056 return false;
1057
1058 // Search include directories.
1059 const DirectoryLookup *CurDir;
1060 const FileEntry *File =
1061 PP.LookupFile(Filename, isAngled, LookupFrom, CurDir, NULL, NULL, NULL);
1062
1063 // Get the result value. A result of true means the file exists.
1064 return File != 0;
1065}
1066
1067/// EvaluateHasInclude - Process a '__has_include("path")' expression.
1068/// Returns true if successful.
1069static bool EvaluateHasInclude(Token &Tok, IdentifierInfo *II,
1070 Preprocessor &PP) {
1071 return EvaluateHasIncludeCommon(Tok, II, PP, NULL);
1072}
1073
1074/// EvaluateHasIncludeNext - Process '__has_include_next("path")' expression.
1075/// Returns true if successful.
1076static bool EvaluateHasIncludeNext(Token &Tok,
1077 IdentifierInfo *II, Preprocessor &PP) {
1078 // __has_include_next is like __has_include, except that we start
1079 // searching after the current found directory. If we can't do this,
1080 // issue a diagnostic.
1081 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
1082 if (PP.isInPrimaryFile()) {
1083 Lookup = 0;
1084 PP.Diag(Tok, diag::pp_include_next_in_primary);
1085 } else if (Lookup == 0) {
1086 PP.Diag(Tok, diag::pp_include_next_absolute_path);
1087 } else {
1088 // Start looking up in the next directory.
1089 ++Lookup;
1090 }
1091
1092 return EvaluateHasIncludeCommon(Tok, II, PP, Lookup);
1093}
1094
Douglas Gregorb09de512012-09-25 15:44:52 +00001095/// \brief Process __building_module(identifier) expression.
1096/// \returns true if we are building the named module, false otherwise.
1097static bool EvaluateBuildingModule(Token &Tok,
1098 IdentifierInfo *II, Preprocessor &PP) {
1099 // Get '('.
1100 PP.LexNonComment(Tok);
1101
1102 // Ensure we have a '('.
1103 if (Tok.isNot(tok::l_paren)) {
1104 PP.Diag(Tok.getLocation(), diag::err_pp_missing_lparen) << II->getName();
1105 return false;
1106 }
1107
1108 // Save '(' location for possible missing ')' message.
1109 SourceLocation LParenLoc = Tok.getLocation();
1110
1111 // Get the module name.
1112 PP.LexNonComment(Tok);
1113
1114 // Ensure that we have an identifier.
1115 if (Tok.isNot(tok::identifier)) {
1116 PP.Diag(Tok.getLocation(), diag::err_expected_id_building_module);
1117 return false;
1118 }
1119
1120 bool Result
1121 = Tok.getIdentifierInfo()->getName() == PP.getLangOpts().CurrentModule;
1122
1123 // Get ')'.
1124 PP.LexNonComment(Tok);
1125
1126 // Ensure we have a trailing ).
1127 if (Tok.isNot(tok::r_paren)) {
1128 PP.Diag(Tok.getLocation(), diag::err_pp_missing_rparen) << II->getName();
1129 PP.Diag(LParenLoc, diag::note_matching) << "(";
1130 return false;
1131 }
1132
1133 return Result;
1134}
1135
Joao Matos3e1ec722012-08-31 21:34:27 +00001136/// ExpandBuiltinMacro - If an identifier token is read that is to be expanded
1137/// as a builtin macro, handle it and return the next token as 'Tok'.
1138void Preprocessor::ExpandBuiltinMacro(Token &Tok) {
1139 // Figure out which token this is.
1140 IdentifierInfo *II = Tok.getIdentifierInfo();
1141 assert(II && "Can't be a macro without id info!");
1142
1143 // If this is an _Pragma or Microsoft __pragma directive, expand it,
1144 // invoke the pragma handler, then lex the token after it.
1145 if (II == Ident_Pragma)
1146 return Handle_Pragma(Tok);
1147 else if (II == Ident__pragma) // in non-MS mode this is null
1148 return HandleMicrosoft__pragma(Tok);
1149
1150 ++NumBuiltinMacroExpanded;
1151
1152 SmallString<128> TmpBuffer;
1153 llvm::raw_svector_ostream OS(TmpBuffer);
1154
1155 // Set up the return result.
1156 Tok.setIdentifierInfo(0);
1157 Tok.clearFlag(Token::NeedsCleaning);
1158
1159 if (II == Ident__LINE__) {
1160 // C99 6.10.8: "__LINE__: The presumed line number (within the current
1161 // source file) of the current source line (an integer constant)". This can
1162 // be affected by #line.
1163 SourceLocation Loc = Tok.getLocation();
1164
1165 // Advance to the location of the first _, this might not be the first byte
1166 // of the token if it starts with an escaped newline.
1167 Loc = AdvanceToTokenCharacter(Loc, 0);
1168
1169 // One wrinkle here is that GCC expands __LINE__ to location of the *end* of
1170 // a macro expansion. This doesn't matter for object-like macros, but
1171 // can matter for a function-like macro that expands to contain __LINE__.
1172 // Skip down through expansion points until we find a file loc for the
1173 // end of the expansion history.
1174 Loc = SourceMgr.getExpansionRange(Loc).second;
1175 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc);
1176
1177 // __LINE__ expands to a simple numeric value.
1178 OS << (PLoc.isValid()? PLoc.getLine() : 1);
1179 Tok.setKind(tok::numeric_constant);
1180 } else if (II == Ident__FILE__ || II == Ident__BASE_FILE__) {
1181 // C99 6.10.8: "__FILE__: The presumed name of the current source file (a
1182 // character string literal)". This can be affected by #line.
1183 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
1184
1185 // __BASE_FILE__ is a GNU extension that returns the top of the presumed
1186 // #include stack instead of the current file.
1187 if (II == Ident__BASE_FILE__ && PLoc.isValid()) {
1188 SourceLocation NextLoc = PLoc.getIncludeLoc();
1189 while (NextLoc.isValid()) {
1190 PLoc = SourceMgr.getPresumedLoc(NextLoc);
1191 if (PLoc.isInvalid())
1192 break;
1193
1194 NextLoc = PLoc.getIncludeLoc();
1195 }
1196 }
1197
1198 // Escape this filename. Turn '\' -> '\\' '"' -> '\"'
1199 SmallString<128> FN;
1200 if (PLoc.isValid()) {
1201 FN += PLoc.getFilename();
1202 Lexer::Stringify(FN);
1203 OS << '"' << FN.str() << '"';
1204 }
1205 Tok.setKind(tok::string_literal);
1206 } else if (II == Ident__DATE__) {
1207 if (!DATELoc.isValid())
1208 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
1209 Tok.setKind(tok::string_literal);
1210 Tok.setLength(strlen("\"Mmm dd yyyy\""));
1211 Tok.setLocation(SourceMgr.createExpansionLoc(DATELoc, Tok.getLocation(),
1212 Tok.getLocation(),
1213 Tok.getLength()));
1214 return;
1215 } else if (II == Ident__TIME__) {
1216 if (!TIMELoc.isValid())
1217 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
1218 Tok.setKind(tok::string_literal);
1219 Tok.setLength(strlen("\"hh:mm:ss\""));
1220 Tok.setLocation(SourceMgr.createExpansionLoc(TIMELoc, Tok.getLocation(),
1221 Tok.getLocation(),
1222 Tok.getLength()));
1223 return;
1224 } else if (II == Ident__INCLUDE_LEVEL__) {
1225 // Compute the presumed include depth of this token. This can be affected
1226 // by GNU line markers.
1227 unsigned Depth = 0;
1228
1229 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
1230 if (PLoc.isValid()) {
1231 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc());
1232 for (; PLoc.isValid(); ++Depth)
1233 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc());
1234 }
1235
1236 // __INCLUDE_LEVEL__ expands to a simple numeric value.
1237 OS << Depth;
1238 Tok.setKind(tok::numeric_constant);
1239 } else if (II == Ident__TIMESTAMP__) {
1240 // MSVC, ICC, GCC, VisualAge C++ extension. The generated string should be
1241 // of the form "Ddd Mmm dd hh::mm::ss yyyy", which is returned by asctime.
1242
1243 // Get the file that we are lexing out of. If we're currently lexing from
1244 // a macro, dig into the include stack.
1245 const FileEntry *CurFile = 0;
1246 PreprocessorLexer *TheLexer = getCurrentFileLexer();
1247
1248 if (TheLexer)
1249 CurFile = SourceMgr.getFileEntryForID(TheLexer->getFileID());
1250
1251 const char *Result;
1252 if (CurFile) {
1253 time_t TT = CurFile->getModificationTime();
1254 struct tm *TM = localtime(&TT);
1255 Result = asctime(TM);
1256 } else {
1257 Result = "??? ??? ?? ??:??:?? ????\n";
1258 }
1259 // Surround the string with " and strip the trailing newline.
1260 OS << '"' << StringRef(Result, strlen(Result)-1) << '"';
1261 Tok.setKind(tok::string_literal);
1262 } else if (II == Ident__COUNTER__) {
1263 // __COUNTER__ expands to a simple numeric value.
1264 OS << CounterValue++;
1265 Tok.setKind(tok::numeric_constant);
1266 } else if (II == Ident__has_feature ||
1267 II == Ident__has_extension ||
1268 II == Ident__has_builtin ||
1269 II == Ident__has_attribute) {
1270 // The argument to these builtins should be a parenthesized identifier.
1271 SourceLocation StartLoc = Tok.getLocation();
1272
1273 bool IsValid = false;
1274 IdentifierInfo *FeatureII = 0;
1275
1276 // Read the '('.
Andy Gibbs3f03b582012-11-17 19:18:27 +00001277 LexUnexpandedToken(Tok);
Joao Matos3e1ec722012-08-31 21:34:27 +00001278 if (Tok.is(tok::l_paren)) {
1279 // Read the identifier
Andy Gibbs3f03b582012-11-17 19:18:27 +00001280 LexUnexpandedToken(Tok);
Joao Matos3e1ec722012-08-31 21:34:27 +00001281 if (Tok.is(tok::identifier) || Tok.is(tok::kw_const)) {
1282 FeatureII = Tok.getIdentifierInfo();
1283
1284 // Read the ')'.
Andy Gibbs3f03b582012-11-17 19:18:27 +00001285 LexUnexpandedToken(Tok);
Joao Matos3e1ec722012-08-31 21:34:27 +00001286 if (Tok.is(tok::r_paren))
1287 IsValid = true;
1288 }
1289 }
1290
1291 bool Value = false;
1292 if (!IsValid)
1293 Diag(StartLoc, diag::err_feature_check_malformed);
1294 else if (II == Ident__has_builtin) {
1295 // Check for a builtin is trivial.
1296 Value = FeatureII->getBuiltinID() != 0;
1297 } else if (II == Ident__has_attribute)
1298 Value = HasAttribute(FeatureII);
1299 else if (II == Ident__has_extension)
1300 Value = HasExtension(*this, FeatureII);
1301 else {
1302 assert(II == Ident__has_feature && "Must be feature check");
1303 Value = HasFeature(*this, FeatureII);
1304 }
1305
1306 OS << (int)Value;
1307 if (IsValid)
1308 Tok.setKind(tok::numeric_constant);
1309 } else if (II == Ident__has_include ||
1310 II == Ident__has_include_next) {
1311 // The argument to these two builtins should be a parenthesized
1312 // file name string literal using angle brackets (<>) or
1313 // double-quotes ("").
1314 bool Value;
1315 if (II == Ident__has_include)
1316 Value = EvaluateHasInclude(Tok, II, *this);
1317 else
1318 Value = EvaluateHasIncludeNext(Tok, II, *this);
1319 OS << (int)Value;
Richard Trieu97bc3d52012-10-22 20:28:48 +00001320 if (Tok.is(tok::r_paren))
1321 Tok.setKind(tok::numeric_constant);
Joao Matos3e1ec722012-08-31 21:34:27 +00001322 } else if (II == Ident__has_warning) {
1323 // The argument should be a parenthesized string literal.
1324 // The argument to these builtins should be a parenthesized identifier.
1325 SourceLocation StartLoc = Tok.getLocation();
1326 bool IsValid = false;
1327 bool Value = false;
1328 // Read the '('.
Andy Gibbs02a17682012-11-17 19:15:38 +00001329 LexUnexpandedToken(Tok);
Joao Matos3e1ec722012-08-31 21:34:27 +00001330 do {
Andy Gibbs02a17682012-11-17 19:15:38 +00001331 if (Tok.isNot(tok::l_paren)) {
1332 Diag(StartLoc, diag::err_warning_check_malformed);
1333 break;
Joao Matos3e1ec722012-08-31 21:34:27 +00001334 }
Andy Gibbs02a17682012-11-17 19:15:38 +00001335
1336 LexUnexpandedToken(Tok);
1337 std::string WarningName;
1338 SourceLocation StrStartLoc = Tok.getLocation();
Andy Gibbs97f84612012-11-17 19:16:52 +00001339 if (!FinishLexStringLiteral(Tok, WarningName, "'__has_warning'",
1340 /*MacroExpansion=*/false)) {
Andy Gibbs02a17682012-11-17 19:15:38 +00001341 // Eat tokens until ')'.
Andy Gibbs6d534d42012-11-17 22:17:28 +00001342 while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::eod) &&
1343 Tok.isNot(tok::eof))
Andy Gibbs02a17682012-11-17 19:15:38 +00001344 LexUnexpandedToken(Tok);
1345 break;
1346 }
1347
1348 // Is the end a ')'?
1349 if (!(IsValid = Tok.is(tok::r_paren))) {
1350 Diag(StartLoc, diag::err_warning_check_malformed);
1351 break;
1352 }
1353
1354 if (WarningName.size() < 3 || WarningName[0] != '-' ||
1355 WarningName[1] != 'W') {
1356 Diag(StrStartLoc, diag::warn_has_warning_invalid_option);
1357 break;
1358 }
1359
1360 // Finally, check if the warning flags maps to a diagnostic group.
1361 // We construct a SmallVector here to talk to getDiagnosticIDs().
1362 // Although we don't use the result, this isn't a hot path, and not
1363 // worth special casing.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001364 SmallVector<diag::kind, 10> Diags;
Andy Gibbs02a17682012-11-17 19:15:38 +00001365 Value = !getDiagnostics().getDiagnosticIDs()->
1366 getDiagnosticsInGroup(WarningName.substr(2), Diags);
Joao Matos3e1ec722012-08-31 21:34:27 +00001367 } while (false);
Joao Matos3e1ec722012-08-31 21:34:27 +00001368
1369 OS << (int)Value;
Andy Gibbsb9971ba2012-11-17 19:14:53 +00001370 if (IsValid)
1371 Tok.setKind(tok::numeric_constant);
Douglas Gregorb09de512012-09-25 15:44:52 +00001372 } else if (II == Ident__building_module) {
1373 // The argument to this builtin should be an identifier. The
1374 // builtin evaluates to 1 when that identifier names the module we are
1375 // currently building.
1376 OS << (int)EvaluateBuildingModule(Tok, II, *this);
1377 Tok.setKind(tok::numeric_constant);
1378 } else if (II == Ident__MODULE__) {
1379 // The current module as an identifier.
1380 OS << getLangOpts().CurrentModule;
1381 IdentifierInfo *ModuleII = getIdentifierInfo(getLangOpts().CurrentModule);
1382 Tok.setIdentifierInfo(ModuleII);
1383 Tok.setKind(ModuleII->getTokenID());
Joao Matos3e1ec722012-08-31 21:34:27 +00001384 } else {
1385 llvm_unreachable("Unknown identifier!");
1386 }
Dmitri Gribenko374b3832012-09-24 21:07:17 +00001387 CreateString(OS.str(), Tok, Tok.getLocation(), Tok.getLocation());
Joao Matos3e1ec722012-08-31 21:34:27 +00001388}
1389
1390void Preprocessor::markMacroAsUsed(MacroInfo *MI) {
1391 // If the 'used' status changed, and the macro requires 'unused' warning,
1392 // remove its SourceLocation from the warn-for-unused-macro locations.
1393 if (MI->isWarnIfUnused() && !MI->isUsed())
1394 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
1395 MI->setIsUsed(true);
1396}