blob: 3ca0fcfa05de96c88ad0c9ec39c8f31bb06032cb [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 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();
36 AtStartOfLine = Tok.isAtStartOfLine();
37 HasLeadingSpace = Tok.hasLeadingSpace();
Chris Lattner8d896432008-03-09 02:07:49 +000038 Tokens = &*Macro->tokens_begin();
39 OwnsTokens = false;
Chris Lattner6b884502008-03-10 06:06:04 +000040 DisableMacroExpansion = false;
Chris Lattner8d896432008-03-09 02:07:49 +000041 NumTokens = Macro->tokens_end()-Macro->tokens_begin();
Reid Spencer5f016e22007-07-11 17:01:13 +000042
43 // If this is a function-like macro, expand the arguments and change
Chris Lattner8d896432008-03-09 02:07:49 +000044 // Tokens to point to the expanded tokens.
Reid Spencer5f016e22007-07-11 17:01:13 +000045 if (Macro->isFunctionLike() && Macro->getNumArgs())
46 ExpandFunctionArguments();
47
48 // Mark the macro as currently disabled, so that it is not recursively
49 // expanded. The macro must be disabled only after argument pre-expansion of
50 // function-like macro arguments occurs.
51 Macro->DisableMacro();
52}
53
Chris Lattner9594acf2007-07-15 00:25:26 +000054
55
Chris Lattner1543e9c2008-03-09 02:18:51 +000056/// Create a TokenLexer for the specified token stream. This does not
Reid Spencer5f016e22007-07-11 17:01:13 +000057/// take ownership of the specified token vector.
Chris Lattner6b884502008-03-10 06:06:04 +000058void TokenLexer::Init(const Token *TokArray, unsigned NumToks,
59 bool disableMacroExpansion, bool ownsTokens) {
Chris Lattner1543e9c2008-03-09 02:18:51 +000060 // If the client is reusing a TokenLexer, make sure to free any memory
Chris Lattner9594acf2007-07-15 00:25:26 +000061 // associated with it.
62 destroy();
63
64 Macro = 0;
65 ActualArgs = 0;
Chris Lattner8d896432008-03-09 02:07:49 +000066 Tokens = TokArray;
Chris Lattner6b884502008-03-10 06:06:04 +000067 OwnsTokens = ownsTokens;
68 DisableMacroExpansion = disableMacroExpansion;
Chris Lattner8d896432008-03-09 02:07:49 +000069 NumTokens = NumToks;
Chris Lattner9594acf2007-07-15 00:25:26 +000070 CurToken = 0;
71 InstantiateLoc = SourceLocation();
72 AtStartOfLine = false;
73 HasLeadingSpace = false;
Reid Spencer5f016e22007-07-11 17:01:13 +000074
75 // Set HasLeadingSpace/AtStartOfLine so that the first token will be
76 // returned unmodified.
77 if (NumToks != 0) {
78 AtStartOfLine = TokArray[0].isAtStartOfLine();
79 HasLeadingSpace = TokArray[0].hasLeadingSpace();
80 }
81}
82
83
Chris Lattner1543e9c2008-03-09 02:18:51 +000084void TokenLexer::destroy() {
Reid Spencer5f016e22007-07-11 17:01:13 +000085 // If this was a function-like macro that actually uses its arguments, delete
86 // the expanded tokens.
Chris Lattner8d896432008-03-09 02:07:49 +000087 if (OwnsTokens) {
88 delete [] Tokens;
89 Tokens = 0;
Chris Lattner9c683062007-07-22 01:16:55 +000090 }
Reid Spencer5f016e22007-07-11 17:01:13 +000091
Chris Lattner1543e9c2008-03-09 02:18:51 +000092 // TokenLexer owns its formal arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +000093 if (ActualArgs) ActualArgs->destroy();
94}
95
96/// Expand the arguments of a function-like macro so that we can quickly
Chris Lattner8d896432008-03-09 02:07:49 +000097/// return preexpanded tokens from Tokens.
Chris Lattner1543e9c2008-03-09 02:18:51 +000098void TokenLexer::ExpandFunctionArguments() {
Chris Lattnerd2177732007-07-20 16:59:19 +000099 llvm::SmallVector<Token, 128> ResultToks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000100
Chris Lattner8d896432008-03-09 02:07:49 +0000101 // Loop through 'Tokens', expanding them into ResultToks. Keep
Reid Spencer5f016e22007-07-11 17:01:13 +0000102 // track of whether we change anything. If not, no need to keep them. If so,
Chris Lattner8d896432008-03-09 02:07:49 +0000103 // we install the newly expanded sequence as the new 'Tokens' list.
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 bool MadeChange = false;
105
106 // NextTokGetsSpace - When this is true, the next token appended to the
107 // output list will get a leading space, regardless of whether it had one to
108 // begin with or not. This is used for placemarker support.
109 bool NextTokGetsSpace = false;
110
Chris Lattner8d896432008-03-09 02:07:49 +0000111 for (unsigned i = 0, e = NumTokens; i != e; ++i) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 // If we found the stringify operator, get the argument stringified. The
113 // preprocessor already verified that the following token is a macro name
114 // when the #define was parsed.
Chris Lattner8d896432008-03-09 02:07:49 +0000115 const Token &CurTok = Tokens[i];
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000116 if (CurTok.is(tok::hash) || CurTok.is(tok::hashat)) {
Chris Lattner8d896432008-03-09 02:07:49 +0000117 int ArgNo = Macro->getArgumentNum(Tokens[i+1].getIdentifierInfo());
Reid Spencer5f016e22007-07-11 17:01:13 +0000118 assert(ArgNo != -1 && "Token following # is not an argument?");
119
Chris Lattnerd2177732007-07-20 16:59:19 +0000120 Token Res;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000121 if (CurTok.is(tok::hash)) // Stringify
Reid Spencer5f016e22007-07-11 17:01:13 +0000122 Res = ActualArgs->getStringifiedArgument(ArgNo, PP);
123 else {
124 // 'charify': don't bother caching these.
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000125 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo),
126 PP, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 }
128
129 // The stringified/charified string leading space flag gets set to match
130 // the #/#@ operator.
131 if (CurTok.hasLeadingSpace() || NextTokGetsSpace)
Chris Lattnerd2177732007-07-20 16:59:19 +0000132 Res.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000133
134 ResultToks.push_back(Res);
135 MadeChange = true;
136 ++i; // Skip arg name.
137 NextTokGetsSpace = false;
138 continue;
139 }
140
141 // Otherwise, if this is not an argument token, just add the token to the
142 // output buffer.
143 IdentifierInfo *II = CurTok.getIdentifierInfo();
144 int ArgNo = II ? Macro->getArgumentNum(II) : -1;
145 if (ArgNo == -1) {
146 // This isn't an argument, just add it.
147 ResultToks.push_back(CurTok);
148
149 if (NextTokGetsSpace) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000150 ResultToks.back().setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 NextTokGetsSpace = false;
152 }
153 continue;
154 }
155
156 // An argument is expanded somehow, the result is different than the
157 // input.
158 MadeChange = true;
159
160 // Otherwise, this is a use of the argument. Find out if there is a paste
161 // (##) operator before or after the argument.
162 bool PasteBefore =
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000163 !ResultToks.empty() && ResultToks.back().is(tok::hashhash);
Chris Lattner8d896432008-03-09 02:07:49 +0000164 bool PasteAfter = i+1 != e && Tokens[i+1].is(tok::hashhash);
Reid Spencer5f016e22007-07-11 17:01:13 +0000165
166 // If it is not the LHS/RHS of a ## operator, we must pre-expand the
167 // argument and substitute the expanded tokens into the result. This is
168 // C99 6.10.3.1p1.
169 if (!PasteBefore && !PasteAfter) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000170 const Token *ResultArgToks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000171
172 // Only preexpand the argument if it could possibly need it. This
173 // avoids some work in common cases.
Chris Lattnerd2177732007-07-20 16:59:19 +0000174 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo);
Chris Lattnercc1a8752007-10-07 08:44:20 +0000175 if (ActualArgs->ArgNeedsPreexpansion(ArgTok, PP))
Reid Spencer5f016e22007-07-11 17:01:13 +0000176 ResultArgToks = &ActualArgs->getPreExpArgument(ArgNo, PP)[0];
177 else
178 ResultArgToks = ArgTok; // Use non-preexpanded tokens.
179
180 // If the arg token expanded into anything, append it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000181 if (ResultArgToks->isNot(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 unsigned FirstResult = ResultToks.size();
183 unsigned NumToks = MacroArgs::getArgLength(ResultArgToks);
184 ResultToks.append(ResultArgToks, ResultArgToks+NumToks);
185
186 // If any tokens were substituted from the argument, the whitespace
187 // before the first token should match the whitespace of the arg
188 // identifier.
Chris Lattnerd2177732007-07-20 16:59:19 +0000189 ResultToks[FirstResult].setFlagValue(Token::LeadingSpace,
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 CurTok.hasLeadingSpace() ||
191 NextTokGetsSpace);
192 NextTokGetsSpace = false;
193 } else {
194 // If this is an empty argument, and if there was whitespace before the
195 // formal token, make sure the next token gets whitespace before it.
196 NextTokGetsSpace = CurTok.hasLeadingSpace();
197 }
198 continue;
199 }
200
201 // Okay, we have a token that is either the LHS or RHS of a paste (##)
202 // argument. It gets substituted as its non-pre-expanded tokens.
Chris Lattnerd2177732007-07-20 16:59:19 +0000203 const Token *ArgToks = ActualArgs->getUnexpArgument(ArgNo);
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 unsigned NumToks = MacroArgs::getArgLength(ArgToks);
205 if (NumToks) { // Not an empty argument?
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000206 // If this is the GNU ", ## __VA_ARG__" extension, and we just learned
207 // that __VA_ARG__ expands to multiple tokens, avoid a pasting error when
208 // the expander trys to paste ',' with the first token of the __VA_ARG__
209 // expansion.
210 if (PasteBefore && ResultToks.size() >= 2 &&
211 ResultToks[ResultToks.size()-2].is(tok::comma) &&
212 (unsigned)ArgNo == Macro->getNumArgs()-1 &&
213 Macro->isVariadic()) {
214 // Remove the paste operator, report use of the extension.
215 PP.Diag(ResultToks.back().getLocation(), diag::ext_paste_comma);
216 ResultToks.pop_back();
217 }
218
Reid Spencer5f016e22007-07-11 17:01:13 +0000219 ResultToks.append(ArgToks, ArgToks+NumToks);
220
221 // If the next token was supposed to get leading whitespace, ensure it has
222 // it now.
223 if (NextTokGetsSpace) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000224 ResultToks[ResultToks.size()-NumToks].setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 NextTokGetsSpace = false;
226 }
227 continue;
228 }
229
230 // If an empty argument is on the LHS or RHS of a paste, the standard (C99
231 // 6.10.3.3p2,3) calls for a bunch of placemarker stuff to occur. We
232 // implement this by eating ## operators when a LHS or RHS expands to
233 // empty.
234 NextTokGetsSpace |= CurTok.hasLeadingSpace();
235 if (PasteAfter) {
236 // Discard the argument token and skip (don't copy to the expansion
237 // buffer) the paste operator after it.
Chris Lattner8d896432008-03-09 02:07:49 +0000238 NextTokGetsSpace |= Tokens[i+1].hasLeadingSpace();
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 ++i;
240 continue;
241 }
242
243 // If this is on the RHS of a paste operator, we've already copied the
244 // paste operator to the ResultToks list. Remove it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000245 assert(PasteBefore && ResultToks.back().is(tok::hashhash));
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 NextTokGetsSpace |= ResultToks.back().hasLeadingSpace();
247 ResultToks.pop_back();
248
249 // If this is the __VA_ARGS__ token, and if the argument wasn't provided,
250 // and if the macro had at least one real argument, and if the token before
251 // the ## was a comma, remove the comma.
252 if ((unsigned)ArgNo == Macro->getNumArgs()-1 && // is __VA_ARGS__
253 ActualArgs->isVarargsElidedUse() && // Argument elided.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000254 !ResultToks.empty() && ResultToks.back().is(tok::comma)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 // Never add a space, even if the comma, ##, or arg had a space.
256 NextTokGetsSpace = false;
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000257 // Remove the paste operator, report use of the extension.
258 PP.Diag(ResultToks.back().getLocation(), diag::ext_paste_comma);
Reid Spencer5f016e22007-07-11 17:01:13 +0000259 ResultToks.pop_back();
260 }
261 continue;
262 }
263
Chris Lattner8d896432008-03-09 02:07:49 +0000264 // If anything changed, install this as the new Tokens list.
Reid Spencer5f016e22007-07-11 17:01:13 +0000265 if (MadeChange) {
266 // This is deleted in the dtor.
Chris Lattner8d896432008-03-09 02:07:49 +0000267 NumTokens = ResultToks.size();
Chris Lattnerd2177732007-07-20 16:59:19 +0000268 Token *Res = new Token[ResultToks.size()];
Chris Lattner8d896432008-03-09 02:07:49 +0000269 if (NumTokens)
270 memcpy(Res, &ResultToks[0], NumTokens*sizeof(Token));
271 Tokens = Res;
272 OwnsTokens = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000273 }
274}
275
276/// Lex - Lex and return a token from this macro stream.
277///
Chris Lattner1543e9c2008-03-09 02:18:51 +0000278void TokenLexer::Lex(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 // Lexing off the end of the macro, pop this macro off the expansion stack.
280 if (isAtEnd()) {
281 // If this is a macro (not a token stream), mark the macro enabled now
282 // that it is no longer being expanded.
283 if (Macro) Macro->EnableMacro();
284
285 // Pop this context off the preprocessors lexer stack and get the next
286 // token. This will delete "this" so remember the PP instance var.
287 Preprocessor &PPCache = PP;
Chris Lattnerfde2bf92008-03-09 03:04:16 +0000288 if (PP.HandleEndOfTokenLexer(Tok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000289 return;
290
Chris Lattnerfde2bf92008-03-09 03:04:16 +0000291 // HandleEndOfTokenLexer may not return a token. If it doesn't, lex
292 // whatever is next.
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 return PPCache.Lex(Tok);
294 }
295
296 // If this is the first token of the expanded result, we inherit spacing
297 // properties later.
298 bool isFirstToken = CurToken == 0;
299
300 // Get the next token to return.
Chris Lattner8d896432008-03-09 02:07:49 +0000301 Tok = Tokens[CurToken++];
Reid Spencer5f016e22007-07-11 17:01:13 +0000302
303 // If this token is followed by a token paste (##) operator, paste the tokens!
Chris Lattner8d896432008-03-09 02:07:49 +0000304 if (!isAtEnd() && Tokens[CurToken].is(tok::hashhash))
Chris Lattner3f1cc832008-02-07 06:03:59 +0000305 if (PasteTokens(Tok)) {
306 // When handling the microsoft /##/ extension, the final token is
307 // returned by PasteTokens, not the pasted token.
308 return;
309 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000310
311 // The token's current location indicate where the token was lexed from. We
312 // need this information to compute the spelling of the token, but any
313 // diagnostics for the expanded token should appear as if they came from
314 // InstantiationLoc. Pull this information together into a new SourceLocation
315 // that captures all of this.
316 if (InstantiateLoc.isValid()) { // Don't do this for token streams.
317 SourceManager &SrcMgr = PP.getSourceManager();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000318 Tok.setLocation(SrcMgr.createInstantiationLoc(Tok.getLocation(),
319 InstantiateLoc,
320 Tok.getLength()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000321 }
322
323 // If this is the first token, set the lexical properties of the token to
324 // match the lexical properties of the macro identifier.
325 if (isFirstToken) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000326 Tok.setFlagValue(Token::StartOfLine , AtStartOfLine);
327 Tok.setFlagValue(Token::LeadingSpace, HasLeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000328 }
329
330 // Handle recursive expansion!
Chris Lattner863c4862009-01-23 18:35:48 +0000331 if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
332 // Change the kind of this identifier to the appropriate token kind, e.g.
333 // turning "for" into a keyword.
334 Tok.setKind(II->getTokenID());
335
336 if (!DisableMacroExpansion && II->isHandleIdentifierCase())
337 PP.HandleIdentifier(Tok);
338 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000339
340 // Otherwise, return a normal token.
341}
342
343/// PasteTokens - Tok is the LHS of a ## operator, and CurToken is the ##
344/// operator. Read the ## and RHS, and paste the LHS/RHS together. If there
Nico Weber48002c82008-09-29 00:25:48 +0000345/// are more ## after it, chomp them iteratively. Return the result as Tok.
Chris Lattner3f1cc832008-02-07 06:03:59 +0000346/// If this returns true, the caller should immediately return the token.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000347bool TokenLexer::PasteTokens(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000348 llvm::SmallVector<char, 128> Buffer;
Chris Lattner47246be2009-01-26 19:29:26 +0000349 const char *ResultTokStrPtr = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 do {
351 // Consume the ## operator.
Chris Lattner8d896432008-03-09 02:07:49 +0000352 SourceLocation PasteOpLoc = Tokens[CurToken].getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 ++CurToken;
354 assert(!isAtEnd() && "No token on the RHS of a paste operator!");
355
356 // Get the RHS token.
Chris Lattner8d896432008-03-09 02:07:49 +0000357 const Token &RHS = Tokens[CurToken];
Reid Spencer5f016e22007-07-11 17:01:13 +0000358
359 bool isInvalid = false;
360
361 // Allocate space for the result token. This is guaranteed to be enough for
362 // the two tokens and a null terminator.
363 Buffer.resize(Tok.getLength() + RHS.getLength() + 1);
364
365 // Get the spelling of the LHS token in Buffer.
366 const char *BufPtr = &Buffer[0];
367 unsigned LHSLen = PP.getSpelling(Tok, BufPtr);
368 if (BufPtr != &Buffer[0]) // Really, we want the chars in Buffer!
369 memcpy(&Buffer[0], BufPtr, LHSLen);
370
371 BufPtr = &Buffer[LHSLen];
372 unsigned RHSLen = PP.getSpelling(RHS, BufPtr);
373 if (BufPtr != &Buffer[LHSLen]) // Really, we want the chars in Buffer!
374 memcpy(&Buffer[LHSLen], BufPtr, RHSLen);
375
376 // Add null terminator.
377 Buffer[LHSLen+RHSLen] = '\0';
378
379 // Trim excess space.
380 Buffer.resize(LHSLen+RHSLen+1);
381
382 // Plop the pasted result (including the trailing newline and null) into a
383 // scratch buffer where we can lex it.
Chris Lattner47246be2009-01-26 19:29:26 +0000384 Token ResultTokTmp;
385 ResultTokTmp.startToken();
Reid Spencer5f016e22007-07-11 17:01:13 +0000386
Chris Lattner47246be2009-01-26 19:29:26 +0000387 // Claim that the tmp token is a string_literal so that we can get the
388 // character pointer back from CreateString.
389 ResultTokTmp.setKind(tok::string_literal);
390 PP.CreateString(&Buffer[0], Buffer.size(), ResultTokTmp);
391 SourceLocation ResultTokLoc = ResultTokTmp.getLocation();
392 ResultTokStrPtr = ResultTokTmp.getLiteralData();
393
Reid Spencer5f016e22007-07-11 17:01:13 +0000394 // Lex the resultant pasted token into Result.
Chris Lattnerd2177732007-07-20 16:59:19 +0000395 Token Result;
Reid Spencer5f016e22007-07-11 17:01:13 +0000396
Chris Lattner0af57422008-10-12 01:31:51 +0000397 if (Tok.is(tok::identifier) && RHS.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000398 // Common paste case: identifier+identifier = identifier. Avoid creating
399 // a lexer and other overhead.
400 PP.IncrementPasteCounter(true);
401 Result.startToken();
402 Result.setKind(tok::identifier);
403 Result.setLocation(ResultTokLoc);
404 Result.setLength(LHSLen+RHSLen);
405 } else {
406 PP.IncrementPasteCounter(false);
407
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000408 assert(ResultTokLoc.isFileID() &&
409 "Should be a raw location into scratch buffer");
Reid Spencer5f016e22007-07-11 17:01:13 +0000410 SourceManager &SourceMgr = PP.getSourceManager();
Chris Lattner47246be2009-01-26 19:29:26 +0000411 FileID LocFileID = SourceMgr.getFileID(ResultTokLoc);
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000412
Chris Lattner47246be2009-01-26 19:29:26 +0000413 const char *ScratchBufStart = SourceMgr.getBufferData(LocFileID).first;
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000414
415 // Make a lexer to lex this string from. Lex just this one token.
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 // Make a lexer object so that we lex and expand the paste result.
Chris Lattner47246be2009-01-26 19:29:26 +0000417 Lexer TL(SourceMgr.getLocForStartOfFile(LocFileID),
418 PP.getLangOptions(), ScratchBufStart,
419 ResultTokStrPtr,
420 ResultTokStrPtr+LHSLen+RHSLen /*don't include null*/);
Reid Spencer5f016e22007-07-11 17:01:13 +0000421
422 // Lex a token in raw mode. This way it won't look up identifiers
423 // automatically, lexing off the end will return an eof token, and
424 // warnings are disabled. This returns true if the result token is the
425 // entire buffer.
Chris Lattner590f0cc2008-10-12 01:15:46 +0000426 bool IsComplete = TL.LexFromRawLexer(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000427
428 // If we got an EOF token, we didn't form even ONE token. For example, we
429 // did "/ ## /" to get "//".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000430 IsComplete &= Result.isNot(tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 isInvalid = !IsComplete;
Reid Spencer5f016e22007-07-11 17:01:13 +0000432 }
433
434 // If pasting the two tokens didn't form a full new token, this is an error.
435 // This occurs with "x ## +" and other stuff. Return with Tok unmodified
436 // and with RHS as the next token to lex.
437 if (isInvalid) {
Chris Lattner3f1cc832008-02-07 06:03:59 +0000438 // Test for the Microsoft extension of /##/ turning into // here on the
439 // error path.
440 if (PP.getLangOptions().Microsoft && Tok.is(tok::slash) &&
441 RHS.is(tok::slash)) {
442 HandleMicrosoftCommentPaste(Tok);
443 return true;
Chris Lattner3f1cc832008-02-07 06:03:59 +0000444 }
Chris Lattner47246be2009-01-26 19:29:26 +0000445
446 // TODO: If not in assembler language mode.
447 PP.Diag(PasteOpLoc, diag::err_pp_bad_paste)
448 << std::string(Buffer.begin(), Buffer.end()-1);
449 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000450 }
451
Chris Lattner1543e9c2008-03-09 02:18:51 +0000452 // Turn ## into 'unknown' to avoid # ## # from looking like a paste
453 // operator.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000454 if (Result.is(tok::hashhash))
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 Result.setKind(tok::unknown);
Chris Lattner71a3a8d2008-01-29 07:54:23 +0000456 // FIXME: Turn __VA_ARGS__ into "not a token"?
Reid Spencer5f016e22007-07-11 17:01:13 +0000457
458 // Transfer properties of the LHS over the the Result.
Chris Lattnerd2177732007-07-20 16:59:19 +0000459 Result.setFlagValue(Token::StartOfLine , Tok.isAtStartOfLine());
460 Result.setFlagValue(Token::LeadingSpace, Tok.hasLeadingSpace());
Reid Spencer5f016e22007-07-11 17:01:13 +0000461
462 // Finally, replace LHS with the result, consume the RHS, and iterate.
463 ++CurToken;
464 Tok = Result;
Chris Lattner8d896432008-03-09 02:07:49 +0000465 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash));
Reid Spencer5f016e22007-07-11 17:01:13 +0000466
467 // Now that we got the result token, it will be subject to expansion. Since
468 // token pasting re-lexes the result token in raw mode, identifier information
469 // isn't looked up. As such, if the result is an identifier, look up id info.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000470 if (Tok.is(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000471 // Look up the identifier info for the token. We disabled identifier lookup
472 // by saying we're skipping contents, so we need to do this manually.
Chris Lattner47246be2009-01-26 19:29:26 +0000473 Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok, ResultTokStrPtr));
Reid Spencer5f016e22007-07-11 17:01:13 +0000474 }
Chris Lattner3f1cc832008-02-07 06:03:59 +0000475 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000476}
477
478/// isNextTokenLParen - If the next token lexed will pop this macro off the
479/// expansion stack, return 2. If the next unexpanded token is a '(', return
480/// 1, otherwise return 0.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000481unsigned TokenLexer::isNextTokenLParen() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000482 // Out of tokens?
483 if (isAtEnd())
484 return 2;
Chris Lattner8d896432008-03-09 02:07:49 +0000485 return Tokens[CurToken].is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +0000486}
Chris Lattner3f1cc832008-02-07 06:03:59 +0000487
488
489/// HandleMicrosoftCommentPaste - In microsoft compatibility mode, /##/ pastes
490/// together to form a comment that comments out everything in the current
491/// macro, other active macros, and anything left on the current physical
492/// source line of the instantiated buffer. Handle this by returning the
493/// first token on the next line.
Chris Lattner1543e9c2008-03-09 02:18:51 +0000494void TokenLexer::HandleMicrosoftCommentPaste(Token &Tok) {
Chris Lattner3f1cc832008-02-07 06:03:59 +0000495 // We 'comment out' the rest of this macro by just ignoring the rest of the
496 // tokens that have not been lexed yet, if any.
497
498 // Since this must be a macro, mark the macro enabled now that it is no longer
499 // being expanded.
500 assert(Macro && "Token streams can't paste comments");
501 Macro->EnableMacro();
502
503 PP.HandleMicrosoftCommentPaste(Tok);
504}