blob: f0e2fbdfa627e4b413b9dc9574b3b5cb525dbb4e [file] [log] [blame]
Chris Lattner1543e9c2008-03-09 02:18:51 +00001//===--- TokenLexer.cpp - Lex from a token stream -------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner1543e9c2008-03-09 02:18:51 +000010// This file implements the TokenLexer interface.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner5d75de02008-03-09 02:22:57 +000014#include "clang/Lex/TokenLexer.h"
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000015#include "MacroArgs.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/Lex/MacroInfo.h"
17#include "clang/Lex/Preprocessor.h"
18#include "clang/Basic/SourceManager.h"
Chris Lattner500d3292009-01-29 05:15:15 +000019#include "clang/Lex/LexDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/SmallVector.h"
21using namespace clang;
22
Reid Spencer5f016e22007-07-11 17:01:13 +000023
Chris Lattner1543e9c2008-03-09 02:18:51 +000024/// Create a TokenLexer for the specified macro with the specified actual
Reid Spencer5f016e22007-07-11 17:01:13 +000025/// arguments. Note that this ctor takes ownership of the ActualArgs pointer.
Chris Lattnere7fb4842009-02-15 20:52:18 +000026void TokenLexer::Init(Token &Tok, SourceLocation ILEnd, MacroArgs *Actuals) {
Chris Lattner1543e9c2008-03-09 02:18:51 +000027 // If the client is reusing a TokenLexer, make sure to free any memory
Chris Lattner9594acf2007-07-15 00:25:26 +000028 // associated with it.
29 destroy();
30
Chris Lattnercc1a8752007-10-07 08:44:20 +000031 Macro = PP.getMacroInfo(Tok.getIdentifierInfo());
Chris Lattner9594acf2007-07-15 00:25:26 +000032 ActualArgs = Actuals;
33 CurToken = 0;
Chris Lattnerb99bdad2009-01-26 03:46:22 +000034
Chris Lattnere7fb4842009-02-15 20:52:18 +000035 InstantiateLocStart = Tok.getLocation();
36 InstantiateLocEnd = ILEnd;
Chris Lattner9594acf2007-07-15 00:25:26 +000037 AtStartOfLine = Tok.isAtStartOfLine();
38 HasLeadingSpace = Tok.hasLeadingSpace();
Chris Lattner8d896432008-03-09 02:07:49 +000039 Tokens = &*Macro->tokens_begin();
40 OwnsTokens = false;
Chris Lattner6b884502008-03-10 06:06:04 +000041 DisableMacroExpansion = false;
Chris Lattner8d896432008-03-09 02:07:49 +000042 NumTokens = Macro->tokens_end()-Macro->tokens_begin();
Reid Spencer5f016e22007-07-11 17:01:13 +000043
44 // If this is a function-like macro, expand the arguments and change
Chris Lattner8d896432008-03-09 02:07:49 +000045 // Tokens to point to the expanded tokens.
Reid Spencer5f016e22007-07-11 17:01:13 +000046 if (Macro->isFunctionLike() && Macro->getNumArgs())
47 ExpandFunctionArguments();
48
49 // Mark the macro as currently disabled, so that it is not recursively
50 // expanded. The macro must be disabled only after argument pre-expansion of
51 // function-like macro arguments occurs.
52 Macro->DisableMacro();
53}
54
Chris Lattner9594acf2007-07-15 00:25:26 +000055
56
Chris Lattner1543e9c2008-03-09 02:18:51 +000057/// Create a TokenLexer for the specified token stream. This does not
Reid Spencer5f016e22007-07-11 17:01:13 +000058/// take ownership of the specified token vector.
Chris Lattner6b884502008-03-10 06:06:04 +000059void TokenLexer::Init(const Token *TokArray, unsigned NumToks,
60 bool disableMacroExpansion, bool ownsTokens) {
Chris Lattner1543e9c2008-03-09 02:18:51 +000061 // If the client is reusing a TokenLexer, make sure to free any memory
Chris Lattner9594acf2007-07-15 00:25:26 +000062 // associated with it.
63 destroy();
64
65 Macro = 0;
66 ActualArgs = 0;
Chris Lattner8d896432008-03-09 02:07:49 +000067 Tokens = TokArray;
Chris Lattner6b884502008-03-10 06:06:04 +000068 OwnsTokens = ownsTokens;
69 DisableMacroExpansion = disableMacroExpansion;
Chris Lattner8d896432008-03-09 02:07:49 +000070 NumTokens = NumToks;
Chris Lattner9594acf2007-07-15 00:25:26 +000071 CurToken = 0;
Chris Lattnere7fb4842009-02-15 20:52:18 +000072 InstantiateLocStart = InstantiateLocEnd = SourceLocation();
Chris Lattner9594acf2007-07-15 00:25:26 +000073 AtStartOfLine = false;
74 HasLeadingSpace = false;
Reid Spencer5f016e22007-07-11 17:01:13 +000075
76 // Set HasLeadingSpace/AtStartOfLine so that the first token will be
77 // returned unmodified.
78 if (NumToks != 0) {
79 AtStartOfLine = TokArray[0].isAtStartOfLine();
80 HasLeadingSpace = TokArray[0].hasLeadingSpace();
81 }
82}
83
84
Chris Lattner1543e9c2008-03-09 02:18:51 +000085void TokenLexer::destroy() {
Reid Spencer5f016e22007-07-11 17:01:13 +000086 // If this was a function-like macro that actually uses its arguments, delete
87 // the expanded tokens.
Chris Lattner8d896432008-03-09 02:07:49 +000088 if (OwnsTokens) {
89 delete [] Tokens;
90 Tokens = 0;
Chris Lattner9c683062007-07-22 01:16:55 +000091 }
Reid Spencer5f016e22007-07-11 17:01:13 +000092
Chris Lattner1543e9c2008-03-09 02:18:51 +000093 // TokenLexer owns its formal arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +000094 if (ActualArgs) ActualArgs->destroy();
95}
96
97/// Expand the arguments of a function-like macro so that we can quickly
Chris Lattner8d896432008-03-09 02:07:49 +000098/// return preexpanded tokens from Tokens.
Chris Lattner1543e9c2008-03-09 02:18:51 +000099void TokenLexer::ExpandFunctionArguments() {
Chris Lattnerd2177732007-07-20 16:59:19 +0000100 llvm::SmallVector<Token, 128> ResultToks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000101
Chris Lattner8d896432008-03-09 02:07:49 +0000102 // Loop through 'Tokens', expanding them into ResultToks. Keep
Reid Spencer5f016e22007-07-11 17:01:13 +0000103 // track of whether we change anything. If not, no need to keep them. If so,
Chris Lattner8d896432008-03-09 02:07:49 +0000104 // we install the newly expanded sequence as the new 'Tokens' list.
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 bool MadeChange = false;
106
107 // NextTokGetsSpace - When this is true, the next token appended to the
108 // output list will get a leading space, regardless of whether it had one to
109 // begin with or not. This is used for placemarker support.
110 bool NextTokGetsSpace = false;
111
Chris Lattner8d896432008-03-09 02:07:49 +0000112 for (unsigned i = 0, e = NumTokens; i != e; ++i) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 // If we found the stringify operator, get the argument stringified. The
114 // preprocessor already verified that the following token is a macro name
115 // when the #define was parsed.
Chris Lattner8d896432008-03-09 02:07:49 +0000116 const Token &CurTok = Tokens[i];
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000117 if (CurTok.is(tok::hash) || CurTok.is(tok::hashat)) {
Chris Lattner8d896432008-03-09 02:07:49 +0000118 int ArgNo = Macro->getArgumentNum(Tokens[i+1].getIdentifierInfo());
Reid Spencer5f016e22007-07-11 17:01:13 +0000119 assert(ArgNo != -1 && "Token following # is not an argument?");
120
Chris Lattnerd2177732007-07-20 16:59:19 +0000121 Token Res;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000122 if (CurTok.is(tok::hash)) // Stringify
Reid Spencer5f016e22007-07-11 17:01:13 +0000123 Res = ActualArgs->getStringifiedArgument(ArgNo, PP);
124 else {
125 // 'charify': don't bother caching these.
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000126 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo),
127 PP, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 }
129
130 // The stringified/charified string leading space flag gets set to match
131 // the #/#@ operator.
132 if (CurTok.hasLeadingSpace() || NextTokGetsSpace)
Chris Lattnerd2177732007-07-20 16:59:19 +0000133 Res.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000134
135 ResultToks.push_back(Res);
136 MadeChange = true;
137 ++i; // Skip arg name.
138 NextTokGetsSpace = false;
139 continue;
140 }
141
142 // Otherwise, if this is not an argument token, just add the token to the
143 // output buffer.
144 IdentifierInfo *II = CurTok.getIdentifierInfo();
145 int ArgNo = II ? Macro->getArgumentNum(II) : -1;
146 if (ArgNo == -1) {
147 // This isn't an argument, just add it.
148 ResultToks.push_back(CurTok);
149
150 if (NextTokGetsSpace) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000151 ResultToks.back().setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 NextTokGetsSpace = false;
153 }
154 continue;
155 }
156
157 // An argument is expanded somehow, the result is different than the
158 // input.
159 MadeChange = true;
160
161 // Otherwise, this is a use of the argument. Find out if there is a paste
162 // (##) operator before or after the argument.
163 bool PasteBefore =
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000164 !ResultToks.empty() && ResultToks.back().is(tok::hashhash);
Chris Lattner8d896432008-03-09 02:07:49 +0000165 bool PasteAfter = i+1 != e && Tokens[i+1].is(tok::hashhash);
Reid Spencer5f016e22007-07-11 17:01:13 +0000166
167 // If it is not the LHS/RHS of a ## operator, we must pre-expand the
168 // argument and substitute the expanded tokens into the result. This is
169 // C99 6.10.3.1p1.
170 if (!PasteBefore && !PasteAfter) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000171 const Token *ResultArgToks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000172
173 // Only preexpand the argument if it could possibly need it. This
174 // avoids some work in common cases.
Chris Lattnerd2177732007-07-20 16:59:19 +0000175 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo);
Chris Lattnercc1a8752007-10-07 08:44:20 +0000176 if (ActualArgs->ArgNeedsPreexpansion(ArgTok, PP))
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 ResultArgToks = &ActualArgs->getPreExpArgument(ArgNo, PP)[0];
178 else
179 ResultArgToks = ArgTok; // Use non-preexpanded tokens.
180
181 // If the arg token expanded into anything, append it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000182 if (ResultArgToks->isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 unsigned FirstResult = ResultToks.size();
184 unsigned NumToks = MacroArgs::getArgLength(ResultArgToks);
185 ResultToks.append(ResultArgToks, ResultArgToks+NumToks);
186
187 // If any tokens were substituted from the argument, the whitespace
188 // before the first token should match the whitespace of the arg
189 // identifier.
Chris Lattnerd2177732007-07-20 16:59:19 +0000190 ResultToks[FirstResult].setFlagValue(Token::LeadingSpace,
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 CurTok.hasLeadingSpace() ||
192 NextTokGetsSpace);
193 NextTokGetsSpace = false;
194 } else {
195 // If this is an empty argument, and if there was whitespace before the
196 // formal token, make sure the next token gets whitespace before it.
197 NextTokGetsSpace = CurTok.hasLeadingSpace();
198 }
199 continue;
200 }
201
202 // Okay, we have a token that is either the LHS or RHS of a paste (##)
203 // argument. It gets substituted as its non-pre-expanded tokens.
Chris Lattnerd2177732007-07-20 16:59:19 +0000204 const Token *ArgToks = ActualArgs->getUnexpArgument(ArgNo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 unsigned NumToks = MacroArgs::getArgLength(ArgToks);
206 if (NumToks) { // Not an empty argument?
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000207 // If this is the GNU ", ## __VA_ARG__" extension, and we just learned
208 // that __VA_ARG__ expands to multiple tokens, avoid a pasting error when
209 // the expander trys to paste ',' with the first token of the __VA_ARG__
210 // expansion.
211 if (PasteBefore && ResultToks.size() >= 2 &&
212 ResultToks[ResultToks.size()-2].is(tok::comma) &&
213 (unsigned)ArgNo == Macro->getNumArgs()-1 &&
214 Macro->isVariadic()) {
215 // Remove the paste operator, report use of the extension.
216 PP.Diag(ResultToks.back().getLocation(), diag::ext_paste_comma);
217 ResultToks.pop_back();
218 }
219
Reid Spencer5f016e22007-07-11 17:01:13 +0000220 ResultToks.append(ArgToks, ArgToks+NumToks);
221
222 // If the next token was supposed to get leading whitespace, ensure it has
223 // it now.
224 if (NextTokGetsSpace) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000225 ResultToks[ResultToks.size()-NumToks].setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 NextTokGetsSpace = false;
227 }
228 continue;
229 }
230
231 // If an empty argument is on the LHS or RHS of a paste, the standard (C99
232 // 6.10.3.3p2,3) calls for a bunch of placemarker stuff to occur. We
233 // implement this by eating ## operators when a LHS or RHS expands to
234 // empty.
235 NextTokGetsSpace |= CurTok.hasLeadingSpace();
236 if (PasteAfter) {
237 // Discard the argument token and skip (don't copy to the expansion
238 // buffer) the paste operator after it.
Chris Lattner8d896432008-03-09 02:07:49 +0000239 NextTokGetsSpace |= Tokens[i+1].hasLeadingSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 ++i;
241 continue;
242 }
243
244 // If this is on the RHS of a paste operator, we've already copied the
245 // paste operator to the ResultToks list. Remove it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000246 assert(PasteBefore && ResultToks.back().is(tok::hashhash));
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 NextTokGetsSpace |= ResultToks.back().hasLeadingSpace();
248 ResultToks.pop_back();
249
250 // If this is the __VA_ARGS__ token, and if the argument wasn't provided,
251 // and if the macro had at least one real argument, and if the token before
252 // the ## was a comma, remove the comma.
253 if ((unsigned)ArgNo == Macro->getNumArgs()-1 && // is __VA_ARGS__
254 ActualArgs->isVarargsElidedUse() && // Argument elided.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000255 !ResultToks.empty() && ResultToks.back().is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000256 // Never add a space, even if the comma, ##, or arg had a space.
257 NextTokGetsSpace = false;
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000258 // Remove the paste operator, report use of the extension.
259 PP.Diag(ResultToks.back().getLocation(), diag::ext_paste_comma);
Reid Spencer5f016e22007-07-11 17:01:13 +0000260 ResultToks.pop_back();
261 }
262 continue;
263 }
264
Chris Lattner8d896432008-03-09 02:07:49 +0000265 // If anything changed, install this as the new Tokens list.
Reid Spencer5f016e22007-07-11 17:01:13 +0000266 if (MadeChange) {
267 // This is deleted in the dtor.
Chris Lattner8d896432008-03-09 02:07:49 +0000268 NumTokens = ResultToks.size();
Chris Lattnerd2177732007-07-20 16:59:19 +0000269 Token *Res = new Token[ResultToks.size()];
Chris Lattner8d896432008-03-09 02:07:49 +0000270 if (NumTokens)
271 memcpy(Res, &ResultToks[0], NumTokens*sizeof(Token));
272 Tokens = Res;
273 OwnsTokens = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000274 }
275}
276
277/// Lex - Lex and return a token from this macro stream.
278///
Chris Lattner1543e9c2008-03-09 02:18:51 +0000279void TokenLexer::Lex(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000280 // Lexing off the end of the macro, pop this macro off the expansion stack.
281 if (isAtEnd()) {
282 // If this is a macro (not a token stream), mark the macro enabled now
283 // that it is no longer being expanded.
284 if (Macro) Macro->EnableMacro();
285
286 // Pop this context off the preprocessors lexer stack and get the next
287 // token. This will delete "this" so remember the PP instance var.
288 Preprocessor &PPCache = PP;
Chris Lattnerfde2bf92008-03-09 03:04:16 +0000289 if (PP.HandleEndOfTokenLexer(Tok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000290 return;
291
Chris Lattnerfde2bf92008-03-09 03:04:16 +0000292 // HandleEndOfTokenLexer may not return a token. If it doesn't, lex
293 // whatever is next.
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 return PPCache.Lex(Tok);
295 }
296
297 // If this is the first token of the expanded result, we inherit spacing
298 // properties later.
299 bool isFirstToken = CurToken == 0;
300
301 // Get the next token to return.
Chris Lattner8d896432008-03-09 02:07:49 +0000302 Tok = Tokens[CurToken++];
Reid Spencer5f016e22007-07-11 17:01:13 +0000303
304 // If this token is followed by a token paste (##) operator, paste the tokens!
Chris Lattner8d896432008-03-09 02:07:49 +0000305 if (!isAtEnd() && Tokens[CurToken].is(tok::hashhash))
Chris Lattner3f1cc832008-02-07 06:03:59 +0000306 if (PasteTokens(Tok)) {
307 // When handling the microsoft /##/ extension, the final token is
308 // returned by PasteTokens, not the pasted token.
309 return;
310 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000311
312 // The token's current location indicate where the token was lexed from. We
313 // need this information to compute the spelling of the token, but any
314 // diagnostics for the expanded token should appear as if they came from
315 // InstantiationLoc. Pull this information together into a new SourceLocation
316 // that captures all of this.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000317 if (InstantiateLocStart.isValid()) { // Don't do this for token streams.
318 SourceManager &SM = PP.getSourceManager();
319 Tok.setLocation(SM.createInstantiationLoc(Tok.getLocation(),
320 InstantiateLocStart,
321 InstantiateLocEnd,
322 Tok.getLength()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000323 }
324
325 // If this is the first token, set the lexical properties of the token to
326 // match the lexical properties of the macro identifier.
327 if (isFirstToken) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000328 Tok.setFlagValue(Token::StartOfLine , AtStartOfLine);
329 Tok.setFlagValue(Token::LeadingSpace, HasLeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 }
331
332 // Handle recursive expansion!
Chris Lattner863c4862009-01-23 18:35:48 +0000333 if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
334 // Change the kind of this identifier to the appropriate token kind, e.g.
335 // turning "for" into a keyword.
336 Tok.setKind(II->getTokenID());
337
338 if (!DisableMacroExpansion && II->isHandleIdentifierCase())
339 PP.HandleIdentifier(Tok);
340 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000341
342 // Otherwise, return a normal token.
343}
344
345/// PasteTokens - Tok is the LHS of a ## operator, and CurToken is the ##
346/// operator. Read the ## and RHS, and paste the LHS/RHS together. If there
Nico Weber48002c82008-09-29 00:25:48 +0000347/// are more ## after it, chomp them iteratively. Return the result as Tok.
Chris Lattner3f1cc832008-02-07 06:03:59 +0000348/// If this returns true, the caller should immediately return the token.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000349bool TokenLexer::PasteTokens(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 llvm::SmallVector<char, 128> Buffer;
Chris Lattner47246be2009-01-26 19:29:26 +0000351 const char *ResultTokStrPtr = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000352 do {
353 // Consume the ## operator.
Chris Lattner8d896432008-03-09 02:07:49 +0000354 SourceLocation PasteOpLoc = Tokens[CurToken].getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000355 ++CurToken;
356 assert(!isAtEnd() && "No token on the RHS of a paste operator!");
357
358 // Get the RHS token.
Chris Lattner8d896432008-03-09 02:07:49 +0000359 const Token &RHS = Tokens[CurToken];
Reid Spencer5f016e22007-07-11 17:01:13 +0000360
361 bool isInvalid = false;
362
363 // Allocate space for the result token. This is guaranteed to be enough for
364 // the two tokens and a null terminator.
365 Buffer.resize(Tok.getLength() + RHS.getLength() + 1);
366
367 // Get the spelling of the LHS token in Buffer.
368 const char *BufPtr = &Buffer[0];
369 unsigned LHSLen = PP.getSpelling(Tok, BufPtr);
370 if (BufPtr != &Buffer[0]) // Really, we want the chars in Buffer!
371 memcpy(&Buffer[0], BufPtr, LHSLen);
372
373 BufPtr = &Buffer[LHSLen];
374 unsigned RHSLen = PP.getSpelling(RHS, BufPtr);
375 if (BufPtr != &Buffer[LHSLen]) // Really, we want the chars in Buffer!
376 memcpy(&Buffer[LHSLen], BufPtr, RHSLen);
377
378 // Add null terminator.
379 Buffer[LHSLen+RHSLen] = '\0';
380
381 // Trim excess space.
382 Buffer.resize(LHSLen+RHSLen+1);
383
384 // Plop the pasted result (including the trailing newline and null) into a
385 // scratch buffer where we can lex it.
Chris Lattner47246be2009-01-26 19:29:26 +0000386 Token ResultTokTmp;
387 ResultTokTmp.startToken();
Reid Spencer5f016e22007-07-11 17:01:13 +0000388
Chris Lattner47246be2009-01-26 19:29:26 +0000389 // Claim that the tmp token is a string_literal so that we can get the
390 // character pointer back from CreateString.
391 ResultTokTmp.setKind(tok::string_literal);
392 PP.CreateString(&Buffer[0], Buffer.size(), ResultTokTmp);
393 SourceLocation ResultTokLoc = ResultTokTmp.getLocation();
394 ResultTokStrPtr = ResultTokTmp.getLiteralData();
395
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 // Lex the resultant pasted token into Result.
Chris Lattnerd2177732007-07-20 16:59:19 +0000397 Token Result;
Reid Spencer5f016e22007-07-11 17:01:13 +0000398
Chris Lattner0af57422008-10-12 01:31:51 +0000399 if (Tok.is(tok::identifier) && RHS.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 // Common paste case: identifier+identifier = identifier. Avoid creating
401 // a lexer and other overhead.
402 PP.IncrementPasteCounter(true);
403 Result.startToken();
404 Result.setKind(tok::identifier);
405 Result.setLocation(ResultTokLoc);
406 Result.setLength(LHSLen+RHSLen);
407 } else {
408 PP.IncrementPasteCounter(false);
409
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000410 assert(ResultTokLoc.isFileID() &&
411 "Should be a raw location into scratch buffer");
Reid Spencer5f016e22007-07-11 17:01:13 +0000412 SourceManager &SourceMgr = PP.getSourceManager();
Chris Lattner47246be2009-01-26 19:29:26 +0000413 FileID LocFileID = SourceMgr.getFileID(ResultTokLoc);
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000414
Chris Lattner47246be2009-01-26 19:29:26 +0000415 const char *ScratchBufStart = SourceMgr.getBufferData(LocFileID).first;
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000416
417 // Make a lexer to lex this string from. Lex just this one token.
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 // Make a lexer object so that we lex and expand the paste result.
Chris Lattner47246be2009-01-26 19:29:26 +0000419 Lexer TL(SourceMgr.getLocForStartOfFile(LocFileID),
420 PP.getLangOptions(), ScratchBufStart,
421 ResultTokStrPtr,
422 ResultTokStrPtr+LHSLen+RHSLen /*don't include null*/);
Reid Spencer5f016e22007-07-11 17:01:13 +0000423
424 // Lex a token in raw mode. This way it won't look up identifiers
425 // automatically, lexing off the end will return an eof token, and
426 // warnings are disabled. This returns true if the result token is the
427 // entire buffer.
Chris Lattner590f0cc2008-10-12 01:15:46 +0000428 bool IsComplete = TL.LexFromRawLexer(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000429
430 // If we got an EOF token, we didn't form even ONE token. For example, we
431 // did "/ ## /" to get "//".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000432 IsComplete &= Result.isNot(tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 isInvalid = !IsComplete;
Reid Spencer5f016e22007-07-11 17:01:13 +0000434 }
435
436 // If pasting the two tokens didn't form a full new token, this is an error.
437 // This occurs with "x ## +" and other stuff. Return with Tok unmodified
438 // and with RHS as the next token to lex.
439 if (isInvalid) {
Chris Lattner3f1cc832008-02-07 06:03:59 +0000440 // Test for the Microsoft extension of /##/ turning into // here on the
441 // error path.
442 if (PP.getLangOptions().Microsoft && Tok.is(tok::slash) &&
443 RHS.is(tok::slash)) {
444 HandleMicrosoftCommentPaste(Tok);
445 return true;
Chris Lattner3f1cc832008-02-07 06:03:59 +0000446 }
Chris Lattner47246be2009-01-26 19:29:26 +0000447
448 // TODO: If not in assembler language mode.
449 PP.Diag(PasteOpLoc, diag::err_pp_bad_paste)
450 << std::string(Buffer.begin(), Buffer.end()-1);
451 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 }
453
Chris Lattner1543e9c2008-03-09 02:18:51 +0000454 // Turn ## into 'unknown' to avoid # ## # from looking like a paste
455 // operator.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000456 if (Result.is(tok::hashhash))
Reid Spencer5f016e22007-07-11 17:01:13 +0000457 Result.setKind(tok::unknown);
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000458 // FIXME: Turn __VA_ARGS__ into "not a token"?
Reid Spencer5f016e22007-07-11 17:01:13 +0000459
460 // Transfer properties of the LHS over the the Result.
Chris Lattnerd2177732007-07-20 16:59:19 +0000461 Result.setFlagValue(Token::StartOfLine , Tok.isAtStartOfLine());
462 Result.setFlagValue(Token::LeadingSpace, Tok.hasLeadingSpace());
Reid Spencer5f016e22007-07-11 17:01:13 +0000463
464 // Finally, replace LHS with the result, consume the RHS, and iterate.
465 ++CurToken;
466 Tok = Result;
Chris Lattner8d896432008-03-09 02:07:49 +0000467 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash));
Reid Spencer5f016e22007-07-11 17:01:13 +0000468
469 // Now that we got the result token, it will be subject to expansion. Since
470 // token pasting re-lexes the result token in raw mode, identifier information
471 // isn't looked up. As such, if the result is an identifier, look up id info.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000472 if (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000473 // Look up the identifier info for the token. We disabled identifier lookup
474 // by saying we're skipping contents, so we need to do this manually.
Chris Lattner47246be2009-01-26 19:29:26 +0000475 Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok, ResultTokStrPtr));
Reid Spencer5f016e22007-07-11 17:01:13 +0000476 }
Chris Lattner3f1cc832008-02-07 06:03:59 +0000477 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000478}
479
480/// isNextTokenLParen - If the next token lexed will pop this macro off the
481/// expansion stack, return 2. If the next unexpanded token is a '(', return
482/// 1, otherwise return 0.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000483unsigned TokenLexer::isNextTokenLParen() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000484 // Out of tokens?
485 if (isAtEnd())
486 return 2;
Chris Lattner8d896432008-03-09 02:07:49 +0000487 return Tokens[CurToken].is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +0000488}
Chris Lattner3f1cc832008-02-07 06:03:59 +0000489
490
491/// HandleMicrosoftCommentPaste - In microsoft compatibility mode, /##/ pastes
492/// together to form a comment that comments out everything in the current
493/// macro, other active macros, and anything left on the current physical
494/// source line of the instantiated buffer. Handle this by returning the
495/// first token on the next line.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000496void TokenLexer::HandleMicrosoftCommentPaste(Token &Tok) {
Chris Lattner3f1cc832008-02-07 06:03:59 +0000497 // We 'comment out' the rest of this macro by just ignoring the rest of the
498 // tokens that have not been lexed yet, if any.
499
500 // Since this must be a macro, mark the macro enabled now that it is no longer
501 // being expanded.
502 assert(Macro && "Token streams can't paste comments");
503 Macro->EnableMacro();
504
505 PP.HandleMicrosoftCommentPaste(Tok);
506}