blob: 7ae61beb8882d322f3a4401d3e51eda0b52b226e [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"
19#include "clang/Basic/Diagnostic.h"
20#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 Lattner1543e9c2008-03-09 02:18:51 +000026void TokenLexer::Init(Token &Tok, MacroArgs *Actuals) {
27 // 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 Lattner9594acf2007-07-15 00:25:26 +000035 InstantiateLoc = Tok.getLocation();
Chris Lattnerb99bdad2009-01-26 03:46:22 +000036
37 // If the instantiation loc is not already a FileID, resolve it here. If we
38 // don't do this, we end up doing it once per token lexed.
39 if (!InstantiateLoc.isFileID())
40 InstantiateLoc = PP.getSourceManager().getInstantiationLoc(InstantiateLoc);
41
Chris Lattner9594acf2007-07-15 00:25:26 +000042 AtStartOfLine = Tok.isAtStartOfLine();
43 HasLeadingSpace = Tok.hasLeadingSpace();
Chris Lattner8d896432008-03-09 02:07:49 +000044 Tokens = &*Macro->tokens_begin();
45 OwnsTokens = false;
Chris Lattner6b884502008-03-10 06:06:04 +000046 DisableMacroExpansion = false;
Chris Lattner8d896432008-03-09 02:07:49 +000047 NumTokens = Macro->tokens_end()-Macro->tokens_begin();
Reid Spencer5f016e22007-07-11 17:01:13 +000048
49 // If this is a function-like macro, expand the arguments and change
Chris Lattner8d896432008-03-09 02:07:49 +000050 // Tokens to point to the expanded tokens.
Reid Spencer5f016e22007-07-11 17:01:13 +000051 if (Macro->isFunctionLike() && Macro->getNumArgs())
52 ExpandFunctionArguments();
53
54 // Mark the macro as currently disabled, so that it is not recursively
55 // expanded. The macro must be disabled only after argument pre-expansion of
56 // function-like macro arguments occurs.
57 Macro->DisableMacro();
58}
59
Chris Lattner9594acf2007-07-15 00:25:26 +000060
61
Chris Lattner1543e9c2008-03-09 02:18:51 +000062/// Create a TokenLexer for the specified token stream. This does not
Reid Spencer5f016e22007-07-11 17:01:13 +000063/// take ownership of the specified token vector.
Chris Lattner6b884502008-03-10 06:06:04 +000064void TokenLexer::Init(const Token *TokArray, unsigned NumToks,
65 bool disableMacroExpansion, bool ownsTokens) {
Chris Lattner1543e9c2008-03-09 02:18:51 +000066 // If the client is reusing a TokenLexer, make sure to free any memory
Chris Lattner9594acf2007-07-15 00:25:26 +000067 // associated with it.
68 destroy();
69
70 Macro = 0;
71 ActualArgs = 0;
Chris Lattner8d896432008-03-09 02:07:49 +000072 Tokens = TokArray;
Chris Lattner6b884502008-03-10 06:06:04 +000073 OwnsTokens = ownsTokens;
74 DisableMacroExpansion = disableMacroExpansion;
Chris Lattner8d896432008-03-09 02:07:49 +000075 NumTokens = NumToks;
Chris Lattner9594acf2007-07-15 00:25:26 +000076 CurToken = 0;
77 InstantiateLoc = SourceLocation();
78 AtStartOfLine = false;
79 HasLeadingSpace = false;
Reid Spencer5f016e22007-07-11 17:01:13 +000080
81 // Set HasLeadingSpace/AtStartOfLine so that the first token will be
82 // returned unmodified.
83 if (NumToks != 0) {
84 AtStartOfLine = TokArray[0].isAtStartOfLine();
85 HasLeadingSpace = TokArray[0].hasLeadingSpace();
86 }
87}
88
89
Chris Lattner1543e9c2008-03-09 02:18:51 +000090void TokenLexer::destroy() {
Reid Spencer5f016e22007-07-11 17:01:13 +000091 // If this was a function-like macro that actually uses its arguments, delete
92 // the expanded tokens.
Chris Lattner8d896432008-03-09 02:07:49 +000093 if (OwnsTokens) {
94 delete [] Tokens;
95 Tokens = 0;
Chris Lattner9c683062007-07-22 01:16:55 +000096 }
Reid Spencer5f016e22007-07-11 17:01:13 +000097
Chris Lattner1543e9c2008-03-09 02:18:51 +000098 // TokenLexer owns its formal arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +000099 if (ActualArgs) ActualArgs->destroy();
100}
101
102/// Expand the arguments of a function-like macro so that we can quickly
Chris Lattner8d896432008-03-09 02:07:49 +0000103/// return preexpanded tokens from Tokens.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000104void TokenLexer::ExpandFunctionArguments() {
Chris Lattnerd2177732007-07-20 16:59:19 +0000105 llvm::SmallVector<Token, 128> ResultToks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000106
Chris Lattner8d896432008-03-09 02:07:49 +0000107 // Loop through 'Tokens', expanding them into ResultToks. Keep
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 // track of whether we change anything. If not, no need to keep them. If so,
Chris Lattner8d896432008-03-09 02:07:49 +0000109 // we install the newly expanded sequence as the new 'Tokens' list.
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 bool MadeChange = false;
111
112 // NextTokGetsSpace - When this is true, the next token appended to the
113 // output list will get a leading space, regardless of whether it had one to
114 // begin with or not. This is used for placemarker support.
115 bool NextTokGetsSpace = false;
116
Chris Lattner8d896432008-03-09 02:07:49 +0000117 for (unsigned i = 0, e = NumTokens; i != e; ++i) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000118 // If we found the stringify operator, get the argument stringified. The
119 // preprocessor already verified that the following token is a macro name
120 // when the #define was parsed.
Chris Lattner8d896432008-03-09 02:07:49 +0000121 const Token &CurTok = Tokens[i];
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000122 if (CurTok.is(tok::hash) || CurTok.is(tok::hashat)) {
Chris Lattner8d896432008-03-09 02:07:49 +0000123 int ArgNo = Macro->getArgumentNum(Tokens[i+1].getIdentifierInfo());
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 assert(ArgNo != -1 && "Token following # is not an argument?");
125
Chris Lattnerd2177732007-07-20 16:59:19 +0000126 Token Res;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000127 if (CurTok.is(tok::hash)) // Stringify
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 Res = ActualArgs->getStringifiedArgument(ArgNo, PP);
129 else {
130 // 'charify': don't bother caching these.
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000131 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo),
132 PP, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 }
134
135 // The stringified/charified string leading space flag gets set to match
136 // the #/#@ operator.
137 if (CurTok.hasLeadingSpace() || NextTokGetsSpace)
Chris Lattnerd2177732007-07-20 16:59:19 +0000138 Res.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000139
140 ResultToks.push_back(Res);
141 MadeChange = true;
142 ++i; // Skip arg name.
143 NextTokGetsSpace = false;
144 continue;
145 }
146
147 // Otherwise, if this is not an argument token, just add the token to the
148 // output buffer.
149 IdentifierInfo *II = CurTok.getIdentifierInfo();
150 int ArgNo = II ? Macro->getArgumentNum(II) : -1;
151 if (ArgNo == -1) {
152 // This isn't an argument, just add it.
153 ResultToks.push_back(CurTok);
154
155 if (NextTokGetsSpace) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000156 ResultToks.back().setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000157 NextTokGetsSpace = false;
158 }
159 continue;
160 }
161
162 // An argument is expanded somehow, the result is different than the
163 // input.
164 MadeChange = true;
165
166 // Otherwise, this is a use of the argument. Find out if there is a paste
167 // (##) operator before or after the argument.
168 bool PasteBefore =
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000169 !ResultToks.empty() && ResultToks.back().is(tok::hashhash);
Chris Lattner8d896432008-03-09 02:07:49 +0000170 bool PasteAfter = i+1 != e && Tokens[i+1].is(tok::hashhash);
Reid Spencer5f016e22007-07-11 17:01:13 +0000171
172 // If it is not the LHS/RHS of a ## operator, we must pre-expand the
173 // argument and substitute the expanded tokens into the result. This is
174 // C99 6.10.3.1p1.
175 if (!PasteBefore && !PasteAfter) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000176 const Token *ResultArgToks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000177
178 // Only preexpand the argument if it could possibly need it. This
179 // avoids some work in common cases.
Chris Lattnerd2177732007-07-20 16:59:19 +0000180 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo);
Chris Lattnercc1a8752007-10-07 08:44:20 +0000181 if (ActualArgs->ArgNeedsPreexpansion(ArgTok, PP))
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 ResultArgToks = &ActualArgs->getPreExpArgument(ArgNo, PP)[0];
183 else
184 ResultArgToks = ArgTok; // Use non-preexpanded tokens.
185
186 // If the arg token expanded into anything, append it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000187 if (ResultArgToks->isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 unsigned FirstResult = ResultToks.size();
189 unsigned NumToks = MacroArgs::getArgLength(ResultArgToks);
190 ResultToks.append(ResultArgToks, ResultArgToks+NumToks);
191
192 // If any tokens were substituted from the argument, the whitespace
193 // before the first token should match the whitespace of the arg
194 // identifier.
Chris Lattnerd2177732007-07-20 16:59:19 +0000195 ResultToks[FirstResult].setFlagValue(Token::LeadingSpace,
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 CurTok.hasLeadingSpace() ||
197 NextTokGetsSpace);
198 NextTokGetsSpace = false;
199 } else {
200 // If this is an empty argument, and if there was whitespace before the
201 // formal token, make sure the next token gets whitespace before it.
202 NextTokGetsSpace = CurTok.hasLeadingSpace();
203 }
204 continue;
205 }
206
207 // Okay, we have a token that is either the LHS or RHS of a paste (##)
208 // argument. It gets substituted as its non-pre-expanded tokens.
Chris Lattnerd2177732007-07-20 16:59:19 +0000209 const Token *ArgToks = ActualArgs->getUnexpArgument(ArgNo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 unsigned NumToks = MacroArgs::getArgLength(ArgToks);
211 if (NumToks) { // Not an empty argument?
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000212 // If this is the GNU ", ## __VA_ARG__" extension, and we just learned
213 // that __VA_ARG__ expands to multiple tokens, avoid a pasting error when
214 // the expander trys to paste ',' with the first token of the __VA_ARG__
215 // expansion.
216 if (PasteBefore && ResultToks.size() >= 2 &&
217 ResultToks[ResultToks.size()-2].is(tok::comma) &&
218 (unsigned)ArgNo == Macro->getNumArgs()-1 &&
219 Macro->isVariadic()) {
220 // Remove the paste operator, report use of the extension.
221 PP.Diag(ResultToks.back().getLocation(), diag::ext_paste_comma);
222 ResultToks.pop_back();
223 }
224
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 ResultToks.append(ArgToks, ArgToks+NumToks);
226
227 // If the next token was supposed to get leading whitespace, ensure it has
228 // it now.
229 if (NextTokGetsSpace) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000230 ResultToks[ResultToks.size()-NumToks].setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000231 NextTokGetsSpace = false;
232 }
233 continue;
234 }
235
236 // If an empty argument is on the LHS or RHS of a paste, the standard (C99
237 // 6.10.3.3p2,3) calls for a bunch of placemarker stuff to occur. We
238 // implement this by eating ## operators when a LHS or RHS expands to
239 // empty.
240 NextTokGetsSpace |= CurTok.hasLeadingSpace();
241 if (PasteAfter) {
242 // Discard the argument token and skip (don't copy to the expansion
243 // buffer) the paste operator after it.
Chris Lattner8d896432008-03-09 02:07:49 +0000244 NextTokGetsSpace |= Tokens[i+1].hasLeadingSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000245 ++i;
246 continue;
247 }
248
249 // If this is on the RHS of a paste operator, we've already copied the
250 // paste operator to the ResultToks list. Remove it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000251 assert(PasteBefore && ResultToks.back().is(tok::hashhash));
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 NextTokGetsSpace |= ResultToks.back().hasLeadingSpace();
253 ResultToks.pop_back();
254
255 // If this is the __VA_ARGS__ token, and if the argument wasn't provided,
256 // and if the macro had at least one real argument, and if the token before
257 // the ## was a comma, remove the comma.
258 if ((unsigned)ArgNo == Macro->getNumArgs()-1 && // is __VA_ARGS__
259 ActualArgs->isVarargsElidedUse() && // Argument elided.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000260 !ResultToks.empty() && ResultToks.back().is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 // Never add a space, even if the comma, ##, or arg had a space.
262 NextTokGetsSpace = false;
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000263 // Remove the paste operator, report use of the extension.
264 PP.Diag(ResultToks.back().getLocation(), diag::ext_paste_comma);
Reid Spencer5f016e22007-07-11 17:01:13 +0000265 ResultToks.pop_back();
266 }
267 continue;
268 }
269
Chris Lattner8d896432008-03-09 02:07:49 +0000270 // If anything changed, install this as the new Tokens list.
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 if (MadeChange) {
272 // This is deleted in the dtor.
Chris Lattner8d896432008-03-09 02:07:49 +0000273 NumTokens = ResultToks.size();
Chris Lattnerd2177732007-07-20 16:59:19 +0000274 Token *Res = new Token[ResultToks.size()];
Chris Lattner8d896432008-03-09 02:07:49 +0000275 if (NumTokens)
276 memcpy(Res, &ResultToks[0], NumTokens*sizeof(Token));
277 Tokens = Res;
278 OwnsTokens = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 }
280}
281
282/// Lex - Lex and return a token from this macro stream.
283///
Chris Lattner1543e9c2008-03-09 02:18:51 +0000284void TokenLexer::Lex(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000285 // Lexing off the end of the macro, pop this macro off the expansion stack.
286 if (isAtEnd()) {
287 // If this is a macro (not a token stream), mark the macro enabled now
288 // that it is no longer being expanded.
289 if (Macro) Macro->EnableMacro();
290
291 // Pop this context off the preprocessors lexer stack and get the next
292 // token. This will delete "this" so remember the PP instance var.
293 Preprocessor &PPCache = PP;
Chris Lattnerfde2bf92008-03-09 03:04:16 +0000294 if (PP.HandleEndOfTokenLexer(Tok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000295 return;
296
Chris Lattnerfde2bf92008-03-09 03:04:16 +0000297 // HandleEndOfTokenLexer may not return a token. If it doesn't, lex
298 // whatever is next.
Reid Spencer5f016e22007-07-11 17:01:13 +0000299 return PPCache.Lex(Tok);
300 }
301
302 // If this is the first token of the expanded result, we inherit spacing
303 // properties later.
304 bool isFirstToken = CurToken == 0;
305
306 // Get the next token to return.
Chris Lattner8d896432008-03-09 02:07:49 +0000307 Tok = Tokens[CurToken++];
Reid Spencer5f016e22007-07-11 17:01:13 +0000308
309 // If this token is followed by a token paste (##) operator, paste the tokens!
Chris Lattner8d896432008-03-09 02:07:49 +0000310 if (!isAtEnd() && Tokens[CurToken].is(tok::hashhash))
Chris Lattner3f1cc832008-02-07 06:03:59 +0000311 if (PasteTokens(Tok)) {
312 // When handling the microsoft /##/ extension, the final token is
313 // returned by PasteTokens, not the pasted token.
314 return;
315 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000316
317 // The token's current location indicate where the token was lexed from. We
318 // need this information to compute the spelling of the token, but any
319 // diagnostics for the expanded token should appear as if they came from
320 // InstantiationLoc. Pull this information together into a new SourceLocation
321 // that captures all of this.
322 if (InstantiateLoc.isValid()) { // Don't do this for token streams.
323 SourceManager &SrcMgr = PP.getSourceManager();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000324 Tok.setLocation(SrcMgr.createInstantiationLoc(Tok.getLocation(),
325 InstantiateLoc,
326 Tok.getLength()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000327 }
328
329 // If this is the first token, set the lexical properties of the token to
330 // match the lexical properties of the macro identifier.
331 if (isFirstToken) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000332 Tok.setFlagValue(Token::StartOfLine , AtStartOfLine);
333 Tok.setFlagValue(Token::LeadingSpace, HasLeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 }
335
336 // Handle recursive expansion!
Chris Lattner863c4862009-01-23 18:35:48 +0000337 if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
338 // Change the kind of this identifier to the appropriate token kind, e.g.
339 // turning "for" into a keyword.
340 Tok.setKind(II->getTokenID());
341
342 if (!DisableMacroExpansion && II->isHandleIdentifierCase())
343 PP.HandleIdentifier(Tok);
344 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000345
346 // Otherwise, return a normal token.
347}
348
349/// PasteTokens - Tok is the LHS of a ## operator, and CurToken is the ##
350/// operator. Read the ## and RHS, and paste the LHS/RHS together. If there
Nico Weber48002c82008-09-29 00:25:48 +0000351/// are more ## after it, chomp them iteratively. Return the result as Tok.
Chris Lattner3f1cc832008-02-07 06:03:59 +0000352/// If this returns true, the caller should immediately return the token.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000353bool TokenLexer::PasteTokens(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 llvm::SmallVector<char, 128> Buffer;
Chris Lattner47246be2009-01-26 19:29:26 +0000355 const char *ResultTokStrPtr = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 do {
357 // Consume the ## operator.
Chris Lattner8d896432008-03-09 02:07:49 +0000358 SourceLocation PasteOpLoc = Tokens[CurToken].getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000359 ++CurToken;
360 assert(!isAtEnd() && "No token on the RHS of a paste operator!");
361
362 // Get the RHS token.
Chris Lattner8d896432008-03-09 02:07:49 +0000363 const Token &RHS = Tokens[CurToken];
Reid Spencer5f016e22007-07-11 17:01:13 +0000364
365 bool isInvalid = false;
366
367 // Allocate space for the result token. This is guaranteed to be enough for
368 // the two tokens and a null terminator.
369 Buffer.resize(Tok.getLength() + RHS.getLength() + 1);
370
371 // Get the spelling of the LHS token in Buffer.
372 const char *BufPtr = &Buffer[0];
373 unsigned LHSLen = PP.getSpelling(Tok, BufPtr);
374 if (BufPtr != &Buffer[0]) // Really, we want the chars in Buffer!
375 memcpy(&Buffer[0], BufPtr, LHSLen);
376
377 BufPtr = &Buffer[LHSLen];
378 unsigned RHSLen = PP.getSpelling(RHS, BufPtr);
379 if (BufPtr != &Buffer[LHSLen]) // Really, we want the chars in Buffer!
380 memcpy(&Buffer[LHSLen], BufPtr, RHSLen);
381
382 // Add null terminator.
383 Buffer[LHSLen+RHSLen] = '\0';
384
385 // Trim excess space.
386 Buffer.resize(LHSLen+RHSLen+1);
387
388 // Plop the pasted result (including the trailing newline and null) into a
389 // scratch buffer where we can lex it.
Chris Lattner47246be2009-01-26 19:29:26 +0000390 Token ResultTokTmp;
391 ResultTokTmp.startToken();
Reid Spencer5f016e22007-07-11 17:01:13 +0000392
Chris Lattner47246be2009-01-26 19:29:26 +0000393 // Claim that the tmp token is a string_literal so that we can get the
394 // character pointer back from CreateString.
395 ResultTokTmp.setKind(tok::string_literal);
396 PP.CreateString(&Buffer[0], Buffer.size(), ResultTokTmp);
397 SourceLocation ResultTokLoc = ResultTokTmp.getLocation();
398 ResultTokStrPtr = ResultTokTmp.getLiteralData();
399
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 // Lex the resultant pasted token into Result.
Chris Lattnerd2177732007-07-20 16:59:19 +0000401 Token Result;
Reid Spencer5f016e22007-07-11 17:01:13 +0000402
Chris Lattner0af57422008-10-12 01:31:51 +0000403 if (Tok.is(tok::identifier) && RHS.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 // Common paste case: identifier+identifier = identifier. Avoid creating
405 // a lexer and other overhead.
406 PP.IncrementPasteCounter(true);
407 Result.startToken();
408 Result.setKind(tok::identifier);
409 Result.setLocation(ResultTokLoc);
410 Result.setLength(LHSLen+RHSLen);
411 } else {
412 PP.IncrementPasteCounter(false);
413
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000414 assert(ResultTokLoc.isFileID() &&
415 "Should be a raw location into scratch buffer");
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 SourceManager &SourceMgr = PP.getSourceManager();
Chris Lattner47246be2009-01-26 19:29:26 +0000417 FileID LocFileID = SourceMgr.getFileID(ResultTokLoc);
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000418
Chris Lattner47246be2009-01-26 19:29:26 +0000419 const char *ScratchBufStart = SourceMgr.getBufferData(LocFileID).first;
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000420
421 // Make a lexer to lex this string from. Lex just this one token.
Reid Spencer5f016e22007-07-11 17:01:13 +0000422 // Make a lexer object so that we lex and expand the paste result.
Chris Lattner47246be2009-01-26 19:29:26 +0000423 Lexer TL(SourceMgr.getLocForStartOfFile(LocFileID),
424 PP.getLangOptions(), ScratchBufStart,
425 ResultTokStrPtr,
426 ResultTokStrPtr+LHSLen+RHSLen /*don't include null*/);
Reid Spencer5f016e22007-07-11 17:01:13 +0000427
428 // Lex a token in raw mode. This way it won't look up identifiers
429 // automatically, lexing off the end will return an eof token, and
430 // warnings are disabled. This returns true if the result token is the
431 // entire buffer.
Chris Lattner590f0cc2008-10-12 01:15:46 +0000432 bool IsComplete = TL.LexFromRawLexer(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000433
434 // If we got an EOF token, we didn't form even ONE token. For example, we
435 // did "/ ## /" to get "//".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000436 IsComplete &= Result.isNot(tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +0000437 isInvalid = !IsComplete;
Reid Spencer5f016e22007-07-11 17:01:13 +0000438 }
439
440 // If pasting the two tokens didn't form a full new token, this is an error.
441 // This occurs with "x ## +" and other stuff. Return with Tok unmodified
442 // and with RHS as the next token to lex.
443 if (isInvalid) {
Chris Lattner3f1cc832008-02-07 06:03:59 +0000444 // Test for the Microsoft extension of /##/ turning into // here on the
445 // error path.
446 if (PP.getLangOptions().Microsoft && Tok.is(tok::slash) &&
447 RHS.is(tok::slash)) {
448 HandleMicrosoftCommentPaste(Tok);
449 return true;
Chris Lattner3f1cc832008-02-07 06:03:59 +0000450 }
Chris Lattner47246be2009-01-26 19:29:26 +0000451
452 // TODO: If not in assembler language mode.
453 PP.Diag(PasteOpLoc, diag::err_pp_bad_paste)
454 << std::string(Buffer.begin(), Buffer.end()-1);
455 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000456 }
457
Chris Lattner1543e9c2008-03-09 02:18:51 +0000458 // Turn ## into 'unknown' to avoid # ## # from looking like a paste
459 // operator.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000460 if (Result.is(tok::hashhash))
Reid Spencer5f016e22007-07-11 17:01:13 +0000461 Result.setKind(tok::unknown);
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000462 // FIXME: Turn __VA_ARGS__ into "not a token"?
Reid Spencer5f016e22007-07-11 17:01:13 +0000463
464 // Transfer properties of the LHS over the the Result.
Chris Lattnerd2177732007-07-20 16:59:19 +0000465 Result.setFlagValue(Token::StartOfLine , Tok.isAtStartOfLine());
466 Result.setFlagValue(Token::LeadingSpace, Tok.hasLeadingSpace());
Reid Spencer5f016e22007-07-11 17:01:13 +0000467
468 // Finally, replace LHS with the result, consume the RHS, and iterate.
469 ++CurToken;
470 Tok = Result;
Chris Lattner8d896432008-03-09 02:07:49 +0000471 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash));
Reid Spencer5f016e22007-07-11 17:01:13 +0000472
473 // Now that we got the result token, it will be subject to expansion. Since
474 // token pasting re-lexes the result token in raw mode, identifier information
475 // isn't looked up. As such, if the result is an identifier, look up id info.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000476 if (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000477 // Look up the identifier info for the token. We disabled identifier lookup
478 // by saying we're skipping contents, so we need to do this manually.
Chris Lattner47246be2009-01-26 19:29:26 +0000479 Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok, ResultTokStrPtr));
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 }
Chris Lattner3f1cc832008-02-07 06:03:59 +0000481 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000482}
483
484/// isNextTokenLParen - If the next token lexed will pop this macro off the
485/// expansion stack, return 2. If the next unexpanded token is a '(', return
486/// 1, otherwise return 0.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000487unsigned TokenLexer::isNextTokenLParen() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000488 // Out of tokens?
489 if (isAtEnd())
490 return 2;
Chris Lattner8d896432008-03-09 02:07:49 +0000491 return Tokens[CurToken].is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +0000492}
Chris Lattner3f1cc832008-02-07 06:03:59 +0000493
494
495/// HandleMicrosoftCommentPaste - In microsoft compatibility mode, /##/ pastes
496/// together to form a comment that comments out everything in the current
497/// macro, other active macros, and anything left on the current physical
498/// source line of the instantiated buffer. Handle this by returning the
499/// first token on the next line.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000500void TokenLexer::HandleMicrosoftCommentPaste(Token &Tok) {
Chris Lattner3f1cc832008-02-07 06:03:59 +0000501 // We 'comment out' the rest of this macro by just ignoring the rest of the
502 // tokens that have not been lexed yet, if any.
503
504 // Since this must be a macro, mark the macro enabled now that it is no longer
505 // being expanded.
506 assert(Macro && "Token streams can't paste comments");
507 Macro->EnableMacro();
508
509 PP.HandleMicrosoftCommentPaste(Tok);
510}