blob: e966ebb62ceab0f85972fc8c8d725e03efc641a6 [file] [log] [blame]
Chris Lattnera3b605e2008-03-09 03:13:06 +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"
Eric Christopher1f84f8d2010-06-24 02:02:00 +000020#include "clang/Basic/TargetInfo.h"
Chris Lattner500d3292009-01-29 05:15:15 +000021#include "clang/Lex/LexDiagnostic.h"
Douglas Gregorf29c5232010-08-24 22:20:20 +000022#include "clang/Lex/CodeCompletionHandler.h"
Douglas Gregor295a2a62010-10-30 00:23:06 +000023#include "clang/Lex/ExternalPreprocessorSource.h"
Benjamin Kramer32592e82010-01-09 18:53:11 +000024#include "llvm/ADT/StringSwitch.h"
Argyrios Kyrtzidis5b3284a2011-06-29 22:20:11 +000025#include "llvm/ADT/STLExtras.h"
Douglas Gregor6665ffb2010-11-09 05:43:53 +000026#include "llvm/Config/config.h"
Benjamin Kramerb1765912010-01-27 16:38:22 +000027#include "llvm/Support/raw_ostream.h"
Chris Lattner3daed522009-03-02 22:20:04 +000028#include <cstdio>
Chris Lattnerf90a2482008-03-18 05:59:11 +000029#include <ctime>
Chris Lattnera3b605e2008-03-09 03:13:06 +000030using namespace clang;
31
Douglas Gregor295a2a62010-10-30 00:23:06 +000032MacroInfo *Preprocessor::getInfoForMacro(IdentifierInfo *II) const {
33 assert(II->hasMacroDefinition() && "Identifier is not a macro!");
34
35 llvm::DenseMap<IdentifierInfo*, MacroInfo*>::const_iterator Pos
36 = Macros.find(II);
37 if (Pos == Macros.end()) {
38 // Load this macro from the external source.
39 getExternalSource()->LoadMacroDefinition(II);
40 Pos = Macros.find(II);
41 }
42 assert(Pos != Macros.end() && "Identifier macro info is missing!");
43 return Pos->second;
44}
45
Chris Lattnera3b605e2008-03-09 03:13:06 +000046/// setMacroInfo - Specify a macro for this identifier.
47///
48void Preprocessor::setMacroInfo(IdentifierInfo *II, MacroInfo *MI) {
Chris Lattner555589d2009-04-10 21:17:07 +000049 if (MI) {
Chris Lattnera3b605e2008-03-09 03:13:06 +000050 Macros[II] = MI;
51 II->setHasMacroDefinition(true);
Chris Lattner555589d2009-04-10 21:17:07 +000052 } else if (II->hasMacroDefinition()) {
53 Macros.erase(II);
54 II->setHasMacroDefinition(false);
Chris Lattnera3b605e2008-03-09 03:13:06 +000055 }
56}
57
58/// RegisterBuiltinMacro - Register the specified identifier in the identifier
59/// table and mark it as a builtin macro to be expanded.
Chris Lattner148772a2009-06-13 07:13:28 +000060static IdentifierInfo *RegisterBuiltinMacro(Preprocessor &PP, const char *Name){
Chris Lattnera3b605e2008-03-09 03:13:06 +000061 // Get the identifier.
Chris Lattner148772a2009-06-13 07:13:28 +000062 IdentifierInfo *Id = PP.getIdentifierInfo(Name);
Mike Stump1eb44332009-09-09 15:08:12 +000063
Chris Lattnera3b605e2008-03-09 03:13:06 +000064 // Mark it as being a macro that is builtin.
Chris Lattner148772a2009-06-13 07:13:28 +000065 MacroInfo *MI = PP.AllocateMacroInfo(SourceLocation());
Chris Lattnera3b605e2008-03-09 03:13:06 +000066 MI->setIsBuiltinMacro();
Chris Lattner148772a2009-06-13 07:13:28 +000067 PP.setMacroInfo(Id, MI);
Chris Lattnera3b605e2008-03-09 03:13:06 +000068 return Id;
69}
70
71
72/// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the
73/// identifier table.
74void Preprocessor::RegisterBuiltinMacros() {
Chris Lattner148772a2009-06-13 07:13:28 +000075 Ident__LINE__ = RegisterBuiltinMacro(*this, "__LINE__");
76 Ident__FILE__ = RegisterBuiltinMacro(*this, "__FILE__");
77 Ident__DATE__ = RegisterBuiltinMacro(*this, "__DATE__");
78 Ident__TIME__ = RegisterBuiltinMacro(*this, "__TIME__");
79 Ident__COUNTER__ = RegisterBuiltinMacro(*this, "__COUNTER__");
80 Ident_Pragma = RegisterBuiltinMacro(*this, "_Pragma");
Mike Stump1eb44332009-09-09 15:08:12 +000081
Chris Lattnera3b605e2008-03-09 03:13:06 +000082 // GCC Extensions.
Chris Lattner148772a2009-06-13 07:13:28 +000083 Ident__BASE_FILE__ = RegisterBuiltinMacro(*this, "__BASE_FILE__");
84 Ident__INCLUDE_LEVEL__ = RegisterBuiltinMacro(*this, "__INCLUDE_LEVEL__");
85 Ident__TIMESTAMP__ = RegisterBuiltinMacro(*this, "__TIMESTAMP__");
Mike Stump1eb44332009-09-09 15:08:12 +000086
Chris Lattner148772a2009-06-13 07:13:28 +000087 // Clang Extensions.
John Thompson92bd8c72009-11-02 22:28:12 +000088 Ident__has_feature = RegisterBuiltinMacro(*this, "__has_feature");
Peter Collingbournec1b5fa42011-05-13 20:54:45 +000089 Ident__has_extension = RegisterBuiltinMacro(*this, "__has_extension");
John Thompson92bd8c72009-11-02 22:28:12 +000090 Ident__has_builtin = RegisterBuiltinMacro(*this, "__has_builtin");
Anders Carlssoncae50952010-10-20 02:31:43 +000091 Ident__has_attribute = RegisterBuiltinMacro(*this, "__has_attribute");
John Thompson92bd8c72009-11-02 22:28:12 +000092 Ident__has_include = RegisterBuiltinMacro(*this, "__has_include");
93 Ident__has_include_next = RegisterBuiltinMacro(*this, "__has_include_next");
John McCall1ef8a2e2010-08-28 22:34:47 +000094
95 // Microsoft Extensions.
96 if (Features.Microsoft)
97 Ident__pragma = RegisterBuiltinMacro(*this, "__pragma");
98 else
99 Ident__pragma = 0;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000100}
101
102/// isTrivialSingleTokenExpansion - Return true if MI, which has a single token
103/// in its expansion, currently expands to that token literally.
104static bool isTrivialSingleTokenExpansion(const MacroInfo *MI,
105 const IdentifierInfo *MacroIdent,
106 Preprocessor &PP) {
107 IdentifierInfo *II = MI->getReplacementToken(0).getIdentifierInfo();
108
109 // If the token isn't an identifier, it's always literally expanded.
110 if (II == 0) return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000111
Chris Lattnera3b605e2008-03-09 03:13:06 +0000112 // If the identifier is a macro, and if that macro is enabled, it may be
113 // expanded so it's not a trivial expansion.
114 if (II->hasMacroDefinition() && PP.getMacroInfo(II)->isEnabled() &&
115 // Fast expanding "#define X X" is ok, because X would be disabled.
116 II != MacroIdent)
117 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Chris Lattnera3b605e2008-03-09 03:13:06 +0000119 // If this is an object-like macro invocation, it is safe to trivially expand
120 // it.
121 if (MI->isObjectLike()) return true;
122
123 // If this is a function-like macro invocation, it's safe to trivially expand
124 // as long as the identifier is not a macro argument.
125 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
126 I != E; ++I)
127 if (*I == II)
128 return false; // Identifier is a macro argument.
Mike Stump1eb44332009-09-09 15:08:12 +0000129
Chris Lattnera3b605e2008-03-09 03:13:06 +0000130 return true;
131}
132
133
134/// isNextPPTokenLParen - Determine whether the next preprocessor token to be
135/// lexed is a '('. If so, consume the token and return true, if not, this
136/// method should have no observable side-effect on the lexed tokens.
137bool Preprocessor::isNextPPTokenLParen() {
138 // Do some quick tests for rejection cases.
139 unsigned Val;
140 if (CurLexer)
141 Val = CurLexer->isNextPPTokenLParen();
Ted Kremenek1a531572008-11-19 22:43:49 +0000142 else if (CurPTHLexer)
143 Val = CurPTHLexer->isNextPPTokenLParen();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000144 else
145 Val = CurTokenLexer->isNextTokenLParen();
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Chris Lattnera3b605e2008-03-09 03:13:06 +0000147 if (Val == 2) {
148 // We have run off the end. If it's a source file we don't
149 // examine enclosing ones (C99 5.1.1.2p4). Otherwise walk up the
150 // macro stack.
Ted Kremenek17ff58a2008-11-19 22:21:33 +0000151 if (CurPPLexer)
Chris Lattnera3b605e2008-03-09 03:13:06 +0000152 return false;
153 for (unsigned i = IncludeMacroStack.size(); i != 0; --i) {
154 IncludeStackInfo &Entry = IncludeMacroStack[i-1];
155 if (Entry.TheLexer)
156 Val = Entry.TheLexer->isNextPPTokenLParen();
Ted Kremenekdd95d6c2008-11-20 16:46:54 +0000157 else if (Entry.ThePTHLexer)
158 Val = Entry.ThePTHLexer->isNextPPTokenLParen();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000159 else
160 Val = Entry.TheTokenLexer->isNextTokenLParen();
Mike Stump1eb44332009-09-09 15:08:12 +0000161
Chris Lattnera3b605e2008-03-09 03:13:06 +0000162 if (Val != 2)
163 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000164
Chris Lattnera3b605e2008-03-09 03:13:06 +0000165 // Ran off the end of a source file?
Ted Kremenekdd95d6c2008-11-20 16:46:54 +0000166 if (Entry.ThePPLexer)
Chris Lattnera3b605e2008-03-09 03:13:06 +0000167 return false;
168 }
169 }
170
171 // Okay, if we know that the token is a '(', lex it and return. Otherwise we
172 // have found something that isn't a '(' or we found the end of the
173 // translation unit. In either case, return false.
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000174 return Val == 1;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000175}
176
177/// HandleMacroExpandedIdentifier - If an identifier token is read that is to be
178/// expanded as a macro, handle it and return the next token as 'Identifier'.
Mike Stump1eb44332009-09-09 15:08:12 +0000179bool Preprocessor::HandleMacroExpandedIdentifier(Token &Identifier,
Chris Lattnera3b605e2008-03-09 03:13:06 +0000180 MacroInfo *MI) {
Douglas Gregor13678972010-01-26 19:43:43 +0000181 // If this is a macro expansion in the "#if !defined(x)" line for the file,
Chris Lattnera3b605e2008-03-09 03:13:06 +0000182 // then the macro could expand to different things in other contexts, we need
183 // to disable the optimization in this case.
Ted Kremenek68a91d52008-11-18 01:12:54 +0000184 if (CurPPLexer) CurPPLexer->MIOpt.ExpandedMacro();
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Chris Lattnera3b605e2008-03-09 03:13:06 +0000186 // If this is a builtin macro, like __LINE__ or _Pragma, handle it specially.
187 if (MI->isBuiltinMacro()) {
Douglas Gregor91d3df52011-04-28 16:36:13 +0000188 if (Callbacks) Callbacks->MacroExpands(Identifier, MI);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000189 ExpandBuiltinMacro(Identifier);
190 return false;
191 }
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Chris Lattnera3b605e2008-03-09 03:13:06 +0000193 /// Args - If this is a function-like macro expansion, this contains,
194 /// for each macro argument, the list of tokens that were provided to the
195 /// invocation.
196 MacroArgs *Args = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000198 // Remember where the end of the expansion occurred. For an object-like
Chris Lattnere7fb4842009-02-15 20:52:18 +0000199 // macro, this is the identifier. For a function-like macro, this is the ')'.
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000200 SourceLocation ExpansionEnd = Identifier.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000201
Chris Lattnera3b605e2008-03-09 03:13:06 +0000202 // If this is a function-like macro, read the arguments.
203 if (MI->isFunctionLike()) {
204 // C99 6.10.3p10: If the preprocessing token immediately after the the macro
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000205 // name isn't a '(', this macro should not be expanded.
Chris Lattnera3b605e2008-03-09 03:13:06 +0000206 if (!isNextPPTokenLParen())
207 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Chris Lattnera3b605e2008-03-09 03:13:06 +0000209 // Remember that we are now parsing the arguments to a macro invocation.
210 // Preprocessor directives used inside macro arguments are not portable, and
211 // this enables the warning.
212 InMacroArgs = true;
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000213 Args = ReadFunctionLikeMacroArgs(Identifier, MI, ExpansionEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000214
Chris Lattnera3b605e2008-03-09 03:13:06 +0000215 // Finished parsing args.
216 InMacroArgs = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000217
Chris Lattnera3b605e2008-03-09 03:13:06 +0000218 // If there was an error parsing the arguments, bail out.
219 if (Args == 0) return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000220
Chris Lattnera3b605e2008-03-09 03:13:06 +0000221 ++NumFnMacroExpanded;
222 } else {
223 ++NumMacroExpanded;
224 }
Mike Stump1eb44332009-09-09 15:08:12 +0000225
Chris Lattnera3b605e2008-03-09 03:13:06 +0000226 // Notice that this macro has been used.
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000227 markMacroAsUsed(MI);
Mike Stump1eb44332009-09-09 15:08:12 +0000228
Douglas Gregor91d3df52011-04-28 16:36:13 +0000229 if (Callbacks) Callbacks->MacroExpands(Identifier, MI);
230
Chris Lattnera3b605e2008-03-09 03:13:06 +0000231 // If we started lexing a macro, enter the macro expansion body.
Mike Stump1eb44332009-09-09 15:08:12 +0000232
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000233 // Remember where the token is expanded.
234 SourceLocation ExpandLoc = Identifier.getLocation();
Argyrios Kyrtzidisb7d98d32011-04-27 05:04:02 +0000235
Chris Lattnera3b605e2008-03-09 03:13:06 +0000236 // If this macro expands to no tokens, don't bother to push it onto the
237 // expansion stack, only to take it right back off.
238 if (MI->getNumTokens() == 0) {
239 // No need for arg info.
Chris Lattner561395b2009-12-14 22:12:52 +0000240 if (Args) Args->destroy(*this);
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Chris Lattnera3b605e2008-03-09 03:13:06 +0000242 // Ignore this macro use, just return the next token in the current
243 // buffer.
244 bool HadLeadingSpace = Identifier.hasLeadingSpace();
245 bool IsAtStartOfLine = Identifier.isAtStartOfLine();
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Chris Lattnera3b605e2008-03-09 03:13:06 +0000247 Lex(Identifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Chris Lattnera3b605e2008-03-09 03:13:06 +0000249 // If the identifier isn't on some OTHER line, inherit the leading
250 // whitespace/first-on-a-line property of this token. This handles
251 // stuff like "! XX," -> "! ," and " XX," -> " ,", when XX is
252 // empty.
253 if (!Identifier.isAtStartOfLine()) {
254 if (IsAtStartOfLine) Identifier.setFlag(Token::StartOfLine);
255 if (HadLeadingSpace) Identifier.setFlag(Token::LeadingSpace);
256 }
Argyrios Kyrtzidis44aa1f32010-11-20 02:04:01 +0000257 Identifier.setFlag(Token::LeadingEmptyMacro);
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000258 LastEmptyMacroExpansionLoc = ExpandLoc;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000259 ++NumFastMacroExpanded;
260 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000261
Chris Lattnera3b605e2008-03-09 03:13:06 +0000262 } else if (MI->getNumTokens() == 1 &&
263 isTrivialSingleTokenExpansion(MI, Identifier.getIdentifierInfo(),
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000264 *this)) {
Chris Lattnera3b605e2008-03-09 03:13:06 +0000265 // Otherwise, if this macro expands into a single trivially-expanded
Mike Stump1eb44332009-09-09 15:08:12 +0000266 // token: expand it now. This handles common cases like
Chris Lattnera3b605e2008-03-09 03:13:06 +0000267 // "#define VAL 42".
Sam Bishop9a4939f2008-03-21 07:13:02 +0000268
269 // No need for arg info.
Chris Lattner561395b2009-12-14 22:12:52 +0000270 if (Args) Args->destroy(*this);
Sam Bishop9a4939f2008-03-21 07:13:02 +0000271
Chris Lattnera3b605e2008-03-09 03:13:06 +0000272 // Propagate the isAtStartOfLine/hasLeadingSpace markers of the macro
273 // identifier to the expanded token.
274 bool isAtStartOfLine = Identifier.isAtStartOfLine();
275 bool hasLeadingSpace = Identifier.hasLeadingSpace();
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Chris Lattnera3b605e2008-03-09 03:13:06 +0000277 // Replace the result token.
278 Identifier = MI->getReplacementToken(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Chris Lattnera3b605e2008-03-09 03:13:06 +0000280 // Restore the StartOfLine/LeadingSpace markers.
281 Identifier.setFlagValue(Token::StartOfLine , isAtStartOfLine);
282 Identifier.setFlagValue(Token::LeadingSpace, hasLeadingSpace);
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000284 // Update the tokens location to include both its expansion and physical
Chris Lattnera3b605e2008-03-09 03:13:06 +0000285 // locations.
286 SourceLocation Loc =
Chandler Carruthbf340e42011-07-26 03:03:05 +0000287 SourceMgr.createExpansionLoc(Identifier.getLocation(), ExpandLoc,
288 ExpansionEnd,Identifier.getLength());
Chris Lattnera3b605e2008-03-09 03:13:06 +0000289 Identifier.setLocation(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Chris Lattner8ff66de2010-03-26 17:49:16 +0000291 // If this is a disabled macro or #define X X, we must mark the result as
292 // unexpandable.
293 if (IdentifierInfo *NewII = Identifier.getIdentifierInfo()) {
294 if (MacroInfo *NewMI = getMacroInfo(NewII))
295 if (!NewMI->isEnabled() || NewMI == MI)
296 Identifier.setFlag(Token::DisableExpand);
297 }
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Chris Lattnera3b605e2008-03-09 03:13:06 +0000299 // Since this is not an identifier token, it can't be macro expanded, so
300 // we're done.
301 ++NumFastMacroExpanded;
302 return false;
303 }
Mike Stump1eb44332009-09-09 15:08:12 +0000304
Chris Lattnera3b605e2008-03-09 03:13:06 +0000305 // Start expanding the macro.
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000306 EnterMacro(Identifier, ExpansionEnd, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000307
Chris Lattnera3b605e2008-03-09 03:13:06 +0000308 // Now that the macro is at the top of the include stack, ask the
309 // preprocessor to read the next token from it.
310 Lex(Identifier);
311 return false;
312}
313
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000314/// ReadFunctionLikeMacroArgs - After reading "MACRO" and knowing that the next
315/// token is the '(' of the macro, this method is invoked to read all of the
316/// actual arguments specified for the macro invocation. This returns null on
317/// error.
Chris Lattnera3b605e2008-03-09 03:13:06 +0000318MacroArgs *Preprocessor::ReadFunctionLikeMacroArgs(Token &MacroName,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000319 MacroInfo *MI,
320 SourceLocation &MacroEnd) {
Chris Lattnera3b605e2008-03-09 03:13:06 +0000321 // The number of fixed arguments to parse.
322 unsigned NumFixedArgsLeft = MI->getNumArgs();
323 bool isVariadic = MI->isVariadic();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Chris Lattnera3b605e2008-03-09 03:13:06 +0000325 // Outer loop, while there are more arguments, keep reading them.
326 Token Tok;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000327
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000328 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
329 // an argument value in a macro could expand to ',' or '(' or ')'.
330 LexUnexpandedToken(Tok);
331 assert(Tok.is(tok::l_paren) && "Error computing l-paren-ness?");
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Chris Lattnera3b605e2008-03-09 03:13:06 +0000333 // ArgTokens - Build up a list of tokens that make up each argument. Each
334 // argument is separated by an EOF token. Use a SmallVector so we can avoid
335 // heap allocations in the common case.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000336 SmallVector<Token, 64> ArgTokens;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000337
338 unsigned NumActuals = 0;
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000339 while (Tok.isNot(tok::r_paren)) {
340 assert((Tok.is(tok::l_paren) || Tok.is(tok::comma)) &&
341 "only expect argument separators here");
Mike Stump1eb44332009-09-09 15:08:12 +0000342
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000343 unsigned ArgTokenStart = ArgTokens.size();
344 SourceLocation ArgStartLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000345
Chris Lattnera3b605e2008-03-09 03:13:06 +0000346 // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note
347 // that we already consumed the first one.
348 unsigned NumParens = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000349
Chris Lattnera3b605e2008-03-09 03:13:06 +0000350 while (1) {
351 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
352 // an argument value in a macro could expand to ',' or '(' or ')'.
353 LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000354
Douglas Gregorf29c5232010-08-24 22:20:20 +0000355 if (Tok.is(tok::code_completion)) {
356 if (CodeComplete)
357 CodeComplete->CodeCompleteMacroArgument(MacroName.getIdentifierInfo(),
358 MI, NumActuals);
359 LexUnexpandedToken(Tok);
360 }
361
Peter Collingbourne84021552011-02-28 02:37:51 +0000362 if (Tok.is(tok::eof) || Tok.is(tok::eod)) { // "#if f(<eof>" & "#if f(\n"
Chris Lattnera3b605e2008-03-09 03:13:06 +0000363 Diag(MacroName, diag::err_unterm_macro_invoc);
Peter Collingbourne84021552011-02-28 02:37:51 +0000364 // Do not lose the EOF/EOD. Return it to the client.
Chris Lattnera3b605e2008-03-09 03:13:06 +0000365 MacroName = Tok;
366 return 0;
367 } else if (Tok.is(tok::r_paren)) {
368 // If we found the ) token, the macro arg list is done.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000369 if (NumParens-- == 0) {
370 MacroEnd = Tok.getLocation();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000371 break;
Chris Lattnere7fb4842009-02-15 20:52:18 +0000372 }
Chris Lattnera3b605e2008-03-09 03:13:06 +0000373 } else if (Tok.is(tok::l_paren)) {
374 ++NumParens;
375 } else if (Tok.is(tok::comma) && NumParens == 0) {
376 // Comma ends this argument if there are more fixed arguments expected.
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000377 // However, if this is a variadic macro, and this is part of the
Mike Stump1eb44332009-09-09 15:08:12 +0000378 // variadic part, then the comma is just an argument token.
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000379 if (!isVariadic) break;
380 if (NumFixedArgsLeft > 1)
Chris Lattnera3b605e2008-03-09 03:13:06 +0000381 break;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000382 } else if (Tok.is(tok::comment) && !KeepMacroComments) {
383 // If this is a comment token in the argument list and we're just in
384 // -C mode (not -CC mode), discard the comment.
385 continue;
Chris Lattner5c497a82009-04-18 06:44:18 +0000386 } else if (Tok.getIdentifierInfo() != 0) {
Chris Lattnera3b605e2008-03-09 03:13:06 +0000387 // Reading macro arguments can cause macros that we are currently
388 // expanding from to be popped off the expansion stack. Doing so causes
389 // them to be reenabled for expansion. Here we record whether any
390 // identifiers we lex as macro arguments correspond to disabled macros.
Mike Stump1eb44332009-09-09 15:08:12 +0000391 // If so, we mark the token as noexpand. This is a subtle aspect of
Chris Lattnera3b605e2008-03-09 03:13:06 +0000392 // C99 6.10.3.4p2.
393 if (MacroInfo *MI = getMacroInfo(Tok.getIdentifierInfo()))
394 if (!MI->isEnabled())
395 Tok.setFlag(Token::DisableExpand);
396 }
Chris Lattnera3b605e2008-03-09 03:13:06 +0000397 ArgTokens.push_back(Tok);
398 }
Mike Stump1eb44332009-09-09 15:08:12 +0000399
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000400 // If this was an empty argument list foo(), don't add this as an empty
401 // argument.
402 if (ArgTokens.empty() && Tok.getKind() == tok::r_paren)
403 break;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000404
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000405 // If this is not a variadic macro, and too many args were specified, emit
406 // an error.
407 if (!isVariadic && NumFixedArgsLeft == 0) {
408 if (ArgTokens.size() != ArgTokenStart)
409 ArgStartLoc = ArgTokens[ArgTokenStart].getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000410
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000411 // Emit the diagnostic at the macro name in case there is a missing ).
412 // Emitting it at the , could be far away from the macro name.
413 Diag(ArgStartLoc, diag::err_too_many_args_in_macro_invoc);
414 return 0;
415 }
Mike Stump1eb44332009-09-09 15:08:12 +0000416
Chris Lattner32c13882011-04-22 23:25:09 +0000417 // Empty arguments are standard in C99 and C++0x, and are supported as an extension in
Chris Lattnera3b605e2008-03-09 03:13:06 +0000418 // other modes.
Chris Lattner32c13882011-04-22 23:25:09 +0000419 if (ArgTokens.size() == ArgTokenStart && !Features.C99 && !Features.CPlusPlus0x)
Chris Lattnera3b605e2008-03-09 03:13:06 +0000420 Diag(Tok, diag::ext_empty_fnmacro_arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000421
Chris Lattnera3b605e2008-03-09 03:13:06 +0000422 // Add a marker EOF token to the end of the token list for this argument.
423 Token EOFTok;
424 EOFTok.startToken();
425 EOFTok.setKind(tok::eof);
Chris Lattnere7689882009-01-26 20:24:53 +0000426 EOFTok.setLocation(Tok.getLocation());
Chris Lattnera3b605e2008-03-09 03:13:06 +0000427 EOFTok.setLength(0);
428 ArgTokens.push_back(EOFTok);
429 ++NumActuals;
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000430 assert(NumFixedArgsLeft != 0 && "Too many arguments parsed");
Chris Lattnera3b605e2008-03-09 03:13:06 +0000431 --NumFixedArgsLeft;
Chris Lattnere7fb4842009-02-15 20:52:18 +0000432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattnera3b605e2008-03-09 03:13:06 +0000434 // Okay, we either found the r_paren. Check to see if we parsed too few
435 // arguments.
436 unsigned MinArgsExpected = MI->getNumArgs();
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Chris Lattnera3b605e2008-03-09 03:13:06 +0000438 // See MacroArgs instance var for description of this.
439 bool isVarargsElided = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Chris Lattnera3b605e2008-03-09 03:13:06 +0000441 if (NumActuals < MinArgsExpected) {
442 // There are several cases where too few arguments is ok, handle them now.
Chris Lattner97e2de12009-04-20 21:08:10 +0000443 if (NumActuals == 0 && MinArgsExpected == 1) {
444 // #define A(X) or #define A(...) ---> A()
Mike Stump1eb44332009-09-09 15:08:12 +0000445
Chris Lattner97e2de12009-04-20 21:08:10 +0000446 // If there is exactly one argument, and that argument is missing,
447 // then we have an empty "()" argument empty list. This is fine, even if
448 // the macro expects one argument (the argument is just empty).
449 isVarargsElided = MI->isVariadic();
450 } else if (MI->isVariadic() &&
451 (NumActuals+1 == MinArgsExpected || // A(x, ...) -> A(X)
452 (NumActuals == 0 && MinArgsExpected == 2))) {// A(x,...) -> A()
Chris Lattnera3b605e2008-03-09 03:13:06 +0000453 // Varargs where the named vararg parameter is missing: ok as extension.
454 // #define A(x, ...)
455 // A("blah")
456 Diag(Tok, diag::ext_missing_varargs_arg);
457
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000458 // Remember this occurred, allowing us to elide the comma when used for
Chris Lattner63bc0352008-05-08 05:10:33 +0000459 // cases like:
Mike Stump1eb44332009-09-09 15:08:12 +0000460 // #define A(x, foo...) blah(a, ## foo)
461 // #define B(x, ...) blah(a, ## __VA_ARGS__)
462 // #define C(...) blah(a, ## __VA_ARGS__)
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000463 // A(x) B(x) C()
Chris Lattner97e2de12009-04-20 21:08:10 +0000464 isVarargsElided = true;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000465 } else {
466 // Otherwise, emit the error.
467 Diag(Tok, diag::err_too_few_args_in_macro_invoc);
468 return 0;
469 }
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Chris Lattnera3b605e2008-03-09 03:13:06 +0000471 // Add a marker EOF token to the end of the token list for this argument.
472 SourceLocation EndLoc = Tok.getLocation();
473 Tok.startToken();
474 Tok.setKind(tok::eof);
475 Tok.setLocation(EndLoc);
476 Tok.setLength(0);
477 ArgTokens.push_back(Tok);
Chris Lattner9fc9e772009-05-13 00:55:26 +0000478
479 // If we expect two arguments, add both as empty.
480 if (NumActuals == 0 && MinArgsExpected == 2)
481 ArgTokens.push_back(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Chris Lattner0a4f1b92009-04-18 01:13:56 +0000483 } else if (NumActuals > MinArgsExpected && !MI->isVariadic()) {
484 // Emit the diagnostic at the macro name in case there is a missing ).
485 // Emitting it at the , could be far away from the macro name.
486 Diag(MacroName, diag::err_too_many_args_in_macro_invoc);
487 return 0;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000488 }
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Jay Foadbeaaccd2009-05-21 09:52:38 +0000490 return MacroArgs::create(MI, ArgTokens.data(), ArgTokens.size(),
Chris Lattner561395b2009-12-14 22:12:52 +0000491 isVarargsElided, *this);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000492}
493
Argyrios Kyrtzidis5b3284a2011-06-29 22:20:11 +0000494/// \brief Keeps macro expanded tokens for TokenLexers.
495//
496/// Works like a stack; a TokenLexer adds the macro expanded tokens that is
497/// going to lex in the cache and when it finishes the tokens are removed
498/// from the end of the cache.
499Token *Preprocessor::cacheMacroExpandedTokens(TokenLexer *tokLexer,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +0000500 ArrayRef<Token> tokens) {
Argyrios Kyrtzidis5b3284a2011-06-29 22:20:11 +0000501 assert(tokLexer);
502 if (tokens.empty())
503 return 0;
504
505 size_t newIndex = MacroExpandedTokens.size();
506 bool cacheNeedsToGrow = tokens.size() >
507 MacroExpandedTokens.capacity()-MacroExpandedTokens.size();
508 MacroExpandedTokens.append(tokens.begin(), tokens.end());
509
510 if (cacheNeedsToGrow) {
511 // Go through all the TokenLexers whose 'Tokens' pointer points in the
512 // buffer and update the pointers to the (potential) new buffer array.
513 for (unsigned i = 0, e = MacroExpandingLexersStack.size(); i != e; ++i) {
514 TokenLexer *prevLexer;
515 size_t tokIndex;
516 llvm::tie(prevLexer, tokIndex) = MacroExpandingLexersStack[i];
517 prevLexer->Tokens = MacroExpandedTokens.data() + tokIndex;
518 }
519 }
520
521 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex));
522 return MacroExpandedTokens.data() + newIndex;
523}
524
525void Preprocessor::removeCachedMacroExpandedTokensOfLastLexer() {
526 assert(!MacroExpandingLexersStack.empty());
527 size_t tokIndex = MacroExpandingLexersStack.back().second;
528 assert(tokIndex < MacroExpandedTokens.size());
529 // Pop the cached macro expanded tokens from the end.
530 MacroExpandedTokens.resize(tokIndex);
531 MacroExpandingLexersStack.pop_back();
532}
533
Chris Lattnera3b605e2008-03-09 03:13:06 +0000534/// ComputeDATE_TIME - Compute the current time, enter it into the specified
535/// scratch buffer, then return DATELoc/TIMELoc locations with the position of
536/// the identifier tokens inserted.
537static void ComputeDATE_TIME(SourceLocation &DATELoc, SourceLocation &TIMELoc,
538 Preprocessor &PP) {
539 time_t TT = time(0);
540 struct tm *TM = localtime(&TT);
Mike Stump1eb44332009-09-09 15:08:12 +0000541
Chris Lattnera3b605e2008-03-09 03:13:06 +0000542 static const char * const Months[] = {
543 "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
544 };
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Douglas Gregor5e0fb352010-11-09 03:20:07 +0000546 char TmpBuffer[32];
Douglas Gregorb87b29e2010-11-09 04:38:09 +0000547#ifdef LLVM_ON_WIN32
548 sprintf(TmpBuffer, "\"%s %2d %4d\"", Months[TM->tm_mon], TM->tm_mday,
549 TM->tm_year+1900);
550#else
Douglas Gregor5e0fb352010-11-09 03:20:07 +0000551 snprintf(TmpBuffer, sizeof(TmpBuffer), "\"%s %2d %4d\"", Months[TM->tm_mon], TM->tm_mday,
Chris Lattnera3b605e2008-03-09 03:13:06 +0000552 TM->tm_year+1900);
Douglas Gregorb87b29e2010-11-09 04:38:09 +0000553#endif
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Chris Lattner47246be2009-01-26 19:29:26 +0000555 Token TmpTok;
556 TmpTok.startToken();
557 PP.CreateString(TmpBuffer, strlen(TmpBuffer), TmpTok);
558 DATELoc = TmpTok.getLocation();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000559
NAKAMURA Takumi513038d2010-11-09 06:27:32 +0000560#ifdef LLVM_ON_WIN32
561 sprintf(TmpBuffer, "\"%02d:%02d:%02d\"", TM->tm_hour, TM->tm_min, TM->tm_sec);
562#else
Douglas Gregor5e0fb352010-11-09 03:20:07 +0000563 snprintf(TmpBuffer, sizeof(TmpBuffer), "\"%02d:%02d:%02d\"", TM->tm_hour, TM->tm_min, TM->tm_sec);
NAKAMURA Takumi513038d2010-11-09 06:27:32 +0000564#endif
Chris Lattner47246be2009-01-26 19:29:26 +0000565 PP.CreateString(TmpBuffer, strlen(TmpBuffer), TmpTok);
566 TIMELoc = TmpTok.getLocation();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000567}
568
Chris Lattner148772a2009-06-13 07:13:28 +0000569
Peter Collingbournec1b5fa42011-05-13 20:54:45 +0000570/// HasFeature - Return true if we recognize and implement the feature
571/// specified by the identifier as a standard language feature.
Chris Lattner148772a2009-06-13 07:13:28 +0000572static bool HasFeature(const Preprocessor &PP, const IdentifierInfo *II) {
573 const LangOptions &LangOpts = PP.getLangOptions();
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Benjamin Kramer32592e82010-01-09 18:53:11 +0000575 return llvm::StringSwitch<bool>(II->getName())
Benjamin Kramer32592e82010-01-09 18:53:11 +0000576 .Case("attribute_analyzer_noreturn", true)
Douglas Gregordceb5312011-03-26 12:16:15 +0000577 .Case("attribute_availability", true)
Ted Kremenek13593002010-02-18 00:06:04 +0000578 .Case("attribute_cf_returns_not_retained", true)
Benjamin Kramer32592e82010-01-09 18:53:11 +0000579 .Case("attribute_cf_returns_retained", true)
John McCall48209082010-11-08 19:48:17 +0000580 .Case("attribute_deprecated_with_message", true)
Ted Kremenek6d9afd92010-04-29 02:06:42 +0000581 .Case("attribute_ext_vector_type", true)
Ted Kremenek13593002010-02-18 00:06:04 +0000582 .Case("attribute_ns_returns_not_retained", true)
583 .Case("attribute_ns_returns_retained", true)
Ted Kremenek12b94342011-01-27 06:54:14 +0000584 .Case("attribute_ns_consumes_self", true)
Ted Kremenek11fe1752011-01-27 18:43:03 +0000585 .Case("attribute_ns_consumed", true)
586 .Case("attribute_cf_consumed", true)
Ted Kremenek444b0352010-03-05 22:43:32 +0000587 .Case("attribute_objc_ivar_unused", true)
John McCalld5313b02011-03-02 11:33:24 +0000588 .Case("attribute_objc_method_family", true)
Ted Kremenek6d9afd92010-04-29 02:06:42 +0000589 .Case("attribute_overloadable", true)
John McCall48209082010-11-08 19:48:17 +0000590 .Case("attribute_unavailable_with_message", true)
Ted Kremenek6d9afd92010-04-29 02:06:42 +0000591 .Case("blocks", LangOpts.Blocks)
Ted Kremenek6d9afd92010-04-29 02:06:42 +0000592 .Case("cxx_exceptions", LangOpts.Exceptions)
593 .Case("cxx_rtti", LangOpts.RTTI)
John McCall48209082010-11-08 19:48:17 +0000594 .Case("enumerator_attributes", true)
John McCallf85e1932011-06-15 23:02:42 +0000595 // Objective-C features
596 .Case("objc_arr", LangOpts.ObjCAutoRefCount) // FIXME: REMOVE?
597 .Case("objc_arc", LangOpts.ObjCAutoRefCount)
598 .Case("objc_arc_weak", LangOpts.ObjCAutoRefCount &&
John McCall9f084a32011-07-06 00:26:06 +0000599 LangOpts.ObjCRuntimeHasWeak)
Ted Kremenek6d9afd92010-04-29 02:06:42 +0000600 .Case("objc_nonfragile_abi", LangOpts.ObjCNonFragileABI)
Ted Kremenek3ff9d112010-04-29 02:06:46 +0000601 .Case("objc_weak_class", LangOpts.ObjCNonFragileABI)
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000602 .Case("ownership_holds", true)
603 .Case("ownership_returns", true)
604 .Case("ownership_takes", true)
Peter Collingbournec1b5fa42011-05-13 20:54:45 +0000605 // C1X features
606 .Case("c_generic_selections", LangOpts.C1X)
607 .Case("c_static_assert", LangOpts.C1X)
Douglas Gregorc78e2592011-01-26 15:36:03 +0000608 // C++0x features
Douglas Gregor7822ee32011-05-11 23:45:11 +0000609 .Case("cxx_access_control_sfinae", LangOpts.CPlusPlus0x)
Richard Smith3e4c6c42011-05-05 21:57:07 +0000610 .Case("cxx_alias_templates", LangOpts.CPlusPlus0x)
Douglas Gregorc78e2592011-01-26 15:36:03 +0000611 .Case("cxx_attributes", LangOpts.CPlusPlus0x)
Richard Smith738291e2011-02-20 12:13:05 +0000612 .Case("cxx_auto_type", LangOpts.CPlusPlus0x)
Douglas Gregorc78e2592011-01-26 15:36:03 +0000613 .Case("cxx_decltype", LangOpts.CPlusPlus0x)
Douglas Gregor07508002011-02-05 20:35:30 +0000614 .Case("cxx_default_function_template_args", LangOpts.CPlusPlus0x)
Sean Hunt059ce0d2011-05-01 07:04:31 +0000615 .Case("cxx_delegating_constructors", LangOpts.CPlusPlus0x)
Douglas Gregorc78e2592011-01-26 15:36:03 +0000616 .Case("cxx_deleted_functions", LangOpts.CPlusPlus0x)
Sean Hunte1f6dea2011-08-07 00:34:32 +0000617 //.Case("cxx_generalized_initializers", LangOpts.CPlusPlus0x)
Douglas Gregorc78e2592011-01-26 15:36:03 +0000618 .Case("cxx_inline_namespaces", LangOpts.CPlusPlus0x)
Ted Kremenek6d9afd92010-04-29 02:06:42 +0000619 //.Case("cxx_lambdas", false)
Sebastian Redl4561ecd2011-03-15 21:17:12 +0000620 .Case("cxx_noexcept", LangOpts.CPlusPlus0x)
Douglas Gregor84ee2ee2011-05-21 23:15:46 +0000621 .Case("cxx_nullptr", LangOpts.CPlusPlus0x)
Anders Carlssonc8b9f792011-03-25 15:04:23 +0000622 .Case("cxx_override_control", LangOpts.CPlusPlus0x)
Richard Smitha391a462011-04-15 15:14:40 +0000623 .Case("cxx_range_for", LangOpts.CPlusPlus0x)
Douglas Gregor56209ff2011-01-26 21:25:54 +0000624 .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus0x)
Douglas Gregorc78e2592011-01-26 15:36:03 +0000625 .Case("cxx_rvalue_references", LangOpts.CPlusPlus0x)
626 .Case("cxx_strong_enums", LangOpts.CPlusPlus0x)
627 .Case("cxx_static_assert", LangOpts.CPlusPlus0x)
628 .Case("cxx_trailing_return", LangOpts.CPlusPlus0x)
629 .Case("cxx_variadic_templates", LangOpts.CPlusPlus0x)
Douglas Gregorafdf1372011-02-03 21:57:35 +0000630 // Type traits
631 .Case("has_nothrow_assign", LangOpts.CPlusPlus)
632 .Case("has_nothrow_copy", LangOpts.CPlusPlus)
633 .Case("has_nothrow_constructor", LangOpts.CPlusPlus)
634 .Case("has_trivial_assign", LangOpts.CPlusPlus)
635 .Case("has_trivial_copy", LangOpts.CPlusPlus)
636 .Case("has_trivial_constructor", LangOpts.CPlusPlus)
637 .Case("has_trivial_destructor", LangOpts.CPlusPlus)
638 .Case("has_virtual_destructor", LangOpts.CPlusPlus)
639 .Case("is_abstract", LangOpts.CPlusPlus)
640 .Case("is_base_of", LangOpts.CPlusPlus)
641 .Case("is_class", LangOpts.CPlusPlus)
642 .Case("is_convertible_to", LangOpts.CPlusPlus)
Douglas Gregorb3f8c242011-08-03 17:01:05 +0000643 // __is_empty is available only if the horrible
644 // "struct __is_empty" parsing hack hasn't been needed in this
645 // translation unit. If it has, __is_empty reverts to a normal
646 // identifier and __has_feature(is_empty) evaluates false.
Douglas Gregor68876142011-07-30 07:01:49 +0000647 .Case("is_empty",
Douglas Gregor9a14ecb2011-07-30 07:08:19 +0000648 LangOpts.CPlusPlus &&
649 PP.getIdentifierInfo("__is_empty")->getTokenID()
650 != tok::identifier)
Douglas Gregorafdf1372011-02-03 21:57:35 +0000651 .Case("is_enum", LangOpts.CPlusPlus)
Chandler Carruth4e61ddd2011-04-23 10:47:20 +0000652 .Case("is_literal", LangOpts.CPlusPlus)
Howard Hinnanta55e68b2011-05-12 19:52:14 +0000653 .Case("is_standard_layout", LangOpts.CPlusPlus)
Douglas Gregorb3f8c242011-08-03 17:01:05 +0000654 // __is_pod is available only if the horrible
655 // "struct __is_pod" parsing hack hasn't been needed in this
656 // translation unit. If it has, __is_pod reverts to a normal
657 // identifier and __has_feature(is_pod) evaluates false.
Douglas Gregor68876142011-07-30 07:01:49 +0000658 .Case("is_pod",
Douglas Gregor9a14ecb2011-07-30 07:08:19 +0000659 LangOpts.CPlusPlus &&
660 PP.getIdentifierInfo("__is_pod")->getTokenID()
661 != tok::identifier)
Douglas Gregorafdf1372011-02-03 21:57:35 +0000662 .Case("is_polymorphic", LangOpts.CPlusPlus)
Chandler Carruthb7e95892011-04-23 10:47:28 +0000663 .Case("is_trivial", LangOpts.CPlusPlus)
Sean Huntfeb375d2011-05-13 00:31:07 +0000664 .Case("is_trivially_copyable", LangOpts.CPlusPlus)
Douglas Gregorafdf1372011-02-03 21:57:35 +0000665 .Case("is_union", LangOpts.CPlusPlus)
Eric Christopher1f84f8d2010-06-24 02:02:00 +0000666 .Case("tls", PP.getTargetInfo().isTLSSupported())
Sean Hunt858a3252011-07-18 17:08:00 +0000667 .Case("underlying_type", LangOpts.CPlusPlus)
Benjamin Kramer32592e82010-01-09 18:53:11 +0000668 .Default(false);
Chris Lattner148772a2009-06-13 07:13:28 +0000669}
670
Peter Collingbournec1b5fa42011-05-13 20:54:45 +0000671/// HasExtension - Return true if we recognize and implement the feature
672/// specified by the identifier, either as an extension or a standard language
673/// feature.
674static bool HasExtension(const Preprocessor &PP, const IdentifierInfo *II) {
675 if (HasFeature(PP, II))
676 return true;
677
678 // If the use of an extension results in an error diagnostic, extensions are
679 // effectively unavailable, so just return false here.
680 if (PP.getDiagnostics().getExtensionHandlingBehavior()==Diagnostic::Ext_Error)
681 return false;
682
683 const LangOptions &LangOpts = PP.getLangOptions();
684
685 // Because we inherit the feature list from HasFeature, this string switch
686 // must be less restrictive than HasFeature's.
687 return llvm::StringSwitch<bool>(II->getName())
688 // C1X features supported by other languages as extensions.
689 .Case("c_generic_selections", true)
690 .Case("c_static_assert", true)
691 // C++0x features supported by other languages as extensions.
692 .Case("cxx_deleted_functions", LangOpts.CPlusPlus)
693 .Case("cxx_inline_namespaces", LangOpts.CPlusPlus)
694 .Case("cxx_override_control", LangOpts.CPlusPlus)
695 .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus)
696 .Case("cxx_rvalue_references", LangOpts.CPlusPlus)
697 .Default(false);
698}
699
Anders Carlssoncae50952010-10-20 02:31:43 +0000700/// HasAttribute - Return true if we recognize and implement the attribute
701/// specified by the given identifier.
702static bool HasAttribute(const IdentifierInfo *II) {
703 return llvm::StringSwitch<bool>(II->getName())
704#include "clang/Lex/AttrSpellings.inc"
705 .Default(false);
706}
707
John Thompson92bd8c72009-11-02 22:28:12 +0000708/// EvaluateHasIncludeCommon - Process a '__has_include("path")'
709/// or '__has_include_next("path")' expression.
710/// Returns true if successful.
Chris Lattner3ed572e2011-01-15 06:57:04 +0000711static bool EvaluateHasIncludeCommon(Token &Tok,
712 IdentifierInfo *II, Preprocessor &PP,
713 const DirectoryLookup *LookupFrom) {
John Thompson92bd8c72009-11-02 22:28:12 +0000714 SourceLocation LParenLoc;
715
716 // Get '('.
717 PP.LexNonComment(Tok);
718
719 // Ensure we have a '('.
720 if (Tok.isNot(tok::l_paren)) {
721 PP.Diag(Tok.getLocation(), diag::err_pp_missing_lparen) << II->getName();
722 return false;
723 }
724
725 // Save '(' location for possible missing ')' message.
726 LParenLoc = Tok.getLocation();
727
728 // Get the file name.
729 PP.getCurrentLexer()->LexIncludeFilename(Tok);
730
731 // Reserve a buffer to get the spelling.
Chris Lattnera1394812010-01-10 01:35:12 +0000732 llvm::SmallString<128> FilenameBuffer;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000733 StringRef Filename;
Douglas Gregorecdcb882010-10-20 22:00:55 +0000734 SourceLocation EndLoc;
735
John Thompson92bd8c72009-11-02 22:28:12 +0000736 switch (Tok.getKind()) {
Peter Collingbourne84021552011-02-28 02:37:51 +0000737 case tok::eod:
738 // If the token kind is EOD, the error has already been diagnosed.
John Thompson92bd8c72009-11-02 22:28:12 +0000739 return false;
740
741 case tok::angle_string_literal:
Douglas Gregor453091c2010-03-16 22:30:13 +0000742 case tok::string_literal: {
743 bool Invalid = false;
744 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
745 if (Invalid)
746 return false;
John Thompson92bd8c72009-11-02 22:28:12 +0000747 break;
Douglas Gregor453091c2010-03-16 22:30:13 +0000748 }
John Thompson92bd8c72009-11-02 22:28:12 +0000749
750 case tok::less:
751 // This could be a <foo/bar.h> file coming from a macro expansion. In this
752 // case, glue the tokens together into FilenameBuffer and interpret those.
753 FilenameBuffer.push_back('<');
Douglas Gregorecdcb882010-10-20 22:00:55 +0000754 if (PP.ConcatenateIncludeName(FilenameBuffer, EndLoc))
Peter Collingbourne84021552011-02-28 02:37:51 +0000755 return false; // Found <eod> but no ">"? Diagnostic already emitted.
Chris Lattnera1394812010-01-10 01:35:12 +0000756 Filename = FilenameBuffer.str();
John Thompson92bd8c72009-11-02 22:28:12 +0000757 break;
758 default:
759 PP.Diag(Tok.getLocation(), diag::err_pp_expects_filename);
760 return false;
761 }
762
Chris Lattnera1394812010-01-10 01:35:12 +0000763 bool isAngled = PP.GetIncludeFilenameSpelling(Tok.getLocation(), Filename);
John Thompson92bd8c72009-11-02 22:28:12 +0000764 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
765 // error.
Chris Lattnera1394812010-01-10 01:35:12 +0000766 if (Filename.empty())
John Thompson92bd8c72009-11-02 22:28:12 +0000767 return false;
John Thompson92bd8c72009-11-02 22:28:12 +0000768
769 // Search include directories.
770 const DirectoryLookup *CurDir;
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000771 const FileEntry *File =
Manuel Klimek74124942011-04-26 21:50:03 +0000772 PP.LookupFile(Filename, isAngled, LookupFrom, CurDir, NULL, NULL);
John Thompson92bd8c72009-11-02 22:28:12 +0000773
774 // Get the result value. Result = true means the file exists.
Chris Lattner3ed572e2011-01-15 06:57:04 +0000775 bool Result = File != 0;
John Thompson92bd8c72009-11-02 22:28:12 +0000776
777 // Get ')'.
778 PP.LexNonComment(Tok);
779
780 // Ensure we have a trailing ).
781 if (Tok.isNot(tok::r_paren)) {
782 PP.Diag(Tok.getLocation(), diag::err_pp_missing_rparen) << II->getName();
783 PP.Diag(LParenLoc, diag::note_matching) << "(";
784 return false;
785 }
786
Chris Lattner3ed572e2011-01-15 06:57:04 +0000787 return Result;
John Thompson92bd8c72009-11-02 22:28:12 +0000788}
789
790/// EvaluateHasInclude - Process a '__has_include("path")' expression.
791/// Returns true if successful.
Chris Lattner3ed572e2011-01-15 06:57:04 +0000792static bool EvaluateHasInclude(Token &Tok, IdentifierInfo *II,
John Thompson92bd8c72009-11-02 22:28:12 +0000793 Preprocessor &PP) {
Chris Lattner3ed572e2011-01-15 06:57:04 +0000794 return EvaluateHasIncludeCommon(Tok, II, PP, NULL);
John Thompson92bd8c72009-11-02 22:28:12 +0000795}
796
797/// EvaluateHasIncludeNext - Process '__has_include_next("path")' expression.
798/// Returns true if successful.
Chris Lattner3ed572e2011-01-15 06:57:04 +0000799static bool EvaluateHasIncludeNext(Token &Tok,
John Thompson92bd8c72009-11-02 22:28:12 +0000800 IdentifierInfo *II, Preprocessor &PP) {
801 // __has_include_next is like __has_include, except that we start
802 // searching after the current found directory. If we can't do this,
803 // issue a diagnostic.
804 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
805 if (PP.isInPrimaryFile()) {
806 Lookup = 0;
807 PP.Diag(Tok, diag::pp_include_next_in_primary);
808 } else if (Lookup == 0) {
809 PP.Diag(Tok, diag::pp_include_next_absolute_path);
810 } else {
811 // Start looking up in the next directory.
812 ++Lookup;
813 }
814
Chris Lattner3ed572e2011-01-15 06:57:04 +0000815 return EvaluateHasIncludeCommon(Tok, II, PP, Lookup);
John Thompson92bd8c72009-11-02 22:28:12 +0000816}
Chris Lattner148772a2009-06-13 07:13:28 +0000817
Chris Lattnera3b605e2008-03-09 03:13:06 +0000818/// ExpandBuiltinMacro - If an identifier token is read that is to be expanded
819/// as a builtin macro, handle it and return the next token as 'Tok'.
820void Preprocessor::ExpandBuiltinMacro(Token &Tok) {
821 // Figure out which token this is.
822 IdentifierInfo *II = Tok.getIdentifierInfo();
823 assert(II && "Can't be a macro without id info!");
Mike Stump1eb44332009-09-09 15:08:12 +0000824
John McCall1ef8a2e2010-08-28 22:34:47 +0000825 // If this is an _Pragma or Microsoft __pragma directive, expand it,
826 // invoke the pragma handler, then lex the token after it.
Chris Lattnera3b605e2008-03-09 03:13:06 +0000827 if (II == Ident_Pragma)
828 return Handle_Pragma(Tok);
John McCall1ef8a2e2010-08-28 22:34:47 +0000829 else if (II == Ident__pragma) // in non-MS mode this is null
830 return HandleMicrosoft__pragma(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000831
Chris Lattnera3b605e2008-03-09 03:13:06 +0000832 ++NumBuiltinMacroExpanded;
833
Benjamin Kramerb1765912010-01-27 16:38:22 +0000834 llvm::SmallString<128> TmpBuffer;
835 llvm::raw_svector_ostream OS(TmpBuffer);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000836
837 // Set up the return result.
838 Tok.setIdentifierInfo(0);
839 Tok.clearFlag(Token::NeedsCleaning);
Mike Stump1eb44332009-09-09 15:08:12 +0000840
Chris Lattnera3b605e2008-03-09 03:13:06 +0000841 if (II == Ident__LINE__) {
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000842 // C99 6.10.8: "__LINE__: The presumed line number (within the current
843 // source file) of the current source line (an integer constant)". This can
844 // be affected by #line.
Chris Lattner081927b2009-02-15 21:06:39 +0000845 SourceLocation Loc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Chris Lattnerdff070f2009-04-18 22:29:33 +0000847 // Advance to the location of the first _, this might not be the first byte
848 // of the token if it starts with an escaped newline.
849 Loc = AdvanceToTokenCharacter(Loc, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000850
Chris Lattner081927b2009-02-15 21:06:39 +0000851 // One wrinkle here is that GCC expands __LINE__ to location of the *end* of
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000852 // a macro expansion. This doesn't matter for object-like macros, but
Chris Lattner081927b2009-02-15 21:06:39 +0000853 // can matter for a function-like macro that expands to contain __LINE__.
Chandler Carruth9e5bb852011-07-14 08:20:46 +0000854 // Skip down through expansion points until we find a file loc for the
855 // end of the expansion history.
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000856 Loc = SourceMgr.getExpansionRange(Loc).second;
Chris Lattner081927b2009-02-15 21:06:39 +0000857 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000858
Chris Lattner1fa49532009-03-08 08:08:45 +0000859 // __LINE__ expands to a simple numeric value.
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000860 OS << (PLoc.isValid()? PLoc.getLine() : 1);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000861 Tok.setKind(tok::numeric_constant);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000862 } else if (II == Ident__FILE__ || II == Ident__BASE_FILE__) {
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000863 // C99 6.10.8: "__FILE__: The presumed name of the current source file (a
864 // character string literal)". This can be affected by #line.
865 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
866
867 // __BASE_FILE__ is a GNU extension that returns the top of the presumed
868 // #include stack instead of the current file.
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000869 if (II == Ident__BASE_FILE__ && PLoc.isValid()) {
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000870 SourceLocation NextLoc = PLoc.getIncludeLoc();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000871 while (NextLoc.isValid()) {
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000872 PLoc = SourceMgr.getPresumedLoc(NextLoc);
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000873 if (PLoc.isInvalid())
874 break;
875
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000876 NextLoc = PLoc.getIncludeLoc();
Chris Lattnera3b605e2008-03-09 03:13:06 +0000877 }
878 }
Mike Stump1eb44332009-09-09 15:08:12 +0000879
Chris Lattnera3b605e2008-03-09 03:13:06 +0000880 // Escape this filename. Turn '\' -> '\\' '"' -> '\"'
Benjamin Kramerb1765912010-01-27 16:38:22 +0000881 llvm::SmallString<128> FN;
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000882 if (PLoc.isValid()) {
883 FN += PLoc.getFilename();
884 Lexer::Stringify(FN);
885 OS << '"' << FN.str() << '"';
886 }
Chris Lattnera3b605e2008-03-09 03:13:06 +0000887 Tok.setKind(tok::string_literal);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000888 } else if (II == Ident__DATE__) {
889 if (!DATELoc.isValid())
890 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
891 Tok.setKind(tok::string_literal);
892 Tok.setLength(strlen("\"Mmm dd yyyy\""));
Chandler Carruthbf340e42011-07-26 03:03:05 +0000893 Tok.setLocation(SourceMgr.createExpansionLoc(DATELoc, Tok.getLocation(),
894 Tok.getLocation(),
895 Tok.getLength()));
Benjamin Kramerb1765912010-01-27 16:38:22 +0000896 return;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000897 } else if (II == Ident__TIME__) {
898 if (!TIMELoc.isValid())
899 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
900 Tok.setKind(tok::string_literal);
901 Tok.setLength(strlen("\"hh:mm:ss\""));
Chandler Carruthbf340e42011-07-26 03:03:05 +0000902 Tok.setLocation(SourceMgr.createExpansionLoc(TIMELoc, Tok.getLocation(),
903 Tok.getLocation(),
904 Tok.getLength()));
Benjamin Kramerb1765912010-01-27 16:38:22 +0000905 return;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000906 } else if (II == Ident__INCLUDE_LEVEL__) {
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000907 // Compute the presumed include depth of this token. This can be affected
908 // by GNU line markers.
Chris Lattnera3b605e2008-03-09 03:13:06 +0000909 unsigned Depth = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000911 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000912 if (PLoc.isValid()) {
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000913 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc());
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000914 for (; PLoc.isValid(); ++Depth)
915 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc());
916 }
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Chris Lattner1fa49532009-03-08 08:08:45 +0000918 // __INCLUDE_LEVEL__ expands to a simple numeric value.
Benjamin Kramerb1765912010-01-27 16:38:22 +0000919 OS << Depth;
Chris Lattnera3b605e2008-03-09 03:13:06 +0000920 Tok.setKind(tok::numeric_constant);
Chris Lattnera3b605e2008-03-09 03:13:06 +0000921 } else if (II == Ident__TIMESTAMP__) {
922 // MSVC, ICC, GCC, VisualAge C++ extension. The generated string should be
923 // of the form "Ddd Mmm dd hh::mm::ss yyyy", which is returned by asctime.
Chris Lattnera3b605e2008-03-09 03:13:06 +0000924
925 // Get the file that we are lexing out of. If we're currently lexing from
926 // a macro, dig into the include stack.
927 const FileEntry *CurFile = 0;
Ted Kremeneka275a192008-11-20 01:35:24 +0000928 PreprocessorLexer *TheLexer = getCurrentFileLexer();
Mike Stump1eb44332009-09-09 15:08:12 +0000929
Chris Lattnera3b605e2008-03-09 03:13:06 +0000930 if (TheLexer)
Ted Kremenekac80c6e2008-11-19 22:55:25 +0000931 CurFile = SourceMgr.getFileEntryForID(TheLexer->getFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000932
Chris Lattnera3b605e2008-03-09 03:13:06 +0000933 const char *Result;
934 if (CurFile) {
935 time_t TT = CurFile->getModificationTime();
936 struct tm *TM = localtime(&TT);
937 Result = asctime(TM);
938 } else {
939 Result = "??? ??? ?? ??:??:?? ????\n";
940 }
Benjamin Kramerb1765912010-01-27 16:38:22 +0000941 // Surround the string with " and strip the trailing newline.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000942 OS << '"' << StringRef(Result, strlen(Result)-1) << '"';
Chris Lattnera3b605e2008-03-09 03:13:06 +0000943 Tok.setKind(tok::string_literal);
Chris Lattnerc1f9d822009-04-13 01:29:17 +0000944 } else if (II == Ident__COUNTER__) {
Chris Lattnerc1f9d822009-04-13 01:29:17 +0000945 // __COUNTER__ expands to a simple numeric value.
Benjamin Kramerb1765912010-01-27 16:38:22 +0000946 OS << CounterValue++;
Chris Lattnerc1f9d822009-04-13 01:29:17 +0000947 Tok.setKind(tok::numeric_constant);
Peter Collingbournec1b5fa42011-05-13 20:54:45 +0000948 } else if (II == Ident__has_feature ||
949 II == Ident__has_extension ||
950 II == Ident__has_builtin ||
Anders Carlssoncae50952010-10-20 02:31:43 +0000951 II == Ident__has_attribute) {
Peter Collingbournec1b5fa42011-05-13 20:54:45 +0000952 // The argument to these builtins should be a parenthesized identifier.
Chris Lattner148772a2009-06-13 07:13:28 +0000953 SourceLocation StartLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000954
Chris Lattner148772a2009-06-13 07:13:28 +0000955 bool IsValid = false;
956 IdentifierInfo *FeatureII = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000957
Chris Lattner148772a2009-06-13 07:13:28 +0000958 // Read the '('.
959 Lex(Tok);
960 if (Tok.is(tok::l_paren)) {
961 // Read the identifier
962 Lex(Tok);
963 if (Tok.is(tok::identifier)) {
964 FeatureII = Tok.getIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Chris Lattner148772a2009-06-13 07:13:28 +0000966 // Read the ')'.
967 Lex(Tok);
968 if (Tok.is(tok::r_paren))
969 IsValid = true;
970 }
971 }
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Chris Lattner148772a2009-06-13 07:13:28 +0000973 bool Value = false;
974 if (!IsValid)
975 Diag(StartLoc, diag::err_feature_check_malformed);
976 else if (II == Ident__has_builtin) {
Mike Stump1eb44332009-09-09 15:08:12 +0000977 // Check for a builtin is trivial.
Chris Lattner148772a2009-06-13 07:13:28 +0000978 Value = FeatureII->getBuiltinID() != 0;
Anders Carlssoncae50952010-10-20 02:31:43 +0000979 } else if (II == Ident__has_attribute)
980 Value = HasAttribute(FeatureII);
Peter Collingbournec1b5fa42011-05-13 20:54:45 +0000981 else if (II == Ident__has_extension)
982 Value = HasExtension(*this, FeatureII);
Anders Carlssoncae50952010-10-20 02:31:43 +0000983 else {
Chris Lattner148772a2009-06-13 07:13:28 +0000984 assert(II == Ident__has_feature && "Must be feature check");
985 Value = HasFeature(*this, FeatureII);
986 }
Mike Stump1eb44332009-09-09 15:08:12 +0000987
Benjamin Kramerb1765912010-01-27 16:38:22 +0000988 OS << (int)Value;
Chris Lattner148772a2009-06-13 07:13:28 +0000989 Tok.setKind(tok::numeric_constant);
John Thompson92bd8c72009-11-02 22:28:12 +0000990 } else if (II == Ident__has_include ||
991 II == Ident__has_include_next) {
992 // The argument to these two builtins should be a parenthesized
993 // file name string literal using angle brackets (<>) or
994 // double-quotes ("").
Chris Lattner3ed572e2011-01-15 06:57:04 +0000995 bool Value;
John Thompson92bd8c72009-11-02 22:28:12 +0000996 if (II == Ident__has_include)
Chris Lattner3ed572e2011-01-15 06:57:04 +0000997 Value = EvaluateHasInclude(Tok, II, *this);
John Thompson92bd8c72009-11-02 22:28:12 +0000998 else
Chris Lattner3ed572e2011-01-15 06:57:04 +0000999 Value = EvaluateHasIncludeNext(Tok, II, *this);
Benjamin Kramerb1765912010-01-27 16:38:22 +00001000 OS << (int)Value;
John Thompson92bd8c72009-11-02 22:28:12 +00001001 Tok.setKind(tok::numeric_constant);
Chris Lattnera3b605e2008-03-09 03:13:06 +00001002 } else {
1003 assert(0 && "Unknown identifier!");
1004 }
Benjamin Kramerb1765912010-01-27 16:38:22 +00001005 CreateString(OS.str().data(), OS.str().size(), Tok, Tok.getLocation());
Chris Lattnera3b605e2008-03-09 03:13:06 +00001006}
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001007
1008void Preprocessor::markMacroAsUsed(MacroInfo *MI) {
1009 // If the 'used' status changed, and the macro requires 'unused' warning,
1010 // remove its SourceLocation from the warn-for-unused-macro locations.
1011 if (MI->isWarnIfUnused() && !MI->isUsed())
1012 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
1013 MI->setIsUsed(true);
1014}