blob: 5d9536f40d0f4ec2b80a7462a7f9d6989faadf16 [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
Chris Lattner22d91ca2009-01-17 06:55:17 +000074 Is_PragmaLexer = false;
Chris Lattner34f349d2009-12-14 06:16:57 +000075 IsInConflictMarker = false;
Douglas Gregor81b747b2009-09-17 21:32:03 +000076
Chris Lattner22d91ca2009-01-17 06:55:17 +000077 // Start of the file is a start of line.
78 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +000079
Chris Lattner22d91ca2009-01-17 06:55:17 +000080 // We are not after parsing a #.
81 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +000082
Chris Lattner22d91ca2009-01-17 06:55:17 +000083 // We are not after parsing #include.
84 ParsingFilename = false;
Mike Stump1eb44332009-09-09 15:08:12 +000085
Chris Lattner22d91ca2009-01-17 06:55:17 +000086 // We are not in raw mode. Raw mode disables diagnostics and interpretation
87 // of tokens (e.g. identifiers, thus disabling macro expansion). It is used
88 // to quickly lex the tokens of the buffer, e.g. when handling a "#if 0" block
89 // or otherwise skipping over tokens.
90 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +000091
Chris Lattner22d91ca2009-01-17 06:55:17 +000092 // Default to not keeping comments.
93 ExtendedTokenMode = 0;
94}
95
Chris Lattner0770dab2009-01-17 07:56:59 +000096/// Lexer constructor - Create a new lexer object for the specified buffer
97/// with the specified preprocessor managing the lexing process. This lexer
98/// assumes that the associated file buffer and Preprocessor objects will
99/// outlive it, so it doesn't take ownership of either of them.
Chris Lattner6e290142009-11-30 04:18:44 +0000100Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *InputFile, Preprocessor &PP)
Chris Lattner88d3ac12009-01-17 08:03:42 +0000101 : PreprocessorLexer(&PP, FID),
102 FileLoc(PP.getSourceManager().getLocForStartOfFile(FID)),
103 Features(PP.getLangOptions()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattner0770dab2009-01-17 07:56:59 +0000105 InitLexer(InputFile->getBufferStart(), InputFile->getBufferStart(),
106 InputFile->getBufferEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Chris Lattner0770dab2009-01-17 07:56:59 +0000108 // Default to keeping comments if the preprocessor wants them.
109 SetCommentRetentionState(PP.getCommentRetentionState());
110}
Chris Lattnerdbf388b2007-10-07 08:47:24 +0000111
Chris Lattner168ae2d2007-10-17 20:41:00 +0000112/// Lexer constructor - Create a new raw lexer object. This object is only
Chris Lattner590f0cc2008-10-12 01:15:46 +0000113/// suitable for calls to 'LexRawToken'. This lexer assumes that the text
114/// range will outlive it, so it doesn't take ownership of it.
Chris Lattner168ae2d2007-10-17 20:41:00 +0000115Lexer::Lexer(SourceLocation fileloc, const LangOptions &features,
Chris Lattnerde96c0f2009-01-17 07:42:27 +0000116 const char *BufStart, const char *BufPtr, const char *BufEnd)
Chris Lattnerc6fe32a2009-01-17 03:48:08 +0000117 : FileLoc(fileloc), Features(features) {
Chris Lattner22d91ca2009-01-17 06:55:17 +0000118
Chris Lattner22d91ca2009-01-17 06:55:17 +0000119 InitLexer(BufStart, BufPtr, BufEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Chris Lattner168ae2d2007-10-17 20:41:00 +0000121 // We *are* in raw mode.
122 LexingRawMode = true;
Chris Lattner168ae2d2007-10-17 20:41:00 +0000123}
124
Chris Lattner025c3a62009-01-17 07:35:14 +0000125/// Lexer constructor - Create a new raw lexer object. This object is only
126/// suitable for calls to 'LexRawToken'. This lexer assumes that the text
127/// range will outlive it, so it doesn't take ownership of it.
Chris Lattner6e290142009-11-30 04:18:44 +0000128Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *FromFile,
129 const SourceManager &SM, const LangOptions &features)
Chris Lattner025c3a62009-01-17 07:35:14 +0000130 : FileLoc(SM.getLocForStartOfFile(FID)), Features(features) {
Chris Lattner025c3a62009-01-17 07:35:14 +0000131
Mike Stump1eb44332009-09-09 15:08:12 +0000132 InitLexer(FromFile->getBufferStart(), FromFile->getBufferStart(),
Chris Lattner025c3a62009-01-17 07:35:14 +0000133 FromFile->getBufferEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Chris Lattner025c3a62009-01-17 07:35:14 +0000135 // We *are* in raw mode.
136 LexingRawMode = true;
137}
138
Chris Lattner42e00d12009-01-17 08:27:52 +0000139/// Create_PragmaLexer: Lexer constructor - Create a new lexer object for
140/// _Pragma expansion. This has a variety of magic semantics that this method
141/// sets up. It returns a new'd Lexer that must be delete'd when done.
142///
143/// On entrance to this routine, TokStartLoc is a macro location which has a
144/// spelling loc that indicates the bytes to be lexed for the token and an
145/// instantiation location that indicates where all lexed tokens should be
146/// "expanded from".
147///
148/// FIXME: It would really be nice to make _Pragma just be a wrapper around a
149/// normal lexer that remaps tokens as they fly by. This would require making
150/// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer
151/// interface that could handle this stuff. This would pull GetMappedTokenLoc
152/// out of the critical path of the lexer!
153///
Mike Stump1eb44332009-09-09 15:08:12 +0000154Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000155 SourceLocation InstantiationLocStart,
156 SourceLocation InstantiationLocEnd,
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000157 unsigned TokLen, Preprocessor &PP) {
Chris Lattner42e00d12009-01-17 08:27:52 +0000158 SourceManager &SM = PP.getSourceManager();
Chris Lattner42e00d12009-01-17 08:27:52 +0000159
160 // Create the lexer as if we were going to lex the file normally.
Chris Lattnera11d6172009-01-19 07:46:45 +0000161 FileID SpellingFID = SM.getFileID(SpellingLoc);
Chris Lattner6e290142009-11-30 04:18:44 +0000162 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID);
163 Lexer *L = new Lexer(SpellingFID, InputFile, PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000164
Chris Lattner42e00d12009-01-17 08:27:52 +0000165 // Now that the lexer is created, change the start/end locations so that we
166 // just lex the subsection of the file that we want. This is lexing from a
167 // scratch buffer.
168 const char *StrData = SM.getCharacterData(SpellingLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000169
Chris Lattner42e00d12009-01-17 08:27:52 +0000170 L->BufferPtr = StrData;
171 L->BufferEnd = StrData+TokLen;
Chris Lattner1fa49532009-03-08 08:08:45 +0000172 assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!");
Chris Lattner42e00d12009-01-17 08:27:52 +0000173
174 // Set the SourceLocation with the remapping information. This ensures that
175 // GetMappedTokenLoc will remap the tokens as they are lexed.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000176 L->FileLoc = SM.createInstantiationLoc(SM.getLocForStartOfFile(SpellingFID),
Chris Lattnere7fb4842009-02-15 20:52:18 +0000177 InstantiationLocStart,
178 InstantiationLocEnd, TokLen);
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Chris Lattner42e00d12009-01-17 08:27:52 +0000180 // Ensure that the lexer thinks it is inside a directive, so that end \n will
181 // return an EOM token.
182 L->ParsingPreprocessorDirective = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Chris Lattner42e00d12009-01-17 08:27:52 +0000184 // This lexer really is for _Pragma.
185 L->Is_PragmaLexer = true;
186 return L;
187}
188
Chris Lattner168ae2d2007-10-17 20:41:00 +0000189
Reid Spencer5f016e22007-07-11 17:01:13 +0000190/// Stringify - Convert the specified string into a C string, with surrounding
191/// ""'s, and with escaped \ and " characters.
192std::string Lexer::Stringify(const std::string &Str, bool Charify) {
193 std::string Result = Str;
194 char Quote = Charify ? '\'' : '"';
195 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
196 if (Result[i] == '\\' || Result[i] == Quote) {
197 Result.insert(Result.begin()+i, '\\');
198 ++i; ++e;
199 }
200 }
201 return Result;
202}
203
Chris Lattnerd8e30832007-07-24 06:57:14 +0000204/// Stringify - Convert the specified string into a C string by escaping '\'
205/// and " characters. This does not add surrounding ""'s to the string.
206void Lexer::Stringify(llvm::SmallVectorImpl<char> &Str) {
207 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
208 if (Str[i] == '\\' || Str[i] == '"') {
209 Str.insert(Str.begin()+i, '\\');
210 ++i; ++e;
211 }
212 }
213}
214
Chris Lattnerb0607272010-11-17 07:26:20 +0000215//===----------------------------------------------------------------------===//
216// Token Spelling
217//===----------------------------------------------------------------------===//
218
219/// getSpelling() - Return the 'spelling' of this token. The spelling of a
220/// token are the characters used to represent the token in the source file
221/// after trigraph expansion and escaped-newline folding. In particular, this
222/// wants to get the true, uncanonicalized, spelling of things like digraphs
223/// UCNs, etc.
224std::string Lexer::getSpelling(const Token &Tok, const SourceManager &SourceMgr,
225 const LangOptions &Features, bool *Invalid) {
226 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
227
228 // If this token contains nothing interesting, return it directly.
229 bool CharDataInvalid = false;
230 const char* TokStart = SourceMgr.getCharacterData(Tok.getLocation(),
231 &CharDataInvalid);
232 if (Invalid)
233 *Invalid = CharDataInvalid;
234 if (CharDataInvalid)
235 return std::string();
236
237 if (!Tok.needsCleaning())
238 return std::string(TokStart, TokStart+Tok.getLength());
239
240 std::string Result;
241 Result.reserve(Tok.getLength());
242
243 // Otherwise, hard case, relex the characters into the string.
244 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
245 Ptr != End; ) {
246 unsigned CharSize;
247 Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features));
248 Ptr += CharSize;
249 }
250 assert(Result.size() != unsigned(Tok.getLength()) &&
251 "NeedsCleaning flag set on something that didn't need cleaning!");
252 return Result;
253}
254
255/// getSpelling - This method is used to get the spelling of a token into a
256/// preallocated buffer, instead of as an std::string. The caller is required
257/// to allocate enough space for the token, which is guaranteed to be at least
258/// Tok.getLength() bytes long. The actual length of the token is returned.
259///
260/// Note that this method may do two possible things: it may either fill in
261/// the buffer specified with characters, or it may *change the input pointer*
262/// to point to a constant buffer with the data already in it (avoiding a
263/// copy). The caller is not allowed to modify the returned buffer pointer
264/// if an internal buffer is returned.
265unsigned Lexer::getSpelling(const Token &Tok, const char *&Buffer,
266 const SourceManager &SourceMgr,
267 const LangOptions &Features, bool *Invalid) {
268 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000269
270 const char *TokStart = 0;
271 // NOTE: this has to be checked *before* testing for an IdentifierInfo.
272 if (Tok.is(tok::raw_identifier))
273 TokStart = Tok.getRawIdentifierData();
274 else if (const IdentifierInfo *II = Tok.getIdentifierInfo()) {
275 // Just return the string from the identifier table, which is very quick.
Chris Lattnerb0607272010-11-17 07:26:20 +0000276 Buffer = II->getNameStart();
277 return II->getLength();
278 }
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000279
280 // NOTE: this can be checked even after testing for an IdentifierInfo.
Chris Lattnerb0607272010-11-17 07:26:20 +0000281 if (Tok.isLiteral())
282 TokStart = Tok.getLiteralData();
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000283
Chris Lattnerb0607272010-11-17 07:26:20 +0000284 if (TokStart == 0) {
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000285 // Compute the start of the token in the input lexer buffer.
Chris Lattnerb0607272010-11-17 07:26:20 +0000286 bool CharDataInvalid = false;
287 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid);
288 if (Invalid)
289 *Invalid = CharDataInvalid;
290 if (CharDataInvalid) {
291 Buffer = "";
292 return 0;
293 }
294 }
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000295
Chris Lattnerb0607272010-11-17 07:26:20 +0000296 // If this token contains nothing interesting, return it directly.
297 if (!Tok.needsCleaning()) {
298 Buffer = TokStart;
299 return Tok.getLength();
300 }
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000301
Chris Lattnerb0607272010-11-17 07:26:20 +0000302 // Otherwise, hard case, relex the characters into the string.
303 char *OutBuf = const_cast<char*>(Buffer);
304 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
305 Ptr != End; ) {
306 unsigned CharSize;
307 *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features);
308 Ptr += CharSize;
309 }
310 assert(unsigned(OutBuf-Buffer) != Tok.getLength() &&
311 "NeedsCleaning flag set on something that didn't need cleaning!");
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000312
Chris Lattnerb0607272010-11-17 07:26:20 +0000313 return OutBuf-Buffer;
314}
315
316
317
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000318static bool isWhitespace(unsigned char c);
Reid Spencer5f016e22007-07-11 17:01:13 +0000319
Chris Lattner9a611942007-10-17 21:18:47 +0000320/// MeasureTokenLength - Relex the token at the specified location and return
321/// its length in bytes in the input file. If the token needs cleaning (e.g.
322/// includes a trigraph or an escaped newline) then this count includes bytes
323/// that are part of that.
324unsigned Lexer::MeasureTokenLength(SourceLocation Loc,
Chris Lattner2c78b872009-04-14 23:22:57 +0000325 const SourceManager &SM,
326 const LangOptions &LangOpts) {
Chris Lattner9a611942007-10-17 21:18:47 +0000327 // TODO: this could be special cased for common tokens like identifiers, ')',
328 // etc to make this faster, if it mattered. Just look at StrData[0] to handle
Mike Stump1eb44332009-09-09 15:08:12 +0000329 // all obviously single-char tokens. This could use
Chris Lattner9a611942007-10-17 21:18:47 +0000330 // Lexer::isObviouslySimpleCharacter for example to handle identifiers or
331 // something.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000332
333 // If this comes from a macro expansion, we really do want the macro name, not
334 // the token this macro expanded to.
Chris Lattner363fdc22009-01-26 22:24:27 +0000335 Loc = SM.getInstantiationLoc(Loc);
336 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000337 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000338 llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000339 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +0000340 return 0;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000341
342 const char *StrData = Buffer.data()+LocInfo.second;
Chris Lattner83503942009-01-17 08:30:10 +0000343
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000344 if (isWhitespace(StrData[0]))
345 return 0;
346
Chris Lattner9a611942007-10-17 21:18:47 +0000347 // Create a lexer starting at the beginning of this token.
Sebastian Redlc3526d82010-09-30 01:03:03 +0000348 Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), LangOpts,
349 Buffer.begin(), StrData, Buffer.end());
Chris Lattner39de7402009-10-14 15:04:18 +0000350 TheLexer.SetCommentRetentionState(true);
Chris Lattner9a611942007-10-17 21:18:47 +0000351 Token TheTok;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000352 TheLexer.LexFromRawLexer(TheTok);
Chris Lattner9a611942007-10-17 21:18:47 +0000353 return TheTok.getLength();
354}
355
Douglas Gregora8e5c5b2010-07-22 20:22:31 +0000356SourceLocation Lexer::GetBeginningOfToken(SourceLocation Loc,
357 const SourceManager &SM,
358 const LangOptions &LangOpts) {
359 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
360 bool Invalid = false;
361 llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
362 if (Invalid)
363 return Loc;
364
365 // Back up from the current location until we hit the beginning of a line
366 // (or the buffer). We'll relex from that point.
367 const char *BufStart = Buffer.data();
368 const char *StrData = BufStart+LocInfo.second;
369 if (StrData[0] == '\n' || StrData[0] == '\r')
370 return Loc;
371
372 const char *LexStart = StrData;
373 while (LexStart != BufStart) {
374 if (LexStart[0] == '\n' || LexStart[0] == '\r') {
375 ++LexStart;
376 break;
377 }
378
379 --LexStart;
380 }
381
382 // Create a lexer starting at the beginning of this token.
383 SourceLocation LexerStartLoc = Loc.getFileLocWithOffset(-LocInfo.second);
384 Lexer TheLexer(LexerStartLoc, LangOpts, BufStart, LexStart, Buffer.end());
385 TheLexer.SetCommentRetentionState(true);
386
387 // Lex tokens until we find the token that contains the source location.
388 Token TheTok;
389 do {
390 TheLexer.LexFromRawLexer(TheTok);
391
392 if (TheLexer.getBufferLocation() > StrData) {
393 // Lexing this token has taken the lexer past the source location we're
394 // looking for. If the current token encompasses our source location,
395 // return the beginning of that token.
396 if (TheLexer.getBufferLocation() - TheTok.getLength() <= StrData)
397 return TheTok.getLocation();
398
399 // We ended up skipping over the source location entirely, which means
400 // that it points into whitespace. We're done here.
401 break;
402 }
403 } while (TheTok.getKind() != tok::eof);
404
405 // We've passed our source location; just return the original source location.
406 return Loc;
407}
408
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000409namespace {
410 enum PreambleDirectiveKind {
411 PDK_Skipped,
412 PDK_StartIf,
413 PDK_EndIf,
414 PDK_Unknown
415 };
416}
417
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000418std::pair<unsigned, bool>
Douglas Gregordf95a132010-08-09 20:45:32 +0000419Lexer::ComputePreamble(const llvm::MemoryBuffer *Buffer, unsigned MaxLines) {
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000420 // Create a lexer starting at the beginning of the file. Note that we use a
421 // "fake" file source location at offset 1 so that the lexer will track our
422 // position within the file.
423 const unsigned StartOffset = 1;
424 SourceLocation StartLoc = SourceLocation::getFromRawEncoding(StartOffset);
425 LangOptions LangOpts;
426 Lexer TheLexer(StartLoc, LangOpts, Buffer->getBufferStart(),
427 Buffer->getBufferStart(), Buffer->getBufferEnd());
428
429 bool InPreprocessorDirective = false;
430 Token TheTok;
431 Token IfStartTok;
432 unsigned IfCount = 0;
Douglas Gregordf95a132010-08-09 20:45:32 +0000433 unsigned Line = 0;
434
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000435 do {
436 TheLexer.LexFromRawLexer(TheTok);
437
438 if (InPreprocessorDirective) {
439 // If we've hit the end of the file, we're done.
440 if (TheTok.getKind() == tok::eof) {
441 InPreprocessorDirective = false;
442 break;
443 }
444
445 // If we haven't hit the end of the preprocessor directive, skip this
446 // token.
447 if (!TheTok.isAtStartOfLine())
448 continue;
449
450 // We've passed the end of the preprocessor directive, and will look
451 // at this token again below.
452 InPreprocessorDirective = false;
453 }
454
Douglas Gregordf95a132010-08-09 20:45:32 +0000455 // Keep track of the # of lines in the preamble.
456 if (TheTok.isAtStartOfLine()) {
457 ++Line;
458
459 // If we were asked to limit the number of lines in the preamble,
460 // and we're about to exceed that limit, we're done.
461 if (MaxLines && Line >= MaxLines)
462 break;
463 }
464
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000465 // Comments are okay; skip over them.
466 if (TheTok.getKind() == tok::comment)
467 continue;
468
469 if (TheTok.isAtStartOfLine() && TheTok.getKind() == tok::hash) {
470 // This is the start of a preprocessor directive.
471 Token HashTok = TheTok;
472 InPreprocessorDirective = true;
473
474 // Figure out which direective this is. Since we're lexing raw tokens,
475 // we don't have an identifier table available. Instead, just look at
476 // the raw identifier to recognize and categorize preprocessor directives.
477 TheLexer.LexFromRawLexer(TheTok);
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000478 if (TheTok.getKind() == tok::raw_identifier && !TheTok.needsCleaning()) {
479 llvm::StringRef Keyword(TheTok.getRawIdentifierData(),
480 TheTok.getLength());
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000481 PreambleDirectiveKind PDK
482 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword)
483 .Case("include", PDK_Skipped)
484 .Case("__include_macros", PDK_Skipped)
485 .Case("define", PDK_Skipped)
486 .Case("undef", PDK_Skipped)
487 .Case("line", PDK_Skipped)
488 .Case("error", PDK_Skipped)
489 .Case("pragma", PDK_Skipped)
490 .Case("import", PDK_Skipped)
491 .Case("include_next", PDK_Skipped)
492 .Case("warning", PDK_Skipped)
493 .Case("ident", PDK_Skipped)
494 .Case("sccs", PDK_Skipped)
495 .Case("assert", PDK_Skipped)
496 .Case("unassert", PDK_Skipped)
497 .Case("if", PDK_StartIf)
498 .Case("ifdef", PDK_StartIf)
499 .Case("ifndef", PDK_StartIf)
500 .Case("elif", PDK_Skipped)
501 .Case("else", PDK_Skipped)
502 .Case("endif", PDK_EndIf)
503 .Default(PDK_Unknown);
504
505 switch (PDK) {
506 case PDK_Skipped:
507 continue;
508
509 case PDK_StartIf:
510 if (IfCount == 0)
511 IfStartTok = HashTok;
512
513 ++IfCount;
514 continue;
515
516 case PDK_EndIf:
517 // Mismatched #endif. The preamble ends here.
518 if (IfCount == 0)
519 break;
520
521 --IfCount;
522 continue;
523
524 case PDK_Unknown:
525 // We don't know what this directive is; stop at the '#'.
526 break;
527 }
528 }
529
530 // We only end up here if we didn't recognize the preprocessor
531 // directive or it was one that can't occur in the preamble at this
532 // point. Roll back the current token to the location of the '#'.
533 InPreprocessorDirective = false;
534 TheTok = HashTok;
535 }
536
Douglas Gregordf95a132010-08-09 20:45:32 +0000537 // We hit a token that we don't recognize as being in the
538 // "preprocessing only" part of the file, so we're no longer in
539 // the preamble.
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000540 break;
541 } while (true);
542
543 SourceLocation End = IfCount? IfStartTok.getLocation() : TheTok.getLocation();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000544 return std::make_pair(End.getRawEncoding() - StartLoc.getRawEncoding(),
545 IfCount? IfStartTok.isAtStartOfLine()
546 : TheTok.isAtStartOfLine());
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000547}
548
Chris Lattner7ef5c272010-11-17 07:05:50 +0000549
550/// AdvanceToTokenCharacter - Given a location that specifies the start of a
551/// token, return a new location that specifies a character within the token.
552SourceLocation Lexer::AdvanceToTokenCharacter(SourceLocation TokStart,
553 unsigned CharNo,
554 const SourceManager &SM,
555 const LangOptions &Features) {
556 // Figure out how many physical characters away the specified instantiation
557 // character is. This needs to take into consideration newlines and
558 // trigraphs.
559 bool Invalid = false;
560 const char *TokPtr = SM.getCharacterData(TokStart, &Invalid);
561
562 // If they request the first char of the token, we're trivially done.
563 if (Invalid || (CharNo == 0 && Lexer::isObviouslySimpleCharacter(*TokPtr)))
564 return TokStart;
565
566 unsigned PhysOffset = 0;
567
568 // The usual case is that tokens don't contain anything interesting. Skip
569 // over the uninteresting characters. If a token only consists of simple
570 // chars, this method is extremely fast.
571 while (Lexer::isObviouslySimpleCharacter(*TokPtr)) {
572 if (CharNo == 0)
573 return TokStart.getFileLocWithOffset(PhysOffset);
574 ++TokPtr, --CharNo, ++PhysOffset;
575 }
576
577 // If we have a character that may be a trigraph or escaped newline, use a
578 // lexer to parse it correctly.
579 for (; CharNo; --CharNo) {
580 unsigned Size;
581 Lexer::getCharAndSizeNoWarn(TokPtr, Size, Features);
582 TokPtr += Size;
583 PhysOffset += Size;
584 }
585
586 // Final detail: if we end up on an escaped newline, we want to return the
587 // location of the actual byte of the token. For example foo\<newline>bar
588 // advanced by 3 should return the location of b, not of \\. One compounding
589 // detail of this is that the escape may be made by a trigraph.
590 if (!Lexer::isObviouslySimpleCharacter(*TokPtr))
591 PhysOffset += Lexer::SkipEscapedNewLines(TokPtr)-TokPtr;
592
593 return TokStart.getFileLocWithOffset(PhysOffset);
594}
595
596/// \brief Computes the source location just past the end of the
597/// token at this source location.
598///
599/// This routine can be used to produce a source location that
600/// points just past the end of the token referenced by \p Loc, and
601/// is generally used when a diagnostic needs to point just after a
602/// token where it expected something different that it received. If
603/// the returned source location would not be meaningful (e.g., if
604/// it points into a macro), this routine returns an invalid
605/// source location.
606///
607/// \param Offset an offset from the end of the token, where the source
608/// location should refer to. The default offset (0) produces a source
609/// location pointing just past the end of the token; an offset of 1 produces
610/// a source location pointing to the last character in the token, etc.
611SourceLocation Lexer::getLocForEndOfToken(SourceLocation Loc, unsigned Offset,
612 const SourceManager &SM,
613 const LangOptions &Features) {
614 if (Loc.isInvalid() || !Loc.isFileID())
615 return SourceLocation();
616
617 unsigned Len = Lexer::MeasureTokenLength(Loc, SM, Features);
618 if (Len > Offset)
619 Len = Len - Offset;
620 else
621 return Loc;
622
623 return AdvanceToTokenCharacter(Loc, Len, SM, Features);
624}
625
Reid Spencer5f016e22007-07-11 17:01:13 +0000626//===----------------------------------------------------------------------===//
627// Character information.
628//===----------------------------------------------------------------------===//
629
Reid Spencer5f016e22007-07-11 17:01:13 +0000630enum {
631 CHAR_HORZ_WS = 0x01, // ' ', '\t', '\f', '\v'. Note, no '\0'
632 CHAR_VERT_WS = 0x02, // '\r', '\n'
633 CHAR_LETTER = 0x04, // a-z,A-Z
634 CHAR_NUMBER = 0x08, // 0-9
635 CHAR_UNDER = 0x10, // _
636 CHAR_PERIOD = 0x20 // .
637};
638
Chris Lattner03b98662009-07-07 17:09:54 +0000639// Statically initialize CharInfo table based on ASCII character set
640// Reference: FreeBSD 7.2 /usr/share/misc/ascii
Chris Lattnera2bf1052009-12-17 05:29:40 +0000641static const unsigned char CharInfo[256] =
Chris Lattner03b98662009-07-07 17:09:54 +0000642{
643// 0 NUL 1 SOH 2 STX 3 ETX
644// 4 EOT 5 ENQ 6 ACK 7 BEL
645 0 , 0 , 0 , 0 ,
646 0 , 0 , 0 , 0 ,
647// 8 BS 9 HT 10 NL 11 VT
648//12 NP 13 CR 14 SO 15 SI
649 0 , CHAR_HORZ_WS, CHAR_VERT_WS, CHAR_HORZ_WS,
650 CHAR_HORZ_WS, CHAR_VERT_WS, 0 , 0 ,
651//16 DLE 17 DC1 18 DC2 19 DC3
652//20 DC4 21 NAK 22 SYN 23 ETB
653 0 , 0 , 0 , 0 ,
654 0 , 0 , 0 , 0 ,
655//24 CAN 25 EM 26 SUB 27 ESC
656//28 FS 29 GS 30 RS 31 US
657 0 , 0 , 0 , 0 ,
658 0 , 0 , 0 , 0 ,
659//32 SP 33 ! 34 " 35 #
660//36 $ 37 % 38 & 39 '
661 CHAR_HORZ_WS, 0 , 0 , 0 ,
662 0 , 0 , 0 , 0 ,
663//40 ( 41 ) 42 * 43 +
664//44 , 45 - 46 . 47 /
665 0 , 0 , 0 , 0 ,
666 0 , 0 , CHAR_PERIOD , 0 ,
667//48 0 49 1 50 2 51 3
668//52 4 53 5 54 6 55 7
669 CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER ,
670 CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER ,
671//56 8 57 9 58 : 59 ;
672//60 < 61 = 62 > 63 ?
673 CHAR_NUMBER , CHAR_NUMBER , 0 , 0 ,
674 0 , 0 , 0 , 0 ,
675//64 @ 65 A 66 B 67 C
676//68 D 69 E 70 F 71 G
677 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
678 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
679//72 H 73 I 74 J 75 K
680//76 L 77 M 78 N 79 O
681 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
682 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
683//80 P 81 Q 82 R 83 S
684//84 T 85 U 86 V 87 W
685 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
686 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
687//88 X 89 Y 90 Z 91 [
688//92 \ 93 ] 94 ^ 95 _
689 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 ,
690 0 , 0 , 0 , CHAR_UNDER ,
691//96 ` 97 a 98 b 99 c
692//100 d 101 e 102 f 103 g
693 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
694 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
695//104 h 105 i 106 j 107 k
696//108 l 109 m 110 n 111 o
697 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
698 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
699//112 p 113 q 114 r 115 s
700//116 t 117 u 118 v 119 w
701 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
702 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
703//120 x 121 y 122 z 123 {
704//124 | 125 } 126 ~ 127 DEL
705 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 ,
706 0 , 0 , 0 , 0
707};
708
Chris Lattnera2bf1052009-12-17 05:29:40 +0000709static void InitCharacterInfo() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000710 static bool isInited = false;
711 if (isInited) return;
Chris Lattner03b98662009-07-07 17:09:54 +0000712 // check the statically-initialized CharInfo table
713 assert(CHAR_HORZ_WS == CharInfo[(int)' ']);
714 assert(CHAR_HORZ_WS == CharInfo[(int)'\t']);
715 assert(CHAR_HORZ_WS == CharInfo[(int)'\f']);
716 assert(CHAR_HORZ_WS == CharInfo[(int)'\v']);
717 assert(CHAR_VERT_WS == CharInfo[(int)'\n']);
718 assert(CHAR_VERT_WS == CharInfo[(int)'\r']);
719 assert(CHAR_UNDER == CharInfo[(int)'_']);
720 assert(CHAR_PERIOD == CharInfo[(int)'.']);
721 for (unsigned i = 'a'; i <= 'z'; ++i) {
722 assert(CHAR_LETTER == CharInfo[i]);
723 assert(CHAR_LETTER == CharInfo[i+'A'-'a']);
724 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 for (unsigned i = '0'; i <= '9'; ++i)
Chris Lattner03b98662009-07-07 17:09:54 +0000726 assert(CHAR_NUMBER == CharInfo[i]);
Steve Naroff7b682652009-12-08 16:38:12 +0000727
Chris Lattner03b98662009-07-07 17:09:54 +0000728 isInited = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000729}
730
Chris Lattner03b98662009-07-07 17:09:54 +0000731
Reid Spencer5f016e22007-07-11 17:01:13 +0000732/// isIdentifierBody - Return true if this is the body character of an
733/// identifier, which is [a-zA-Z0-9_].
734static inline bool isIdentifierBody(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000735 return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER)) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000736}
737
738/// isHorizontalWhitespace - Return true if this character is horizontal
739/// whitespace: ' ', '\t', '\f', '\v'. Note that this returns false for '\0'.
740static inline bool isHorizontalWhitespace(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000741 return (CharInfo[c] & CHAR_HORZ_WS) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000742}
743
744/// isWhitespace - Return true if this character is horizontal or vertical
745/// whitespace: ' ', '\t', '\f', '\v', '\n', '\r'. Note that this returns false
746/// for '\0'.
747static inline bool isWhitespace(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000748 return (CharInfo[c] & (CHAR_HORZ_WS|CHAR_VERT_WS)) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000749}
750
751/// isNumberBody - Return true if this is the body character of an
752/// preprocessing number, which is [a-zA-Z0-9_.].
753static inline bool isNumberBody(unsigned char c) {
Mike Stump1eb44332009-09-09 15:08:12 +0000754 return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER|CHAR_PERIOD)) ?
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000755 true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000756}
757
758
759//===----------------------------------------------------------------------===//
760// Diagnostics forwarding code.
761//===----------------------------------------------------------------------===//
762
Chris Lattner409a0362007-07-22 18:38:25 +0000763/// GetMappedTokenLoc - If lexing out of a 'mapped buffer', where we pretend the
764/// lexer buffer was all instantiated at a single point, perform the mapping.
765/// This is currently only used for _Pragma implementation, so it is the slow
766/// path of the hot getSourceLocation method. Do not allow it to be inlined.
Chandler Carruth14bd9652010-10-23 08:44:57 +0000767static LLVM_ATTRIBUTE_NOINLINE SourceLocation GetMappedTokenLoc(
768 Preprocessor &PP, SourceLocation FileLoc, unsigned CharNo, unsigned TokLen);
Chris Lattner409a0362007-07-22 18:38:25 +0000769static SourceLocation GetMappedTokenLoc(Preprocessor &PP,
770 SourceLocation FileLoc,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000771 unsigned CharNo, unsigned TokLen) {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000772 assert(FileLoc.isMacroID() && "Must be an instantiation");
Mike Stump1eb44332009-09-09 15:08:12 +0000773
Chris Lattner409a0362007-07-22 18:38:25 +0000774 // Otherwise, we're lexing "mapped tokens". This is used for things like
775 // _Pragma handling. Combine the instantiation location of FileLoc with the
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000776 // spelling location.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000777 SourceManager &SM = PP.getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000778
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000779 // Create a new SLoc which is expanded from Instantiation(FileLoc) but whose
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000780 // characters come from spelling(FileLoc)+Offset.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000781 SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc);
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000782 SpellingLoc = SpellingLoc.getFileLocWithOffset(CharNo);
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Chris Lattnere7fb4842009-02-15 20:52:18 +0000784 // Figure out the expansion loc range, which is the range covered by the
785 // original _Pragma(...) sequence.
786 std::pair<SourceLocation,SourceLocation> II =
787 SM.getImmediateInstantiationRange(FileLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000788
Chris Lattnere7fb4842009-02-15 20:52:18 +0000789 return SM.createInstantiationLoc(SpellingLoc, II.first, II.second, TokLen);
Chris Lattner409a0362007-07-22 18:38:25 +0000790}
791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792/// getSourceLocation - Return a source location identifier for the specified
793/// offset in the current file.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000794SourceLocation Lexer::getSourceLocation(const char *Loc,
795 unsigned TokLen) const {
Chris Lattner448cec42007-07-22 18:44:36 +0000796 assert(Loc >= BufferStart && Loc <= BufferEnd &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000797 "Location out of range for this buffer!");
Chris Lattner9dc1f532007-07-20 16:37:10 +0000798
799 // In the normal case, we're just lexing from a simple file buffer, return
800 // the file id from FileLoc with the offset specified.
Chris Lattner448cec42007-07-22 18:44:36 +0000801 unsigned CharNo = Loc-BufferStart;
Chris Lattner9dc1f532007-07-20 16:37:10 +0000802 if (FileLoc.isFileID())
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000803 return FileLoc.getFileLocWithOffset(CharNo);
Mike Stump1eb44332009-09-09 15:08:12 +0000804
Chris Lattner2b2453a2009-01-17 06:22:33 +0000805 // Otherwise, this is the _Pragma lexer case, which pretends that all of the
806 // tokens are lexed from where the _Pragma was defined.
Chris Lattner168ae2d2007-10-17 20:41:00 +0000807 assert(PP && "This doesn't work on raw lexers");
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000808 return GetMappedTokenLoc(*PP, FileLoc, CharNo, TokLen);
Reid Spencer5f016e22007-07-11 17:01:13 +0000809}
810
Reid Spencer5f016e22007-07-11 17:01:13 +0000811/// Diag - Forwarding function for diagnostics. This translate a source
812/// position in the current buffer into a SourceLocation object for rendering.
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000813DiagnosticBuilder Lexer::Diag(const char *Loc, unsigned DiagID) const {
Chris Lattner3692b092008-11-18 07:59:24 +0000814 return PP->Diag(getSourceLocation(Loc), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000815}
Reid Spencer5f016e22007-07-11 17:01:13 +0000816
817//===----------------------------------------------------------------------===//
818// Trigraph and Escaped Newline Handling Code.
819//===----------------------------------------------------------------------===//
820
821/// GetTrigraphCharForLetter - Given a character that occurs after a ?? pair,
822/// return the decoded trigraph letter it corresponds to, or '\0' if nothing.
823static char GetTrigraphCharForLetter(char Letter) {
824 switch (Letter) {
825 default: return 0;
826 case '=': return '#';
827 case ')': return ']';
828 case '(': return '[';
829 case '!': return '|';
830 case '\'': return '^';
831 case '>': return '}';
832 case '/': return '\\';
833 case '<': return '{';
834 case '-': return '~';
835 }
836}
837
838/// DecodeTrigraphChar - If the specified character is a legal trigraph when
839/// prefixed with ??, emit a trigraph warning. If trigraphs are enabled,
840/// return the result character. Finally, emit a warning about trigraph use
841/// whether trigraphs are enabled or not.
842static char DecodeTrigraphChar(const char *CP, Lexer *L) {
843 char Res = GetTrigraphCharForLetter(*CP);
Chris Lattner3692b092008-11-18 07:59:24 +0000844 if (!Res || !L) return Res;
Mike Stump1eb44332009-09-09 15:08:12 +0000845
Chris Lattner3692b092008-11-18 07:59:24 +0000846 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +0000847 if (!L->isLexingRawMode())
848 L->Diag(CP-2, diag::trigraph_ignored);
Chris Lattner3692b092008-11-18 07:59:24 +0000849 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 }
Mike Stump1eb44332009-09-09 15:08:12 +0000851
Chris Lattner74d15df2008-11-22 02:02:22 +0000852 if (!L->isLexingRawMode())
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000853 L->Diag(CP-2, diag::trigraph_converted) << llvm::StringRef(&Res, 1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 return Res;
855}
856
Chris Lattner24f0e482009-04-18 22:05:41 +0000857/// getEscapedNewLineSize - Return the size of the specified escaped newline,
858/// 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 +0000859/// trigraph equivalent on entry to this function.
Chris Lattner24f0e482009-04-18 22:05:41 +0000860unsigned Lexer::getEscapedNewLineSize(const char *Ptr) {
861 unsigned Size = 0;
862 while (isWhitespace(Ptr[Size])) {
863 ++Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000864
Chris Lattner24f0e482009-04-18 22:05:41 +0000865 if (Ptr[Size-1] != '\n' && Ptr[Size-1] != '\r')
866 continue;
867
868 // If this is a \r\n or \n\r, skip the other half.
869 if ((Ptr[Size] == '\r' || Ptr[Size] == '\n') &&
870 Ptr[Size-1] != Ptr[Size])
871 ++Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000872
Chris Lattner24f0e482009-04-18 22:05:41 +0000873 return Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000874 }
875
Chris Lattner24f0e482009-04-18 22:05:41 +0000876 // Not an escaped newline, must be a \t or something else.
877 return 0;
878}
879
Chris Lattner03374952009-04-18 22:27:02 +0000880/// SkipEscapedNewLines - If P points to an escaped newline (or a series of
881/// them), skip over them and return the first non-escaped-newline found,
882/// otherwise return P.
883const char *Lexer::SkipEscapedNewLines(const char *P) {
884 while (1) {
885 const char *AfterEscape;
886 if (*P == '\\') {
887 AfterEscape = P+1;
888 } else if (*P == '?') {
889 // If not a trigraph for escape, bail out.
890 if (P[1] != '?' || P[2] != '/')
891 return P;
892 AfterEscape = P+3;
893 } else {
894 return P;
895 }
Mike Stump1eb44332009-09-09 15:08:12 +0000896
Chris Lattner03374952009-04-18 22:27:02 +0000897 unsigned NewLineSize = Lexer::getEscapedNewLineSize(AfterEscape);
898 if (NewLineSize == 0) return P;
899 P = AfterEscape+NewLineSize;
900 }
901}
902
Chris Lattner24f0e482009-04-18 22:05:41 +0000903
Reid Spencer5f016e22007-07-11 17:01:13 +0000904/// getCharAndSizeSlow - Peek a single 'character' from the specified buffer,
905/// get its size, and return it. This is tricky in several cases:
906/// 1. If currently at the start of a trigraph, we warn about the trigraph,
907/// then either return the trigraph (skipping 3 chars) or the '?',
908/// depending on whether trigraphs are enabled or not.
909/// 2. If this is an escaped newline (potentially with whitespace between
910/// the backslash and newline), implicitly skip the newline and return
911/// the char after it.
912/// 3. If this is a UCN, return it. FIXME: C++ UCN's?
913///
914/// This handles the slow/uncommon case of the getCharAndSize method. Here we
915/// know that we can accumulate into Size, and that we have already incremented
916/// Ptr by Size bytes.
917///
918/// NOTE: When this method is updated, getCharAndSizeSlowNoWarn (below) should
919/// be updated to match.
920///
921char Lexer::getCharAndSizeSlow(const char *Ptr, unsigned &Size,
Chris Lattnerd2177732007-07-20 16:59:19 +0000922 Token *Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000923 // If we have a slash, look for an escaped newline.
924 if (Ptr[0] == '\\') {
925 ++Size;
926 ++Ptr;
927Slash:
928 // Common case, backslash-char where the char is not whitespace.
929 if (!isWhitespace(Ptr[0])) return '\\';
Mike Stump1eb44332009-09-09 15:08:12 +0000930
Chris Lattner5636a3b2009-06-23 05:15:06 +0000931 // See if we have optional whitespace characters between the slash and
932 // newline.
Chris Lattner24f0e482009-04-18 22:05:41 +0000933 if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) {
934 // Remember that this token needs to be cleaned.
935 if (Tok) Tok->setFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +0000936
Chris Lattner24f0e482009-04-18 22:05:41 +0000937 // Warn if there was whitespace between the backslash and newline.
Chris Lattner5636a3b2009-06-23 05:15:06 +0000938 if (Ptr[0] != '\n' && Ptr[0] != '\r' && Tok && !isLexingRawMode())
Chris Lattner24f0e482009-04-18 22:05:41 +0000939 Diag(Ptr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +0000940
Chris Lattner24f0e482009-04-18 22:05:41 +0000941 // Found backslash<whitespace><newline>. Parse the char after it.
942 Size += EscapedNewLineSize;
943 Ptr += EscapedNewLineSize;
944 // Use slow version to accumulate a correct size field.
945 return getCharAndSizeSlow(Ptr, Size, Tok);
946 }
Mike Stump1eb44332009-09-09 15:08:12 +0000947
Reid Spencer5f016e22007-07-11 17:01:13 +0000948 // Otherwise, this is not an escaped newline, just return the slash.
949 return '\\';
950 }
Mike Stump1eb44332009-09-09 15:08:12 +0000951
Reid Spencer5f016e22007-07-11 17:01:13 +0000952 // If this is a trigraph, process it.
953 if (Ptr[0] == '?' && Ptr[1] == '?') {
954 // If this is actually a legal trigraph (not something like "??x"), emit
955 // a trigraph warning. If so, and if trigraphs are enabled, return it.
956 if (char C = DecodeTrigraphChar(Ptr+2, Tok ? this : 0)) {
957 // Remember that this token needs to be cleaned.
Chris Lattnerd2177732007-07-20 16:59:19 +0000958 if (Tok) Tok->setFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +0000959
960 Ptr += 3;
961 Size += 3;
962 if (C == '\\') goto Slash;
963 return C;
964 }
965 }
Mike Stump1eb44332009-09-09 15:08:12 +0000966
Reid Spencer5f016e22007-07-11 17:01:13 +0000967 // If this is neither, return a single character.
968 ++Size;
969 return *Ptr;
970}
971
972
973/// getCharAndSizeSlowNoWarn - Handle the slow/uncommon case of the
974/// getCharAndSizeNoWarn method. Here we know that we can accumulate into Size,
975/// and that we have already incremented Ptr by Size bytes.
976///
977/// NOTE: When this method is updated, getCharAndSizeSlow (above) should
978/// be updated to match.
979char Lexer::getCharAndSizeSlowNoWarn(const char *Ptr, unsigned &Size,
980 const LangOptions &Features) {
981 // If we have a slash, look for an escaped newline.
982 if (Ptr[0] == '\\') {
983 ++Size;
984 ++Ptr;
985Slash:
986 // Common case, backslash-char where the char is not whitespace.
987 if (!isWhitespace(Ptr[0])) return '\\';
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Reid Spencer5f016e22007-07-11 17:01:13 +0000989 // See if we have optional whitespace characters followed by a newline.
Chris Lattner24f0e482009-04-18 22:05:41 +0000990 if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) {
991 // Found backslash<whitespace><newline>. Parse the char after it.
992 Size += EscapedNewLineSize;
993 Ptr += EscapedNewLineSize;
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Chris Lattner24f0e482009-04-18 22:05:41 +0000995 // Use slow version to accumulate a correct size field.
996 return getCharAndSizeSlowNoWarn(Ptr, Size, Features);
997 }
Mike Stump1eb44332009-09-09 15:08:12 +0000998
Reid Spencer5f016e22007-07-11 17:01:13 +0000999 // Otherwise, this is not an escaped newline, just return the slash.
1000 return '\\';
1001 }
Mike Stump1eb44332009-09-09 15:08:12 +00001002
Reid Spencer5f016e22007-07-11 17:01:13 +00001003 // If this is a trigraph, process it.
1004 if (Features.Trigraphs && Ptr[0] == '?' && Ptr[1] == '?') {
1005 // If this is actually a legal trigraph (not something like "??x"), return
1006 // it.
1007 if (char C = GetTrigraphCharForLetter(Ptr[2])) {
1008 Ptr += 3;
1009 Size += 3;
1010 if (C == '\\') goto Slash;
1011 return C;
1012 }
1013 }
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Reid Spencer5f016e22007-07-11 17:01:13 +00001015 // If this is neither, return a single character.
1016 ++Size;
1017 return *Ptr;
1018}
1019
1020//===----------------------------------------------------------------------===//
1021// Helper methods for lexing.
1022//===----------------------------------------------------------------------===//
1023
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001024/// \brief Routine that indiscriminately skips bytes in the source file.
1025void Lexer::SkipBytes(unsigned Bytes, bool StartOfLine) {
1026 BufferPtr += Bytes;
1027 if (BufferPtr > BufferEnd)
1028 BufferPtr = BufferEnd;
1029 IsAtStartOfLine = StartOfLine;
1030}
1031
Chris Lattnerd2177732007-07-20 16:59:19 +00001032void Lexer::LexIdentifier(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001033 // Match [_A-Za-z0-9]*, we have already matched [_A-Za-z$]
1034 unsigned Size;
1035 unsigned char C = *CurPtr++;
Chris Lattnercd991db2010-01-11 02:38:50 +00001036 while (isIdentifierBody(C))
Reid Spencer5f016e22007-07-11 17:01:13 +00001037 C = *CurPtr++;
Chris Lattnercd991db2010-01-11 02:38:50 +00001038
Reid Spencer5f016e22007-07-11 17:01:13 +00001039 --CurPtr; // Back up over the skipped character.
1040
1041 // Fast path, no $,\,? in identifier found. '\' might be an escaped newline
1042 // or UCN, and ? might be a trigraph for '\', an escaped newline or UCN.
1043 // FIXME: UCNs.
Chris Lattnercd991db2010-01-11 02:38:50 +00001044 //
1045 // TODO: Could merge these checks into a CharInfo flag to make the comparison
1046 // cheaper
Reid Spencer5f016e22007-07-11 17:01:13 +00001047 if (C != '\\' && C != '?' && (C != '$' || !Features.DollarIdents)) {
1048FinishIdentifier:
1049 const char *IdStart = BufferPtr;
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00001050 FormTokenWithChars(Result, CurPtr, tok::raw_identifier);
1051 Result.setRawIdentifierData(IdStart);
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Reid Spencer5f016e22007-07-11 17:01:13 +00001053 // If we are in raw mode, return this identifier raw. There is no need to
1054 // look up identifier information or attempt to macro expand it.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00001055 if (LexingRawMode)
1056 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +00001058 // Fill in Result.IdentifierInfo and update the token kind,
1059 // looking up the identifier in the identifier table.
1060 IdentifierInfo *II = PP->LookUpIdentifierInfo(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001061
Reid Spencer5f016e22007-07-11 17:01:13 +00001062 // Finally, now that we know we have an identifier, pass this off to the
1063 // preprocessor, which may macro expand it or something.
Chris Lattnerd1186fa2009-01-21 07:45:14 +00001064 if (II->isHandleIdentifierCase())
Chris Lattner6a170eb2009-01-21 07:43:11 +00001065 PP->HandleIdentifier(Result);
1066 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001067 }
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Reid Spencer5f016e22007-07-11 17:01:13 +00001069 // Otherwise, $,\,? in identifier found. Enter slower path.
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Reid Spencer5f016e22007-07-11 17:01:13 +00001071 C = getCharAndSize(CurPtr, Size);
1072 while (1) {
1073 if (C == '$') {
1074 // If we hit a $ and they are not supported in identifiers, we are done.
1075 if (!Features.DollarIdents) goto FinishIdentifier;
Mike Stump1eb44332009-09-09 15:08:12 +00001076
Reid Spencer5f016e22007-07-11 17:01:13 +00001077 // Otherwise, emit a diagnostic and continue.
Chris Lattner74d15df2008-11-22 02:02:22 +00001078 if (!isLexingRawMode())
1079 Diag(CurPtr, diag::ext_dollar_in_identifier);
Reid Spencer5f016e22007-07-11 17:01:13 +00001080 CurPtr = ConsumeChar(CurPtr, Size, Result);
1081 C = getCharAndSize(CurPtr, Size);
1082 continue;
1083 } else if (!isIdentifierBody(C)) { // FIXME: UCNs.
1084 // Found end of identifier.
1085 goto FinishIdentifier;
1086 }
1087
1088 // Otherwise, this character is good, consume it.
1089 CurPtr = ConsumeChar(CurPtr, Size, Result);
1090
1091 C = getCharAndSize(CurPtr, Size);
1092 while (isIdentifierBody(C)) { // FIXME: UCNs.
1093 CurPtr = ConsumeChar(CurPtr, Size, Result);
1094 C = getCharAndSize(CurPtr, Size);
1095 }
1096 }
1097}
1098
Douglas Gregora75ec432010-08-30 14:50:47 +00001099/// isHexaLiteral - Return true if Start points to a hex constant.
Chris Lattner4a551002010-08-30 17:11:14 +00001100/// in microsoft mode (where this is supposed to be several different tokens).
Chris Lattner6ab55eb2010-08-31 16:42:00 +00001101static bool isHexaLiteral(const char *Start, const LangOptions &Features) {
1102 unsigned Size;
1103 char C1 = Lexer::getCharAndSizeNoWarn(Start, Size, Features);
1104 if (C1 != '0')
1105 return false;
1106 char C2 = Lexer::getCharAndSizeNoWarn(Start + Size, Size, Features);
1107 return (C2 == 'x' || C2 == 'X');
Douglas Gregora75ec432010-08-30 14:50:47 +00001108}
Reid Spencer5f016e22007-07-11 17:01:13 +00001109
Nate Begeman5253c7f2008-04-14 02:26:39 +00001110/// LexNumericConstant - Lex the remainder of a integer or floating point
Reid Spencer5f016e22007-07-11 17:01:13 +00001111/// constant. From[-1] is the first character lexed. Return the end of the
1112/// constant.
Chris Lattnerd2177732007-07-20 16:59:19 +00001113void Lexer::LexNumericConstant(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001114 unsigned Size;
1115 char C = getCharAndSize(CurPtr, Size);
1116 char PrevCh = 0;
1117 while (isNumberBody(C)) { // FIXME: UCNs?
1118 CurPtr = ConsumeChar(CurPtr, Size, Result);
1119 PrevCh = C;
1120 C = getCharAndSize(CurPtr, Size);
1121 }
Mike Stump1eb44332009-09-09 15:08:12 +00001122
Reid Spencer5f016e22007-07-11 17:01:13 +00001123 // If we fell out, check for a sign, due to 1e+12. If we have one, continue.
Chris Lattnerb2f4a202010-08-30 17:09:08 +00001124 if ((C == '-' || C == '+') && (PrevCh == 'E' || PrevCh == 'e')) {
1125 // If we are in Microsoft mode, don't continue if the constant is hex.
1126 // For example, MSVC will accept the following as 3 tokens: 0x1234567e+1
Chris Lattner6ab55eb2010-08-31 16:42:00 +00001127 if (!Features.Microsoft || !isHexaLiteral(BufferPtr, Features))
Chris Lattnerb2f4a202010-08-30 17:09:08 +00001128 return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result));
1129 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001130
1131 // If we have a hex FP constant, continue.
Sean Hunt8c723402010-01-10 23:37:56 +00001132 if ((C == '-' || C == '+') && (PrevCh == 'P' || PrevCh == 'p') &&
Chris Lattnerb2f4a202010-08-30 17:09:08 +00001133 !Features.CPlusPlus0x)
Reid Spencer5f016e22007-07-11 17:01:13 +00001134 return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result));
Mike Stump1eb44332009-09-09 15:08:12 +00001135
Reid Spencer5f016e22007-07-11 17:01:13 +00001136 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +00001137 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001138 FormTokenWithChars(Result, CurPtr, tok::numeric_constant);
Chris Lattner47246be2009-01-26 19:29:26 +00001139 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001140}
1141
1142/// LexStringLiteral - Lex the remainder of a string literal, after having lexed
1143/// either " or L".
Chris Lattnerd88dc482008-10-12 04:05:48 +00001144void Lexer::LexStringLiteral(Token &Result, const char *CurPtr, bool Wide) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001145 const char *NulCharacter = 0; // Does this string contain the \0 character?
Mike Stump1eb44332009-09-09 15:08:12 +00001146
Reid Spencer5f016e22007-07-11 17:01:13 +00001147 char C = getAndAdvanceChar(CurPtr, Result);
1148 while (C != '"') {
Chris Lattner571339c2010-05-30 23:27:38 +00001149 // Skip escaped characters. Escaped newlines will already be processed by
1150 // getAndAdvanceChar.
1151 if (C == '\\')
Reid Spencer5f016e22007-07-11 17:01:13 +00001152 C = getAndAdvanceChar(CurPtr, Result);
Douglas Gregor33611e02010-05-30 22:59:50 +00001153
Chris Lattner571339c2010-05-30 23:27:38 +00001154 if (C == '\n' || C == '\r' || // Newline.
Douglas Gregor33611e02010-05-30 22:59:50 +00001155 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Douglas Gregor55817af2010-08-25 17:04:25 +00001156 if (C == 0 && PP && PP->isCodeCompletionFile(FileLoc))
1157 PP->CodeCompleteNaturalLanguage();
1158 else if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattner74d15df2008-11-22 02:02:22 +00001159 Diag(BufferPtr, diag::err_unterminated_string);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001160 FormTokenWithChars(Result, CurPtr-1, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +00001161 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001162 }
Chris Lattner571339c2010-05-30 23:27:38 +00001163
1164 if (C == 0)
1165 NulCharacter = CurPtr-1;
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 C = getAndAdvanceChar(CurPtr, Result);
1167 }
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Reid Spencer5f016e22007-07-11 17:01:13 +00001169 // If a nul character existed in the string, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001170 if (NulCharacter && !isLexingRawMode())
1171 Diag(NulCharacter, diag::null_in_string);
Reid Spencer5f016e22007-07-11 17:01:13 +00001172
Reid Spencer5f016e22007-07-11 17:01:13 +00001173 // Update the location of the token as well as the BufferPtr instance var.
Chris Lattner47246be2009-01-26 19:29:26 +00001174 const char *TokStart = BufferPtr;
Sean Hunt6cf75022010-08-30 17:47:05 +00001175 FormTokenWithChars(Result, CurPtr,
1176 Wide ? tok::wide_string_literal : tok::string_literal);
Chris Lattner47246be2009-01-26 19:29:26 +00001177 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001178}
1179
1180/// LexAngledStringLiteral - Lex the remainder of an angled string literal,
1181/// after having lexed the '<' character. This is used for #include filenames.
Chris Lattnerd2177732007-07-20 16:59:19 +00001182void Lexer::LexAngledStringLiteral(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001183 const char *NulCharacter = 0; // Does this string contain the \0 character?
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001184 const char *AfterLessPos = CurPtr;
Reid Spencer5f016e22007-07-11 17:01:13 +00001185 char C = getAndAdvanceChar(CurPtr, Result);
1186 while (C != '>') {
1187 // Skip escaped characters.
1188 if (C == '\\') {
1189 // Skip the escaped character.
1190 C = getAndAdvanceChar(CurPtr, Result);
1191 } else if (C == '\n' || C == '\r' || // Newline.
1192 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001193 // If the filename is unterminated, then it must just be a lone <
1194 // character. Return this as such.
1195 FormTokenWithChars(Result, AfterLessPos, tok::less);
Reid Spencer5f016e22007-07-11 17:01:13 +00001196 return;
1197 } else if (C == 0) {
1198 NulCharacter = CurPtr-1;
1199 }
1200 C = getAndAdvanceChar(CurPtr, Result);
1201 }
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Reid Spencer5f016e22007-07-11 17:01:13 +00001203 // If a nul character existed in the string, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001204 if (NulCharacter && !isLexingRawMode())
1205 Diag(NulCharacter, diag::null_in_string);
Mike Stump1eb44332009-09-09 15:08:12 +00001206
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +00001208 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001209 FormTokenWithChars(Result, CurPtr, tok::angle_string_literal);
Chris Lattner47246be2009-01-26 19:29:26 +00001210 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001211}
1212
1213
1214/// LexCharConstant - Lex the remainder of a character constant, after having
1215/// lexed either ' or L'.
Chris Lattnerd2177732007-07-20 16:59:19 +00001216void Lexer::LexCharConstant(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001217 const char *NulCharacter = 0; // Does this character contain the \0 character?
1218
Reid Spencer5f016e22007-07-11 17:01:13 +00001219 char C = getAndAdvanceChar(CurPtr, Result);
1220 if (C == '\'') {
Chris Lattner33ab3f62009-03-18 21:10:12 +00001221 if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattner74d15df2008-11-22 02:02:22 +00001222 Diag(BufferPtr, diag::err_empty_character);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001223 FormTokenWithChars(Result, CurPtr, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +00001224 return;
Chris Lattnerd80f7862010-07-07 23:24:27 +00001225 }
1226
1227 while (C != '\'') {
1228 // Skip escaped characters.
1229 if (C == '\\') {
1230 // Skip the escaped character.
1231 // FIXME: UCN's
1232 C = getAndAdvanceChar(CurPtr, Result);
1233 } else if (C == '\n' || C == '\r' || // Newline.
1234 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Douglas Gregor55817af2010-08-25 17:04:25 +00001235 if (C == 0 && PP && PP->isCodeCompletionFile(FileLoc))
1236 PP->CodeCompleteNaturalLanguage();
1237 else if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattnerd80f7862010-07-07 23:24:27 +00001238 Diag(BufferPtr, diag::err_unterminated_char);
1239 FormTokenWithChars(Result, CurPtr-1, tok::unknown);
1240 return;
1241 } else if (C == 0) {
1242 NulCharacter = CurPtr-1;
1243 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001244 C = getAndAdvanceChar(CurPtr, Result);
1245 }
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Chris Lattnerd80f7862010-07-07 23:24:27 +00001247 // If a nul character existed in the character, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001248 if (NulCharacter && !isLexingRawMode())
1249 Diag(NulCharacter, diag::null_in_char);
Reid Spencer5f016e22007-07-11 17:01:13 +00001250
Reid Spencer5f016e22007-07-11 17:01:13 +00001251 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +00001252 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001253 FormTokenWithChars(Result, CurPtr, tok::char_constant);
Chris Lattner47246be2009-01-26 19:29:26 +00001254 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +00001255}
1256
1257/// SkipWhitespace - Efficiently skip over a series of whitespace characters.
1258/// Update BufferPtr to point to the next non-whitespace character and return.
Chris Lattnerd88dc482008-10-12 04:05:48 +00001259///
1260/// This method forms a token and returns true if KeepWhitespaceMode is enabled.
1261///
1262bool Lexer::SkipWhitespace(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001263 // Whitespace - Skip it, then return the token after the whitespace.
1264 unsigned char Char = *CurPtr; // Skip consequtive spaces efficiently.
1265 while (1) {
1266 // Skip horizontal whitespace very aggressively.
1267 while (isHorizontalWhitespace(Char))
1268 Char = *++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001269
Daniel Dunbarddd3e8b2008-11-25 00:20:22 +00001270 // Otherwise if we have something other than whitespace, we're done.
Reid Spencer5f016e22007-07-11 17:01:13 +00001271 if (Char != '\n' && Char != '\r')
1272 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Reid Spencer5f016e22007-07-11 17:01:13 +00001274 if (ParsingPreprocessorDirective) {
1275 // End of preprocessor directive line, let LexTokenInternal handle this.
1276 BufferPtr = CurPtr;
Chris Lattnerd88dc482008-10-12 04:05:48 +00001277 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001278 }
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Reid Spencer5f016e22007-07-11 17:01:13 +00001280 // ok, but handle newline.
1281 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001282 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001283 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001284 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001285 Char = *++CurPtr;
1286 }
1287
1288 // If this isn't immediately after a newline, there is leading space.
1289 char PrevChar = CurPtr[-1];
1290 if (PrevChar != '\n' && PrevChar != '\r')
Chris Lattnerd2177732007-07-20 16:59:19 +00001291 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001292
Chris Lattnerd88dc482008-10-12 04:05:48 +00001293 // If the client wants us to return whitespace, return it now.
1294 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001295 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001296 return true;
1297 }
Mike Stump1eb44332009-09-09 15:08:12 +00001298
Reid Spencer5f016e22007-07-11 17:01:13 +00001299 BufferPtr = CurPtr;
Chris Lattnerd88dc482008-10-12 04:05:48 +00001300 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001301}
1302
1303// SkipBCPLComment - We have just read the // characters from input. Skip until
1304// we find the newline character thats terminate the comment. Then update
Chris Lattner046c2272010-01-18 22:35:47 +00001305/// BufferPtr and return.
1306///
1307/// If we're in KeepCommentMode or any CommentHandler has inserted
1308/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +00001309bool Lexer::SkipBCPLComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001310 // If BCPL comments aren't explicitly enabled for this language, emit an
1311 // extension warning.
Chris Lattner74d15df2008-11-22 02:02:22 +00001312 if (!Features.BCPLComment && !isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001313 Diag(BufferPtr, diag::ext_bcpl_comment);
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Reid Spencer5f016e22007-07-11 17:01:13 +00001315 // Mark them enabled so we only emit one warning for this translation
1316 // unit.
1317 Features.BCPLComment = true;
1318 }
Mike Stump1eb44332009-09-09 15:08:12 +00001319
Reid Spencer5f016e22007-07-11 17:01:13 +00001320 // Scan over the body of the comment. The common case, when scanning, is that
1321 // the comment contains normal ascii characters with nothing interesting in
1322 // them. As such, optimize for this case with the inner loop.
1323 char C;
1324 do {
1325 C = *CurPtr;
1326 // FIXME: Speedup BCPL comment lexing. Just scan for a \n or \r character.
1327 // If we find a \n character, scan backwards, checking to see if it's an
1328 // escaped newline, like we do for block comments.
Mike Stump1eb44332009-09-09 15:08:12 +00001329
Reid Spencer5f016e22007-07-11 17:01:13 +00001330 // Skip over characters in the fast loop.
1331 while (C != 0 && // Potentially EOF.
1332 C != '\\' && // Potentially escaped newline.
1333 C != '?' && // Potentially trigraph.
1334 C != '\n' && C != '\r') // Newline or DOS-style newline.
1335 C = *++CurPtr;
1336
1337 // If this is a newline, we're done.
1338 if (C == '\n' || C == '\r')
1339 break; // Found the newline? Break out!
Mike Stump1eb44332009-09-09 15:08:12 +00001340
Reid Spencer5f016e22007-07-11 17:01:13 +00001341 // Otherwise, this is a hard case. Fall back on getAndAdvanceChar to
Chris Lattnerbc3e9842008-12-12 07:34:39 +00001342 // properly decode the character. Read it in raw mode to avoid emitting
1343 // diagnostics about things like trigraphs. If we see an escaped newline,
1344 // we'll handle it below.
Reid Spencer5f016e22007-07-11 17:01:13 +00001345 const char *OldPtr = CurPtr;
Chris Lattnerbc3e9842008-12-12 07:34:39 +00001346 bool OldRawMode = isLexingRawMode();
1347 LexingRawMode = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001348 C = getAndAdvanceChar(CurPtr, Result);
Chris Lattnerbc3e9842008-12-12 07:34:39 +00001349 LexingRawMode = OldRawMode;
Chris Lattneread616c2009-04-05 00:26:41 +00001350
1351 // If the char that we finally got was a \n, then we must have had something
1352 // like \<newline><newline>. We don't want to have consumed the second
1353 // newline, we want CurPtr, to end up pointing to it down below.
1354 if (C == '\n' || C == '\r') {
1355 --CurPtr;
1356 C = 'x'; // doesn't matter what this is.
1357 }
Mike Stump1eb44332009-09-09 15:08:12 +00001358
Reid Spencer5f016e22007-07-11 17:01:13 +00001359 // If we read multiple characters, and one of those characters was a \r or
1360 // \n, then we had an escaped newline within the comment. Emit diagnostic
1361 // unless the next line is also a // comment.
1362 if (CurPtr != OldPtr+1 && C != '/' && CurPtr[0] != '/') {
1363 for (; OldPtr != CurPtr; ++OldPtr)
1364 if (OldPtr[0] == '\n' || OldPtr[0] == '\r') {
1365 // Okay, we found a // comment that ends in a newline, if the next
1366 // line is also a // comment, but has spaces, don't emit a diagnostic.
1367 if (isspace(C)) {
1368 const char *ForwardPtr = CurPtr;
1369 while (isspace(*ForwardPtr)) // Skip whitespace.
1370 ++ForwardPtr;
1371 if (ForwardPtr[0] == '/' && ForwardPtr[1] == '/')
1372 break;
1373 }
Mike Stump1eb44332009-09-09 15:08:12 +00001374
Chris Lattner74d15df2008-11-22 02:02:22 +00001375 if (!isLexingRawMode())
1376 Diag(OldPtr-1, diag::ext_multi_line_bcpl_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 break;
1378 }
1379 }
Mike Stump1eb44332009-09-09 15:08:12 +00001380
Douglas Gregor55817af2010-08-25 17:04:25 +00001381 if (CurPtr == BufferEnd+1) {
1382 if (PP && PP->isCodeCompletionFile(FileLoc))
1383 PP->CodeCompleteNaturalLanguage();
1384
1385 --CurPtr;
1386 break;
1387 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001388 } while (C != '\n' && C != '\r');
1389
Chris Lattner3d0ad582010-02-03 21:06:21 +00001390 // Found but did not consume the newline. Notify comment handlers about the
1391 // comment unless we're in a #if 0 block.
1392 if (PP && !isLexingRawMode() &&
1393 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
1394 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +00001395 BufferPtr = CurPtr;
1396 return true; // A token has to be returned.
1397 }
Mike Stump1eb44332009-09-09 15:08:12 +00001398
Reid Spencer5f016e22007-07-11 17:01:13 +00001399 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001400 if (inKeepCommentMode())
Reid Spencer5f016e22007-07-11 17:01:13 +00001401 return SaveBCPLComment(Result, CurPtr);
1402
1403 // If we are inside a preprocessor directive and we see the end of line,
1404 // return immediately, so that the lexer can return this as an EOM token.
1405 if (ParsingPreprocessorDirective || CurPtr == BufferEnd) {
1406 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001407 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001408 }
Mike Stump1eb44332009-09-09 15:08:12 +00001409
Reid Spencer5f016e22007-07-11 17:01:13 +00001410 // Otherwise, eat the \n character. We don't care if this is a \n\r or
Chris Lattner7a4f0042008-10-12 00:23:07 +00001411 // \r\n sequence. This is an efficiency hack (because we know the \n can't
Chris Lattnerd88dc482008-10-12 04:05:48 +00001412 // contribute to another token), it isn't needed for correctness. Note that
1413 // this is ok even in KeepWhitespaceMode, because we would have returned the
1414 /// comment above in that mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001416
Reid Spencer5f016e22007-07-11 17:01:13 +00001417 // The next returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001418 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001419 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001420 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001421 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001422 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001423}
1424
1425/// SaveBCPLComment - If in save-comment mode, package up this BCPL comment in
1426/// an appropriate way and return it.
Chris Lattnerd2177732007-07-20 16:59:19 +00001427bool Lexer::SaveBCPLComment(Token &Result, const char *CurPtr) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001428 // If we're not in a preprocessor directive, just return the // comment
1429 // directly.
1430 FormTokenWithChars(Result, CurPtr, tok::comment);
Mike Stump1eb44332009-09-09 15:08:12 +00001431
Chris Lattner9e6293d2008-10-12 04:51:35 +00001432 if (!ParsingPreprocessorDirective)
1433 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Chris Lattner9e6293d2008-10-12 04:51:35 +00001435 // If this BCPL-style comment is in a macro definition, transmogrify it into
1436 // a C-style block comment.
Douglas Gregor453091c2010-03-16 22:30:13 +00001437 bool Invalid = false;
1438 std::string Spelling = PP->getSpelling(Result, &Invalid);
1439 if (Invalid)
1440 return true;
1441
Chris Lattner9e6293d2008-10-12 04:51:35 +00001442 assert(Spelling[0] == '/' && Spelling[1] == '/' && "Not bcpl comment?");
1443 Spelling[1] = '*'; // Change prefix to "/*".
1444 Spelling += "*/"; // add suffix.
Mike Stump1eb44332009-09-09 15:08:12 +00001445
Chris Lattner9e6293d2008-10-12 04:51:35 +00001446 Result.setKind(tok::comment);
Chris Lattner47246be2009-01-26 19:29:26 +00001447 PP->CreateString(&Spelling[0], Spelling.size(), Result,
1448 Result.getLocation());
Chris Lattner2d381892008-10-12 04:15:42 +00001449 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001450}
1451
1452/// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline
1453/// character (either \n or \r) is part of an escaped newline sequence. Issue a
Chris Lattner47a2b402008-12-12 07:14:34 +00001454/// diagnostic if so. We know that the newline is inside of a block comment.
Mike Stump1eb44332009-09-09 15:08:12 +00001455static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr,
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 Lexer *L) {
1457 assert(CurPtr[0] == '\n' || CurPtr[0] == '\r');
Mike Stump1eb44332009-09-09 15:08:12 +00001458
Reid Spencer5f016e22007-07-11 17:01:13 +00001459 // Back up off the newline.
1460 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001461
Reid Spencer5f016e22007-07-11 17:01:13 +00001462 // If this is a two-character newline sequence, skip the other character.
1463 if (CurPtr[0] == '\n' || CurPtr[0] == '\r') {
1464 // \n\n or \r\r -> not escaped newline.
1465 if (CurPtr[0] == CurPtr[1])
1466 return false;
1467 // \n\r or \r\n -> skip the newline.
1468 --CurPtr;
1469 }
Mike Stump1eb44332009-09-09 15:08:12 +00001470
Reid Spencer5f016e22007-07-11 17:01:13 +00001471 // If we have horizontal whitespace, skip over it. We allow whitespace
1472 // between the slash and newline.
1473 bool HasSpace = false;
1474 while (isHorizontalWhitespace(*CurPtr) || *CurPtr == 0) {
1475 --CurPtr;
1476 HasSpace = true;
1477 }
Mike Stump1eb44332009-09-09 15:08:12 +00001478
Reid Spencer5f016e22007-07-11 17:01:13 +00001479 // If we have a slash, we know this is an escaped newline.
1480 if (*CurPtr == '\\') {
1481 if (CurPtr[-1] != '*') return false;
1482 } else {
1483 // It isn't a slash, is it the ?? / trigraph?
1484 if (CurPtr[0] != '/' || CurPtr[-1] != '?' || CurPtr[-2] != '?' ||
1485 CurPtr[-3] != '*')
1486 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001487
Reid Spencer5f016e22007-07-11 17:01:13 +00001488 // This is the trigraph ending the comment. Emit a stern warning!
1489 CurPtr -= 2;
1490
1491 // If no trigraphs are enabled, warn that we ignored this trigraph and
1492 // ignore this * character.
1493 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001494 if (!L->isLexingRawMode())
1495 L->Diag(CurPtr, diag::trigraph_ignored_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001496 return false;
1497 }
Chris Lattner74d15df2008-11-22 02:02:22 +00001498 if (!L->isLexingRawMode())
1499 L->Diag(CurPtr, diag::trigraph_ends_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001500 }
Mike Stump1eb44332009-09-09 15:08:12 +00001501
Reid Spencer5f016e22007-07-11 17:01:13 +00001502 // Warn about having an escaped newline between the */ characters.
Chris Lattner74d15df2008-11-22 02:02:22 +00001503 if (!L->isLexingRawMode())
1504 L->Diag(CurPtr, diag::escaped_newline_block_comment_end);
Mike Stump1eb44332009-09-09 15:08:12 +00001505
Reid Spencer5f016e22007-07-11 17:01:13 +00001506 // If there was space between the backslash and newline, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001507 if (HasSpace && !L->isLexingRawMode())
1508 L->Diag(CurPtr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +00001509
Reid Spencer5f016e22007-07-11 17:01:13 +00001510 return true;
1511}
1512
1513#ifdef __SSE2__
1514#include <emmintrin.h>
1515#elif __ALTIVEC__
1516#include <altivec.h>
1517#undef bool
1518#endif
1519
1520/// SkipBlockComment - We have just read the /* characters from input. Read
1521/// until we find the */ characters that terminate the comment. Note that we
1522/// don't bother decoding trigraphs or escaped newlines in block comments,
1523/// because they cannot cause the comment to end. The only thing that can
1524/// happen is the comment could end with an escaped newline between the */ end
1525/// of comment.
Chris Lattner2d381892008-10-12 04:15:42 +00001526///
Chris Lattner046c2272010-01-18 22:35:47 +00001527/// If we're in KeepCommentMode or any CommentHandler has inserted
1528/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +00001529bool Lexer::SkipBlockComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001530 // Scan one character past where we should, looking for a '/' character. Once
1531 // we find it, check to see if it was preceeded by a *. This common
1532 // optimization helps people who like to put a lot of * characters in their
1533 // comments.
Chris Lattner8146b682007-07-21 23:43:37 +00001534
1535 // The first character we get with newlines and trigraphs skipped to handle
1536 // the degenerate /*/ case below correctly if the * has an escaped newline
1537 // after it.
1538 unsigned CharSize;
1539 unsigned char C = getCharAndSize(CurPtr, CharSize);
1540 CurPtr += CharSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001541 if (C == 0 && CurPtr == BufferEnd+1) {
Chris Lattner150fcd52010-05-16 19:54:05 +00001542 if (!isLexingRawMode() &&
1543 !PP->isCodeCompletionFile(FileLoc))
Chris Lattner0af57422008-10-12 01:31:51 +00001544 Diag(BufferPtr, diag::err_unterminated_block_comment);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001545 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001546
Chris Lattner31f0eca2008-10-12 04:19:49 +00001547 // KeepWhitespaceMode should return this broken comment as a token. Since
1548 // it isn't a well formed comment, just return it as an 'unknown' token.
1549 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001550 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001551 return true;
1552 }
Mike Stump1eb44332009-09-09 15:08:12 +00001553
Chris Lattner31f0eca2008-10-12 04:19:49 +00001554 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001555 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001556 }
Mike Stump1eb44332009-09-09 15:08:12 +00001557
Chris Lattner8146b682007-07-21 23:43:37 +00001558 // Check to see if the first character after the '/*' is another /. If so,
1559 // then this slash does not end the block comment, it is part of it.
1560 if (C == '/')
1561 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001562
Reid Spencer5f016e22007-07-11 17:01:13 +00001563 while (1) {
1564 // Skip over all non-interesting characters until we find end of buffer or a
1565 // (probably ending) '/' character.
1566 if (CurPtr + 24 < BufferEnd) {
1567 // While not aligned to a 16-byte boundary.
1568 while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0)
1569 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001570
Reid Spencer5f016e22007-07-11 17:01:13 +00001571 if (C == '/') goto FoundSlash;
1572
1573#ifdef __SSE2__
1574 __m128i Slashes = _mm_set_epi8('/', '/', '/', '/', '/', '/', '/', '/',
1575 '/', '/', '/', '/', '/', '/', '/', '/');
1576 while (CurPtr+16 <= BufferEnd &&
1577 _mm_movemask_epi8(_mm_cmpeq_epi8(*(__m128i*)CurPtr, Slashes)) == 0)
1578 CurPtr += 16;
1579#elif __ALTIVEC__
1580 __vector unsigned char Slashes = {
Mike Stump1eb44332009-09-09 15:08:12 +00001581 '/', '/', '/', '/', '/', '/', '/', '/',
Reid Spencer5f016e22007-07-11 17:01:13 +00001582 '/', '/', '/', '/', '/', '/', '/', '/'
1583 };
1584 while (CurPtr+16 <= BufferEnd &&
1585 !vec_any_eq(*(vector unsigned char*)CurPtr, Slashes))
1586 CurPtr += 16;
Mike Stump1eb44332009-09-09 15:08:12 +00001587#else
Reid Spencer5f016e22007-07-11 17:01:13 +00001588 // Scan for '/' quickly. Many block comments are very large.
1589 while (CurPtr[0] != '/' &&
1590 CurPtr[1] != '/' &&
1591 CurPtr[2] != '/' &&
1592 CurPtr[3] != '/' &&
1593 CurPtr+4 < BufferEnd) {
1594 CurPtr += 4;
1595 }
1596#endif
Mike Stump1eb44332009-09-09 15:08:12 +00001597
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 // It has to be one of the bytes scanned, increment to it and read one.
1599 C = *CurPtr++;
1600 }
Mike Stump1eb44332009-09-09 15:08:12 +00001601
Reid Spencer5f016e22007-07-11 17:01:13 +00001602 // Loop to scan the remainder.
1603 while (C != '/' && C != '\0')
1604 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001605
Reid Spencer5f016e22007-07-11 17:01:13 +00001606 FoundSlash:
1607 if (C == '/') {
1608 if (CurPtr[-2] == '*') // We found the final */. We're done!
1609 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001610
Reid Spencer5f016e22007-07-11 17:01:13 +00001611 if ((CurPtr[-2] == '\n' || CurPtr[-2] == '\r')) {
1612 if (isEndOfBlockCommentWithEscapedNewLine(CurPtr-2, this)) {
1613 // We found the final */, though it had an escaped newline between the
1614 // * and /. We're done!
1615 break;
1616 }
1617 }
1618 if (CurPtr[0] == '*' && CurPtr[1] != '/') {
1619 // If this is a /* inside of the comment, emit a warning. Don't do this
1620 // if this is a /*/, which will end the comment. This misses cases with
1621 // embedded escaped newlines, but oh well.
Chris Lattner74d15df2008-11-22 02:02:22 +00001622 if (!isLexingRawMode())
1623 Diag(CurPtr-1, diag::warn_nested_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001624 }
1625 } else if (C == 0 && CurPtr == BufferEnd+1) {
Douglas Gregor55817af2010-08-25 17:04:25 +00001626 if (PP && PP->isCodeCompletionFile(FileLoc))
1627 PP->CodeCompleteNaturalLanguage();
1628 else if (!isLexingRawMode())
Chris Lattner74d15df2008-11-22 02:02:22 +00001629 Diag(BufferPtr, diag::err_unterminated_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001630 // Note: the user probably forgot a */. We could continue immediately
1631 // after the /*, but this would involve lexing a lot of what really is the
1632 // comment, which surely would confuse the parser.
Chris Lattner31f0eca2008-10-12 04:19:49 +00001633 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001634
Chris Lattner31f0eca2008-10-12 04:19:49 +00001635 // KeepWhitespaceMode should return this broken comment as a token. Since
1636 // it isn't a well formed comment, just return it as an 'unknown' token.
1637 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001638 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001639 return true;
1640 }
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Chris Lattner31f0eca2008-10-12 04:19:49 +00001642 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001643 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001644 }
1645 C = *CurPtr++;
1646 }
Mike Stump1eb44332009-09-09 15:08:12 +00001647
Chris Lattner3d0ad582010-02-03 21:06:21 +00001648 // Notify comment handlers about the comment unless we're in a #if 0 block.
1649 if (PP && !isLexingRawMode() &&
1650 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
1651 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +00001652 BufferPtr = CurPtr;
1653 return true; // A token has to be returned.
1654 }
Douglas Gregor2e222532009-07-02 17:08:52 +00001655
Reid Spencer5f016e22007-07-11 17:01:13 +00001656 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001657 if (inKeepCommentMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001658 FormTokenWithChars(Result, CurPtr, tok::comment);
Chris Lattner2d381892008-10-12 04:15:42 +00001659 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001660 }
1661
1662 // It is common for the tokens immediately after a /**/ comment to be
1663 // whitespace. Instead of going through the big switch, handle it
Chris Lattnerd88dc482008-10-12 04:05:48 +00001664 // efficiently now. This is safe even in KeepWhitespaceMode because we would
1665 // have already returned above with the comment as a token.
Reid Spencer5f016e22007-07-11 17:01:13 +00001666 if (isHorizontalWhitespace(*CurPtr)) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001667 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001668 SkipWhitespace(Result, CurPtr+1);
Chris Lattner2d381892008-10-12 04:15:42 +00001669 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001670 }
1671
1672 // Otherwise, just return so that the next character will be lexed as a token.
1673 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001674 Result.setFlag(Token::LeadingSpace);
Chris Lattner2d381892008-10-12 04:15:42 +00001675 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001676}
1677
1678//===----------------------------------------------------------------------===//
1679// Primary Lexing Entry Points
1680//===----------------------------------------------------------------------===//
1681
Reid Spencer5f016e22007-07-11 17:01:13 +00001682/// ReadToEndOfLine - Read the rest of the current preprocessor line as an
1683/// uninterpreted string. This switches the lexer out of directive mode.
1684std::string Lexer::ReadToEndOfLine() {
1685 assert(ParsingPreprocessorDirective && ParsingFilename == false &&
1686 "Must be in a preprocessing directive!");
1687 std::string Result;
Chris Lattnerd2177732007-07-20 16:59:19 +00001688 Token Tmp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001689
1690 // CurPtr - Cache BufferPtr in an automatic variable.
1691 const char *CurPtr = BufferPtr;
1692 while (1) {
1693 char Char = getAndAdvanceChar(CurPtr, Tmp);
1694 switch (Char) {
1695 default:
1696 Result += Char;
1697 break;
1698 case 0: // Null.
1699 // Found end of file?
1700 if (CurPtr-1 != BufferEnd) {
1701 // Nope, normal character, continue.
1702 Result += Char;
1703 break;
1704 }
1705 // FALL THROUGH.
1706 case '\r':
1707 case '\n':
1708 // Okay, we found the end of the line. First, back up past the \0, \r, \n.
1709 assert(CurPtr[-1] == Char && "Trigraphs for newline?");
1710 BufferPtr = CurPtr-1;
Mike Stump1eb44332009-09-09 15:08:12 +00001711
Reid Spencer5f016e22007-07-11 17:01:13 +00001712 // Next, lex the character, which should handle the EOM transition.
1713 Lex(Tmp);
Douglas Gregor55817af2010-08-25 17:04:25 +00001714 if (Tmp.is(tok::code_completion)) {
1715 if (PP && PP->getCodeCompletionHandler())
1716 PP->getCodeCompletionHandler()->CodeCompleteNaturalLanguage();
1717 Lex(Tmp);
1718 }
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001719 assert(Tmp.is(tok::eom) && "Unexpected token!");
Mike Stump1eb44332009-09-09 15:08:12 +00001720
Reid Spencer5f016e22007-07-11 17:01:13 +00001721 // Finally, we're done, return the string we found.
1722 return Result;
1723 }
1724 }
1725}
1726
1727/// LexEndOfFile - CurPtr points to the end of this file. Handle this
1728/// condition, reporting diagnostics and handling other edge cases as required.
1729/// This returns true if Result contains a token, false if PP.Lex should be
1730/// called again.
Chris Lattnerd2177732007-07-20 16:59:19 +00001731bool Lexer::LexEndOfFile(Token &Result, const char *CurPtr) {
Douglas Gregorf44e8542010-08-24 19:08:16 +00001732 // Check if we are performing code completion.
1733 if (PP && PP->isCodeCompletionFile(FileLoc)) {
1734 // We're at the end of the file, but we've been asked to consider the
1735 // end of the file to be a code-completion token. Return the
1736 // code-completion token.
1737 Result.startToken();
1738 FormTokenWithChars(Result, CurPtr, tok::code_completion);
1739
1740 // Only do the eof -> code_completion translation once.
1741 PP->SetCodeCompletionPoint(0, 0, 0);
1742
1743 // Silence any diagnostics that occur once we hit the code-completion point.
1744 PP->getDiagnostics().setSuppressAllDiagnostics(true);
1745 return true;
1746 }
1747
Reid Spencer5f016e22007-07-11 17:01:13 +00001748 // If we hit the end of the file while parsing a preprocessor directive,
1749 // end the preprocessor directive first. The next token returned will
1750 // then be the end of file.
1751 if (ParsingPreprocessorDirective) {
1752 // Done parsing the "line".
1753 ParsingPreprocessorDirective = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001754 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00001755 FormTokenWithChars(Result, CurPtr, tok::eom);
Mike Stump1eb44332009-09-09 15:08:12 +00001756
Reid Spencer5f016e22007-07-11 17:01:13 +00001757 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00001758 SetCommentRetentionState(PP->getCommentRetentionState());
Reid Spencer5f016e22007-07-11 17:01:13 +00001759 return true; // Have a token.
Mike Stump1eb44332009-09-09 15:08:12 +00001760 }
Douglas Gregor86d9a522009-09-21 16:56:56 +00001761
Reid Spencer5f016e22007-07-11 17:01:13 +00001762 // If we are in raw mode, return this event as an EOF token. Let the caller
1763 // that put us in raw mode handle the event.
Chris Lattner74d15df2008-11-22 02:02:22 +00001764 if (isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001765 Result.startToken();
1766 BufferPtr = BufferEnd;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001767 FormTokenWithChars(Result, BufferEnd, tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +00001768 return true;
1769 }
Douglas Gregor86d9a522009-09-21 16:56:56 +00001770
Douglas Gregorf44e8542010-08-24 19:08:16 +00001771 // Issue diagnostics for unterminated #if and missing newline.
1772
Reid Spencer5f016e22007-07-11 17:01:13 +00001773 // If we are in a #if directive, emit an error.
1774 while (!ConditionalStack.empty()) {
Douglas Gregor2d474ba2010-08-12 17:04:55 +00001775 if (!PP->isCodeCompletionFile(FileLoc))
1776 PP->Diag(ConditionalStack.back().IfLoc,
1777 diag::err_pp_unterminated_conditional);
Reid Spencer5f016e22007-07-11 17:01:13 +00001778 ConditionalStack.pop_back();
1779 }
Mike Stump1eb44332009-09-09 15:08:12 +00001780
Chris Lattnerb25e5d72008-04-12 05:54:25 +00001781 // C99 5.1.1.2p2: If the file is non-empty and didn't end in a newline, issue
1782 // a pedwarn.
1783 if (CurPtr != BufferStart && (CurPtr[-1] != '\n' && CurPtr[-1] != '\r'))
Mike Stump20d0ee52009-04-02 02:29:42 +00001784 Diag(BufferEnd, diag::ext_no_newline_eof)
Douglas Gregor849b2432010-03-31 17:46:05 +00001785 << FixItHint::CreateInsertion(getSourceLocation(BufferEnd), "\n");
Mike Stump1eb44332009-09-09 15:08:12 +00001786
Reid Spencer5f016e22007-07-11 17:01:13 +00001787 BufferPtr = CurPtr;
1788
1789 // Finally, let the preprocessor handle this.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001790 return PP->HandleEndOfFile(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001791}
1792
1793/// isNextPPTokenLParen - Return 1 if the next unexpanded token lexed from
1794/// the specified lexer will return a tok::l_paren token, 0 if it is something
1795/// else and 2 if there are no more tokens in the buffer controlled by the
1796/// lexer.
1797unsigned Lexer::isNextPPTokenLParen() {
1798 assert(!LexingRawMode && "How can we expand a macro from a skipping buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +00001799
Reid Spencer5f016e22007-07-11 17:01:13 +00001800 // Switch to 'skipping' mode. This will ensure that we can lex a token
1801 // without emitting diagnostics, disables macro expansion, and will cause EOF
1802 // to return an EOF token instead of popping the include stack.
1803 LexingRawMode = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001804
Reid Spencer5f016e22007-07-11 17:01:13 +00001805 // Save state that can be changed while lexing so that we can restore it.
1806 const char *TmpBufferPtr = BufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001807 bool inPPDirectiveMode = ParsingPreprocessorDirective;
Mike Stump1eb44332009-09-09 15:08:12 +00001808
Chris Lattnerd2177732007-07-20 16:59:19 +00001809 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001810 Tok.startToken();
1811 LexTokenInternal(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001812
Reid Spencer5f016e22007-07-11 17:01:13 +00001813 // Restore state that may have changed.
1814 BufferPtr = TmpBufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001815 ParsingPreprocessorDirective = inPPDirectiveMode;
Mike Stump1eb44332009-09-09 15:08:12 +00001816
Reid Spencer5f016e22007-07-11 17:01:13 +00001817 // Restore the lexer back to non-skipping mode.
1818 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001819
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001820 if (Tok.is(tok::eof))
Reid Spencer5f016e22007-07-11 17:01:13 +00001821 return 2;
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001822 return Tok.is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +00001823}
1824
Chris Lattner34f349d2009-12-14 06:16:57 +00001825/// FindConflictEnd - Find the end of a version control conflict marker.
1826static const char *FindConflictEnd(const char *CurPtr, const char *BufferEnd) {
1827 llvm::StringRef RestOfBuffer(CurPtr+7, BufferEnd-CurPtr-7);
1828 size_t Pos = RestOfBuffer.find(">>>>>>>");
1829 while (Pos != llvm::StringRef::npos) {
1830 // Must occur at start of line.
1831 if (RestOfBuffer[Pos-1] != '\r' &&
1832 RestOfBuffer[Pos-1] != '\n') {
1833 RestOfBuffer = RestOfBuffer.substr(Pos+7);
Chris Lattner3d488992010-05-17 20:27:25 +00001834 Pos = RestOfBuffer.find(">>>>>>>");
Chris Lattner34f349d2009-12-14 06:16:57 +00001835 continue;
1836 }
1837 return RestOfBuffer.data()+Pos;
1838 }
1839 return 0;
1840}
1841
1842/// IsStartOfConflictMarker - If the specified pointer is the start of a version
1843/// control conflict marker like '<<<<<<<', recognize it as such, emit an error
1844/// and recover nicely. This returns true if it is a conflict marker and false
1845/// if not.
1846bool Lexer::IsStartOfConflictMarker(const char *CurPtr) {
1847 // Only a conflict marker if it starts at the beginning of a line.
1848 if (CurPtr != BufferStart &&
1849 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1850 return false;
1851
1852 // Check to see if we have <<<<<<<.
1853 if (BufferEnd-CurPtr < 8 ||
1854 llvm::StringRef(CurPtr, 7) != "<<<<<<<")
1855 return false;
1856
1857 // If we have a situation where we don't care about conflict markers, ignore
1858 // it.
1859 if (IsInConflictMarker || isLexingRawMode())
1860 return false;
1861
1862 // Check to see if there is a >>>>>>> somewhere in the buffer at the start of
1863 // a line to terminate this conflict marker.
Chris Lattner3d488992010-05-17 20:27:25 +00001864 if (FindConflictEnd(CurPtr, BufferEnd)) {
Chris Lattner34f349d2009-12-14 06:16:57 +00001865 // We found a match. We are really in a conflict marker.
1866 // Diagnose this, and ignore to the end of line.
1867 Diag(CurPtr, diag::err_conflict_marker);
1868 IsInConflictMarker = true;
1869
1870 // Skip ahead to the end of line. We know this exists because the
1871 // end-of-conflict marker starts with \r or \n.
1872 while (*CurPtr != '\r' && *CurPtr != '\n') {
1873 assert(CurPtr != BufferEnd && "Didn't find end of line");
1874 ++CurPtr;
1875 }
1876 BufferPtr = CurPtr;
1877 return true;
1878 }
1879
1880 // No end of conflict marker found.
1881 return false;
1882}
1883
1884
1885/// HandleEndOfConflictMarker - If this is a '=======' or '|||||||' or '>>>>>>>'
1886/// marker, then it is the end of a conflict marker. Handle it by ignoring up
1887/// until the end of the line. This returns true if it is a conflict marker and
1888/// false if not.
1889bool Lexer::HandleEndOfConflictMarker(const char *CurPtr) {
1890 // Only a conflict marker if it starts at the beginning of a line.
1891 if (CurPtr != BufferStart &&
1892 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1893 return false;
1894
1895 // If we have a situation where we don't care about conflict markers, ignore
1896 // it.
1897 if (!IsInConflictMarker || isLexingRawMode())
1898 return false;
1899
1900 // Check to see if we have the marker (7 characters in a row).
1901 for (unsigned i = 1; i != 7; ++i)
1902 if (CurPtr[i] != CurPtr[0])
1903 return false;
1904
1905 // If we do have it, search for the end of the conflict marker. This could
1906 // fail if it got skipped with a '#if 0' or something. Note that CurPtr might
1907 // be the end of conflict marker.
1908 if (const char *End = FindConflictEnd(CurPtr, BufferEnd)) {
1909 CurPtr = End;
1910
1911 // Skip ahead to the end of line.
1912 while (CurPtr != BufferEnd && *CurPtr != '\r' && *CurPtr != '\n')
1913 ++CurPtr;
1914
1915 BufferPtr = CurPtr;
1916
1917 // No longer in the conflict marker.
1918 IsInConflictMarker = false;
1919 return true;
1920 }
1921
1922 return false;
1923}
1924
Reid Spencer5f016e22007-07-11 17:01:13 +00001925
1926/// LexTokenInternal - This implements a simple C family lexer. It is an
1927/// extremely performance critical piece of code. This assumes that the buffer
Chris Lattnerefb173d2009-07-07 05:05:42 +00001928/// has a null character at the end of the file. This returns a preprocessing
1929/// token, not a normal token, as such, it is an internal interface. It assumes
1930/// that the Flags of result have been cleared before calling this.
Chris Lattnerd2177732007-07-20 16:59:19 +00001931void Lexer::LexTokenInternal(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001932LexNextToken:
1933 // New token, can't need cleaning yet.
Chris Lattnerd2177732007-07-20 16:59:19 +00001934 Result.clearFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00001935 Result.setIdentifierInfo(0);
Mike Stump1eb44332009-09-09 15:08:12 +00001936
Reid Spencer5f016e22007-07-11 17:01:13 +00001937 // CurPtr - Cache BufferPtr in an automatic variable.
1938 const char *CurPtr = BufferPtr;
1939
1940 // Small amounts of horizontal whitespace is very common between tokens.
1941 if ((*CurPtr == ' ') || (*CurPtr == '\t')) {
1942 ++CurPtr;
1943 while ((*CurPtr == ' ') || (*CurPtr == '\t'))
1944 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001945
Chris Lattnerd88dc482008-10-12 04:05:48 +00001946 // If we are keeping whitespace and other tokens, just return what we just
1947 // skipped. The next lexer invocation will return the token after the
1948 // whitespace.
1949 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001950 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001951 return;
1952 }
Mike Stump1eb44332009-09-09 15:08:12 +00001953
Reid Spencer5f016e22007-07-11 17:01:13 +00001954 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001955 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001956 }
Mike Stump1eb44332009-09-09 15:08:12 +00001957
Reid Spencer5f016e22007-07-11 17:01:13 +00001958 unsigned SizeTmp, SizeTmp2; // Temporaries for use in cases below.
Mike Stump1eb44332009-09-09 15:08:12 +00001959
Reid Spencer5f016e22007-07-11 17:01:13 +00001960 // Read a character, advancing over it.
1961 char Char = getAndAdvanceChar(CurPtr, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001962 tok::TokenKind Kind;
Mike Stump1eb44332009-09-09 15:08:12 +00001963
Reid Spencer5f016e22007-07-11 17:01:13 +00001964 switch (Char) {
1965 case 0: // Null.
1966 // Found end of file?
1967 if (CurPtr-1 == BufferEnd) {
1968 // Read the PP instance variable into an automatic variable, because
1969 // LexEndOfFile will often delete 'this'.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001970 Preprocessor *PPCache = PP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001971 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
1972 return; // Got a token to return.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001973 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
1974 return PPCache->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001975 }
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Chris Lattner74d15df2008-11-22 02:02:22 +00001977 if (!isLexingRawMode())
1978 Diag(CurPtr-1, diag::null_in_file);
Chris Lattnerd2177732007-07-20 16:59:19 +00001979 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001980 if (SkipWhitespace(Result, CurPtr))
1981 return; // KeepWhitespaceMode
Mike Stump1eb44332009-09-09 15:08:12 +00001982
Reid Spencer5f016e22007-07-11 17:01:13 +00001983 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00001984
1985 case 26: // DOS & CP/M EOF: "^Z".
1986 // If we're in Microsoft extensions mode, treat this as end of file.
1987 if (Features.Microsoft) {
1988 // Read the PP instance variable into an automatic variable, because
1989 // LexEndOfFile will often delete 'this'.
1990 Preprocessor *PPCache = PP;
1991 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
1992 return; // Got a token to return.
1993 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
1994 return PPCache->Lex(Result);
1995 }
1996 // If Microsoft extensions are disabled, this is just random garbage.
1997 Kind = tok::unknown;
1998 break;
1999
Reid Spencer5f016e22007-07-11 17:01:13 +00002000 case '\n':
2001 case '\r':
2002 // If we are inside a preprocessor directive and we see the end of line,
2003 // we know we are done with the directive, so return an EOM token.
2004 if (ParsingPreprocessorDirective) {
2005 // Done parsing the "line".
2006 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002007
Reid Spencer5f016e22007-07-11 17:01:13 +00002008 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00002009 SetCommentRetentionState(PP->getCommentRetentionState());
Mike Stump1eb44332009-09-09 15:08:12 +00002010
Reid Spencer5f016e22007-07-11 17:01:13 +00002011 // Since we consumed a newline, we are back at the start of a line.
2012 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +00002013
Chris Lattner9e6293d2008-10-12 04:51:35 +00002014 Kind = tok::eom;
Reid Spencer5f016e22007-07-11 17:01:13 +00002015 break;
2016 }
2017 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00002018 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00002019 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00002020 Result.clearFlag(Token::LeadingSpace);
Mike Stump1eb44332009-09-09 15:08:12 +00002021
Chris Lattnerd88dc482008-10-12 04:05:48 +00002022 if (SkipWhitespace(Result, CurPtr))
2023 return; // KeepWhitespaceMode
Reid Spencer5f016e22007-07-11 17:01:13 +00002024 goto LexNextToken; // GCC isn't tail call eliminating.
2025 case ' ':
2026 case '\t':
2027 case '\f':
2028 case '\v':
Chris Lattner8133cfc2007-07-22 06:29:05 +00002029 SkipHorizontalWhitespace:
Chris Lattnerd2177732007-07-20 16:59:19 +00002030 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00002031 if (SkipWhitespace(Result, CurPtr))
2032 return; // KeepWhitespaceMode
Chris Lattner8133cfc2007-07-22 06:29:05 +00002033
2034 SkipIgnoredUnits:
2035 CurPtr = BufferPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00002036
Chris Lattner8133cfc2007-07-22 06:29:05 +00002037 // If the next token is obviously a // or /* */ comment, skip it efficiently
2038 // too (without going through the big switch stmt).
Chris Lattner8402c732009-01-16 22:39:25 +00002039 if (CurPtr[0] == '/' && CurPtr[1] == '/' && !inKeepCommentMode() &&
2040 Features.BCPLComment) {
Chris Lattner046c2272010-01-18 22:35:47 +00002041 if (SkipBCPLComment(Result, CurPtr+2))
2042 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00002043 goto SkipIgnoredUnits;
Chris Lattnerfa95a012008-10-12 03:22:02 +00002044 } else if (CurPtr[0] == '/' && CurPtr[1] == '*' && !inKeepCommentMode()) {
Chris Lattner046c2272010-01-18 22:35:47 +00002045 if (SkipBlockComment(Result, CurPtr+2))
2046 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00002047 goto SkipIgnoredUnits;
2048 } else if (isHorizontalWhitespace(*CurPtr)) {
2049 goto SkipHorizontalWhitespace;
2050 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002051 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00002052
Chris Lattner3a570772008-01-03 17:58:54 +00002053 // C99 6.4.4.1: Integer Constants.
2054 // C99 6.4.4.2: Floating Constants.
2055 case '0': case '1': case '2': case '3': case '4':
2056 case '5': case '6': case '7': case '8': case '9':
2057 // Notify MIOpt that we read a non-whitespace/non-comment token.
2058 MIOpt.ReadToken();
2059 return LexNumericConstant(Result, CurPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00002060
Chris Lattner3a570772008-01-03 17:58:54 +00002061 case 'L': // Identifier (Loony) or wide literal (L'x' or L"xyz").
Reid Spencer5f016e22007-07-11 17:01:13 +00002062 // Notify MIOpt that we read a non-whitespace/non-comment token.
2063 MIOpt.ReadToken();
2064 Char = getCharAndSize(CurPtr, SizeTmp);
2065
2066 // Wide string literal.
2067 if (Char == '"')
2068 return LexStringLiteral(Result, ConsumeChar(CurPtr, SizeTmp, Result),
2069 true);
2070
2071 // Wide character constant.
2072 if (Char == '\'')
2073 return LexCharConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
2074 // FALL THROUGH, treating L like the start of an identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00002075
Reid Spencer5f016e22007-07-11 17:01:13 +00002076 // C99 6.4.2: Identifiers.
2077 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
2078 case 'H': case 'I': case 'J': case 'K': /*'L'*/case 'M': case 'N':
2079 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
2080 case 'V': case 'W': case 'X': case 'Y': case 'Z':
2081 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
2082 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
2083 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
2084 case 'v': case 'w': case 'x': case 'y': case 'z':
2085 case '_':
2086 // Notify MIOpt that we read a non-whitespace/non-comment token.
2087 MIOpt.ReadToken();
2088 return LexIdentifier(Result, CurPtr);
Chris Lattner3a570772008-01-03 17:58:54 +00002089
2090 case '$': // $ in identifiers.
2091 if (Features.DollarIdents) {
Chris Lattner74d15df2008-11-22 02:02:22 +00002092 if (!isLexingRawMode())
2093 Diag(CurPtr-1, diag::ext_dollar_in_identifier);
Chris Lattner3a570772008-01-03 17:58:54 +00002094 // Notify MIOpt that we read a non-whitespace/non-comment token.
2095 MIOpt.ReadToken();
2096 return LexIdentifier(Result, CurPtr);
2097 }
Mike Stump1eb44332009-09-09 15:08:12 +00002098
Chris Lattner9e6293d2008-10-12 04:51:35 +00002099 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00002100 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002101
Reid Spencer5f016e22007-07-11 17:01:13 +00002102 // C99 6.4.4: Character Constants.
2103 case '\'':
2104 // Notify MIOpt that we read a non-whitespace/non-comment token.
2105 MIOpt.ReadToken();
2106 return LexCharConstant(Result, CurPtr);
2107
2108 // C99 6.4.5: String Literals.
2109 case '"':
2110 // Notify MIOpt that we read a non-whitespace/non-comment token.
2111 MIOpt.ReadToken();
2112 return LexStringLiteral(Result, CurPtr, false);
2113
2114 // C99 6.4.6: Punctuators.
2115 case '?':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002116 Kind = tok::question;
Reid Spencer5f016e22007-07-11 17:01:13 +00002117 break;
2118 case '[':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002119 Kind = tok::l_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00002120 break;
2121 case ']':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002122 Kind = tok::r_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00002123 break;
2124 case '(':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002125 Kind = tok::l_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00002126 break;
2127 case ')':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002128 Kind = tok::r_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00002129 break;
2130 case '{':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002131 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00002132 break;
2133 case '}':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002134 Kind = tok::r_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00002135 break;
2136 case '.':
2137 Char = getCharAndSize(CurPtr, SizeTmp);
2138 if (Char >= '0' && Char <= '9') {
2139 // Notify MIOpt that we read a non-whitespace/non-comment token.
2140 MIOpt.ReadToken();
2141
2142 return LexNumericConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
2143 } else if (Features.CPlusPlus && Char == '*') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002144 Kind = tok::periodstar;
Reid Spencer5f016e22007-07-11 17:01:13 +00002145 CurPtr += SizeTmp;
2146 } else if (Char == '.' &&
2147 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '.') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002148 Kind = tok::ellipsis;
Reid Spencer5f016e22007-07-11 17:01:13 +00002149 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2150 SizeTmp2, Result);
2151 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002152 Kind = tok::period;
Reid Spencer5f016e22007-07-11 17:01:13 +00002153 }
2154 break;
2155 case '&':
2156 Char = getCharAndSize(CurPtr, SizeTmp);
2157 if (Char == '&') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002158 Kind = tok::ampamp;
Reid Spencer5f016e22007-07-11 17:01:13 +00002159 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2160 } else if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002161 Kind = tok::ampequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002162 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2163 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002164 Kind = tok::amp;
Reid Spencer5f016e22007-07-11 17:01:13 +00002165 }
2166 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002167 case '*':
Reid Spencer5f016e22007-07-11 17:01:13 +00002168 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002169 Kind = tok::starequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002170 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2171 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002172 Kind = tok::star;
Reid Spencer5f016e22007-07-11 17:01:13 +00002173 }
2174 break;
2175 case '+':
2176 Char = getCharAndSize(CurPtr, SizeTmp);
2177 if (Char == '+') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002178 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002179 Kind = tok::plusplus;
Reid Spencer5f016e22007-07-11 17:01:13 +00002180 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002181 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002182 Kind = tok::plusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002183 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002184 Kind = tok::plus;
Reid Spencer5f016e22007-07-11 17:01:13 +00002185 }
2186 break;
2187 case '-':
2188 Char = getCharAndSize(CurPtr, SizeTmp);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002189 if (Char == '-') { // --
Reid Spencer5f016e22007-07-11 17:01:13 +00002190 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002191 Kind = tok::minusminus;
Mike Stump1eb44332009-09-09 15:08:12 +00002192 } else if (Char == '>' && Features.CPlusPlus &&
Chris Lattner9e6293d2008-10-12 04:51:35 +00002193 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '*') { // C++ ->*
Reid Spencer5f016e22007-07-11 17:01:13 +00002194 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2195 SizeTmp2, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002196 Kind = tok::arrowstar;
2197 } else if (Char == '>') { // ->
Reid Spencer5f016e22007-07-11 17:01:13 +00002198 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002199 Kind = tok::arrow;
2200 } else if (Char == '=') { // -=
Reid Spencer5f016e22007-07-11 17:01:13 +00002201 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002202 Kind = tok::minusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002203 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002204 Kind = tok::minus;
Reid Spencer5f016e22007-07-11 17:01:13 +00002205 }
2206 break;
2207 case '~':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002208 Kind = tok::tilde;
Reid Spencer5f016e22007-07-11 17:01:13 +00002209 break;
2210 case '!':
2211 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002212 Kind = tok::exclaimequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002213 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2214 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002215 Kind = tok::exclaim;
Reid Spencer5f016e22007-07-11 17:01:13 +00002216 }
2217 break;
2218 case '/':
2219 // 6.4.9: Comments
2220 Char = getCharAndSize(CurPtr, SizeTmp);
2221 if (Char == '/') { // BCPL comment.
Chris Lattner8402c732009-01-16 22:39:25 +00002222 // Even if BCPL comments are disabled (e.g. in C89 mode), we generally
2223 // want to lex this as a comment. There is one problem with this though,
2224 // that in one particular corner case, this can change the behavior of the
2225 // resultant program. For example, In "foo //**/ bar", C89 would lex
2226 // this as "foo / bar" and langauges with BCPL comments would lex it as
2227 // "foo". Check to see if the character after the second slash is a '*'.
2228 // If so, we will lex that as a "/" instead of the start of a comment.
2229 if (Features.BCPLComment ||
2230 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) != '*') {
2231 if (SkipBCPLComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00002232 return; // There is a token to return.
Mike Stump1eb44332009-09-09 15:08:12 +00002233
Chris Lattner8402c732009-01-16 22:39:25 +00002234 // It is common for the tokens immediately after a // comment to be
2235 // whitespace (indentation for the next line). Instead of going through
2236 // the big switch, handle it efficiently now.
2237 goto SkipIgnoredUnits;
2238 }
2239 }
Mike Stump1eb44332009-09-09 15:08:12 +00002240
Chris Lattner8402c732009-01-16 22:39:25 +00002241 if (Char == '*') { // /**/ comment.
Reid Spencer5f016e22007-07-11 17:01:13 +00002242 if (SkipBlockComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00002243 return; // There is a token to return.
Chris Lattner2d381892008-10-12 04:15:42 +00002244 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattner8402c732009-01-16 22:39:25 +00002245 }
Mike Stump1eb44332009-09-09 15:08:12 +00002246
Chris Lattner8402c732009-01-16 22:39:25 +00002247 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002248 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002249 Kind = tok::slashequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002250 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002251 Kind = tok::slash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002252 }
2253 break;
2254 case '%':
2255 Char = getCharAndSize(CurPtr, SizeTmp);
2256 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002257 Kind = tok::percentequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002258 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2259 } else if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002260 Kind = tok::r_brace; // '%>' -> '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00002261 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2262 } else if (Features.Digraphs && Char == ':') {
2263 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2264 Char = getCharAndSize(CurPtr, SizeTmp);
2265 if (Char == '%' && getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002266 Kind = tok::hashhash; // '%:%:' -> '##'
Reid Spencer5f016e22007-07-11 17:01:13 +00002267 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2268 SizeTmp2, Result);
2269 } else if (Char == '@' && Features.Microsoft) { // %:@ -> #@ -> Charize
Reid Spencer5f016e22007-07-11 17:01:13 +00002270 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner74d15df2008-11-22 02:02:22 +00002271 if (!isLexingRawMode())
2272 Diag(BufferPtr, diag::charize_microsoft_ext);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002273 Kind = tok::hashat;
Chris Lattnere91e9322009-03-18 20:58:27 +00002274 } else { // '%:' -> '#'
Reid Spencer5f016e22007-07-11 17:01:13 +00002275 // We parsed a # character. If this occurs at the start of the line,
2276 // it's actually the start of a preprocessing directive. Callback to
2277 // the preprocessor to handle it.
2278 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00002279 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00002280 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00002281 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002282
Reid Spencer5f016e22007-07-11 17:01:13 +00002283 // As an optimization, if the preprocessor didn't switch lexers, tail
2284 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002285 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002286 // Start a new token. If this is a #include or something, the PP may
2287 // want us starting at the beginning of the line again. If so, set
Chris Lattner515f43f2010-04-12 23:04:41 +00002288 // the StartOfLine flag and clear LeadingSpace.
Reid Spencer5f016e22007-07-11 17:01:13 +00002289 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00002290 Result.setFlag(Token::StartOfLine);
Chris Lattner515f43f2010-04-12 23:04:41 +00002291 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00002292 IsAtStartOfLine = false;
2293 }
2294 goto LexNextToken; // GCC isn't tail call eliminating.
2295 }
Mike Stump1eb44332009-09-09 15:08:12 +00002296
Chris Lattner168ae2d2007-10-17 20:41:00 +00002297 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002298 }
Mike Stump1eb44332009-09-09 15:08:12 +00002299
Chris Lattnere91e9322009-03-18 20:58:27 +00002300 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002301 }
2302 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002303 Kind = tok::percent;
Reid Spencer5f016e22007-07-11 17:01:13 +00002304 }
2305 break;
2306 case '<':
2307 Char = getCharAndSize(CurPtr, SizeTmp);
2308 if (ParsingFilename) {
Chris Lattner9cb51ce2009-04-17 23:56:52 +00002309 return LexAngledStringLiteral(Result, CurPtr);
Reid Spencer5f016e22007-07-11 17:01:13 +00002310 } else if (Char == '<') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002311 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
2312 if (After == '=') {
2313 Kind = tok::lesslessequal;
2314 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2315 SizeTmp2, Result);
2316 } else if (After == '<' && IsStartOfConflictMarker(CurPtr-1)) {
2317 // If this is actually a '<<<<<<<' version control conflict marker,
2318 // recognize it as such and recover nicely.
2319 goto LexNextToken;
2320 } else {
2321 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2322 Kind = tok::lessless;
2323 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002324 } 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::lessequal;
2327 } else if (Features.Digraphs && Char == ':') { // '<:' -> '['
Reid Spencer5f016e22007-07-11 17:01:13 +00002328 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002329 Kind = tok::l_square;
2330 } else if (Features.Digraphs && Char == '%') { // '<%' -> '{'
Reid Spencer5f016e22007-07-11 17:01:13 +00002331 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002332 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00002333 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002334 Kind = tok::less;
Reid Spencer5f016e22007-07-11 17:01:13 +00002335 }
2336 break;
2337 case '>':
2338 Char = getCharAndSize(CurPtr, SizeTmp);
2339 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002340 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002341 Kind = tok::greaterequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002342 } else if (Char == '>') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002343 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
2344 if (After == '=') {
2345 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
2346 SizeTmp2, Result);
2347 Kind = tok::greatergreaterequal;
2348 } else if (After == '>' && HandleEndOfConflictMarker(CurPtr-1)) {
2349 // If this is '>>>>>>>' and we're in a conflict marker, ignore it.
2350 goto LexNextToken;
2351 } else {
2352 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2353 Kind = tok::greatergreater;
2354 }
2355
Reid Spencer5f016e22007-07-11 17:01:13 +00002356 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002357 Kind = tok::greater;
Reid Spencer5f016e22007-07-11 17:01:13 +00002358 }
2359 break;
2360 case '^':
2361 Char = getCharAndSize(CurPtr, SizeTmp);
2362 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00002363 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00002364 Kind = tok::caretequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002365 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002366 Kind = tok::caret;
Reid Spencer5f016e22007-07-11 17:01:13 +00002367 }
2368 break;
2369 case '|':
2370 Char = getCharAndSize(CurPtr, SizeTmp);
2371 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002372 Kind = tok::pipeequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002373 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2374 } else if (Char == '|') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002375 // If this is '|||||||' and we're in a conflict marker, ignore it.
2376 if (CurPtr[1] == '|' && HandleEndOfConflictMarker(CurPtr-1))
2377 goto LexNextToken;
Chris Lattner9e6293d2008-10-12 04:51:35 +00002378 Kind = tok::pipepipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00002379 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2380 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002381 Kind = tok::pipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00002382 }
2383 break;
2384 case ':':
2385 Char = getCharAndSize(CurPtr, SizeTmp);
2386 if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002387 Kind = tok::r_square; // ':>' -> ']'
Reid Spencer5f016e22007-07-11 17:01:13 +00002388 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2389 } else if (Features.CPlusPlus && Char == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002390 Kind = tok::coloncolon;
Reid Spencer5f016e22007-07-11 17:01:13 +00002391 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002392 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002393 Kind = tok::colon;
Reid Spencer5f016e22007-07-11 17:01:13 +00002394 }
2395 break;
2396 case ';':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002397 Kind = tok::semi;
Reid Spencer5f016e22007-07-11 17:01:13 +00002398 break;
2399 case '=':
2400 Char = getCharAndSize(CurPtr, SizeTmp);
2401 if (Char == '=') {
Chris Lattner34f349d2009-12-14 06:16:57 +00002402 // If this is '=======' and we're in a conflict marker, ignore it.
2403 if (CurPtr[1] == '=' && HandleEndOfConflictMarker(CurPtr-1))
2404 goto LexNextToken;
2405
Chris Lattner9e6293d2008-10-12 04:51:35 +00002406 Kind = tok::equalequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002407 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002408 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002409 Kind = tok::equal;
Reid Spencer5f016e22007-07-11 17:01:13 +00002410 }
2411 break;
2412 case ',':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002413 Kind = tok::comma;
Reid Spencer5f016e22007-07-11 17:01:13 +00002414 break;
2415 case '#':
2416 Char = getCharAndSize(CurPtr, SizeTmp);
2417 if (Char == '#') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002418 Kind = tok::hashhash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002419 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2420 } else if (Char == '@' && Features.Microsoft) { // #@ -> Charize
Chris Lattner9e6293d2008-10-12 04:51:35 +00002421 Kind = tok::hashat;
Chris Lattner74d15df2008-11-22 02:02:22 +00002422 if (!isLexingRawMode())
2423 Diag(BufferPtr, diag::charize_microsoft_ext);
Reid Spencer5f016e22007-07-11 17:01:13 +00002424 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2425 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +00002426 // We parsed a # character. If this occurs at the start of the line,
2427 // it's actually the start of a preprocessing directive. Callback to
2428 // the preprocessor to handle it.
2429 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00002430 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00002431 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00002432 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002433
Reid Spencer5f016e22007-07-11 17:01:13 +00002434 // As an optimization, if the preprocessor didn't switch lexers, tail
2435 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002436 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002437 // Start a new token. If this is a #include or something, the PP may
2438 // want us starting at the beginning of the line again. If so, set
Chris Lattner515f43f2010-04-12 23:04:41 +00002439 // the StartOfLine flag and clear LeadingSpace.
Reid Spencer5f016e22007-07-11 17:01:13 +00002440 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00002441 Result.setFlag(Token::StartOfLine);
Chris Lattner515f43f2010-04-12 23:04:41 +00002442 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00002443 IsAtStartOfLine = false;
2444 }
2445 goto LexNextToken; // GCC isn't tail call eliminating.
2446 }
Chris Lattner168ae2d2007-10-17 20:41:00 +00002447 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002448 }
Mike Stump1eb44332009-09-09 15:08:12 +00002449
Chris Lattnere91e9322009-03-18 20:58:27 +00002450 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002451 }
2452 break;
2453
Chris Lattner3a570772008-01-03 17:58:54 +00002454 case '@':
2455 // Objective C support.
2456 if (CurPtr[-1] == '@' && Features.ObjC1)
Chris Lattner9e6293d2008-10-12 04:51:35 +00002457 Kind = tok::at;
Chris Lattner3a570772008-01-03 17:58:54 +00002458 else
Chris Lattner9e6293d2008-10-12 04:51:35 +00002459 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00002460 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002461
Reid Spencer5f016e22007-07-11 17:01:13 +00002462 case '\\':
2463 // FIXME: UCN's.
2464 // FALL THROUGH.
2465 default:
Chris Lattner9e6293d2008-10-12 04:51:35 +00002466 Kind = tok::unknown;
Reid Spencer5f016e22007-07-11 17:01:13 +00002467 break;
2468 }
Mike Stump1eb44332009-09-09 15:08:12 +00002469
Reid Spencer5f016e22007-07-11 17:01:13 +00002470 // Notify MIOpt that we read a non-whitespace/non-comment token.
2471 MIOpt.ReadToken();
2472
2473 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00002474 FormTokenWithChars(Result, CurPtr, Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00002475}