blob: aabba0aa566c1e1c05b8c8b561b2d10426119be3 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Lexer.cpp - C Language Family Lexer ------------------------------===//
2//
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 Lattnerd2177732007-07-20 16:59:19 +000010// This file implements the Lexer and Token interfaces.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13//
14// TODO: GCC Diagnostics emitted by the lexer:
15// PEDWARN: (form feed|vertical tab) in preprocessing directive
16//
17// Universal characters, unicode, char mapping:
18// WARNING: `%.*s' is not in NFKC
19// WARNING: `%.*s' is not in NFC
20//
21// Other:
22// TODO: Options to support:
23// -fexec-charset,-fwide-exec-charset
24//
25//===----------------------------------------------------------------------===//
26
27#include "clang/Lex/Lexer.h"
28#include "clang/Lex/Preprocessor.h"
Chris Lattner500d3292009-01-29 05:15:15 +000029#include "clang/Lex/LexDiagnostic.h"
Douglas Gregor55817af2010-08-25 17:04:25 +000030#include "clang/Lex/CodeCompletionHandler.h"
Chris Lattner9dc1f532007-07-20 16:37:10 +000031#include "clang/Basic/SourceManager.h"
Douglas Gregorf033f1d2010-07-20 20:18:03 +000032#include "llvm/ADT/StringSwitch.h"
Chris Lattner409a0362007-07-22 18:38:25 +000033#include "llvm/Support/Compiler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000034#include "llvm/Support/MemoryBuffer.h"
35#include <cctype>
36using namespace clang;
37
Chris Lattnera2bf1052009-12-17 05:29:40 +000038static void InitCharacterInfo();
Reid Spencer5f016e22007-07-11 17:01:13 +000039
Chris Lattnerdbf388b2007-10-07 08:47:24 +000040//===----------------------------------------------------------------------===//
41// Token Class Implementation
42//===----------------------------------------------------------------------===//
43
Mike Stump1eb44332009-09-09 15:08:12 +000044/// isObjCAtKeyword - Return true if we have an ObjC keyword identifier.
Chris Lattnerdbf388b2007-10-07 08:47:24 +000045bool Token::isObjCAtKeyword(tok::ObjCKeywordKind objcKey) const {
Douglas Gregorbec1c9d2008-12-01 21:46:47 +000046 if (IdentifierInfo *II = getIdentifierInfo())
47 return II->getObjCKeywordID() == objcKey;
48 return false;
Chris Lattnerdbf388b2007-10-07 08:47:24 +000049}
50
51/// getObjCKeywordID - Return the ObjC keyword kind.
52tok::ObjCKeywordKind Token::getObjCKeywordID() const {
53 IdentifierInfo *specId = getIdentifierInfo();
54 return specId ? specId->getObjCKeywordID() : tok::objc_not_keyword;
55}
56
Chris Lattner53702cd2007-12-13 01:59:49 +000057
Chris Lattnerdbf388b2007-10-07 08:47:24 +000058//===----------------------------------------------------------------------===//
59// Lexer Class Implementation
60//===----------------------------------------------------------------------===//
61
Mike Stump1eb44332009-09-09 15:08:12 +000062void Lexer::InitLexer(const char *BufStart, const char *BufPtr,
Chris Lattner22d91ca2009-01-17 06:55:17 +000063 const char *BufEnd) {
Chris Lattnera2bf1052009-12-17 05:29:40 +000064 InitCharacterInfo();
Mike Stump1eb44332009-09-09 15:08:12 +000065
Chris Lattner22d91ca2009-01-17 06:55:17 +000066 BufferStart = BufStart;
67 BufferPtr = BufPtr;
68 BufferEnd = BufEnd;
Mike Stump1eb44332009-09-09 15:08:12 +000069
Chris Lattner22d91ca2009-01-17 06:55:17 +000070 assert(BufEnd[0] == 0 &&
71 "We assume that the input buffer has a null character at the end"
72 " to simplify lexing!");
Mike Stump1eb44332009-09-09 15:08:12 +000073
Eric Christopher156119d2011-04-09 00:01:04 +000074 // Check whether we have a BOM in the beginning of the buffer. If yes - act
75 // accordingly. Right now we support only UTF-8 with and without BOM, so, just
76 // skip the UTF-8 BOM if it's present.
77 if (BufferStart == BufferPtr) {
78 // Determine the size of the BOM.
Eli Friedman969f9d42011-05-10 17:11:21 +000079 llvm::StringRef Buf(BufferStart, BufferEnd - BufferStart);
80 size_t BOMLength = llvm::StringSwitch<size_t>(Buf)
Eric Christopher156119d2011-04-09 00:01:04 +000081 .StartsWith("\xEF\xBB\xBF", 3) // UTF-8 BOM
82 .Default(0);
83
84 // Skip the BOM.
85 BufferPtr += BOMLength;
86 }
87
Chris Lattner22d91ca2009-01-17 06:55:17 +000088 Is_PragmaLexer = false;
Chris Lattner34f349d2009-12-14 06:16:57 +000089 IsInConflictMarker = false;
Eric Christopher156119d2011-04-09 00:01:04 +000090
Chris Lattner22d91ca2009-01-17 06:55:17 +000091 // Start of the file is a start of line.
92 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +000093
Chris Lattner22d91ca2009-01-17 06:55:17 +000094 // We are not after parsing a #.
95 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +000096
Chris Lattner22d91ca2009-01-17 06:55:17 +000097 // We are not after parsing #include.
98 ParsingFilename = false;
Mike Stump1eb44332009-09-09 15:08:12 +000099
Chris Lattner22d91ca2009-01-17 06:55:17 +0000100 // We are not in raw mode. Raw mode disables diagnostics and interpretation
101 // of tokens (e.g. identifiers, thus disabling macro expansion). It is used
102 // to quickly lex the tokens of the buffer, e.g. when handling a "#if 0" block
103 // or otherwise skipping over tokens.
104 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Chris Lattner22d91ca2009-01-17 06:55:17 +0000106 // Default to not keeping comments.
107 ExtendedTokenMode = 0;
108}
109
Chris Lattner0770dab2009-01-17 07:56:59 +0000110/// Lexer constructor - Create a new lexer object for the specified buffer
111/// with the specified preprocessor managing the lexing process. This lexer
112/// assumes that the associated file buffer and Preprocessor objects will
113/// outlive it, so it doesn't take ownership of either of them.
Chris Lattner6e290142009-11-30 04:18:44 +0000114Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *InputFile, Preprocessor &PP)
Chris Lattner88d3ac12009-01-17 08:03:42 +0000115 : PreprocessorLexer(&PP, FID),
116 FileLoc(PP.getSourceManager().getLocForStartOfFile(FID)),
117 Features(PP.getLangOptions()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Chris Lattner0770dab2009-01-17 07:56:59 +0000119 InitLexer(InputFile->getBufferStart(), InputFile->getBufferStart(),
120 InputFile->getBufferEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000121
Chris Lattner0770dab2009-01-17 07:56:59 +0000122 // Default to keeping comments if the preprocessor wants them.
123 SetCommentRetentionState(PP.getCommentRetentionState());
124}
Chris Lattnerdbf388b2007-10-07 08:47:24 +0000125
Chris Lattner168ae2d2007-10-17 20:41:00 +0000126/// Lexer constructor - Create a new raw lexer object. This object is only
Chris Lattner590f0cc2008-10-12 01:15:46 +0000127/// suitable for calls to 'LexRawToken'. This lexer assumes that the text
128/// range will outlive it, so it doesn't take ownership of it.
Chris Lattner168ae2d2007-10-17 20:41:00 +0000129Lexer::Lexer(SourceLocation fileloc, const LangOptions &features,
Chris Lattnerde96c0f2009-01-17 07:42:27 +0000130 const char *BufStart, const char *BufPtr, const char *BufEnd)
Chris Lattnerc6fe32a2009-01-17 03:48:08 +0000131 : FileLoc(fileloc), Features(features) {
Chris Lattner22d91ca2009-01-17 06:55:17 +0000132
Chris Lattner22d91ca2009-01-17 06:55:17 +0000133 InitLexer(BufStart, BufPtr, BufEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Chris Lattner168ae2d2007-10-17 20:41:00 +0000135 // We *are* in raw mode.
136 LexingRawMode = true;
Chris Lattner168ae2d2007-10-17 20:41:00 +0000137}
138
Chris Lattner025c3a62009-01-17 07:35:14 +0000139/// Lexer constructor - Create a new raw lexer object. This object is only
140/// suitable for calls to 'LexRawToken'. This lexer assumes that the text
141/// range will outlive it, so it doesn't take ownership of it.
Chris Lattner6e290142009-11-30 04:18:44 +0000142Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *FromFile,
143 const SourceManager &SM, const LangOptions &features)
Chris Lattner025c3a62009-01-17 07:35:14 +0000144 : FileLoc(SM.getLocForStartOfFile(FID)), Features(features) {
Chris Lattner025c3a62009-01-17 07:35:14 +0000145
Mike Stump1eb44332009-09-09 15:08:12 +0000146 InitLexer(FromFile->getBufferStart(), FromFile->getBufferStart(),
Chris Lattner025c3a62009-01-17 07:35:14 +0000147 FromFile->getBufferEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Chris Lattner025c3a62009-01-17 07:35:14 +0000149 // We *are* in raw mode.
150 LexingRawMode = true;
151}
152
Chris Lattner42e00d12009-01-17 08:27:52 +0000153/// Create_PragmaLexer: Lexer constructor - Create a new lexer object for
154/// _Pragma expansion. This has a variety of magic semantics that this method
155/// sets up. It returns a new'd Lexer that must be delete'd when done.
156///
157/// On entrance to this routine, TokStartLoc is a macro location which has a
158/// spelling loc that indicates the bytes to be lexed for the token and an
159/// instantiation location that indicates where all lexed tokens should be
160/// "expanded from".
161///
162/// FIXME: It would really be nice to make _Pragma just be a wrapper around a
163/// normal lexer that remaps tokens as they fly by. This would require making
164/// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer
165/// interface that could handle this stuff. This would pull GetMappedTokenLoc
166/// out of the critical path of the lexer!
167///
Mike Stump1eb44332009-09-09 15:08:12 +0000168Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000169 SourceLocation InstantiationLocStart,
170 SourceLocation InstantiationLocEnd,
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000171 unsigned TokLen, Preprocessor &PP) {
Chris Lattner42e00d12009-01-17 08:27:52 +0000172 SourceManager &SM = PP.getSourceManager();
Chris Lattner42e00d12009-01-17 08:27:52 +0000173
174 // Create the lexer as if we were going to lex the file normally.
Chris Lattnera11d6172009-01-19 07:46:45 +0000175 FileID SpellingFID = SM.getFileID(SpellingLoc);
Chris Lattner6e290142009-11-30 04:18:44 +0000176 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID);
177 Lexer *L = new Lexer(SpellingFID, InputFile, PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Chris Lattner42e00d12009-01-17 08:27:52 +0000179 // Now that the lexer is created, change the start/end locations so that we
180 // just lex the subsection of the file that we want. This is lexing from a
181 // scratch buffer.
182 const char *StrData = SM.getCharacterData(SpellingLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Chris Lattner42e00d12009-01-17 08:27:52 +0000184 L->BufferPtr = StrData;
185 L->BufferEnd = StrData+TokLen;
Chris Lattner1fa49532009-03-08 08:08:45 +0000186 assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!");
Chris Lattner42e00d12009-01-17 08:27:52 +0000187
188 // Set the SourceLocation with the remapping information. This ensures that
189 // GetMappedTokenLoc will remap the tokens as they are lexed.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000190 L->FileLoc = SM.createInstantiationLoc(SM.getLocForStartOfFile(SpellingFID),
Chris Lattnere7fb4842009-02-15 20:52:18 +0000191 InstantiationLocStart,
192 InstantiationLocEnd, TokLen);
Mike Stump1eb44332009-09-09 15:08:12 +0000193
Chris Lattner42e00d12009-01-17 08:27:52 +0000194 // Ensure that the lexer thinks it is inside a directive, so that end \n will
Peter Collingbourne84021552011-02-28 02:37:51 +0000195 // return an EOD token.
Chris Lattner42e00d12009-01-17 08:27:52 +0000196 L->ParsingPreprocessorDirective = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Chris Lattner42e00d12009-01-17 08:27:52 +0000198 // This lexer really is for _Pragma.
199 L->Is_PragmaLexer = true;
200 return L;
201}
202
Chris Lattner168ae2d2007-10-17 20:41:00 +0000203
Reid Spencer5f016e22007-07-11 17:01:13 +0000204/// Stringify - Convert the specified string into a C string, with surrounding
205/// ""'s, and with escaped \ and " characters.
206std::string Lexer::Stringify(const std::string &Str, bool Charify) {
207 std::string Result = Str;
208 char Quote = Charify ? '\'' : '"';
209 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
210 if (Result[i] == '\\' || Result[i] == Quote) {
211 Result.insert(Result.begin()+i, '\\');
212 ++i; ++e;
213 }
214 }
215 return Result;
216}
217
Chris Lattnerd8e30832007-07-24 06:57:14 +0000218/// Stringify - Convert the specified string into a C string by escaping '\'
219/// and " characters. This does not add surrounding ""'s to the string.
220void Lexer::Stringify(llvm::SmallVectorImpl<char> &Str) {
221 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
222 if (Str[i] == '\\' || Str[i] == '"') {
223 Str.insert(Str.begin()+i, '\\');
224 ++i; ++e;
225 }
226 }
227}
228
Chris Lattnerb0607272010-11-17 07:26:20 +0000229//===----------------------------------------------------------------------===//
230// Token Spelling
231//===----------------------------------------------------------------------===//
232
233/// getSpelling() - Return the 'spelling' of this token. The spelling of a
234/// token are the characters used to represent the token in the source file
235/// after trigraph expansion and escaped-newline folding. In particular, this
236/// wants to get the true, uncanonicalized, spelling of things like digraphs
237/// UCNs, etc.
John McCall834e3f62011-03-08 07:59:04 +0000238llvm::StringRef Lexer::getSpelling(SourceLocation loc,
239 llvm::SmallVectorImpl<char> &buffer,
240 const SourceManager &SM,
241 const LangOptions &options,
242 bool *invalid) {
243 // Break down the source location.
244 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
245
246 // Try to the load the file buffer.
247 bool invalidTemp = false;
248 llvm::StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
249 if (invalidTemp) {
250 if (invalid) *invalid = true;
251 return llvm::StringRef();
252 }
253
254 const char *tokenBegin = file.data() + locInfo.second;
255
256 // Lex from the start of the given location.
257 Lexer lexer(SM.getLocForStartOfFile(locInfo.first), options,
258 file.begin(), tokenBegin, file.end());
259 Token token;
260 lexer.LexFromRawLexer(token);
261
262 unsigned length = token.getLength();
263
264 // Common case: no need for cleaning.
265 if (!token.needsCleaning())
266 return llvm::StringRef(tokenBegin, length);
267
268 // Hard case, we need to relex the characters into the string.
269 buffer.clear();
270 buffer.reserve(length);
271
272 for (const char *ti = tokenBegin, *te = ti + length; ti != te; ) {
273 unsigned charSize;
274 buffer.push_back(Lexer::getCharAndSizeNoWarn(ti, charSize, options));
275 ti += charSize;
276 }
277
278 return llvm::StringRef(buffer.data(), buffer.size());
279}
280
281/// getSpelling() - Return the 'spelling' of this token. The spelling of a
282/// token are the characters used to represent the token in the source file
283/// after trigraph expansion and escaped-newline folding. In particular, this
284/// wants to get the true, uncanonicalized, spelling of things like digraphs
285/// UCNs, etc.
Chris Lattnerb0607272010-11-17 07:26:20 +0000286std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr,
287 const LangOptions &Features, bool *Invalid) {
288 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
289
290 // If this token contains nothing interesting, return it directly.
291 bool CharDataInvalid = false;
292 const char* TokStart = SourceMgr.getCharacterData(Tok.getLocation(),
293 &CharDataInvalid);
294 if (Invalid)
295 *Invalid = CharDataInvalid;
296 if (CharDataInvalid)
297 return std::string();
298
299 if (!Tok.needsCleaning())
300 return std::string(TokStart, TokStart+Tok.getLength());
301
302 std::string Result;
303 Result.reserve(Tok.getLength());
304
305 // Otherwise, hard case, relex the characters into the string.
306 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
307 Ptr != End; ) {
308 unsigned CharSize;
309 Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features));
310 Ptr += CharSize;
311 }
312 assert(Result.size() != unsigned(Tok.getLength()) &&
313 "NeedsCleaning flag set on something that didn't need cleaning!");
314 return Result;
315}
316
317/// getSpelling - This method is used to get the spelling of a token into a
318/// preallocated buffer, instead of as an std::string. The caller is required
319/// to allocate enough space for the token, which is guaranteed to be at least
320/// Tok.getLength() bytes long. The actual length of the token is returned.
321///
322/// Note that this method may do two possible things: it may either fill in
323/// the buffer specified with characters, or it may *change the input pointer*
324/// to point to a constant buffer with the data already in it (avoiding a
325/// copy). The caller is not allowed to modify the returned buffer pointer
326/// if an internal buffer is returned.
327unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer,
328 const SourceManager &SourceMgr,
329 const LangOptions &Features, bool *Invalid) {
330 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000331
332 const char *TokStart = 0;
333 // NOTE: this has to be checked *before* testing for an IdentifierInfo.
334 if (Tok.is(tok::raw_identifier))
335 TokStart = Tok.getRawIdentifierData();
336 else if (const IdentifierInfo *II = Tok.getIdentifierInfo()) {
337 // Just return the string from the identifier table, which is very quick.
Chris Lattnerb0607272010-11-17 07:26:20 +0000338 Buffer = II->getNameStart();
339 return II->getLength();
340 }
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000341
342 // NOTE: this can be checked even after testing for an IdentifierInfo.
Chris Lattnerb0607272010-11-17 07:26:20 +0000343 if (Tok.isLiteral())
344 TokStart = Tok.getLiteralData();
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000345
Chris Lattnerb0607272010-11-17 07:26:20 +0000346 if (TokStart == 0) {
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000347 // Compute the start of the token in the input lexer buffer.
Chris Lattnerb0607272010-11-17 07:26:20 +0000348 bool CharDataInvalid = false;
349 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid);
350 if (Invalid)
351 *Invalid = CharDataInvalid;
352 if (CharDataInvalid) {
353 Buffer = "";
354 return 0;
355 }
356 }
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000357
Chris Lattnerb0607272010-11-17 07:26:20 +0000358 // If this token contains nothing interesting, return it directly.
359 if (!Tok.needsCleaning()) {
360 Buffer = TokStart;
361 return Tok.getLength();
362 }
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000363
Chris Lattnerb0607272010-11-17 07:26:20 +0000364 // Otherwise, hard case, relex the characters into the string.
365 char *OutBuf = const_cast<char*>(Buffer);
366 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
367 Ptr != End; ) {
368 unsigned CharSize;
369 *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features);
370 Ptr += CharSize;
371 }
372 assert(unsigned(OutBuf-Buffer) != Tok.getLength() &&
373 "NeedsCleaning flag set on something that didn't need cleaning!");
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000374
Chris Lattnerb0607272010-11-17 07:26:20 +0000375 return OutBuf-Buffer;
376}
377
378
379
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000380static bool isWhitespace(unsigned char c);
Reid Spencer5f016e22007-07-11 17:01:13 +0000381
Chris Lattner9a611942007-10-17 21:18:47 +0000382/// MeasureTokenLength - Relex the token at the specified location and return
383/// its length in bytes in the input file. If the token needs cleaning (e.g.
384/// includes a trigraph or an escaped newline) then this count includes bytes
385/// that are part of that.
386unsigned Lexer::MeasureTokenLength(SourceLocation Loc,
Chris Lattner2c78b872009-04-14 23:22:57 +0000387 const SourceManager &SM,
388 const LangOptions &LangOpts) {
Chris Lattner9a611942007-10-17 21:18:47 +0000389 // TODO: this could be special cased for common tokens like identifiers, ')',
390 // etc to make this faster, if it mattered. Just look at StrData[0] to handle
Mike Stump1eb44332009-09-09 15:08:12 +0000391 // all obviously single-char tokens. This could use
Chris Lattner9a611942007-10-17 21:18:47 +0000392 // Lexer::isObviouslySimpleCharacter for example to handle identifiers or
393 // something.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000394
395 // If this comes from a macro expansion, we really do want the macro name, not
396 // the token this macro expanded to.
Chris Lattner363fdc22009-01-26 22:24:27 +0000397 Loc = SM.getInstantiationLoc(Loc);
398 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000399 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000400 llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000401 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +0000402 return 0;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000403
404 const char *StrData = Buffer.data()+LocInfo.second;
Chris Lattner83503942009-01-17 08:30:10 +0000405
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000406 if (isWhitespace(StrData[0]))
407 return 0;
408
Chris Lattner9a611942007-10-17 21:18:47 +0000409 // Create a lexer starting at the beginning of this token.
Sebastian Redlc3526d82010-09-30 01:03:03 +0000410 Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), LangOpts,
411 Buffer.begin(), StrData, Buffer.end());
Chris Lattner39de7402009-10-14 15:04:18 +0000412 TheLexer.SetCommentRetentionState(true);
Chris Lattner9a611942007-10-17 21:18:47 +0000413 Token TheTok;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000414 TheLexer.LexFromRawLexer(TheTok);
Chris Lattner9a611942007-10-17 21:18:47 +0000415 return TheTok.getLength();
416}
417
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000418SourceLocation Lexer::GetBeginningOfToken(SourceLocation Loc,
419 const SourceManager &SM,
420 const LangOptions &LangOpts) {
421 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
Douglas Gregor3de84242011-01-31 22:42:36 +0000422 if (LocInfo.first.isInvalid())
423 return Loc;
424
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000425 bool Invalid = false;
426 llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
427 if (Invalid)
428 return Loc;
429
430 // Back up from the current location until we hit the beginning of a line
431 // (or the buffer). We'll relex from that point.
432 const char *BufStart = Buffer.data();
Douglas Gregor3de84242011-01-31 22:42:36 +0000433 if (LocInfo.second >= Buffer.size())
434 return Loc;
435
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000436 const char *StrData = BufStart+LocInfo.second;
437 if (StrData[0] == '\n' || StrData[0] == '\r')
438 return Loc;
439
440 const char *LexStart = StrData;
441 while (LexStart != BufStart) {
442 if (LexStart[0] == '\n' || LexStart[0] == '\r') {
443 ++LexStart;
444 break;
445 }
446
447 --LexStart;
448 }
449
450 // Create a lexer starting at the beginning of this token.
451 SourceLocation LexerStartLoc = Loc.getFileLocWithOffset(-LocInfo.second);
452 Lexer TheLexer(LexerStartLoc, LangOpts, BufStart, LexStart, Buffer.end());
453 TheLexer.SetCommentRetentionState(true);
454
455 // Lex tokens until we find the token that contains the source location.
456 Token TheTok;
457 do {
458 TheLexer.LexFromRawLexer(TheTok);
459
460 if (TheLexer.getBufferLocation() > StrData) {
461 // Lexing this token has taken the lexer past the source location we're
462 // looking for. If the current token encompasses our source location,
463 // return the beginning of that token.
464 if (TheLexer.getBufferLocation() - TheTok.getLength() <= StrData)
465 return TheTok.getLocation();
466
467 // We ended up skipping over the source location entirely, which means
468 // that it points into whitespace. We're done here.
469 break;
470 }
471 } while (TheTok.getKind() != tok::eof);
472
473 // We've passed our source location; just return the original source location.
474 return Loc;
475}
476
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000477namespace {
478 enum PreambleDirectiveKind {
479 PDK_Skipped,
480 PDK_StartIf,
481 PDK_EndIf,
482 PDK_Unknown
483 };
484}
485
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000486std::pair<unsigned, bool>
Douglas Gregordf95a132010-08-09 20:45:32 +0000487Lexer::ComputePreamble(const llvm::MemoryBuffer *Buffer, unsigned MaxLines) {
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000488 // Create a lexer starting at the beginning of the file. Note that we use a
489 // "fake" file source location at offset 1 so that the lexer will track our
490 // position within the file.
491 const unsigned StartOffset = 1;
492 SourceLocation StartLoc = SourceLocation::getFromRawEncoding(StartOffset);
493 LangOptions LangOpts;
494 Lexer TheLexer(StartLoc, LangOpts, Buffer->getBufferStart(),
495 Buffer->getBufferStart(), Buffer->getBufferEnd());
496
497 bool InPreprocessorDirective = false;
498 Token TheTok;
499 Token IfStartTok;
500 unsigned IfCount = 0;
Douglas Gregordf95a132010-08-09 20:45:32 +0000501 unsigned Line = 0;
502
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000503 do {
504 TheLexer.LexFromRawLexer(TheTok);
505
506 if (InPreprocessorDirective) {
507 // If we've hit the end of the file, we're done.
508 if (TheTok.getKind() == tok::eof) {
509 InPreprocessorDirective = false;
510 break;
511 }
512
513 // If we haven't hit the end of the preprocessor directive, skip this
514 // token.
515 if (!TheTok.isAtStartOfLine())
516 continue;
517
518 // We've passed the end of the preprocessor directive, and will look
519 // at this token again below.
520 InPreprocessorDirective = false;
521 }
522
Douglas Gregordf95a132010-08-09 20:45:32 +0000523 // Keep track of the # of lines in the preamble.
524 if (TheTok.isAtStartOfLine()) {
525 ++Line;
526
527 // If we were asked to limit the number of lines in the preamble,
528 // and we're about to exceed that limit, we're done.
529 if (MaxLines && Line >= MaxLines)
530 break;
531 }
532
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000533 // Comments are okay; skip over them.
534 if (TheTok.getKind() == tok::comment)
535 continue;
536
537 if (TheTok.isAtStartOfLine() && TheTok.getKind() == tok::hash) {
538 // This is the start of a preprocessor directive.
539 Token HashTok = TheTok;
540 InPreprocessorDirective = true;
541
542 // Figure out which direective this is. Since we're lexing raw tokens,
543 // we don't have an identifier table available. Instead, just look at
544 // the raw identifier to recognize and categorize preprocessor directives.
545 TheLexer.LexFromRawLexer(TheTok);
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000546 if (TheTok.getKind() == tok::raw_identifier && !TheTok.needsCleaning()) {
547 llvm::StringRef Keyword(TheTok.getRawIdentifierData(),
548 TheTok.getLength());
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000549 PreambleDirectiveKind PDK
550 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword)
551 .Case("include", PDK_Skipped)
552 .Case("__include_macros", PDK_Skipped)
553 .Case("define", PDK_Skipped)
554 .Case("undef", PDK_Skipped)
555 .Case("line", PDK_Skipped)
556 .Case("error", PDK_Skipped)
557 .Case("pragma", PDK_Skipped)
558 .Case("import", PDK_Skipped)
559 .Case("include_next", PDK_Skipped)
560 .Case("warning", PDK_Skipped)
561 .Case("ident", PDK_Skipped)
562 .Case("sccs", PDK_Skipped)
563 .Case("assert", PDK_Skipped)
564 .Case("unassert", PDK_Skipped)
565 .Case("if", PDK_StartIf)
566 .Case("ifdef", PDK_StartIf)
567 .Case("ifndef", PDK_StartIf)
568 .Case("elif", PDK_Skipped)
569 .Case("else", PDK_Skipped)
570 .Case("endif", PDK_EndIf)
571 .Default(PDK_Unknown);
572
573 switch (PDK) {
574 case PDK_Skipped:
575 continue;
576
577 case PDK_StartIf:
578 if (IfCount == 0)
579 IfStartTok = HashTok;
580
581 ++IfCount;
582 continue;
583
584 case PDK_EndIf:
585 // Mismatched #endif. The preamble ends here.
586 if (IfCount == 0)
587 break;
588
589 --IfCount;
590 continue;
591
592 case PDK_Unknown:
593 // We don't know what this directive is; stop at the '#'.
594 break;
595 }
596 }
597
598 // We only end up here if we didn't recognize the preprocessor
599 // directive or it was one that can't occur in the preamble at this
600 // point. Roll back the current token to the location of the '#'.
601 InPreprocessorDirective = false;
602 TheTok = HashTok;
603 }
604
Douglas Gregordf95a132010-08-09 20:45:32 +0000605 // We hit a token that we don't recognize as being in the
606 // "preprocessing only" part of the file, so we're no longer in
607 // the preamble.
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000608 break;
609 } while (true);
610
611 SourceLocation End = IfCount? IfStartTok.getLocation() : TheTok.getLocation();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000612 return std::make_pair(End.getRawEncoding() - StartLoc.getRawEncoding(),
613 IfCount? IfStartTok.isAtStartOfLine()
614 : TheTok.isAtStartOfLine());
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000615}
616
Chris Lattner7ef5c272010-11-17 07:05:50 +0000617
618/// AdvanceToTokenCharacter - Given a location that specifies the start of a
619/// token, return a new location that specifies a character within the token.
620SourceLocation Lexer::AdvanceToTokenCharacter(SourceLocation TokStart,
621 unsigned CharNo,
622 const SourceManager &SM,
623 const LangOptions &Features) {
624 // Figure out how many physical characters away the specified instantiation
625 // character is. This needs to take into consideration newlines and
626 // trigraphs.
627 bool Invalid = false;
628 const char *TokPtr = SM.getCharacterData(TokStart, &Invalid);
629
630 // If they request the first char of the token, we're trivially done.
631 if (Invalid || (CharNo == 0 && Lexer::isObviouslySimpleCharacter(*TokPtr)))
632 return TokStart;
633
634 unsigned PhysOffset = 0;
635
636 // The usual case is that tokens don't contain anything interesting. Skip
637 // over the uninteresting characters. If a token only consists of simple
638 // chars, this method is extremely fast.
639 while (Lexer::isObviouslySimpleCharacter(*TokPtr)) {
640 if (CharNo == 0)
641 return TokStart.getFileLocWithOffset(PhysOffset);
642 ++TokPtr, --CharNo, ++PhysOffset;
643 }
644
645 // If we have a character that may be a trigraph or escaped newline, use a
646 // lexer to parse it correctly.
647 for (; CharNo; --CharNo) {
648 unsigned Size;
649 Lexer::getCharAndSizeNoWarn(TokPtr, Size, Features);
650 TokPtr += Size;
651 PhysOffset += Size;
652 }
653
654 // Final detail: if we end up on an escaped newline, we want to return the
655 // location of the actual byte of the token. For example foo\<newline>bar
656 // advanced by 3 should return the location of b, not of \\. One compounding
657 // detail of this is that the escape may be made by a trigraph.
658 if (!Lexer::isObviouslySimpleCharacter(*TokPtr))
659 PhysOffset += Lexer::SkipEscapedNewLines(TokPtr)-TokPtr;
660
661 return TokStart.getFileLocWithOffset(PhysOffset);
662}
663
664/// \brief Computes the source location just past the end of the
665/// token at this source location.
666///
667/// This routine can be used to produce a source location that
668/// points just past the end of the token referenced by \p Loc, and
669/// is generally used when a diagnostic needs to point just after a
670/// token where it expected something different that it received. If
671/// the returned source location would not be meaningful (e.g., if
672/// it points into a macro), this routine returns an invalid
673/// source location.
674///
675/// \param Offset an offset from the end of the token, where the source
676/// location should refer to. The default offset (0) produces a source
677/// location pointing just past the end of the token; an offset of 1 produces
678/// a source location pointing to the last character in the token, etc.
679SourceLocation Lexer::getLocForEndOfToken(SourceLocation Loc, unsigned Offset,
680 const SourceManager &SM,
681 const LangOptions &Features) {
Argyrios Kyrtzidis7ddf6b22011-06-24 17:58:59 +0000682 if (Loc.isInvalid())
Chris Lattner7ef5c272010-11-17 07:05:50 +0000683 return SourceLocation();
Argyrios Kyrtzidis7ddf6b22011-06-24 17:58:59 +0000684
685 if (Loc.isMacroID()) {
Argyrios Kyrtzidis7a759602011-07-07 21:54:45 +0000686 if (Offset > 0 || !isAtEndOfMacroInstantiation(Loc, SM, Features))
Argyrios Kyrtzidis7ddf6b22011-06-24 17:58:59 +0000687 return SourceLocation(); // Points inside the macro instantiation.
688
689 // Continue and find the location just after the macro instantiation.
690 Loc = SM.getInstantiationRange(Loc).second;
691 }
692
Chris Lattner7ef5c272010-11-17 07:05:50 +0000693 unsigned Len = Lexer::MeasureTokenLength(Loc, SM, Features);
694 if (Len > Offset)
695 Len = Len - Offset;
696 else
697 return Loc;
698
John McCall77ebb382011-04-06 01:50:22 +0000699 return Loc.getFileLocWithOffset(Len);
Chris Lattner7ef5c272010-11-17 07:05:50 +0000700}
701
Argyrios Kyrtzidis7a759602011-07-07 21:54:45 +0000702/// \brief Returns true if the given MacroID location points at the first
703/// token of the macro instantiation.
704bool Lexer::isAtStartOfMacroInstantiation(SourceLocation loc,
705 const SourceManager &SM,
706 const LangOptions &LangOpts) {
707 assert(loc.isValid() && loc.isMacroID() && "Expected a valid macro loc");
708
709 std::pair<FileID, unsigned> infoLoc = SM.getDecomposedLoc(loc);
710 // FIXME: If the token comes from the macro token paste operator ('##')
711 // this function will always return false;
712 if (infoLoc.second > 0)
713 return false; // Does not point at the start of token.
714
715 SourceLocation instLoc =
716 SM.getSLocEntry(infoLoc.first).getInstantiation().getInstantiationLocStart();
717 if (instLoc.isFileID())
718 return true; // No other macro instantiations, this is the first.
719
720 return isAtStartOfMacroInstantiation(instLoc, SM, LangOpts);
721}
722
723/// \brief Returns true if the given MacroID location points at the last
724/// token of the macro instantiation.
725bool Lexer::isAtEndOfMacroInstantiation(SourceLocation loc,
726 const SourceManager &SM,
727 const LangOptions &LangOpts) {
728 assert(loc.isValid() && loc.isMacroID() && "Expected a valid macro loc");
729
730 SourceLocation spellLoc = SM.getSpellingLoc(loc);
731 unsigned tokLen = MeasureTokenLength(spellLoc, SM, LangOpts);
732 if (tokLen == 0)
733 return false;
734
735 FileID FID = SM.getFileID(loc);
736 SourceLocation afterLoc = loc.getFileLocWithOffset(tokLen+1);
737 if (!SM.isBeforeInSourceLocationOffset(afterLoc, SM.getNextOffset()))
738 return true; // We got past the last FileID, this points to the last token.
739
740 // FIXME: If the token comes from the macro token paste operator ('##')
741 // or the stringify operator ('#') this function will always return false;
742 if (FID == SM.getFileID(afterLoc))
743 return false; // Still in the same FileID, does not point to the last token.
744
745 SourceLocation instLoc =
746 SM.getSLocEntry(FID).getInstantiation().getInstantiationLocEnd();
747 if (instLoc.isFileID())
748 return true; // No other macro instantiations.
749
750 return isAtEndOfMacroInstantiation(instLoc, SM, LangOpts);
751}
752
Reid Spencer5f016e22007-07-11 17:01:13 +0000753//===----------------------------------------------------------------------===//
754// Character information.
755//===----------------------------------------------------------------------===//
756
Reid Spencer5f016e22007-07-11 17:01:13 +0000757enum {
758 CHAR_HORZ_WS = 0x01, // ' ', '\t', '\f', '\v'. Note, no '\0'
759 CHAR_VERT_WS = 0x02, // '\r', '\n'
760 CHAR_LETTER = 0x04, // a-z,A-Z
761 CHAR_NUMBER = 0x08, // 0-9
762 CHAR_UNDER = 0x10, // _
763 CHAR_PERIOD = 0x20 // .
764};
765
Chris Lattner03b98662009-07-07 17:09:54 +0000766// Statically initialize CharInfo table based on ASCII character set
767// Reference: FreeBSD 7.2 /usr/share/misc/ascii
Chris Lattnera2bf1052009-12-17 05:29:40 +0000768static const unsigned char CharInfo[256] =
Chris Lattner03b98662009-07-07 17:09:54 +0000769{
770// 0 NUL 1 SOH 2 STX 3 ETX
771// 4 EOT 5 ENQ 6 ACK 7 BEL
772 0 , 0 , 0 , 0 ,
773 0 , 0 , 0 , 0 ,
774// 8 BS 9 HT 10 NL 11 VT
775//12 NP 13 CR 14 SO 15 SI
776 0 , CHAR_HORZ_WS, CHAR_VERT_WS, CHAR_HORZ_WS,
777 CHAR_HORZ_WS, CHAR_VERT_WS, 0 , 0 ,
778//16 DLE 17 DC1 18 DC2 19 DC3
779//20 DC4 21 NAK 22 SYN 23 ETB
780 0 , 0 , 0 , 0 ,
781 0 , 0 , 0 , 0 ,
782//24 CAN 25 EM 26 SUB 27 ESC
783//28 FS 29 GS 30 RS 31 US
784 0 , 0 , 0 , 0 ,
785 0 , 0 , 0 , 0 ,
786//32 SP 33 ! 34 " 35 #
787//36 $ 37 % 38 & 39 '
788 CHAR_HORZ_WS, 0 , 0 , 0 ,
789 0 , 0 , 0 , 0 ,
790//40 ( 41 ) 42 * 43 +
791//44 , 45 - 46 . 47 /
792 0 , 0 , 0 , 0 ,
793 0 , 0 , CHAR_PERIOD , 0 ,
794//48 0 49 1 50 2 51 3
795//52 4 53 5 54 6 55 7
796 CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER ,
797 CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER ,
798//56 8 57 9 58 : 59 ;
799//60 < 61 = 62 > 63 ?
800 CHAR_NUMBER , CHAR_NUMBER , 0 , 0 ,
801 0 , 0 , 0 , 0 ,
802//64 @ 65 A 66 B 67 C
803//68 D 69 E 70 F 71 G
804 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
805 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
806//72 H 73 I 74 J 75 K
807//76 L 77 M 78 N 79 O
808 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
809 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
810//80 P 81 Q 82 R 83 S
811//84 T 85 U 86 V 87 W
812 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
813 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
814//88 X 89 Y 90 Z 91 [
815//92 \ 93 ] 94 ^ 95 _
816 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 ,
817 0 , 0 , 0 , CHAR_UNDER ,
818//96 ` 97 a 98 b 99 c
819//100 d 101 e 102 f 103 g
820 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
821 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
822//104 h 105 i 106 j 107 k
823//108 l 109 m 110 n 111 o
824 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
825 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
826//112 p 113 q 114 r 115 s
827//116 t 117 u 118 v 119 w
828 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
829 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
830//120 x 121 y 122 z 123 {
831//124 | 125 } 126 ~ 127 DEL
832 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 ,
833 0 , 0 , 0 , 0
834};
835
Chris Lattnera2bf1052009-12-17 05:29:40 +0000836static void InitCharacterInfo() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000837 static bool isInited = false;
838 if (isInited) return;
Chris Lattner03b98662009-07-07 17:09:54 +0000839 // check the statically-initialized CharInfo table
840 assert(CHAR_HORZ_WS == CharInfo[(int)' ']);
841 assert(CHAR_HORZ_WS == CharInfo[(int)'\t']);
842 assert(CHAR_HORZ_WS == CharInfo[(int)'\f']);
843 assert(CHAR_HORZ_WS == CharInfo[(int)'\v']);
844 assert(CHAR_VERT_WS == CharInfo[(int)'\n']);
845 assert(CHAR_VERT_WS == CharInfo[(int)'\r']);
846 assert(CHAR_UNDER == CharInfo[(int)'_']);
847 assert(CHAR_PERIOD == CharInfo[(int)'.']);
848 for (unsigned i = 'a'; i <= 'z'; ++i) {
849 assert(CHAR_LETTER == CharInfo[i]);
850 assert(CHAR_LETTER == CharInfo[i+'A'-'a']);
851 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000852 for (unsigned i = '0'; i <= '9'; ++i)
Chris Lattner03b98662009-07-07 17:09:54 +0000853 assert(CHAR_NUMBER == CharInfo[i]);
Steve Naroff7b682652009-12-08 16:38:12 +0000854
Chris Lattner03b98662009-07-07 17:09:54 +0000855 isInited = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000856}
857
Chris Lattner03b98662009-07-07 17:09:54 +0000858
Reid Spencer5f016e22007-07-11 17:01:13 +0000859/// isIdentifierBody - Return true if this is the body character of an
860/// identifier, which is [a-zA-Z0-9_].
861static inline bool isIdentifierBody(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000862 return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER)) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000863}
864
865/// isHorizontalWhitespace - Return true if this character is horizontal
866/// whitespace: ' ', '\t', '\f', '\v'. Note that this returns false for '\0'.
867static inline bool isHorizontalWhitespace(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000868 return (CharInfo[c] & CHAR_HORZ_WS) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000869}
870
871/// isWhitespace - Return true if this character is horizontal or vertical
872/// whitespace: ' ', '\t', '\f', '\v', '\n', '\r'. Note that this returns false
873/// for '\0'.
874static inline bool isWhitespace(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000875 return (CharInfo[c] & (CHAR_HORZ_WS|CHAR_VERT_WS)) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000876}
877
878/// isNumberBody - Return true if this is the body character of an
879/// preprocessing number, which is [a-zA-Z0-9_.].
880static inline bool isNumberBody(unsigned char c) {
Mike Stump1eb44332009-09-09 15:08:12 +0000881 return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER|CHAR_PERIOD)) ?
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000882 true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000883}
884
885
886//===----------------------------------------------------------------------===//
887// Diagnostics forwarding code.
888//===----------------------------------------------------------------------===//
889
Chris Lattner409a0362007-07-22 18:38:25 +0000890/// GetMappedTokenLoc - If lexing out of a 'mapped buffer', where we pretend the
891/// lexer buffer was all instantiated at a single point, perform the mapping.
892/// This is currently only used for _Pragma implementation, so it is the slow
893/// path of the hot getSourceLocation method. Do not allow it to be inlined.
Chandler Carruth14bd9652010-10-23 08:44:57 +0000894static LLVM_ATTRIBUTE_NOINLINE SourceLocation GetMappedTokenLoc(
895 Preprocessor &PP, SourceLocation FileLoc, unsigned CharNo, unsigned TokLen);
Chris Lattner409a0362007-07-22 18:38:25 +0000896static SourceLocation GetMappedTokenLoc(Preprocessor &PP,
897 SourceLocation FileLoc,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000898 unsigned CharNo, unsigned TokLen) {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000899 assert(FileLoc.isMacroID() && "Must be an instantiation");
Mike Stump1eb44332009-09-09 15:08:12 +0000900
Chris Lattner409a0362007-07-22 18:38:25 +0000901 // Otherwise, we're lexing "mapped tokens". This is used for things like
902 // _Pragma handling. Combine the instantiation location of FileLoc with the
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000903 // spelling location.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000904 SourceManager &SM = PP.getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000906 // Create a new SLoc which is expanded from Instantiation(FileLoc) but whose
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000907 // characters come from spelling(FileLoc)+Offset.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000908 SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc);
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000909 SpellingLoc = SpellingLoc.getFileLocWithOffset(CharNo);
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Chris Lattnere7fb4842009-02-15 20:52:18 +0000911 // Figure out the expansion loc range, which is the range covered by the
912 // original _Pragma(...) sequence.
913 std::pair<SourceLocation,SourceLocation> II =
914 SM.getImmediateInstantiationRange(FileLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000915
Chris Lattnere7fb4842009-02-15 20:52:18 +0000916 return SM.createInstantiationLoc(SpellingLoc, II.first, II.second, TokLen);
Chris Lattner409a0362007-07-22 18:38:25 +0000917}
918
Reid Spencer5f016e22007-07-11 17:01:13 +0000919/// getSourceLocation - Return a source location identifier for the specified
920/// offset in the current file.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000921SourceLocation Lexer::getSourceLocation(const char *Loc,
922 unsigned TokLen) const {
Chris Lattner448cec42007-07-22 18:44:36 +0000923 assert(Loc >= BufferStart && Loc <= BufferEnd &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000924 "Location out of range for this buffer!");
Chris Lattner9dc1f532007-07-20 16:37:10 +0000925
926 // In the normal case, we're just lexing from a simple file buffer, return
927 // the file id from FileLoc with the offset specified.
Chris Lattner448cec42007-07-22 18:44:36 +0000928 unsigned CharNo = Loc-BufferStart;
Chris Lattner9dc1f532007-07-20 16:37:10 +0000929 if (FileLoc.isFileID())
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000930 return FileLoc.getFileLocWithOffset(CharNo);
Mike Stump1eb44332009-09-09 15:08:12 +0000931
Chris Lattner2b2453a2009-01-17 06:22:33 +0000932 // Otherwise, this is the _Pragma lexer case, which pretends that all of the
933 // tokens are lexed from where the _Pragma was defined.
Chris Lattner168ae2d2007-10-17 20:41:00 +0000934 assert(PP && "This doesn't work on raw lexers");
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000935 return GetMappedTokenLoc(*PP, FileLoc, CharNo, TokLen);
Reid Spencer5f016e22007-07-11 17:01:13 +0000936}
937
Reid Spencer5f016e22007-07-11 17:01:13 +0000938/// Diag - Forwarding function for diagnostics. This translate a source
939/// position in the current buffer into a SourceLocation object for rendering.
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000940DiagnosticBuilder Lexer::Diag(const char *Loc, unsigned DiagID) const {
Chris Lattner3692b092008-11-18 07:59:24 +0000941 return PP->Diag(getSourceLocation(Loc), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000942}
Reid Spencer5f016e22007-07-11 17:01:13 +0000943
944//===----------------------------------------------------------------------===//
945// Trigraph and Escaped Newline Handling Code.
946//===----------------------------------------------------------------------===//
947
948/// GetTrigraphCharForLetter - Given a character that occurs after a ?? pair,
949/// return the decoded trigraph letter it corresponds to, or '\0' if nothing.
950static char GetTrigraphCharForLetter(char Letter) {
951 switch (Letter) {
952 default: return 0;
953 case '=': return '#';
954 case ')': return ']';
955 case '(': return '[';
956 case '!': return '|';
957 case '\'': return '^';
958 case '>': return '}';
959 case '/': return '\\';
960 case '<': return '{';
961 case '-': return '~';
962 }
963}
964
965/// DecodeTrigraphChar - If the specified character is a legal trigraph when
966/// prefixed with ??, emit a trigraph warning. If trigraphs are enabled,
967/// return the result character. Finally, emit a warning about trigraph use
968/// whether trigraphs are enabled or not.
969static char DecodeTrigraphChar(const char *CP, Lexer *L) {
970 char Res = GetTrigraphCharForLetter(*CP);
Chris Lattner3692b092008-11-18 07:59:24 +0000971 if (!Res || !L) return Res;
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Chris Lattner3692b092008-11-18 07:59:24 +0000973 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +0000974 if (!L->isLexingRawMode())
975 L->Diag(CP-2, diag::trigraph_ignored);
Chris Lattner3692b092008-11-18 07:59:24 +0000976 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000977 }
Mike Stump1eb44332009-09-09 15:08:12 +0000978
Chris Lattner74d15df2008-11-22 02:02:22 +0000979 if (!L->isLexingRawMode())
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000980 L->Diag(CP-2, diag::trigraph_converted) << llvm::StringRef(&Res, 1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000981 return Res;
982}
983
Chris Lattner24f0e482009-04-18 22:05:41 +0000984/// getEscapedNewLineSize - Return the size of the specified escaped newline,
985/// or 0 if it is not an escaped newline. P[-1] is known to be a "\" or a
Mike Stump1eb44332009-09-09 15:08:12 +0000986/// trigraph equivalent on entry to this function.
Chris Lattner24f0e482009-04-18 22:05:41 +0000987unsigned Lexer::getEscapedNewLineSize(const char *Ptr) {
988 unsigned Size = 0;
989 while (isWhitespace(Ptr[Size])) {
990 ++Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Chris Lattner24f0e482009-04-18 22:05:41 +0000992 if (Ptr[Size-1] != '\n' && Ptr[Size-1] != '\r')
993 continue;
994
995 // If this is a \r\n or \n\r, skip the other half.
996 if ((Ptr[Size] == '\r' || Ptr[Size] == '\n') &&
997 Ptr[Size-1] != Ptr[Size])
998 ++Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Chris Lattner24f0e482009-04-18 22:05:41 +00001000 return Size;
Mike Stump1eb44332009-09-09 15:08:12 +00001001 }
1002
Chris Lattner24f0e482009-04-18 22:05:41 +00001003 // Not an escaped newline, must be a \t or something else.
1004 return 0;
1005}
1006
Chris Lattner03374952009-04-18 22:27:02 +00001007/// SkipEscapedNewLines - If P points to an escaped newline (or a series of
1008/// them), skip over them and return the first non-escaped-newline found,
1009/// otherwise return P.
1010const char *Lexer::SkipEscapedNewLines(const char *P) {
1011 while (1) {
1012 const char *AfterEscape;
1013 if (*P == '\\') {
1014 AfterEscape = P+1;
1015 } else if (*P == '?') {
1016 // If not a trigraph for escape, bail out.
1017 if (P[1] != '?' || P[2] != '/')
1018 return P;
1019 AfterEscape = P+3;
1020 } else {
1021 return P;
1022 }
Mike Stump1eb44332009-09-09 15:08:12 +00001023
Chris Lattner03374952009-04-18 22:27:02 +00001024 unsigned NewLineSize = Lexer::getEscapedNewLineSize(AfterEscape);
1025 if (NewLineSize == 0) return P;
1026 P = AfterEscape+NewLineSize;
1027 }
1028}
1029
Chris Lattner24f0e482009-04-18 22:05:41 +00001030
Reid Spencer5f016e22007-07-11 17:01:13 +00001031/// getCharAndSizeSlow - Peek a single 'character' from the specified buffer,
1032/// get its size, and return it. This is tricky in several cases:
1033/// 1. If currently at the start of a trigraph, we warn about the trigraph,
1034/// then either return the trigraph (skipping 3 chars) or the '?',
1035/// depending on whether trigraphs are enabled or not.
1036/// 2. If this is an escaped newline (potentially with whitespace between
1037/// the backslash and newline), implicitly skip the newline and return
1038/// the char after it.
1039/// 3. If this is a UCN, return it. FIXME: C++ UCN's?
1040///
1041/// This handles the slow/uncommon case of the getCharAndSize method. Here we
1042/// know that we can accumulate into Size, and that we have already incremented
1043/// Ptr by Size bytes.
1044///
1045/// NOTE: When this method is updated, getCharAndSizeSlowNoWarn (below) should
1046/// be updated to match.
1047///
1048char Lexer::getCharAndSizeSlow(const char *Ptr, unsigned &Size,
Chris Lattnerd2177732007-07-20 16:59:19 +00001049 Token *Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 // If we have a slash, look for an escaped newline.
1051 if (Ptr[0] == '\\') {
1052 ++Size;
1053 ++Ptr;
1054Slash:
1055 // Common case, backslash-char where the char is not whitespace.
1056 if (!isWhitespace(Ptr[0])) return '\\';
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Chris Lattner5636a3b2009-06-23 05:15:06 +00001058 // See if we have optional whitespace characters between the slash and
1059 // newline.
Chris Lattner24f0e482009-04-18 22:05:41 +00001060 if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) {
1061 // Remember that this token needs to be cleaned.
1062 if (Tok) Tok->setFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00001063
Chris Lattner24f0e482009-04-18 22:05:41 +00001064 // Warn if there was whitespace between the backslash and newline.
Chris Lattner5636a3b2009-06-23 05:15:06 +00001065 if (Ptr[0] != '\n' && Ptr[0] != '\r' && Tok && !isLexingRawMode())
Chris Lattner24f0e482009-04-18 22:05:41 +00001066 Diag(Ptr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +00001067
Chris Lattner24f0e482009-04-18 22:05:41 +00001068 // Found backslash<whitespace><newline>. Parse the char after it.
1069 Size += EscapedNewLineSize;
1070 Ptr += EscapedNewLineSize;
1071 // Use slow version to accumulate a correct size field.
1072 return getCharAndSizeSlow(Ptr, Size, Tok);
1073 }
Mike Stump1eb44332009-09-09 15:08:12 +00001074
Reid Spencer5f016e22007-07-11 17:01:13 +00001075 // Otherwise, this is not an escaped newline, just return the slash.
1076 return '\\';
1077 }
Mike Stump1eb44332009-09-09 15:08:12 +00001078
Reid Spencer5f016e22007-07-11 17:01:13 +00001079 // If this is a trigraph, process it.
1080 if (Ptr[0] == '?' && Ptr[1] == '?') {
1081 // If this is actually a legal trigraph (not something like "??x"), emit
1082 // a trigraph warning. If so, and if trigraphs are enabled, return it.
1083 if (char C = DecodeTrigraphChar(Ptr+2, Tok ? this : 0)) {
1084 // Remember that this token needs to be cleaned.
Chris Lattnerd2177732007-07-20 16:59:19 +00001085 if (Tok) Tok->setFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00001086
1087 Ptr += 3;
1088 Size += 3;
1089 if (C == '\\') goto Slash;
1090 return C;
1091 }
1092 }
Mike Stump1eb44332009-09-09 15:08:12 +00001093
Reid Spencer5f016e22007-07-11 17:01:13 +00001094 // If this is neither, return a single character.
1095 ++Size;
1096 return *Ptr;
1097}
1098
1099
1100/// getCharAndSizeSlowNoWarn - Handle the slow/uncommon case of the
1101/// getCharAndSizeNoWarn method. Here we know that we can accumulate into Size,
1102/// and that we have already incremented Ptr by Size bytes.
1103///
1104/// NOTE: When this method is updated, getCharAndSizeSlow (above) should
1105/// be updated to match.
1106char Lexer::getCharAndSizeSlowNoWarn(const char *Ptr, unsigned &Size,
1107 const LangOptions &Features) {
1108 // If we have a slash, look for an escaped newline.
1109 if (Ptr[0] == '\\') {
1110 ++Size;
1111 ++Ptr;
1112Slash:
1113 // Common case, backslash-char where the char is not whitespace.
1114 if (!isWhitespace(Ptr[0])) return '\\';
Mike Stump1eb44332009-09-09 15:08:12 +00001115
Reid Spencer5f016e22007-07-11 17:01:13 +00001116 // See if we have optional whitespace characters followed by a newline.
Chris Lattner24f0e482009-04-18 22:05:41 +00001117 if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) {
1118 // Found backslash<whitespace><newline>. Parse the char after it.
1119 Size += EscapedNewLineSize;
1120 Ptr += EscapedNewLineSize;
Mike Stump1eb44332009-09-09 15:08:12 +00001121
Chris Lattner24f0e482009-04-18 22:05:41 +00001122 // Use slow version to accumulate a correct size field.
1123 return getCharAndSizeSlowNoWarn(Ptr, Size, Features);
1124 }
Mike Stump1eb44332009-09-09 15:08:12 +00001125
Reid Spencer5f016e22007-07-11 17:01:13 +00001126 // Otherwise, this is not an escaped newline, just return the slash.
1127 return '\\';
1128 }
Mike Stump1eb44332009-09-09 15:08:12 +00001129
Reid Spencer5f016e22007-07-11 17:01:13 +00001130 // If this is a trigraph, process it.
1131 if (Features.Trigraphs && Ptr[0] == '?' && Ptr[1] == '?') {
1132 // If this is actually a legal trigraph (not something like "??x"), return
1133 // it.
1134 if (char C = GetTrigraphCharForLetter(Ptr[2])) {
1135 Ptr += 3;
1136 Size += 3;
1137 if (C == '\\') goto Slash;
1138 return C;
1139 }
1140 }
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Reid Spencer5f016e22007-07-11 17:01:13 +00001142 // If this is neither, return a single character.
1143 ++Size;
1144 return *Ptr;
1145}
1146
1147//===----------------------------------------------------------------------===//
1148// Helper methods for lexing.
1149//===----------------------------------------------------------------------===//
1150
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001151/// \brief Routine that indiscriminately skips bytes in the source file.
1152void Lexer::SkipBytes(unsigned Bytes, bool StartOfLine) {
1153 BufferPtr += Bytes;
1154 if (BufferPtr > BufferEnd)
1155 BufferPtr = BufferEnd;
1156 IsAtStartOfLine = StartOfLine;
1157}
1158
Chris Lattnerd2177732007-07-20 16:59:19 +00001159void Lexer::LexIdentifier(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001160 // Match [_A-Za-z0-9]*, we have already matched [_A-Za-z$]
1161 unsigned Size;
1162 unsigned char C = *CurPtr++;
Chris Lattnercd991db2010-01-11 02:38:50 +00001163 while (isIdentifierBody(C))
Reid Spencer5f016e22007-07-11 17:01:13 +00001164 C = *CurPtr++;
Chris Lattnercd991db2010-01-11 02:38:50 +00001165
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 --CurPtr; // Back up over the skipped character.
1167
1168 // Fast path, no $,\,? in identifier found. '\' might be an escaped newline
1169 // or UCN, and ? might be a trigraph for '\', an escaped newline or UCN.
1170 // FIXME: UCNs.
Chris Lattnercd991db2010-01-11 02:38:50 +00001171 //
1172 // TODO: Could merge these checks into a CharInfo flag to make the comparison
1173 // cheaper
Reid Spencer5f016e22007-07-11 17:01:13 +00001174 if (C != '\\' && C != '?' && (C != '$' || !Features.DollarIdents)) {
1175FinishIdentifier:
1176 const char *IdStart = BufferPtr;
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00001177 FormTokenWithChars(Result, CurPtr, tok::raw_identifier);
1178 Result.setRawIdentifierData(IdStart);
Mike Stump1eb44332009-09-09 15:08:12 +00001179
Reid Spencer5f016e22007-07-11 17:01:13 +00001180 // If we are in raw mode, return this identifier raw. There is no need to
1181 // look up identifier information or attempt to macro expand it.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00001182 if (LexingRawMode)
1183 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001184
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00001185 // Fill in Result.IdentifierInfo and update the token kind,
1186 // looking up the identifier in the identifier table.
1187 IdentifierInfo *II = PP->LookUpIdentifierInfo(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001188
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 // Finally, now that we know we have an identifier, pass this off to the
1190 // preprocessor, which may macro expand it or something.
Chris Lattnerd1186fa2009-01-21 07:45:14 +00001191 if (II->isHandleIdentifierCase())
Chris Lattner6a170eb2009-01-21 07:43:11 +00001192 PP->HandleIdentifier(Result);
1193 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001194 }
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Reid Spencer5f016e22007-07-11 17:01:13 +00001196 // Otherwise, $,\,? in identifier found. Enter slower path.
Mike Stump1eb44332009-09-09 15:08:12 +00001197
Reid Spencer5f016e22007-07-11 17:01:13 +00001198 C = getCharAndSize(CurPtr, Size);
1199 while (1) {
1200 if (C == '$') {
1201 // If we hit a $ and they are not supported in identifiers, we are done.
1202 if (!Features.DollarIdents) goto FinishIdentifier;
Mike Stump1eb44332009-09-09 15:08:12 +00001203
Reid Spencer5f016e22007-07-11 17:01:13 +00001204 // Otherwise, emit a diagnostic and continue.
Chris Lattner74d15df2008-11-22 02:02:22 +00001205 if (!isLexingRawMode())
1206 Diag(CurPtr, diag::ext_dollar_in_identifier);
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 CurPtr = ConsumeChar(CurPtr, Size, Result);
1208 C = getCharAndSize(CurPtr, Size);
1209 continue;
1210 } else if (!isIdentifierBody(C)) { // FIXME: UCNs.
1211 // Found end of identifier.
1212 goto FinishIdentifier;
1213 }
1214
1215 // Otherwise, this character is good, consume it.
1216 CurPtr = ConsumeChar(CurPtr, Size, Result);
1217
1218 C = getCharAndSize(CurPtr, Size);
1219 while (isIdentifierBody(C)) { // FIXME: UCNs.
1220 CurPtr = ConsumeChar(CurPtr, Size, Result);
1221 C = getCharAndSize(CurPtr, Size);
1222 }
1223 }
1224}
1225
Douglas Gregora75ec432010-08-30 14:50:47 +00001226/// isHexaLiteral - Return true if Start points to a hex constant.
Chris Lattner4a551002010-08-30 17:11:14 +00001227/// in microsoft mode (where this is supposed to be several different tokens).
Chris Lattner6ab55eb2010-08-31 16:42:00 +00001228static bool isHexaLiteral(const char *Start, const LangOptions &Features) {
1229 unsigned Size;
1230 char C1 = Lexer::getCharAndSizeNoWarn(Start, Size, Features);
1231 if (C1 != '0')
1232 return false;
1233 char C2 = Lexer::getCharAndSizeNoWarn(Start + Size, Size, Features);
1234 return (C2 == 'x' || C2 == 'X');
Douglas Gregora75ec432010-08-30 14:50:47 +00001235}
Reid Spencer5f016e22007-07-11 17:01:13 +00001236
Nate Begeman5253c7f2008-04-14 02:26:39 +00001237/// LexNumericConstant - Lex the remainder of a integer or floating point
Reid Spencer5f016e22007-07-11 17:01:13 +00001238/// constant. From[-1] is the first character lexed. Return the end of the
1239/// constant.
Chris Lattnerd2177732007-07-20 16:59:19 +00001240void Lexer::LexNumericConstant(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 unsigned Size;
1242 char C = getCharAndSize(CurPtr, Size);
1243 char PrevCh = 0;
1244 while (isNumberBody(C)) { // FIXME: UCNs?
1245 CurPtr = ConsumeChar(CurPtr, Size, Result);
1246 PrevCh = C;
1247 C = getCharAndSize(CurPtr, Size);
1248 }
Mike Stump1eb44332009-09-09 15:08:12 +00001249
Reid Spencer5f016e22007-07-11 17:01:13 +00001250 // If we fell out, check for a sign, due to 1e+12. If we have one, continue.
Chris Lattnerb2f4a202010-08-30 17:09:08 +00001251 if ((C == '-' || C == '+') && (PrevCh == 'E' || PrevCh == 'e')) {
1252 // If we are in Microsoft mode, don't continue if the constant is hex.
1253 // For example, MSVC will accept the following as 3 tokens: 0x1234567e+1
Chris Lattner6ab55eb2010-08-31 16:42:00 +00001254 if (!Features.Microsoft || !isHexaLiteral(BufferPtr, Features))
Chris Lattnerb2f4a202010-08-30 17:09:08 +00001255 return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result));
1256 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001257
1258 // If we have a hex FP constant, continue.
Sean Hunt8c723402010-01-10 23:37:56 +00001259 if ((C == '-' || C == '+') && (PrevCh == 'P' || PrevCh == 'p') &&
Chris Lattnerb2f4a202010-08-30 17:09:08 +00001260 !Features.CPlusPlus0x)
Reid Spencer5f016e22007-07-11 17:01:13 +00001261 return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result));
Mike Stump1eb44332009-09-09 15:08:12 +00001262
Reid Spencer5f016e22007-07-11 17:01:13 +00001263 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +00001264 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001265 FormTokenWithChars(Result, CurPtr, tok::numeric_constant);
Chris Lattner47246be2009-01-26 19:29:26 +00001266 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001267}
1268
1269/// LexStringLiteral - Lex the remainder of a string literal, after having lexed
1270/// either " or L".
Chris Lattnerd88dc482008-10-12 04:05:48 +00001271void Lexer::LexStringLiteral(Token &Result, const char *CurPtr, bool Wide) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001272 const char *NulCharacter = 0; // Does this string contain the \0 character?
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Reid Spencer5f016e22007-07-11 17:01:13 +00001274 char C = getAndAdvanceChar(CurPtr, Result);
1275 while (C != '"') {
Chris Lattner571339c2010-05-30 23:27:38 +00001276 // Skip escaped characters. Escaped newlines will already be processed by
1277 // getAndAdvanceChar.
1278 if (C == '\\')
Reid Spencer5f016e22007-07-11 17:01:13 +00001279 C = getAndAdvanceChar(CurPtr, Result);
Douglas Gregor33611e02010-05-30 22:59:50 +00001280
Chris Lattner571339c2010-05-30 23:27:38 +00001281 if (C == '\n' || C == '\r' || // Newline.
Douglas Gregor33611e02010-05-30 22:59:50 +00001282 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Douglas Gregor55817af2010-08-25 17:04:25 +00001283 if (C == 0 && PP && PP->isCodeCompletionFile(FileLoc))
1284 PP->CodeCompleteNaturalLanguage();
1285 else if (!isLexingRawMode() && !Features.AsmPreprocessor)
Argyrios Kyrtzidisff1ed982011-02-15 23:45:31 +00001286 Diag(BufferPtr, diag::warn_unterminated_string);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001287 FormTokenWithChars(Result, CurPtr-1, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +00001288 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001289 }
Chris Lattner571339c2010-05-30 23:27:38 +00001290
1291 if (C == 0)
1292 NulCharacter = CurPtr-1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001293 C = getAndAdvanceChar(CurPtr, Result);
1294 }
Mike Stump1eb44332009-09-09 15:08:12 +00001295
Reid Spencer5f016e22007-07-11 17:01:13 +00001296 // If a nul character existed in the string, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001297 if (NulCharacter && !isLexingRawMode())
1298 Diag(NulCharacter, diag::null_in_string);
Reid Spencer5f016e22007-07-11 17:01:13 +00001299
Reid Spencer5f016e22007-07-11 17:01:13 +00001300 // Update the location of the token as well as the BufferPtr instance var.
Chris Lattner47246be2009-01-26 19:29:26 +00001301 const char *TokStart = BufferPtr;
Sean Hunt6cf75022010-08-30 17:47:05 +00001302 FormTokenWithChars(Result, CurPtr,
1303 Wide ? tok::wide_string_literal : tok::string_literal);
Chris Lattner47246be2009-01-26 19:29:26 +00001304 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001305}
1306
1307/// LexAngledStringLiteral - Lex the remainder of an angled string literal,
1308/// after having lexed the '<' character. This is used for #include filenames.
Chris Lattnerd2177732007-07-20 16:59:19 +00001309void Lexer::LexAngledStringLiteral(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001310 const char *NulCharacter = 0; // Does this string contain the \0 character?
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001311 const char *AfterLessPos = CurPtr;
Reid Spencer5f016e22007-07-11 17:01:13 +00001312 char C = getAndAdvanceChar(CurPtr, Result);
1313 while (C != '>') {
1314 // Skip escaped characters.
1315 if (C == '\\') {
1316 // Skip the escaped character.
1317 C = getAndAdvanceChar(CurPtr, Result);
1318 } else if (C == '\n' || C == '\r' || // Newline.
1319 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001320 // If the filename is unterminated, then it must just be a lone <
1321 // character. Return this as such.
1322 FormTokenWithChars(Result, AfterLessPos, tok::less);
Reid Spencer5f016e22007-07-11 17:01:13 +00001323 return;
1324 } else if (C == 0) {
1325 NulCharacter = CurPtr-1;
1326 }
1327 C = getAndAdvanceChar(CurPtr, Result);
1328 }
Mike Stump1eb44332009-09-09 15:08:12 +00001329
Reid Spencer5f016e22007-07-11 17:01:13 +00001330 // If a nul character existed in the string, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001331 if (NulCharacter && !isLexingRawMode())
1332 Diag(NulCharacter, diag::null_in_string);
Mike Stump1eb44332009-09-09 15:08:12 +00001333
Reid Spencer5f016e22007-07-11 17:01:13 +00001334 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +00001335 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001336 FormTokenWithChars(Result, CurPtr, tok::angle_string_literal);
Chris Lattner47246be2009-01-26 19:29:26 +00001337 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001338}
1339
1340
1341/// LexCharConstant - Lex the remainder of a character constant, after having
1342/// lexed either ' or L'.
Chris Lattnerd2177732007-07-20 16:59:19 +00001343void Lexer::LexCharConstant(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001344 const char *NulCharacter = 0; // Does this character contain the \0 character?
1345
Reid Spencer5f016e22007-07-11 17:01:13 +00001346 char C = getAndAdvanceChar(CurPtr, Result);
1347 if (C == '\'') {
Chris Lattner33ab3f62009-03-18 21:10:12 +00001348 if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattner74d15df2008-11-22 02:02:22 +00001349 Diag(BufferPtr, diag::err_empty_character);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001350 FormTokenWithChars(Result, CurPtr, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +00001351 return;
Chris Lattnerd80f7862010-07-07 23:24:27 +00001352 }
1353
1354 while (C != '\'') {
1355 // Skip escaped characters.
1356 if (C == '\\') {
1357 // Skip the escaped character.
1358 // FIXME: UCN's
1359 C = getAndAdvanceChar(CurPtr, Result);
1360 } else if (C == '\n' || C == '\r' || // Newline.
1361 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Douglas Gregor55817af2010-08-25 17:04:25 +00001362 if (C == 0 && PP && PP->isCodeCompletionFile(FileLoc))
1363 PP->CodeCompleteNaturalLanguage();
1364 else if (!isLexingRawMode() && !Features.AsmPreprocessor)
Argyrios Kyrtzidisff1ed982011-02-15 23:45:31 +00001365 Diag(BufferPtr, diag::warn_unterminated_char);
Chris Lattnerd80f7862010-07-07 23:24:27 +00001366 FormTokenWithChars(Result, CurPtr-1, tok::unknown);
1367 return;
1368 } else if (C == 0) {
1369 NulCharacter = CurPtr-1;
1370 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001371 C = getAndAdvanceChar(CurPtr, Result);
1372 }
Mike Stump1eb44332009-09-09 15:08:12 +00001373
Chris Lattnerd80f7862010-07-07 23:24:27 +00001374 // If a nul character existed in the character, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001375 if (NulCharacter && !isLexingRawMode())
1376 Diag(NulCharacter, diag::null_in_char);
Reid Spencer5f016e22007-07-11 17:01:13 +00001377
Reid Spencer5f016e22007-07-11 17:01:13 +00001378 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +00001379 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001380 FormTokenWithChars(Result, CurPtr, tok::char_constant);
Chris Lattner47246be2009-01-26 19:29:26 +00001381 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001382}
1383
1384/// SkipWhitespace - Efficiently skip over a series of whitespace characters.
1385/// Update BufferPtr to point to the next non-whitespace character and return.
Chris Lattnerd88dc482008-10-12 04:05:48 +00001386///
1387/// This method forms a token and returns true if KeepWhitespaceMode is enabled.
1388///
1389bool Lexer::SkipWhitespace(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001390 // Whitespace - Skip it, then return the token after the whitespace.
1391 unsigned char Char = *CurPtr; // Skip consequtive spaces efficiently.
1392 while (1) {
1393 // Skip horizontal whitespace very aggressively.
1394 while (isHorizontalWhitespace(Char))
1395 Char = *++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001396
Daniel Dunbarddd3e8b2008-11-25 00:20:22 +00001397 // Otherwise if we have something other than whitespace, we're done.
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 if (Char != '\n' && Char != '\r')
1399 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001400
Reid Spencer5f016e22007-07-11 17:01:13 +00001401 if (ParsingPreprocessorDirective) {
1402 // End of preprocessor directive line, let LexTokenInternal handle this.
1403 BufferPtr = CurPtr;
Chris Lattnerd88dc482008-10-12 04:05:48 +00001404 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001405 }
Mike Stump1eb44332009-09-09 15:08:12 +00001406
Reid Spencer5f016e22007-07-11 17:01:13 +00001407 // ok, but handle newline.
1408 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001409 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001410 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001411 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001412 Char = *++CurPtr;
1413 }
1414
1415 // If this isn't immediately after a newline, there is leading space.
1416 char PrevChar = CurPtr[-1];
1417 if (PrevChar != '\n' && PrevChar != '\r')
Chris Lattnerd2177732007-07-20 16:59:19 +00001418 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001419
Chris Lattnerd88dc482008-10-12 04:05:48 +00001420 // If the client wants us to return whitespace, return it now.
1421 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001422 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001423 return true;
1424 }
Mike Stump1eb44332009-09-09 15:08:12 +00001425
Reid Spencer5f016e22007-07-11 17:01:13 +00001426 BufferPtr = CurPtr;
Chris Lattnerd88dc482008-10-12 04:05:48 +00001427 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001428}
1429
1430// SkipBCPLComment - We have just read the // characters from input. Skip until
1431// we find the newline character thats terminate the comment. Then update
Chris Lattner046c2272010-01-18 22:35:47 +00001432/// BufferPtr and return.
1433///
1434/// If we're in KeepCommentMode or any CommentHandler has inserted
1435/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +00001436bool Lexer::SkipBCPLComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001437 // If BCPL comments aren't explicitly enabled for this language, emit an
1438 // extension warning.
Chris Lattner74d15df2008-11-22 02:02:22 +00001439 if (!Features.BCPLComment && !isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001440 Diag(BufferPtr, diag::ext_bcpl_comment);
Mike Stump1eb44332009-09-09 15:08:12 +00001441
Reid Spencer5f016e22007-07-11 17:01:13 +00001442 // Mark them enabled so we only emit one warning for this translation
1443 // unit.
1444 Features.BCPLComment = true;
1445 }
Mike Stump1eb44332009-09-09 15:08:12 +00001446
Reid Spencer5f016e22007-07-11 17:01:13 +00001447 // Scan over the body of the comment. The common case, when scanning, is that
1448 // the comment contains normal ascii characters with nothing interesting in
1449 // them. As such, optimize for this case with the inner loop.
1450 char C;
1451 do {
1452 C = *CurPtr;
1453 // FIXME: Speedup BCPL comment lexing. Just scan for a \n or \r character.
1454 // If we find a \n character, scan backwards, checking to see if it's an
1455 // escaped newline, like we do for block comments.
Mike Stump1eb44332009-09-09 15:08:12 +00001456
Reid Spencer5f016e22007-07-11 17:01:13 +00001457 // Skip over characters in the fast loop.
1458 while (C != 0 && // Potentially EOF.
1459 C != '\\' && // Potentially escaped newline.
1460 C != '?' && // Potentially trigraph.
1461 C != '\n' && C != '\r') // Newline or DOS-style newline.
1462 C = *++CurPtr;
1463
1464 // If this is a newline, we're done.
1465 if (C == '\n' || C == '\r')
1466 break; // Found the newline? Break out!
Mike Stump1eb44332009-09-09 15:08:12 +00001467
Reid Spencer5f016e22007-07-11 17:01:13 +00001468 // Otherwise, this is a hard case. Fall back on getAndAdvanceChar to
Chris Lattnerbc3e9842008-12-12 07:34:39 +00001469 // properly decode the character. Read it in raw mode to avoid emitting
1470 // diagnostics about things like trigraphs. If we see an escaped newline,
1471 // we'll handle it below.
Reid Spencer5f016e22007-07-11 17:01:13 +00001472 const char *OldPtr = CurPtr;
Chris Lattnerbc3e9842008-12-12 07:34:39 +00001473 bool OldRawMode = isLexingRawMode();
1474 LexingRawMode = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001475 C = getAndAdvanceChar(CurPtr, Result);
Chris Lattnerbc3e9842008-12-12 07:34:39 +00001476 LexingRawMode = OldRawMode;
Chris Lattneread616c2009-04-05 00:26:41 +00001477
1478 // If the char that we finally got was a \n, then we must have had something
1479 // like \<newline><newline>. We don't want to have consumed the second
1480 // newline, we want CurPtr, to end up pointing to it down below.
1481 if (C == '\n' || C == '\r') {
1482 --CurPtr;
1483 C = 'x'; // doesn't matter what this is.
1484 }
Mike Stump1eb44332009-09-09 15:08:12 +00001485
Reid Spencer5f016e22007-07-11 17:01:13 +00001486 // If we read multiple characters, and one of those characters was a \r or
1487 // \n, then we had an escaped newline within the comment. Emit diagnostic
1488 // unless the next line is also a // comment.
1489 if (CurPtr != OldPtr+1 && C != '/' && CurPtr[0] != '/') {
1490 for (; OldPtr != CurPtr; ++OldPtr)
1491 if (OldPtr[0] == '\n' || OldPtr[0] == '\r') {
1492 // Okay, we found a // comment that ends in a newline, if the next
1493 // line is also a // comment, but has spaces, don't emit a diagnostic.
1494 if (isspace(C)) {
1495 const char *ForwardPtr = CurPtr;
1496 while (isspace(*ForwardPtr)) // Skip whitespace.
1497 ++ForwardPtr;
1498 if (ForwardPtr[0] == '/' && ForwardPtr[1] == '/')
1499 break;
1500 }
Mike Stump1eb44332009-09-09 15:08:12 +00001501
Chris Lattner74d15df2008-11-22 02:02:22 +00001502 if (!isLexingRawMode())
1503 Diag(OldPtr-1, diag::ext_multi_line_bcpl_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001504 break;
1505 }
1506 }
Mike Stump1eb44332009-09-09 15:08:12 +00001507
Douglas Gregor55817af2010-08-25 17:04:25 +00001508 if (CurPtr == BufferEnd+1) {
1509 if (PP && PP->isCodeCompletionFile(FileLoc))
1510 PP->CodeCompleteNaturalLanguage();
1511
1512 --CurPtr;
1513 break;
1514 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001515 } while (C != '\n' && C != '\r');
1516
Chris Lattner3d0ad582010-02-03 21:06:21 +00001517 // Found but did not consume the newline. Notify comment handlers about the
1518 // comment unless we're in a #if 0 block.
1519 if (PP && !isLexingRawMode() &&
1520 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
1521 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +00001522 BufferPtr = CurPtr;
1523 return true; // A token has to be returned.
1524 }
Mike Stump1eb44332009-09-09 15:08:12 +00001525
Reid Spencer5f016e22007-07-11 17:01:13 +00001526 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001527 if (inKeepCommentMode())
Reid Spencer5f016e22007-07-11 17:01:13 +00001528 return SaveBCPLComment(Result, CurPtr);
1529
1530 // If we are inside a preprocessor directive and we see the end of line,
Peter Collingbourne84021552011-02-28 02:37:51 +00001531 // return immediately, so that the lexer can return this as an EOD token.
Reid Spencer5f016e22007-07-11 17:01:13 +00001532 if (ParsingPreprocessorDirective || CurPtr == BufferEnd) {
1533 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001534 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001535 }
Mike Stump1eb44332009-09-09 15:08:12 +00001536
Reid Spencer5f016e22007-07-11 17:01:13 +00001537 // Otherwise, eat the \n character. We don't care if this is a \n\r or
Chris Lattner7a4f0042008-10-12 00:23:07 +00001538 // \r\n sequence. This is an efficiency hack (because we know the \n can't
Chris Lattnerd88dc482008-10-12 04:05:48 +00001539 // contribute to another token), it isn't needed for correctness. Note that
1540 // this is ok even in KeepWhitespaceMode, because we would have returned the
1541 /// comment above in that mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00001542 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Reid Spencer5f016e22007-07-11 17:01:13 +00001544 // The next returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001545 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001546 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001547 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001548 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001549 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001550}
1551
1552/// SaveBCPLComment - If in save-comment mode, package up this BCPL comment in
1553/// an appropriate way and return it.
Chris Lattnerd2177732007-07-20 16:59:19 +00001554bool Lexer::SaveBCPLComment(Token &Result, const char *CurPtr) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001555 // If we're not in a preprocessor directive, just return the // comment
1556 // directly.
1557 FormTokenWithChars(Result, CurPtr, tok::comment);
Mike Stump1eb44332009-09-09 15:08:12 +00001558
Chris Lattner9e6293d2008-10-12 04:51:35 +00001559 if (!ParsingPreprocessorDirective)
1560 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001561
Chris Lattner9e6293d2008-10-12 04:51:35 +00001562 // If this BCPL-style comment is in a macro definition, transmogrify it into
1563 // a C-style block comment.
Douglas Gregor453091c2010-03-16 22:30:13 +00001564 bool Invalid = false;
1565 std::string Spelling = PP->getSpelling(Result, &Invalid);
1566 if (Invalid)
1567 return true;
1568
Chris Lattner9e6293d2008-10-12 04:51:35 +00001569 assert(Spelling[0] == '/' && Spelling[1] == '/' && "Not bcpl comment?");
1570 Spelling[1] = '*'; // Change prefix to "/*".
1571 Spelling += "*/"; // add suffix.
Mike Stump1eb44332009-09-09 15:08:12 +00001572
Chris Lattner9e6293d2008-10-12 04:51:35 +00001573 Result.setKind(tok::comment);
Chris Lattner47246be2009-01-26 19:29:26 +00001574 PP->CreateString(&Spelling[0], Spelling.size(), Result,
1575 Result.getLocation());
Chris Lattner2d381892008-10-12 04:15:42 +00001576 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001577}
1578
1579/// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline
1580/// character (either \n or \r) is part of an escaped newline sequence. Issue a
Chris Lattner47a2b402008-12-12 07:14:34 +00001581/// diagnostic if so. We know that the newline is inside of a block comment.
Mike Stump1eb44332009-09-09 15:08:12 +00001582static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr,
Reid Spencer5f016e22007-07-11 17:01:13 +00001583 Lexer *L) {
1584 assert(CurPtr[0] == '\n' || CurPtr[0] == '\r');
Mike Stump1eb44332009-09-09 15:08:12 +00001585
Reid Spencer5f016e22007-07-11 17:01:13 +00001586 // Back up off the newline.
1587 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001588
Reid Spencer5f016e22007-07-11 17:01:13 +00001589 // If this is a two-character newline sequence, skip the other character.
1590 if (CurPtr[0] == '\n' || CurPtr[0] == '\r') {
1591 // \n\n or \r\r -> not escaped newline.
1592 if (CurPtr[0] == CurPtr[1])
1593 return false;
1594 // \n\r or \r\n -> skip the newline.
1595 --CurPtr;
1596 }
Mike Stump1eb44332009-09-09 15:08:12 +00001597
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 // If we have horizontal whitespace, skip over it. We allow whitespace
1599 // between the slash and newline.
1600 bool HasSpace = false;
1601 while (isHorizontalWhitespace(*CurPtr) || *CurPtr == 0) {
1602 --CurPtr;
1603 HasSpace = true;
1604 }
Mike Stump1eb44332009-09-09 15:08:12 +00001605
Reid Spencer5f016e22007-07-11 17:01:13 +00001606 // If we have a slash, we know this is an escaped newline.
1607 if (*CurPtr == '\\') {
1608 if (CurPtr[-1] != '*') return false;
1609 } else {
1610 // It isn't a slash, is it the ?? / trigraph?
1611 if (CurPtr[0] != '/' || CurPtr[-1] != '?' || CurPtr[-2] != '?' ||
1612 CurPtr[-3] != '*')
1613 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001614
Reid Spencer5f016e22007-07-11 17:01:13 +00001615 // This is the trigraph ending the comment. Emit a stern warning!
1616 CurPtr -= 2;
1617
1618 // If no trigraphs are enabled, warn that we ignored this trigraph and
1619 // ignore this * character.
1620 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001621 if (!L->isLexingRawMode())
1622 L->Diag(CurPtr, diag::trigraph_ignored_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001623 return false;
1624 }
Chris Lattner74d15df2008-11-22 02:02:22 +00001625 if (!L->isLexingRawMode())
1626 L->Diag(CurPtr, diag::trigraph_ends_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001627 }
Mike Stump1eb44332009-09-09 15:08:12 +00001628
Reid Spencer5f016e22007-07-11 17:01:13 +00001629 // Warn about having an escaped newline between the */ characters.
Chris Lattner74d15df2008-11-22 02:02:22 +00001630 if (!L->isLexingRawMode())
1631 L->Diag(CurPtr, diag::escaped_newline_block_comment_end);
Mike Stump1eb44332009-09-09 15:08:12 +00001632
Reid Spencer5f016e22007-07-11 17:01:13 +00001633 // If there was space between the backslash and newline, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001634 if (HasSpace && !L->isLexingRawMode())
1635 L->Diag(CurPtr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +00001636
Reid Spencer5f016e22007-07-11 17:01:13 +00001637 return true;
1638}
1639
1640#ifdef __SSE2__
1641#include <emmintrin.h>
1642#elif __ALTIVEC__
1643#include <altivec.h>
1644#undef bool
1645#endif
1646
1647/// SkipBlockComment - We have just read the /* characters from input. Read
1648/// until we find the */ characters that terminate the comment. Note that we
1649/// don't bother decoding trigraphs or escaped newlines in block comments,
1650/// because they cannot cause the comment to end. The only thing that can
1651/// happen is the comment could end with an escaped newline between the */ end
1652/// of comment.
Chris Lattner2d381892008-10-12 04:15:42 +00001653///
Chris Lattner046c2272010-01-18 22:35:47 +00001654/// If we're in KeepCommentMode or any CommentHandler has inserted
1655/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +00001656bool Lexer::SkipBlockComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001657 // Scan one character past where we should, looking for a '/' character. Once
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001658 // we find it, check to see if it was preceded by a *. This common
Reid Spencer5f016e22007-07-11 17:01:13 +00001659 // optimization helps people who like to put a lot of * characters in their
1660 // comments.
Chris Lattner8146b682007-07-21 23:43:37 +00001661
1662 // The first character we get with newlines and trigraphs skipped to handle
1663 // the degenerate /*/ case below correctly if the * has an escaped newline
1664 // after it.
1665 unsigned CharSize;
1666 unsigned char C = getCharAndSize(CurPtr, CharSize);
1667 CurPtr += CharSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001668 if (C == 0 && CurPtr == BufferEnd+1) {
Chris Lattner150fcd52010-05-16 19:54:05 +00001669 if (!isLexingRawMode() &&
1670 !PP->isCodeCompletionFile(FileLoc))
Chris Lattner0af57422008-10-12 01:31:51 +00001671 Diag(BufferPtr, diag::err_unterminated_block_comment);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001672 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001673
Chris Lattner31f0eca2008-10-12 04:19:49 +00001674 // KeepWhitespaceMode should return this broken comment as a token. Since
1675 // it isn't a well formed comment, just return it as an 'unknown' token.
1676 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001677 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001678 return true;
1679 }
Mike Stump1eb44332009-09-09 15:08:12 +00001680
Chris Lattner31f0eca2008-10-12 04:19:49 +00001681 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001682 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001683 }
Mike Stump1eb44332009-09-09 15:08:12 +00001684
Chris Lattner8146b682007-07-21 23:43:37 +00001685 // Check to see if the first character after the '/*' is another /. If so,
1686 // then this slash does not end the block comment, it is part of it.
1687 if (C == '/')
1688 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001689
Reid Spencer5f016e22007-07-11 17:01:13 +00001690 while (1) {
1691 // Skip over all non-interesting characters until we find end of buffer or a
1692 // (probably ending) '/' character.
1693 if (CurPtr + 24 < BufferEnd) {
1694 // While not aligned to a 16-byte boundary.
1695 while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0)
1696 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001697
Reid Spencer5f016e22007-07-11 17:01:13 +00001698 if (C == '/') goto FoundSlash;
1699
1700#ifdef __SSE2__
1701 __m128i Slashes = _mm_set_epi8('/', '/', '/', '/', '/', '/', '/', '/',
1702 '/', '/', '/', '/', '/', '/', '/', '/');
1703 while (CurPtr+16 <= BufferEnd &&
1704 _mm_movemask_epi8(_mm_cmpeq_epi8(*(__m128i*)CurPtr, Slashes)) == 0)
1705 CurPtr += 16;
1706#elif __ALTIVEC__
1707 __vector unsigned char Slashes = {
Mike Stump1eb44332009-09-09 15:08:12 +00001708 '/', '/', '/', '/', '/', '/', '/', '/',
Reid Spencer5f016e22007-07-11 17:01:13 +00001709 '/', '/', '/', '/', '/', '/', '/', '/'
1710 };
1711 while (CurPtr+16 <= BufferEnd &&
1712 !vec_any_eq(*(vector unsigned char*)CurPtr, Slashes))
1713 CurPtr += 16;
Mike Stump1eb44332009-09-09 15:08:12 +00001714#else
Reid Spencer5f016e22007-07-11 17:01:13 +00001715 // Scan for '/' quickly. Many block comments are very large.
1716 while (CurPtr[0] != '/' &&
1717 CurPtr[1] != '/' &&
1718 CurPtr[2] != '/' &&
1719 CurPtr[3] != '/' &&
1720 CurPtr+4 < BufferEnd) {
1721 CurPtr += 4;
1722 }
1723#endif
Mike Stump1eb44332009-09-09 15:08:12 +00001724
Reid Spencer5f016e22007-07-11 17:01:13 +00001725 // It has to be one of the bytes scanned, increment to it and read one.
1726 C = *CurPtr++;
1727 }
Mike Stump1eb44332009-09-09 15:08:12 +00001728
Reid Spencer5f016e22007-07-11 17:01:13 +00001729 // Loop to scan the remainder.
1730 while (C != '/' && C != '\0')
1731 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001732
Reid Spencer5f016e22007-07-11 17:01:13 +00001733 FoundSlash:
1734 if (C == '/') {
1735 if (CurPtr[-2] == '*') // We found the final */. We're done!
1736 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001737
Reid Spencer5f016e22007-07-11 17:01:13 +00001738 if ((CurPtr[-2] == '\n' || CurPtr[-2] == '\r')) {
1739 if (isEndOfBlockCommentWithEscapedNewLine(CurPtr-2, this)) {
1740 // We found the final */, though it had an escaped newline between the
1741 // * and /. We're done!
1742 break;
1743 }
1744 }
1745 if (CurPtr[0] == '*' && CurPtr[1] != '/') {
1746 // If this is a /* inside of the comment, emit a warning. Don't do this
1747 // if this is a /*/, which will end the comment. This misses cases with
1748 // embedded escaped newlines, but oh well.
Chris Lattner74d15df2008-11-22 02:02:22 +00001749 if (!isLexingRawMode())
1750 Diag(CurPtr-1, diag::warn_nested_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001751 }
1752 } else if (C == 0 && CurPtr == BufferEnd+1) {
Douglas Gregor55817af2010-08-25 17:04:25 +00001753 if (PP && PP->isCodeCompletionFile(FileLoc))
1754 PP->CodeCompleteNaturalLanguage();
1755 else if (!isLexingRawMode())
Chris Lattner74d15df2008-11-22 02:02:22 +00001756 Diag(BufferPtr, diag::err_unterminated_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001757 // Note: the user probably forgot a */. We could continue immediately
1758 // after the /*, but this would involve lexing a lot of what really is the
1759 // comment, which surely would confuse the parser.
Chris Lattner31f0eca2008-10-12 04:19:49 +00001760 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001761
Chris Lattner31f0eca2008-10-12 04:19:49 +00001762 // KeepWhitespaceMode should return this broken comment as a token. Since
1763 // it isn't a well formed comment, just return it as an 'unknown' token.
1764 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001765 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001766 return true;
1767 }
Mike Stump1eb44332009-09-09 15:08:12 +00001768
Chris Lattner31f0eca2008-10-12 04:19:49 +00001769 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001770 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001771 }
1772 C = *CurPtr++;
1773 }
Mike Stump1eb44332009-09-09 15:08:12 +00001774
Chris Lattner3d0ad582010-02-03 21:06:21 +00001775 // Notify comment handlers about the comment unless we're in a #if 0 block.
1776 if (PP && !isLexingRawMode() &&
1777 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
1778 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +00001779 BufferPtr = CurPtr;
1780 return true; // A token has to be returned.
1781 }
Douglas Gregor2e222532009-07-02 17:08:52 +00001782
Reid Spencer5f016e22007-07-11 17:01:13 +00001783 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001784 if (inKeepCommentMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001785 FormTokenWithChars(Result, CurPtr, tok::comment);
Chris Lattner2d381892008-10-12 04:15:42 +00001786 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001787 }
1788
1789 // It is common for the tokens immediately after a /**/ comment to be
1790 // whitespace. Instead of going through the big switch, handle it
Chris Lattnerd88dc482008-10-12 04:05:48 +00001791 // efficiently now. This is safe even in KeepWhitespaceMode because we would
1792 // have already returned above with the comment as a token.
Reid Spencer5f016e22007-07-11 17:01:13 +00001793 if (isHorizontalWhitespace(*CurPtr)) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001794 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001795 SkipWhitespace(Result, CurPtr+1);
Chris Lattner2d381892008-10-12 04:15:42 +00001796 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001797 }
1798
1799 // Otherwise, just return so that the next character will be lexed as a token.
1800 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001801 Result.setFlag(Token::LeadingSpace);
Chris Lattner2d381892008-10-12 04:15:42 +00001802 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001803}
1804
1805//===----------------------------------------------------------------------===//
1806// Primary Lexing Entry Points
1807//===----------------------------------------------------------------------===//
1808
Reid Spencer5f016e22007-07-11 17:01:13 +00001809/// ReadToEndOfLine - Read the rest of the current preprocessor line as an
1810/// uninterpreted string. This switches the lexer out of directive mode.
1811std::string Lexer::ReadToEndOfLine() {
1812 assert(ParsingPreprocessorDirective && ParsingFilename == false &&
1813 "Must be in a preprocessing directive!");
1814 std::string Result;
Chris Lattnerd2177732007-07-20 16:59:19 +00001815 Token Tmp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001816
1817 // CurPtr - Cache BufferPtr in an automatic variable.
1818 const char *CurPtr = BufferPtr;
1819 while (1) {
1820 char Char = getAndAdvanceChar(CurPtr, Tmp);
1821 switch (Char) {
1822 default:
1823 Result += Char;
1824 break;
1825 case 0: // Null.
1826 // Found end of file?
1827 if (CurPtr-1 != BufferEnd) {
1828 // Nope, normal character, continue.
1829 Result += Char;
1830 break;
1831 }
1832 // FALL THROUGH.
1833 case '\r':
1834 case '\n':
1835 // Okay, we found the end of the line. First, back up past the \0, \r, \n.
1836 assert(CurPtr[-1] == Char && "Trigraphs for newline?");
1837 BufferPtr = CurPtr-1;
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Peter Collingbourne84021552011-02-28 02:37:51 +00001839 // Next, lex the character, which should handle the EOD transition.
Reid Spencer5f016e22007-07-11 17:01:13 +00001840 Lex(Tmp);
Douglas Gregor55817af2010-08-25 17:04:25 +00001841 if (Tmp.is(tok::code_completion)) {
1842 if (PP && PP->getCodeCompletionHandler())
1843 PP->getCodeCompletionHandler()->CodeCompleteNaturalLanguage();
1844 Lex(Tmp);
1845 }
Peter Collingbourne84021552011-02-28 02:37:51 +00001846 assert(Tmp.is(tok::eod) && "Unexpected token!");
Mike Stump1eb44332009-09-09 15:08:12 +00001847
Reid Spencer5f016e22007-07-11 17:01:13 +00001848 // Finally, we're done, return the string we found.
1849 return Result;
1850 }
1851 }
1852}
1853
1854/// LexEndOfFile - CurPtr points to the end of this file. Handle this
1855/// condition, reporting diagnostics and handling other edge cases as required.
1856/// This returns true if Result contains a token, false if PP.Lex should be
1857/// called again.
Chris Lattnerd2177732007-07-20 16:59:19 +00001858bool Lexer::LexEndOfFile(Token &Result, const char *CurPtr) {
Douglas Gregorf44e8542010-08-24 19:08:16 +00001859 // Check if we are performing code completion.
1860 if (PP && PP->isCodeCompletionFile(FileLoc)) {
1861 // We're at the end of the file, but we've been asked to consider the
1862 // end of the file to be a code-completion token. Return the
1863 // code-completion token.
1864 Result.startToken();
1865 FormTokenWithChars(Result, CurPtr, tok::code_completion);
1866
1867 // Only do the eof -> code_completion translation once.
1868 PP->SetCodeCompletionPoint(0, 0, 0);
1869
1870 // Silence any diagnostics that occur once we hit the code-completion point.
1871 PP->getDiagnostics().setSuppressAllDiagnostics(true);
1872 return true;
1873 }
1874
Reid Spencer5f016e22007-07-11 17:01:13 +00001875 // If we hit the end of the file while parsing a preprocessor directive,
1876 // end the preprocessor directive first. The next token returned will
1877 // then be the end of file.
1878 if (ParsingPreprocessorDirective) {
1879 // Done parsing the "line".
1880 ParsingPreprocessorDirective = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001881 // Update the location of token as well as BufferPtr.
Peter Collingbourne84021552011-02-28 02:37:51 +00001882 FormTokenWithChars(Result, CurPtr, tok::eod);
Mike Stump1eb44332009-09-09 15:08:12 +00001883
Reid Spencer5f016e22007-07-11 17:01:13 +00001884 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00001885 SetCommentRetentionState(PP->getCommentRetentionState());
Reid Spencer5f016e22007-07-11 17:01:13 +00001886 return true; // Have a token.
Mike Stump1eb44332009-09-09 15:08:12 +00001887 }
Douglas Gregor86d9a522009-09-21 16:56:56 +00001888
Reid Spencer5f016e22007-07-11 17:01:13 +00001889 // If we are in raw mode, return this event as an EOF token. Let the caller
1890 // that put us in raw mode handle the event.
Chris Lattner74d15df2008-11-22 02:02:22 +00001891 if (isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001892 Result.startToken();
1893 BufferPtr = BufferEnd;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001894 FormTokenWithChars(Result, BufferEnd, tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +00001895 return true;
1896 }
Douglas Gregor86d9a522009-09-21 16:56:56 +00001897
Douglas Gregorf44e8542010-08-24 19:08:16 +00001898 // Issue diagnostics for unterminated #if and missing newline.
1899
Reid Spencer5f016e22007-07-11 17:01:13 +00001900 // If we are in a #if directive, emit an error.
1901 while (!ConditionalStack.empty()) {
Douglas Gregor2d474ba2010-08-12 17:04:55 +00001902 if (!PP->isCodeCompletionFile(FileLoc))
1903 PP->Diag(ConditionalStack.back().IfLoc,
1904 diag::err_pp_unterminated_conditional);
Reid Spencer5f016e22007-07-11 17:01:13 +00001905 ConditionalStack.pop_back();
1906 }
Mike Stump1eb44332009-09-09 15:08:12 +00001907
Chris Lattnerb25e5d72008-04-12 05:54:25 +00001908 // C99 5.1.1.2p2: If the file is non-empty and didn't end in a newline, issue
1909 // a pedwarn.
1910 if (CurPtr != BufferStart && (CurPtr[-1] != '\n' && CurPtr[-1] != '\r'))
Mike Stump20d0ee52009-04-02 02:29:42 +00001911 Diag(BufferEnd, diag::ext_no_newline_eof)
Douglas Gregor849b2432010-03-31 17:46:05 +00001912 << FixItHint::CreateInsertion(getSourceLocation(BufferEnd), "\n");
Mike Stump1eb44332009-09-09 15:08:12 +00001913
Reid Spencer5f016e22007-07-11 17:01:13 +00001914 BufferPtr = CurPtr;
1915
1916 // Finally, let the preprocessor handle this.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001917 return PP->HandleEndOfFile(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001918}
1919
1920/// isNextPPTokenLParen - Return 1 if the next unexpanded token lexed from
1921/// the specified lexer will return a tok::l_paren token, 0 if it is something
1922/// else and 2 if there are no more tokens in the buffer controlled by the
1923/// lexer.
1924unsigned Lexer::isNextPPTokenLParen() {
1925 assert(!LexingRawMode && "How can we expand a macro from a skipping buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +00001926
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 // Switch to 'skipping' mode. This will ensure that we can lex a token
1928 // without emitting diagnostics, disables macro expansion, and will cause EOF
1929 // to return an EOF token instead of popping the include stack.
1930 LexingRawMode = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001931
Reid Spencer5f016e22007-07-11 17:01:13 +00001932 // Save state that can be changed while lexing so that we can restore it.
1933 const char *TmpBufferPtr = BufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001934 bool inPPDirectiveMode = ParsingPreprocessorDirective;
Mike Stump1eb44332009-09-09 15:08:12 +00001935
Chris Lattnerd2177732007-07-20 16:59:19 +00001936 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001937 Tok.startToken();
1938 LexTokenInternal(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001939
Reid Spencer5f016e22007-07-11 17:01:13 +00001940 // Restore state that may have changed.
1941 BufferPtr = TmpBufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001942 ParsingPreprocessorDirective = inPPDirectiveMode;
Mike Stump1eb44332009-09-09 15:08:12 +00001943
Reid Spencer5f016e22007-07-11 17:01:13 +00001944 // Restore the lexer back to non-skipping mode.
1945 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001946
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001947 if (Tok.is(tok::eof))
Reid Spencer5f016e22007-07-11 17:01:13 +00001948 return 2;
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001949 return Tok.is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +00001950}
1951
Chris Lattner34f349d2009-12-14 06:16:57 +00001952/// FindConflictEnd - Find the end of a version control conflict marker.
1953static const char *FindConflictEnd(const char *CurPtr, const char *BufferEnd) {
1954 llvm::StringRef RestOfBuffer(CurPtr+7, BufferEnd-CurPtr-7);
1955 size_t Pos = RestOfBuffer.find(">>>>>>>");
1956 while (Pos != llvm::StringRef::npos) {
1957 // Must occur at start of line.
1958 if (RestOfBuffer[Pos-1] != '\r' &&
1959 RestOfBuffer[Pos-1] != '\n') {
1960 RestOfBuffer = RestOfBuffer.substr(Pos+7);
Chris Lattner3d488992010-05-17 20:27:25 +00001961 Pos = RestOfBuffer.find(">>>>>>>");
Chris Lattner34f349d2009-12-14 06:16:57 +00001962 continue;
1963 }
1964 return RestOfBuffer.data()+Pos;
1965 }
1966 return 0;
1967}
1968
1969/// IsStartOfConflictMarker - If the specified pointer is the start of a version
1970/// control conflict marker like '<<<<<<<', recognize it as such, emit an error
1971/// and recover nicely. This returns true if it is a conflict marker and false
1972/// if not.
1973bool Lexer::IsStartOfConflictMarker(const char *CurPtr) {
1974 // Only a conflict marker if it starts at the beginning of a line.
1975 if (CurPtr != BufferStart &&
1976 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1977 return false;
1978
1979 // Check to see if we have <<<<<<<.
1980 if (BufferEnd-CurPtr < 8 ||
1981 llvm::StringRef(CurPtr, 7) != "<<<<<<<")
1982 return false;
1983
1984 // If we have a situation where we don't care about conflict markers, ignore
1985 // it.
1986 if (IsInConflictMarker || isLexingRawMode())
1987 return false;
1988
1989 // Check to see if there is a >>>>>>> somewhere in the buffer at the start of
1990 // a line to terminate this conflict marker.
Chris Lattner3d488992010-05-17 20:27:25 +00001991 if (FindConflictEnd(CurPtr, BufferEnd)) {
Chris Lattner34f349d2009-12-14 06:16:57 +00001992 // We found a match. We are really in a conflict marker.
1993 // Diagnose this, and ignore to the end of line.
1994 Diag(CurPtr, diag::err_conflict_marker);
1995 IsInConflictMarker = true;
1996
1997 // Skip ahead to the end of line. We know this exists because the
1998 // end-of-conflict marker starts with \r or \n.
1999 while (*CurPtr != '\r' && *CurPtr != '\n') {
2000 assert(CurPtr != BufferEnd && "Didn't find end of line");
2001 ++CurPtr;
2002 }
2003 BufferPtr = CurPtr;
2004 return true;
2005 }
2006
2007 // No end of conflict marker found.
2008 return false;
2009}
2010
2011
2012/// HandleEndOfConflictMarker - If this is a '=======' or '|||||||' or '>>>>>>>'
2013/// marker, then it is the end of a conflict marker. Handle it by ignoring up
2014/// until the end of the line. This returns true if it is a conflict marker and
2015/// false if not.
2016bool Lexer::HandleEndOfConflictMarker(const char *CurPtr) {
2017 // Only a conflict marker if it starts at the beginning of a line.
2018 if (CurPtr != BufferStart &&
2019 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
2020 return false;
2021
2022 // If we have a situation where we don't care about conflict markers, ignore
2023 // it.
2024 if (!IsInConflictMarker || isLexingRawMode())
2025 return false;
2026
2027 // Check to see if we have the marker (7 characters in a row).
2028 for (unsigned i = 1; i != 7; ++i)
2029 if (CurPtr[i] != CurPtr[0])
2030 return false;
2031
2032 // If we do have it, search for the end of the conflict marker. This could
2033 // fail if it got skipped with a '#if 0' or something. Note that CurPtr might
2034 // be the end of conflict marker.
2035 if (const char *End = FindConflictEnd(CurPtr, BufferEnd)) {
2036 CurPtr = End;
2037
2038 // Skip ahead to the end of line.
2039 while (CurPtr != BufferEnd && *CurPtr != '\r' && *CurPtr != '\n')
2040 ++CurPtr;
2041
2042 BufferPtr = CurPtr;
2043
2044 // No longer in the conflict marker.
2045 IsInConflictMarker = false;
2046 return true;
2047 }
2048
2049 return false;
2050}
2051
Reid Spencer5f016e22007-07-11 17:01:13 +00002052
2053/// LexTokenInternal - This implements a simple C family lexer. It is an
2054/// extremely performance critical piece of code. This assumes that the buffer
Chris Lattnerefb173d2009-07-07 05:05:42 +00002055/// has a null character at the end of the file. This returns a preprocessing
2056/// token, not a normal token, as such, it is an internal interface. It assumes
2057/// that the Flags of result have been cleared before calling this.
Chris Lattnerd2177732007-07-20 16:59:19 +00002058void Lexer::LexTokenInternal(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002059LexNextToken:
2060 // New token, can't need cleaning yet.
Chris Lattnerd2177732007-07-20 16:59:19 +00002061 Result.clearFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00002062 Result.setIdentifierInfo(0);
Mike Stump1eb44332009-09-09 15:08:12 +00002063
Reid Spencer5f016e22007-07-11 17:01:13 +00002064 // CurPtr - Cache BufferPtr in an automatic variable.
2065 const char *CurPtr = BufferPtr;
2066
2067 // Small amounts of horizontal whitespace is very common between tokens.
2068 if ((*CurPtr == ' ') || (*CurPtr == '\t')) {
2069 ++CurPtr;
2070 while ((*CurPtr == ' ') || (*CurPtr == '\t'))
2071 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00002072
Chris Lattnerd88dc482008-10-12 04:05:48 +00002073 // If we are keeping whitespace and other tokens, just return what we just
2074 // skipped. The next lexer invocation will return the token after the
2075 // whitespace.
2076 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002077 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +00002078 return;
2079 }
Mike Stump1eb44332009-09-09 15:08:12 +00002080
Reid Spencer5f016e22007-07-11 17:01:13 +00002081 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00002082 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00002083 }
Mike Stump1eb44332009-09-09 15:08:12 +00002084
Reid Spencer5f016e22007-07-11 17:01:13 +00002085 unsigned SizeTmp, SizeTmp2; // Temporaries for use in cases below.
Mike Stump1eb44332009-09-09 15:08:12 +00002086
Reid Spencer5f016e22007-07-11 17:01:13 +00002087 // Read a character, advancing over it.
2088 char Char = getAndAdvanceChar(CurPtr, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002089 tok::TokenKind Kind;
Mike Stump1eb44332009-09-09 15:08:12 +00002090
Reid Spencer5f016e22007-07-11 17:01:13 +00002091 switch (Char) {
2092 case 0: // Null.
2093 // Found end of file?
2094 if (CurPtr-1 == BufferEnd) {
2095 // Read the PP instance variable into an automatic variable, because
2096 // LexEndOfFile will often delete 'this'.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002097 Preprocessor *PPCache = PP;
Reid Spencer5f016e22007-07-11 17:01:13 +00002098 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
2099 return; // Got a token to return.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002100 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
2101 return PPCache->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002102 }
Mike Stump1eb44332009-09-09 15:08:12 +00002103
Chris Lattner74d15df2008-11-22 02:02:22 +00002104 if (!isLexingRawMode())
2105 Diag(CurPtr-1, diag::null_in_file);
Chris Lattnerd2177732007-07-20 16:59:19 +00002106 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00002107 if (SkipWhitespace(Result, CurPtr))
2108 return; // KeepWhitespaceMode
Mike Stump1eb44332009-09-09 15:08:12 +00002109
Reid Spencer5f016e22007-07-11 17:01:13 +00002110 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00002111
2112 case 26: // DOS & CP/M EOF: "^Z".
2113 // If we're in Microsoft extensions mode, treat this as end of file.
2114 if (Features.Microsoft) {
2115 // Read the PP instance variable into an automatic variable, because
2116 // LexEndOfFile will often delete 'this'.
2117 Preprocessor *PPCache = PP;
2118 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
2119 return; // Got a token to return.
2120 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
2121 return PPCache->Lex(Result);
2122 }
2123 // If Microsoft extensions are disabled, this is just random garbage.
2124 Kind = tok::unknown;
2125 break;
2126
Reid Spencer5f016e22007-07-11 17:01:13 +00002127 case '\n':
2128 case '\r':
2129 // If we are inside a preprocessor directive and we see the end of line,
Peter Collingbourne84021552011-02-28 02:37:51 +00002130 // we know we are done with the directive, so return an EOD token.
Reid Spencer5f016e22007-07-11 17:01:13 +00002131 if (ParsingPreprocessorDirective) {
2132 // Done parsing the "line".
2133 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002134
Reid Spencer5f016e22007-07-11 17:01:13 +00002135 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00002136 SetCommentRetentionState(PP->getCommentRetentionState());
Mike Stump1eb44332009-09-09 15:08:12 +00002137
Reid Spencer5f016e22007-07-11 17:01:13 +00002138 // Since we consumed a newline, we are back at the start of a line.
2139 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002140
Peter Collingbourne84021552011-02-28 02:37:51 +00002141 Kind = tok::eod;
Reid Spencer5f016e22007-07-11 17:01:13 +00002142 break;
2143 }
2144 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00002145 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00002146 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00002147 Result.clearFlag(Token::LeadingSpace);
Mike Stump1eb44332009-09-09 15:08:12 +00002148
Chris Lattnerd88dc482008-10-12 04:05:48 +00002149 if (SkipWhitespace(Result, CurPtr))
2150 return; // KeepWhitespaceMode
Reid Spencer5f016e22007-07-11 17:01:13 +00002151 goto LexNextToken; // GCC isn't tail call eliminating.
2152 case ' ':
2153 case '\t':
2154 case '\f':
2155 case '\v':
Chris Lattner8133cfc2007-07-22 06:29:05 +00002156 SkipHorizontalWhitespace:
Chris Lattnerd2177732007-07-20 16:59:19 +00002157 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00002158 if (SkipWhitespace(Result, CurPtr))
2159 return; // KeepWhitespaceMode
Chris Lattner8133cfc2007-07-22 06:29:05 +00002160
2161 SkipIgnoredUnits:
2162 CurPtr = BufferPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00002163
Chris Lattner8133cfc2007-07-22 06:29:05 +00002164 // If the next token is obviously a // or /* */ comment, skip it efficiently
2165 // too (without going through the big switch stmt).
Chris Lattner8402c732009-01-16 22:39:25 +00002166 if (CurPtr[0] == '/' && CurPtr[1] == '/' && !inKeepCommentMode() &&
Daniel Dunbar2ed42282011-03-18 21:23:38 +00002167 Features.BCPLComment && !Features.TraditionalCPP) {
Chris Lattner046c2272010-01-18 22:35:47 +00002168 if (SkipBCPLComment(Result, CurPtr+2))
2169 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00002170 goto SkipIgnoredUnits;
Chris Lattnerfa95a012008-10-12 03:22:02 +00002171 } else if (CurPtr[0] == '/' && CurPtr[1] == '*' && !inKeepCommentMode()) {
Chris Lattner046c2272010-01-18 22:35:47 +00002172 if (SkipBlockComment(Result, CurPtr+2))
2173 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00002174 goto SkipIgnoredUnits;
2175 } else if (isHorizontalWhitespace(*CurPtr)) {
2176 goto SkipHorizontalWhitespace;
2177 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002178 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00002179
Chris Lattner3a570772008-01-03 17:58:54 +00002180 // C99 6.4.4.1: Integer Constants.
2181 // C99 6.4.4.2: Floating Constants.
2182 case '0': case '1': case '2': case '3': case '4':
2183 case '5': case '6': case '7': case '8': case '9':
2184 // Notify MIOpt that we read a non-whitespace/non-comment token.
2185 MIOpt.ReadToken();
2186 return LexNumericConstant(Result, CurPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00002187
Chris Lattner3a570772008-01-03 17:58:54 +00002188 case 'L': // Identifier (Loony) or wide literal (L'x' or L"xyz").
Reid Spencer5f016e22007-07-11 17:01:13 +00002189 // Notify MIOpt that we read a non-whitespace/non-comment token.
2190 MIOpt.ReadToken();
2191 Char = getCharAndSize(CurPtr, SizeTmp);
2192
2193 // Wide string literal.
2194 if (Char == '"')
2195 return LexStringLiteral(Result, ConsumeChar(CurPtr, SizeTmp, Result),
2196 true);
2197
2198 // Wide character constant.
2199 if (Char == '\'')
2200 return LexCharConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
2201 // FALL THROUGH, treating L like the start of an identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00002202
Reid Spencer5f016e22007-07-11 17:01:13 +00002203 // C99 6.4.2: Identifiers.
2204 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
2205 case 'H': case 'I': case 'J': case 'K': /*'L'*/case 'M': case 'N':
2206 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
2207 case 'V': case 'W': case 'X': case 'Y': case 'Z':
2208 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
2209 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
2210 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
2211 case 'v': case 'w': case 'x': case 'y': case 'z':
2212 case '_':
2213 // Notify MIOpt that we read a non-whitespace/non-comment token.
2214 MIOpt.ReadToken();
2215 return LexIdentifier(Result, CurPtr);
Chris Lattner3a570772008-01-03 17:58:54 +00002216
2217 case '$': // $ in identifiers.
2218 if (Features.DollarIdents) {
Chris Lattner74d15df2008-11-22 02:02:22 +00002219 if (!isLexingRawMode())
2220 Diag(CurPtr-1, diag::ext_dollar_in_identifier);
Chris Lattner3a570772008-01-03 17:58:54 +00002221 // Notify MIOpt that we read a non-whitespace/non-comment token.
2222 MIOpt.ReadToken();
2223 return LexIdentifier(Result, CurPtr);
2224 }
Mike Stump1eb44332009-09-09 15:08:12 +00002225
Chris Lattner9e6293d2008-10-12 04:51:35 +00002226 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00002227 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002228
Reid Spencer5f016e22007-07-11 17:01:13 +00002229 // C99 6.4.4: Character Constants.
2230 case '\'':
2231 // Notify MIOpt that we read a non-whitespace/non-comment token.
2232 MIOpt.ReadToken();
2233 return LexCharConstant(Result, CurPtr);
2234
2235 // C99 6.4.5: String Literals.
2236 case '"':
2237 // Notify MIOpt that we read a non-whitespace/non-comment token.
2238 MIOpt.ReadToken();
2239 return LexStringLiteral(Result, CurPtr, false);
2240
2241 // C99 6.4.6: Punctuators.
2242 case '?':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002243 Kind = tok::question;
Reid Spencer5f016e22007-07-11 17:01:13 +00002244 break;
2245 case '[':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002246 Kind = tok::l_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00002247 break;
2248 case ']':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002249 Kind = tok::r_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00002250 break;
2251 case '(':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002252 Kind = tok::l_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00002253 break;
2254 case ')':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002255 Kind = tok::r_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00002256 break;
2257 case '{':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002258 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00002259 break;
2260 case '}':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002261 Kind = tok::r_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00002262 break;
2263 case '.':
2264 Char = getCharAndSize(CurPtr, SizeTmp);
2265 if (Char >= '0' && Char <= '9') {
2266 // Notify MIOpt that we read a non-whitespace/non-comment token.
2267 MIOpt.ReadToken();
2268
2269 return LexNumericConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
2270 } else if (Features.CPlusPlus && Char == '*') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002271 Kind = tok::periodstar;
Reid Spencer5f016e22007-07-11 17:01:13 +00002272 CurPtr += SizeTmp;
2273 } else if (Char == '.' &&
2274 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '.') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002275 Kind = tok::ellipsis;
Reid Spencer5f016e22007-07-11 17:01:13 +00002276 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2277 SizeTmp2, Result);
2278 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002279 Kind = tok::period;
Reid Spencer5f016e22007-07-11 17:01:13 +00002280 }
2281 break;
2282 case '&':
2283 Char = getCharAndSize(CurPtr, SizeTmp);
2284 if (Char == '&') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002285 Kind = tok::ampamp;
Reid Spencer5f016e22007-07-11 17:01:13 +00002286 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2287 } else if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002288 Kind = tok::ampequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002289 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2290 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002291 Kind = tok::amp;
Reid Spencer5f016e22007-07-11 17:01:13 +00002292 }
2293 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002294 case '*':
Reid Spencer5f016e22007-07-11 17:01:13 +00002295 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002296 Kind = tok::starequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002297 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2298 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002299 Kind = tok::star;
Reid Spencer5f016e22007-07-11 17:01:13 +00002300 }
2301 break;
2302 case '+':
2303 Char = getCharAndSize(CurPtr, SizeTmp);
2304 if (Char == '+') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002305 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002306 Kind = tok::plusplus;
Reid Spencer5f016e22007-07-11 17:01:13 +00002307 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002308 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002309 Kind = tok::plusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002310 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002311 Kind = tok::plus;
Reid Spencer5f016e22007-07-11 17:01:13 +00002312 }
2313 break;
2314 case '-':
2315 Char = getCharAndSize(CurPtr, SizeTmp);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002316 if (Char == '-') { // --
Reid Spencer5f016e22007-07-11 17:01:13 +00002317 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002318 Kind = tok::minusminus;
Mike Stump1eb44332009-09-09 15:08:12 +00002319 } else if (Char == '>' && Features.CPlusPlus &&
Chris Lattner9e6293d2008-10-12 04:51:35 +00002320 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '*') { // C++ ->*
Reid Spencer5f016e22007-07-11 17:01:13 +00002321 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2322 SizeTmp2, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002323 Kind = tok::arrowstar;
2324 } else if (Char == '>') { // ->
Reid Spencer5f016e22007-07-11 17:01:13 +00002325 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002326 Kind = tok::arrow;
2327 } else if (Char == '=') { // -=
Reid Spencer5f016e22007-07-11 17:01:13 +00002328 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002329 Kind = tok::minusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002330 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002331 Kind = tok::minus;
Reid Spencer5f016e22007-07-11 17:01:13 +00002332 }
2333 break;
2334 case '~':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002335 Kind = tok::tilde;
Reid Spencer5f016e22007-07-11 17:01:13 +00002336 break;
2337 case '!':
2338 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002339 Kind = tok::exclaimequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002340 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2341 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002342 Kind = tok::exclaim;
Reid Spencer5f016e22007-07-11 17:01:13 +00002343 }
2344 break;
2345 case '/':
2346 // 6.4.9: Comments
2347 Char = getCharAndSize(CurPtr, SizeTmp);
2348 if (Char == '/') { // BCPL comment.
Chris Lattner8402c732009-01-16 22:39:25 +00002349 // Even if BCPL comments are disabled (e.g. in C89 mode), we generally
2350 // want to lex this as a comment. There is one problem with this though,
2351 // that in one particular corner case, this can change the behavior of the
2352 // resultant program. For example, In "foo //**/ bar", C89 would lex
2353 // this as "foo / bar" and langauges with BCPL comments would lex it as
2354 // "foo". Check to see if the character after the second slash is a '*'.
2355 // If so, we will lex that as a "/" instead of the start of a comment.
Daniel Dunbar2ed42282011-03-18 21:23:38 +00002356 // However, we never do this in -traditional-cpp mode.
2357 if ((Features.BCPLComment ||
2358 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) != '*') &&
2359 !Features.TraditionalCPP) {
Chris Lattner8402c732009-01-16 22:39:25 +00002360 if (SkipBCPLComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00002361 return; // There is a token to return.
Mike Stump1eb44332009-09-09 15:08:12 +00002362
Chris Lattner8402c732009-01-16 22:39:25 +00002363 // It is common for the tokens immediately after a // comment to be
2364 // whitespace (indentation for the next line). Instead of going through
2365 // the big switch, handle it efficiently now.
2366 goto SkipIgnoredUnits;
2367 }
2368 }
Mike Stump1eb44332009-09-09 15:08:12 +00002369
Chris Lattner8402c732009-01-16 22:39:25 +00002370 if (Char == '*') { // /**/ comment.
Reid Spencer5f016e22007-07-11 17:01:13 +00002371 if (SkipBlockComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00002372 return; // There is a token to return.
Chris Lattner2d381892008-10-12 04:15:42 +00002373 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattner8402c732009-01-16 22:39:25 +00002374 }
Mike Stump1eb44332009-09-09 15:08:12 +00002375
Chris Lattner8402c732009-01-16 22:39:25 +00002376 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002377 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002378 Kind = tok::slashequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002379 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002380 Kind = tok::slash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002381 }
2382 break;
2383 case '%':
2384 Char = getCharAndSize(CurPtr, SizeTmp);
2385 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002386 Kind = tok::percentequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002387 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2388 } else if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002389 Kind = tok::r_brace; // '%>' -> '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00002390 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2391 } else if (Features.Digraphs && Char == ':') {
2392 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2393 Char = getCharAndSize(CurPtr, SizeTmp);
2394 if (Char == '%' && getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002395 Kind = tok::hashhash; // '%:%:' -> '##'
Reid Spencer5f016e22007-07-11 17:01:13 +00002396 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2397 SizeTmp2, Result);
2398 } else if (Char == '@' && Features.Microsoft) { // %:@ -> #@ -> Charize
Reid Spencer5f016e22007-07-11 17:01:13 +00002399 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner74d15df2008-11-22 02:02:22 +00002400 if (!isLexingRawMode())
2401 Diag(BufferPtr, diag::charize_microsoft_ext);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002402 Kind = tok::hashat;
Chris Lattnere91e9322009-03-18 20:58:27 +00002403 } else { // '%:' -> '#'
Reid Spencer5f016e22007-07-11 17:01:13 +00002404 // We parsed a # character. If this occurs at the start of the line,
2405 // it's actually the start of a preprocessing directive. Callback to
2406 // the preprocessor to handle it.
2407 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00002408 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00002409 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00002410 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002411
Reid Spencer5f016e22007-07-11 17:01:13 +00002412 // As an optimization, if the preprocessor didn't switch lexers, tail
2413 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002414 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002415 // Start a new token. If this is a #include or something, the PP may
2416 // want us starting at the beginning of the line again. If so, set
Chris Lattner515f43f2010-04-12 23:04:41 +00002417 // the StartOfLine flag and clear LeadingSpace.
Reid Spencer5f016e22007-07-11 17:01:13 +00002418 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00002419 Result.setFlag(Token::StartOfLine);
Chris Lattner515f43f2010-04-12 23:04:41 +00002420 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00002421 IsAtStartOfLine = false;
2422 }
2423 goto LexNextToken; // GCC isn't tail call eliminating.
2424 }
Mike Stump1eb44332009-09-09 15:08:12 +00002425
Chris Lattner168ae2d2007-10-17 20:41:00 +00002426 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002427 }
Mike Stump1eb44332009-09-09 15:08:12 +00002428
Chris Lattnere91e9322009-03-18 20:58:27 +00002429 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002430 }
2431 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002432 Kind = tok::percent;
Reid Spencer5f016e22007-07-11 17:01:13 +00002433 }
2434 break;
2435 case '<':
2436 Char = getCharAndSize(CurPtr, SizeTmp);
2437 if (ParsingFilename) {
Chris Lattner9cb51ce2009-04-17 23:56:52 +00002438 return LexAngledStringLiteral(Result, CurPtr);
Reid Spencer5f016e22007-07-11 17:01:13 +00002439 } else if (Char == '<') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002440 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
2441 if (After == '=') {
2442 Kind = tok::lesslessequal;
2443 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2444 SizeTmp2, Result);
2445 } else if (After == '<' && IsStartOfConflictMarker(CurPtr-1)) {
2446 // If this is actually a '<<<<<<<' version control conflict marker,
2447 // recognize it as such and recover nicely.
2448 goto LexNextToken;
Peter Collingbourne1b791d62011-02-09 21:08:21 +00002449 } else if (Features.CUDA && After == '<') {
2450 Kind = tok::lesslessless;
2451 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2452 SizeTmp2, Result);
Chris Lattner34f349d2009-12-14 06:16:57 +00002453 } else {
2454 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2455 Kind = tok::lessless;
2456 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002457 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002458 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002459 Kind = tok::lessequal;
2460 } else if (Features.Digraphs && Char == ':') { // '<:' -> '['
Richard Smith87a1e192011-04-14 18:36:27 +00002461 if (Features.CPlusPlus0x &&
2462 getCharAndSize(CurPtr + SizeTmp, SizeTmp2) == ':') {
2463 // C++0x [lex.pptoken]p3:
2464 // Otherwise, if the next three characters are <:: and the subsequent
2465 // character is neither : nor >, the < is treated as a preprocessor
2466 // token by itself and not as the first character of the alternative
2467 // token <:.
2468 unsigned SizeTmp3;
2469 char After = getCharAndSize(CurPtr + SizeTmp + SizeTmp2, SizeTmp3);
2470 if (After != ':' && After != '>') {
2471 Kind = tok::less;
2472 break;
2473 }
2474 }
2475
Reid Spencer5f016e22007-07-11 17:01:13 +00002476 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002477 Kind = tok::l_square;
2478 } else if (Features.Digraphs && Char == '%') { // '<%' -> '{'
Reid Spencer5f016e22007-07-11 17:01:13 +00002479 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002480 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00002481 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002482 Kind = tok::less;
Reid Spencer5f016e22007-07-11 17:01:13 +00002483 }
2484 break;
2485 case '>':
2486 Char = getCharAndSize(CurPtr, SizeTmp);
2487 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002488 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002489 Kind = tok::greaterequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002490 } else if (Char == '>') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002491 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
2492 if (After == '=') {
2493 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2494 SizeTmp2, Result);
2495 Kind = tok::greatergreaterequal;
2496 } else if (After == '>' && HandleEndOfConflictMarker(CurPtr-1)) {
2497 // If this is '>>>>>>>' and we're in a conflict marker, ignore it.
2498 goto LexNextToken;
Peter Collingbourne1b791d62011-02-09 21:08:21 +00002499 } else if (Features.CUDA && After == '>') {
2500 Kind = tok::greatergreatergreater;
2501 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2502 SizeTmp2, Result);
Chris Lattner34f349d2009-12-14 06:16:57 +00002503 } else {
2504 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2505 Kind = tok::greatergreater;
2506 }
2507
Reid Spencer5f016e22007-07-11 17:01:13 +00002508 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002509 Kind = tok::greater;
Reid Spencer5f016e22007-07-11 17:01:13 +00002510 }
2511 break;
2512 case '^':
2513 Char = getCharAndSize(CurPtr, SizeTmp);
2514 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002515 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002516 Kind = tok::caretequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002517 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002518 Kind = tok::caret;
Reid Spencer5f016e22007-07-11 17:01:13 +00002519 }
2520 break;
2521 case '|':
2522 Char = getCharAndSize(CurPtr, SizeTmp);
2523 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002524 Kind = tok::pipeequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002525 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2526 } else if (Char == '|') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002527 // If this is '|||||||' and we're in a conflict marker, ignore it.
2528 if (CurPtr[1] == '|' && HandleEndOfConflictMarker(CurPtr-1))
2529 goto LexNextToken;
Chris Lattner9e6293d2008-10-12 04:51:35 +00002530 Kind = tok::pipepipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00002531 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2532 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002533 Kind = tok::pipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00002534 }
2535 break;
2536 case ':':
2537 Char = getCharAndSize(CurPtr, SizeTmp);
2538 if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002539 Kind = tok::r_square; // ':>' -> ']'
Reid Spencer5f016e22007-07-11 17:01:13 +00002540 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2541 } else if (Features.CPlusPlus && Char == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002542 Kind = tok::coloncolon;
Reid Spencer5f016e22007-07-11 17:01:13 +00002543 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002544 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002545 Kind = tok::colon;
Reid Spencer5f016e22007-07-11 17:01:13 +00002546 }
2547 break;
2548 case ';':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002549 Kind = tok::semi;
Reid Spencer5f016e22007-07-11 17:01:13 +00002550 break;
2551 case '=':
2552 Char = getCharAndSize(CurPtr, SizeTmp);
2553 if (Char == '=') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002554 // If this is '=======' and we're in a conflict marker, ignore it.
2555 if (CurPtr[1] == '=' && HandleEndOfConflictMarker(CurPtr-1))
2556 goto LexNextToken;
2557
Chris Lattner9e6293d2008-10-12 04:51:35 +00002558 Kind = tok::equalequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002559 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002560 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002561 Kind = tok::equal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002562 }
2563 break;
2564 case ',':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002565 Kind = tok::comma;
Reid Spencer5f016e22007-07-11 17:01:13 +00002566 break;
2567 case '#':
2568 Char = getCharAndSize(CurPtr, SizeTmp);
2569 if (Char == '#') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002570 Kind = tok::hashhash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002571 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2572 } else if (Char == '@' && Features.Microsoft) { // #@ -> Charize
Chris Lattner9e6293d2008-10-12 04:51:35 +00002573 Kind = tok::hashat;
Chris Lattner74d15df2008-11-22 02:02:22 +00002574 if (!isLexingRawMode())
2575 Diag(BufferPtr, diag::charize_microsoft_ext);
Reid Spencer5f016e22007-07-11 17:01:13 +00002576 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2577 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +00002578 // We parsed a # character. If this occurs at the start of the line,
2579 // it's actually the start of a preprocessing directive. Callback to
2580 // the preprocessor to handle it.
2581 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00002582 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00002583 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00002584 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002585
Reid Spencer5f016e22007-07-11 17:01:13 +00002586 // As an optimization, if the preprocessor didn't switch lexers, tail
2587 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002588 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002589 // Start a new token. If this is a #include or something, the PP may
2590 // want us starting at the beginning of the line again. If so, set
Chris Lattner515f43f2010-04-12 23:04:41 +00002591 // the StartOfLine flag and clear LeadingSpace.
Reid Spencer5f016e22007-07-11 17:01:13 +00002592 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00002593 Result.setFlag(Token::StartOfLine);
Chris Lattner515f43f2010-04-12 23:04:41 +00002594 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00002595 IsAtStartOfLine = false;
2596 }
2597 goto LexNextToken; // GCC isn't tail call eliminating.
2598 }
Chris Lattner168ae2d2007-10-17 20:41:00 +00002599 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002600 }
Mike Stump1eb44332009-09-09 15:08:12 +00002601
Chris Lattnere91e9322009-03-18 20:58:27 +00002602 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002603 }
2604 break;
2605
Chris Lattner3a570772008-01-03 17:58:54 +00002606 case '@':
2607 // Objective C support.
2608 if (CurPtr[-1] == '@' && Features.ObjC1)
Chris Lattner9e6293d2008-10-12 04:51:35 +00002609 Kind = tok::at;
Chris Lattner3a570772008-01-03 17:58:54 +00002610 else
Chris Lattner9e6293d2008-10-12 04:51:35 +00002611 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00002612 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002613
Reid Spencer5f016e22007-07-11 17:01:13 +00002614 case '\\':
2615 // FIXME: UCN's.
2616 // FALL THROUGH.
2617 default:
Chris Lattner9e6293d2008-10-12 04:51:35 +00002618 Kind = tok::unknown;
Reid Spencer5f016e22007-07-11 17:01:13 +00002619 break;
2620 }
Mike Stump1eb44332009-09-09 15:08:12 +00002621
Reid Spencer5f016e22007-07-11 17:01:13 +00002622 // Notify MIOpt that we read a non-whitespace/non-comment token.
2623 MIOpt.ReadToken();
2624
2625 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00002626 FormTokenWithChars(Result, CurPtr, Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00002627}