blob: 6cdb96f37de4a3c7e35cecb93b99e57c1540b511 [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"
Chris Lattner9dc1f532007-07-20 16:37:10 +000030#include "clang/Basic/SourceManager.h"
Chris Lattner409a0362007-07-22 18:38:25 +000031#include "llvm/Support/Compiler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000032#include "llvm/Support/MemoryBuffer.h"
33#include <cctype>
34using namespace clang;
35
Chris Lattnera2bf1052009-12-17 05:29:40 +000036static void InitCharacterInfo();
Reid Spencer5f016e22007-07-11 17:01:13 +000037
Chris Lattnerdbf388b2007-10-07 08:47:24 +000038//===----------------------------------------------------------------------===//
39// Token Class Implementation
40//===----------------------------------------------------------------------===//
41
Mike Stump1eb44332009-09-09 15:08:12 +000042/// isObjCAtKeyword - Return true if we have an ObjC keyword identifier.
Chris Lattnerdbf388b2007-10-07 08:47:24 +000043bool Token::isObjCAtKeyword(tok::ObjCKeywordKind objcKey) const {
Douglas Gregorbec1c9d2008-12-01 21:46:47 +000044 if (IdentifierInfo *II = getIdentifierInfo())
45 return II->getObjCKeywordID() == objcKey;
46 return false;
Chris Lattnerdbf388b2007-10-07 08:47:24 +000047}
48
49/// getObjCKeywordID - Return the ObjC keyword kind.
50tok::ObjCKeywordKind Token::getObjCKeywordID() const {
51 IdentifierInfo *specId = getIdentifierInfo();
52 return specId ? specId->getObjCKeywordID() : tok::objc_not_keyword;
53}
54
Chris Lattner53702cd2007-12-13 01:59:49 +000055
Chris Lattnerdbf388b2007-10-07 08:47:24 +000056//===----------------------------------------------------------------------===//
57// Lexer Class Implementation
58//===----------------------------------------------------------------------===//
59
Mike Stump1eb44332009-09-09 15:08:12 +000060void Lexer::InitLexer(const char *BufStart, const char *BufPtr,
Chris Lattner22d91ca2009-01-17 06:55:17 +000061 const char *BufEnd) {
Chris Lattnera2bf1052009-12-17 05:29:40 +000062 InitCharacterInfo();
Mike Stump1eb44332009-09-09 15:08:12 +000063
Chris Lattner22d91ca2009-01-17 06:55:17 +000064 BufferStart = BufStart;
65 BufferPtr = BufPtr;
66 BufferEnd = BufEnd;
Mike Stump1eb44332009-09-09 15:08:12 +000067
Chris Lattner22d91ca2009-01-17 06:55:17 +000068 assert(BufEnd[0] == 0 &&
69 "We assume that the input buffer has a null character at the end"
70 " to simplify lexing!");
Mike Stump1eb44332009-09-09 15:08:12 +000071
Chris Lattner22d91ca2009-01-17 06:55:17 +000072 Is_PragmaLexer = false;
Chris Lattner34f349d2009-12-14 06:16:57 +000073 IsInConflictMarker = false;
Douglas Gregor81b747b2009-09-17 21:32:03 +000074
Chris Lattner22d91ca2009-01-17 06:55:17 +000075 // Start of the file is a start of line.
76 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +000077
Chris Lattner22d91ca2009-01-17 06:55:17 +000078 // We are not after parsing a #.
79 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +000080
Chris Lattner22d91ca2009-01-17 06:55:17 +000081 // We are not after parsing #include.
82 ParsingFilename = false;
Mike Stump1eb44332009-09-09 15:08:12 +000083
Chris Lattner22d91ca2009-01-17 06:55:17 +000084 // We are not in raw mode. Raw mode disables diagnostics and interpretation
85 // of tokens (e.g. identifiers, thus disabling macro expansion). It is used
86 // to quickly lex the tokens of the buffer, e.g. when handling a "#if 0" block
87 // or otherwise skipping over tokens.
88 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner22d91ca2009-01-17 06:55:17 +000090 // Default to not keeping comments.
91 ExtendedTokenMode = 0;
92}
93
Chris Lattner0770dab2009-01-17 07:56:59 +000094/// Lexer constructor - Create a new lexer object for the specified buffer
95/// with the specified preprocessor managing the lexing process. This lexer
96/// assumes that the associated file buffer and Preprocessor objects will
97/// outlive it, so it doesn't take ownership of either of them.
Chris Lattner6e290142009-11-30 04:18:44 +000098Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *InputFile, Preprocessor &PP)
Chris Lattner88d3ac12009-01-17 08:03:42 +000099 : PreprocessorLexer(&PP, FID),
100 FileLoc(PP.getSourceManager().getLocForStartOfFile(FID)),
101 Features(PP.getLangOptions()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Chris Lattner0770dab2009-01-17 07:56:59 +0000103 InitLexer(InputFile->getBufferStart(), InputFile->getBufferStart(),
104 InputFile->getBufferEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Chris Lattner0770dab2009-01-17 07:56:59 +0000106 // Default to keeping comments if the preprocessor wants them.
107 SetCommentRetentionState(PP.getCommentRetentionState());
108}
Chris Lattnerdbf388b2007-10-07 08:47:24 +0000109
Chris Lattner168ae2d2007-10-17 20:41:00 +0000110/// Lexer constructor - Create a new raw lexer object. This object is only
Chris Lattner590f0cc2008-10-12 01:15:46 +0000111/// suitable for calls to 'LexRawToken'. This lexer assumes that the text
112/// range will outlive it, so it doesn't take ownership of it.
Chris Lattner168ae2d2007-10-17 20:41:00 +0000113Lexer::Lexer(SourceLocation fileloc, const LangOptions &features,
Chris Lattnerde96c0f2009-01-17 07:42:27 +0000114 const char *BufStart, const char *BufPtr, const char *BufEnd)
Chris Lattnerc6fe32a2009-01-17 03:48:08 +0000115 : FileLoc(fileloc), Features(features) {
Chris Lattner22d91ca2009-01-17 06:55:17 +0000116
Chris Lattner22d91ca2009-01-17 06:55:17 +0000117 InitLexer(BufStart, BufPtr, BufEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Chris Lattner168ae2d2007-10-17 20:41:00 +0000119 // We *are* in raw mode.
120 LexingRawMode = true;
Chris Lattner168ae2d2007-10-17 20:41:00 +0000121}
122
Chris Lattner025c3a62009-01-17 07:35:14 +0000123/// Lexer constructor - Create a new raw lexer object. This object is only
124/// suitable for calls to 'LexRawToken'. This lexer assumes that the text
125/// range will outlive it, so it doesn't take ownership of it.
Chris Lattner6e290142009-11-30 04:18:44 +0000126Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *FromFile,
127 const SourceManager &SM, const LangOptions &features)
Chris Lattner025c3a62009-01-17 07:35:14 +0000128 : FileLoc(SM.getLocForStartOfFile(FID)), Features(features) {
Chris Lattner025c3a62009-01-17 07:35:14 +0000129
Mike Stump1eb44332009-09-09 15:08:12 +0000130 InitLexer(FromFile->getBufferStart(), FromFile->getBufferStart(),
Chris Lattner025c3a62009-01-17 07:35:14 +0000131 FromFile->getBufferEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000132
Chris Lattner025c3a62009-01-17 07:35:14 +0000133 // We *are* in raw mode.
134 LexingRawMode = true;
135}
136
Chris Lattner42e00d12009-01-17 08:27:52 +0000137/// Create_PragmaLexer: Lexer constructor - Create a new lexer object for
138/// _Pragma expansion. This has a variety of magic semantics that this method
139/// sets up. It returns a new'd Lexer that must be delete'd when done.
140///
141/// On entrance to this routine, TokStartLoc is a macro location which has a
142/// spelling loc that indicates the bytes to be lexed for the token and an
143/// instantiation location that indicates where all lexed tokens should be
144/// "expanded from".
145///
146/// FIXME: It would really be nice to make _Pragma just be a wrapper around a
147/// normal lexer that remaps tokens as they fly by. This would require making
148/// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer
149/// interface that could handle this stuff. This would pull GetMappedTokenLoc
150/// out of the critical path of the lexer!
151///
Mike Stump1eb44332009-09-09 15:08:12 +0000152Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000153 SourceLocation InstantiationLocStart,
154 SourceLocation InstantiationLocEnd,
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000155 unsigned TokLen, Preprocessor &PP) {
Chris Lattner42e00d12009-01-17 08:27:52 +0000156 SourceManager &SM = PP.getSourceManager();
Chris Lattner42e00d12009-01-17 08:27:52 +0000157
158 // Create the lexer as if we were going to lex the file normally.
Chris Lattnera11d6172009-01-19 07:46:45 +0000159 FileID SpellingFID = SM.getFileID(SpellingLoc);
Chris Lattner6e290142009-11-30 04:18:44 +0000160 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID);
161 Lexer *L = new Lexer(SpellingFID, InputFile, PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000162
Chris Lattner42e00d12009-01-17 08:27:52 +0000163 // Now that the lexer is created, change the start/end locations so that we
164 // just lex the subsection of the file that we want. This is lexing from a
165 // scratch buffer.
166 const char *StrData = SM.getCharacterData(SpellingLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Chris Lattner42e00d12009-01-17 08:27:52 +0000168 L->BufferPtr = StrData;
169 L->BufferEnd = StrData+TokLen;
Chris Lattner1fa49532009-03-08 08:08:45 +0000170 assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!");
Chris Lattner42e00d12009-01-17 08:27:52 +0000171
172 // Set the SourceLocation with the remapping information. This ensures that
173 // GetMappedTokenLoc will remap the tokens as they are lexed.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000174 L->FileLoc = SM.createInstantiationLoc(SM.getLocForStartOfFile(SpellingFID),
Chris Lattnere7fb4842009-02-15 20:52:18 +0000175 InstantiationLocStart,
176 InstantiationLocEnd, TokLen);
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Chris Lattner42e00d12009-01-17 08:27:52 +0000178 // Ensure that the lexer thinks it is inside a directive, so that end \n will
179 // return an EOM token.
180 L->ParsingPreprocessorDirective = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Chris Lattner42e00d12009-01-17 08:27:52 +0000182 // This lexer really is for _Pragma.
183 L->Is_PragmaLexer = true;
184 return L;
185}
186
Chris Lattner168ae2d2007-10-17 20:41:00 +0000187
Reid Spencer5f016e22007-07-11 17:01:13 +0000188/// Stringify - Convert the specified string into a C string, with surrounding
189/// ""'s, and with escaped \ and " characters.
190std::string Lexer::Stringify(const std::string &Str, bool Charify) {
191 std::string Result = Str;
192 char Quote = Charify ? '\'' : '"';
193 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
194 if (Result[i] == '\\' || Result[i] == Quote) {
195 Result.insert(Result.begin()+i, '\\');
196 ++i; ++e;
197 }
198 }
199 return Result;
200}
201
Chris Lattnerd8e30832007-07-24 06:57:14 +0000202/// Stringify - Convert the specified string into a C string by escaping '\'
203/// and " characters. This does not add surrounding ""'s to the string.
204void Lexer::Stringify(llvm::SmallVectorImpl<char> &Str) {
205 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
206 if (Str[i] == '\\' || Str[i] == '"') {
207 Str.insert(Str.begin()+i, '\\');
208 ++i; ++e;
209 }
210 }
211}
212
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000213static bool isWhitespace(unsigned char c);
Reid Spencer5f016e22007-07-11 17:01:13 +0000214
Chris Lattner9a611942007-10-17 21:18:47 +0000215/// MeasureTokenLength - Relex the token at the specified location and return
216/// its length in bytes in the input file. If the token needs cleaning (e.g.
217/// includes a trigraph or an escaped newline) then this count includes bytes
218/// that are part of that.
219unsigned Lexer::MeasureTokenLength(SourceLocation Loc,
Chris Lattner2c78b872009-04-14 23:22:57 +0000220 const SourceManager &SM,
221 const LangOptions &LangOpts) {
Chris Lattner9a611942007-10-17 21:18:47 +0000222 // TODO: this could be special cased for common tokens like identifiers, ')',
223 // etc to make this faster, if it mattered. Just look at StrData[0] to handle
Mike Stump1eb44332009-09-09 15:08:12 +0000224 // all obviously single-char tokens. This could use
Chris Lattner9a611942007-10-17 21:18:47 +0000225 // Lexer::isObviouslySimpleCharacter for example to handle identifiers or
226 // something.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000227
228 // If this comes from a macro expansion, we really do want the macro name, not
229 // the token this macro expanded to.
Chris Lattner363fdc22009-01-26 22:24:27 +0000230 Loc = SM.getInstantiationLoc(Loc);
231 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000232 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000233 llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000234 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +0000235 return 0;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000236
237 const char *StrData = Buffer.data()+LocInfo.second;
Chris Lattner83503942009-01-17 08:30:10 +0000238
Douglas Gregor33e9abd2010-01-22 19:49:59 +0000239 if (isWhitespace(StrData[0]))
240 return 0;
241
Chris Lattner9a611942007-10-17 21:18:47 +0000242 // Create a lexer starting at the beginning of this token.
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000243 Lexer TheLexer(Loc, LangOpts, Buffer.begin(), StrData, Buffer.end());
Chris Lattner39de7402009-10-14 15:04:18 +0000244 TheLexer.SetCommentRetentionState(true);
Chris Lattner9a611942007-10-17 21:18:47 +0000245 Token TheTok;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000246 TheLexer.LexFromRawLexer(TheTok);
Chris Lattner9a611942007-10-17 21:18:47 +0000247 return TheTok.getLength();
248}
249
Reid Spencer5f016e22007-07-11 17:01:13 +0000250//===----------------------------------------------------------------------===//
251// Character information.
252//===----------------------------------------------------------------------===//
253
Reid Spencer5f016e22007-07-11 17:01:13 +0000254enum {
255 CHAR_HORZ_WS = 0x01, // ' ', '\t', '\f', '\v'. Note, no '\0'
256 CHAR_VERT_WS = 0x02, // '\r', '\n'
257 CHAR_LETTER = 0x04, // a-z,A-Z
258 CHAR_NUMBER = 0x08, // 0-9
259 CHAR_UNDER = 0x10, // _
260 CHAR_PERIOD = 0x20 // .
261};
262
Chris Lattner03b98662009-07-07 17:09:54 +0000263// Statically initialize CharInfo table based on ASCII character set
264// Reference: FreeBSD 7.2 /usr/share/misc/ascii
Chris Lattnera2bf1052009-12-17 05:29:40 +0000265static const unsigned char CharInfo[256] =
Chris Lattner03b98662009-07-07 17:09:54 +0000266{
267// 0 NUL 1 SOH 2 STX 3 ETX
268// 4 EOT 5 ENQ 6 ACK 7 BEL
269 0 , 0 , 0 , 0 ,
270 0 , 0 , 0 , 0 ,
271// 8 BS 9 HT 10 NL 11 VT
272//12 NP 13 CR 14 SO 15 SI
273 0 , CHAR_HORZ_WS, CHAR_VERT_WS, CHAR_HORZ_WS,
274 CHAR_HORZ_WS, CHAR_VERT_WS, 0 , 0 ,
275//16 DLE 17 DC1 18 DC2 19 DC3
276//20 DC4 21 NAK 22 SYN 23 ETB
277 0 , 0 , 0 , 0 ,
278 0 , 0 , 0 , 0 ,
279//24 CAN 25 EM 26 SUB 27 ESC
280//28 FS 29 GS 30 RS 31 US
281 0 , 0 , 0 , 0 ,
282 0 , 0 , 0 , 0 ,
283//32 SP 33 ! 34 " 35 #
284//36 $ 37 % 38 & 39 '
285 CHAR_HORZ_WS, 0 , 0 , 0 ,
286 0 , 0 , 0 , 0 ,
287//40 ( 41 ) 42 * 43 +
288//44 , 45 - 46 . 47 /
289 0 , 0 , 0 , 0 ,
290 0 , 0 , CHAR_PERIOD , 0 ,
291//48 0 49 1 50 2 51 3
292//52 4 53 5 54 6 55 7
293 CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER ,
294 CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER ,
295//56 8 57 9 58 : 59 ;
296//60 < 61 = 62 > 63 ?
297 CHAR_NUMBER , CHAR_NUMBER , 0 , 0 ,
298 0 , 0 , 0 , 0 ,
299//64 @ 65 A 66 B 67 C
300//68 D 69 E 70 F 71 G
301 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
302 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
303//72 H 73 I 74 J 75 K
304//76 L 77 M 78 N 79 O
305 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
306 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
307//80 P 81 Q 82 R 83 S
308//84 T 85 U 86 V 87 W
309 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
310 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
311//88 X 89 Y 90 Z 91 [
312//92 \ 93 ] 94 ^ 95 _
313 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 ,
314 0 , 0 , 0 , CHAR_UNDER ,
315//96 ` 97 a 98 b 99 c
316//100 d 101 e 102 f 103 g
317 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
318 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
319//104 h 105 i 106 j 107 k
320//108 l 109 m 110 n 111 o
321 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
322 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
323//112 p 113 q 114 r 115 s
324//116 t 117 u 118 v 119 w
325 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
326 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER ,
327//120 x 121 y 122 z 123 {
328//124 | 125 } 126 ~ 127 DEL
329 CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 ,
330 0 , 0 , 0 , 0
331};
332
Chris Lattnera2bf1052009-12-17 05:29:40 +0000333static void InitCharacterInfo() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 static bool isInited = false;
335 if (isInited) return;
Chris Lattner03b98662009-07-07 17:09:54 +0000336 // check the statically-initialized CharInfo table
337 assert(CHAR_HORZ_WS == CharInfo[(int)' ']);
338 assert(CHAR_HORZ_WS == CharInfo[(int)'\t']);
339 assert(CHAR_HORZ_WS == CharInfo[(int)'\f']);
340 assert(CHAR_HORZ_WS == CharInfo[(int)'\v']);
341 assert(CHAR_VERT_WS == CharInfo[(int)'\n']);
342 assert(CHAR_VERT_WS == CharInfo[(int)'\r']);
343 assert(CHAR_UNDER == CharInfo[(int)'_']);
344 assert(CHAR_PERIOD == CharInfo[(int)'.']);
345 for (unsigned i = 'a'; i <= 'z'; ++i) {
346 assert(CHAR_LETTER == CharInfo[i]);
347 assert(CHAR_LETTER == CharInfo[i+'A'-'a']);
348 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 for (unsigned i = '0'; i <= '9'; ++i)
Chris Lattner03b98662009-07-07 17:09:54 +0000350 assert(CHAR_NUMBER == CharInfo[i]);
Steve Naroff7b682652009-12-08 16:38:12 +0000351
Chris Lattner03b98662009-07-07 17:09:54 +0000352 isInited = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000353}
354
Chris Lattner03b98662009-07-07 17:09:54 +0000355
Reid Spencer5f016e22007-07-11 17:01:13 +0000356/// isIdentifierBody - Return true if this is the body character of an
357/// identifier, which is [a-zA-Z0-9_].
358static inline bool isIdentifierBody(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000359 return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER)) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000360}
361
362/// isHorizontalWhitespace - Return true if this character is horizontal
363/// whitespace: ' ', '\t', '\f', '\v'. Note that this returns false for '\0'.
364static inline bool isHorizontalWhitespace(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000365 return (CharInfo[c] & CHAR_HORZ_WS) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000366}
367
368/// isWhitespace - Return true if this character is horizontal or vertical
369/// whitespace: ' ', '\t', '\f', '\v', '\n', '\r'. Note that this returns false
370/// for '\0'.
371static inline bool isWhitespace(unsigned char c) {
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000372 return (CharInfo[c] & (CHAR_HORZ_WS|CHAR_VERT_WS)) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000373}
374
375/// isNumberBody - Return true if this is the body character of an
376/// preprocessing number, which is [a-zA-Z0-9_.].
377static inline bool isNumberBody(unsigned char c) {
Mike Stump1eb44332009-09-09 15:08:12 +0000378 return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER|CHAR_PERIOD)) ?
Hartmut Kaiser95c062b2007-10-18 12:47:01 +0000379 true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000380}
381
382
383//===----------------------------------------------------------------------===//
384// Diagnostics forwarding code.
385//===----------------------------------------------------------------------===//
386
Chris Lattner409a0362007-07-22 18:38:25 +0000387/// GetMappedTokenLoc - If lexing out of a 'mapped buffer', where we pretend the
388/// lexer buffer was all instantiated at a single point, perform the mapping.
389/// This is currently only used for _Pragma implementation, so it is the slow
390/// path of the hot getSourceLocation method. Do not allow it to be inlined.
Benjamin Kramerc997eb42009-11-14 16:36:57 +0000391static DISABLE_INLINE SourceLocation GetMappedTokenLoc(Preprocessor &PP,
392 SourceLocation FileLoc,
393 unsigned CharNo,
394 unsigned TokLen);
Chris Lattner409a0362007-07-22 18:38:25 +0000395static SourceLocation GetMappedTokenLoc(Preprocessor &PP,
396 SourceLocation FileLoc,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000397 unsigned CharNo, unsigned TokLen) {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000398 assert(FileLoc.isMacroID() && "Must be an instantiation");
Mike Stump1eb44332009-09-09 15:08:12 +0000399
Chris Lattner409a0362007-07-22 18:38:25 +0000400 // Otherwise, we're lexing "mapped tokens". This is used for things like
401 // _Pragma handling. Combine the instantiation location of FileLoc with the
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000402 // spelling location.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000403 SourceManager &SM = PP.getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000405 // Create a new SLoc which is expanded from Instantiation(FileLoc) but whose
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000406 // characters come from spelling(FileLoc)+Offset.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000407 SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc);
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000408 SpellingLoc = SpellingLoc.getFileLocWithOffset(CharNo);
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattnere7fb4842009-02-15 20:52:18 +0000410 // Figure out the expansion loc range, which is the range covered by the
411 // original _Pragma(...) sequence.
412 std::pair<SourceLocation,SourceLocation> II =
413 SM.getImmediateInstantiationRange(FileLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Chris Lattnere7fb4842009-02-15 20:52:18 +0000415 return SM.createInstantiationLoc(SpellingLoc, II.first, II.second, TokLen);
Chris Lattner409a0362007-07-22 18:38:25 +0000416}
417
Reid Spencer5f016e22007-07-11 17:01:13 +0000418/// getSourceLocation - Return a source location identifier for the specified
419/// offset in the current file.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000420SourceLocation Lexer::getSourceLocation(const char *Loc,
421 unsigned TokLen) const {
Chris Lattner448cec42007-07-22 18:44:36 +0000422 assert(Loc >= BufferStart && Loc <= BufferEnd &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000423 "Location out of range for this buffer!");
Chris Lattner9dc1f532007-07-20 16:37:10 +0000424
425 // In the normal case, we're just lexing from a simple file buffer, return
426 // the file id from FileLoc with the offset specified.
Chris Lattner448cec42007-07-22 18:44:36 +0000427 unsigned CharNo = Loc-BufferStart;
Chris Lattner9dc1f532007-07-20 16:37:10 +0000428 if (FileLoc.isFileID())
Chris Lattnerbcc2a672009-01-19 06:46:35 +0000429 return FileLoc.getFileLocWithOffset(CharNo);
Mike Stump1eb44332009-09-09 15:08:12 +0000430
Chris Lattner2b2453a2009-01-17 06:22:33 +0000431 // Otherwise, this is the _Pragma lexer case, which pretends that all of the
432 // tokens are lexed from where the _Pragma was defined.
Chris Lattner168ae2d2007-10-17 20:41:00 +0000433 assert(PP && "This doesn't work on raw lexers");
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000434 return GetMappedTokenLoc(*PP, FileLoc, CharNo, TokLen);
Reid Spencer5f016e22007-07-11 17:01:13 +0000435}
436
Reid Spencer5f016e22007-07-11 17:01:13 +0000437/// Diag - Forwarding function for diagnostics. This translate a source
438/// position in the current buffer into a SourceLocation object for rendering.
Chris Lattner3cbfe2c2008-11-22 00:59:29 +0000439DiagnosticBuilder Lexer::Diag(const char *Loc, unsigned DiagID) const {
Chris Lattner3692b092008-11-18 07:59:24 +0000440 return PP->Diag(getSourceLocation(Loc), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000441}
Reid Spencer5f016e22007-07-11 17:01:13 +0000442
443//===----------------------------------------------------------------------===//
444// Trigraph and Escaped Newline Handling Code.
445//===----------------------------------------------------------------------===//
446
447/// GetTrigraphCharForLetter - Given a character that occurs after a ?? pair,
448/// return the decoded trigraph letter it corresponds to, or '\0' if nothing.
449static char GetTrigraphCharForLetter(char Letter) {
450 switch (Letter) {
451 default: return 0;
452 case '=': return '#';
453 case ')': return ']';
454 case '(': return '[';
455 case '!': return '|';
456 case '\'': return '^';
457 case '>': return '}';
458 case '/': return '\\';
459 case '<': return '{';
460 case '-': return '~';
461 }
462}
463
464/// DecodeTrigraphChar - If the specified character is a legal trigraph when
465/// prefixed with ??, emit a trigraph warning. If trigraphs are enabled,
466/// return the result character. Finally, emit a warning about trigraph use
467/// whether trigraphs are enabled or not.
468static char DecodeTrigraphChar(const char *CP, Lexer *L) {
469 char Res = GetTrigraphCharForLetter(*CP);
Chris Lattner3692b092008-11-18 07:59:24 +0000470 if (!Res || !L) return Res;
Mike Stump1eb44332009-09-09 15:08:12 +0000471
Chris Lattner3692b092008-11-18 07:59:24 +0000472 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +0000473 if (!L->isLexingRawMode())
474 L->Diag(CP-2, diag::trigraph_ignored);
Chris Lattner3692b092008-11-18 07:59:24 +0000475 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000476 }
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Chris Lattner74d15df2008-11-22 02:02:22 +0000478 if (!L->isLexingRawMode())
479 L->Diag(CP-2, diag::trigraph_converted) << std::string()+Res;
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 return Res;
481}
482
Chris Lattner24f0e482009-04-18 22:05:41 +0000483/// getEscapedNewLineSize - Return the size of the specified escaped newline,
484/// 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 +0000485/// trigraph equivalent on entry to this function.
Chris Lattner24f0e482009-04-18 22:05:41 +0000486unsigned Lexer::getEscapedNewLineSize(const char *Ptr) {
487 unsigned Size = 0;
488 while (isWhitespace(Ptr[Size])) {
489 ++Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Chris Lattner24f0e482009-04-18 22:05:41 +0000491 if (Ptr[Size-1] != '\n' && Ptr[Size-1] != '\r')
492 continue;
493
494 // If this is a \r\n or \n\r, skip the other half.
495 if ((Ptr[Size] == '\r' || Ptr[Size] == '\n') &&
496 Ptr[Size-1] != Ptr[Size])
497 ++Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000498
Chris Lattner24f0e482009-04-18 22:05:41 +0000499 return Size;
Mike Stump1eb44332009-09-09 15:08:12 +0000500 }
501
Chris Lattner24f0e482009-04-18 22:05:41 +0000502 // Not an escaped newline, must be a \t or something else.
503 return 0;
504}
505
Chris Lattner03374952009-04-18 22:27:02 +0000506/// SkipEscapedNewLines - If P points to an escaped newline (or a series of
507/// them), skip over them and return the first non-escaped-newline found,
508/// otherwise return P.
509const char *Lexer::SkipEscapedNewLines(const char *P) {
510 while (1) {
511 const char *AfterEscape;
512 if (*P == '\\') {
513 AfterEscape = P+1;
514 } else if (*P == '?') {
515 // If not a trigraph for escape, bail out.
516 if (P[1] != '?' || P[2] != '/')
517 return P;
518 AfterEscape = P+3;
519 } else {
520 return P;
521 }
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Chris Lattner03374952009-04-18 22:27:02 +0000523 unsigned NewLineSize = Lexer::getEscapedNewLineSize(AfterEscape);
524 if (NewLineSize == 0) return P;
525 P = AfterEscape+NewLineSize;
526 }
527}
528
Chris Lattner24f0e482009-04-18 22:05:41 +0000529
Reid Spencer5f016e22007-07-11 17:01:13 +0000530/// getCharAndSizeSlow - Peek a single 'character' from the specified buffer,
531/// get its size, and return it. This is tricky in several cases:
532/// 1. If currently at the start of a trigraph, we warn about the trigraph,
533/// then either return the trigraph (skipping 3 chars) or the '?',
534/// depending on whether trigraphs are enabled or not.
535/// 2. If this is an escaped newline (potentially with whitespace between
536/// the backslash and newline), implicitly skip the newline and return
537/// the char after it.
538/// 3. If this is a UCN, return it. FIXME: C++ UCN's?
539///
540/// This handles the slow/uncommon case of the getCharAndSize method. Here we
541/// know that we can accumulate into Size, and that we have already incremented
542/// Ptr by Size bytes.
543///
544/// NOTE: When this method is updated, getCharAndSizeSlowNoWarn (below) should
545/// be updated to match.
546///
547char Lexer::getCharAndSizeSlow(const char *Ptr, unsigned &Size,
Chris Lattnerd2177732007-07-20 16:59:19 +0000548 Token *Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000549 // If we have a slash, look for an escaped newline.
550 if (Ptr[0] == '\\') {
551 ++Size;
552 ++Ptr;
553Slash:
554 // Common case, backslash-char where the char is not whitespace.
555 if (!isWhitespace(Ptr[0])) return '\\';
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Chris Lattner5636a3b2009-06-23 05:15:06 +0000557 // See if we have optional whitespace characters between the slash and
558 // newline.
Chris Lattner24f0e482009-04-18 22:05:41 +0000559 if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) {
560 // Remember that this token needs to be cleaned.
561 if (Tok) Tok->setFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +0000562
Chris Lattner24f0e482009-04-18 22:05:41 +0000563 // Warn if there was whitespace between the backslash and newline.
Chris Lattner5636a3b2009-06-23 05:15:06 +0000564 if (Ptr[0] != '\n' && Ptr[0] != '\r' && Tok && !isLexingRawMode())
Chris Lattner24f0e482009-04-18 22:05:41 +0000565 Diag(Ptr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Chris Lattner24f0e482009-04-18 22:05:41 +0000567 // Found backslash<whitespace><newline>. Parse the char after it.
568 Size += EscapedNewLineSize;
569 Ptr += EscapedNewLineSize;
570 // Use slow version to accumulate a correct size field.
571 return getCharAndSizeSlow(Ptr, Size, Tok);
572 }
Mike Stump1eb44332009-09-09 15:08:12 +0000573
Reid Spencer5f016e22007-07-11 17:01:13 +0000574 // Otherwise, this is not an escaped newline, just return the slash.
575 return '\\';
576 }
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Reid Spencer5f016e22007-07-11 17:01:13 +0000578 // If this is a trigraph, process it.
579 if (Ptr[0] == '?' && Ptr[1] == '?') {
580 // If this is actually a legal trigraph (not something like "??x"), emit
581 // a trigraph warning. If so, and if trigraphs are enabled, return it.
582 if (char C = DecodeTrigraphChar(Ptr+2, Tok ? this : 0)) {
583 // Remember that this token needs to be cleaned.
Chris Lattnerd2177732007-07-20 16:59:19 +0000584 if (Tok) Tok->setFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +0000585
586 Ptr += 3;
587 Size += 3;
588 if (C == '\\') goto Slash;
589 return C;
590 }
591 }
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Reid Spencer5f016e22007-07-11 17:01:13 +0000593 // If this is neither, return a single character.
594 ++Size;
595 return *Ptr;
596}
597
598
599/// getCharAndSizeSlowNoWarn - Handle the slow/uncommon case of the
600/// getCharAndSizeNoWarn method. Here we know that we can accumulate into Size,
601/// and that we have already incremented Ptr by Size bytes.
602///
603/// NOTE: When this method is updated, getCharAndSizeSlow (above) should
604/// be updated to match.
605char Lexer::getCharAndSizeSlowNoWarn(const char *Ptr, unsigned &Size,
606 const LangOptions &Features) {
607 // If we have a slash, look for an escaped newline.
608 if (Ptr[0] == '\\') {
609 ++Size;
610 ++Ptr;
611Slash:
612 // Common case, backslash-char where the char is not whitespace.
613 if (!isWhitespace(Ptr[0])) return '\\';
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 // See if we have optional whitespace characters followed by a newline.
Chris Lattner24f0e482009-04-18 22:05:41 +0000616 if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) {
617 // Found backslash<whitespace><newline>. Parse the char after it.
618 Size += EscapedNewLineSize;
619 Ptr += EscapedNewLineSize;
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Chris Lattner24f0e482009-04-18 22:05:41 +0000621 // Use slow version to accumulate a correct size field.
622 return getCharAndSizeSlowNoWarn(Ptr, Size, Features);
623 }
Mike Stump1eb44332009-09-09 15:08:12 +0000624
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 // Otherwise, this is not an escaped newline, just return the slash.
626 return '\\';
627 }
Mike Stump1eb44332009-09-09 15:08:12 +0000628
Reid Spencer5f016e22007-07-11 17:01:13 +0000629 // If this is a trigraph, process it.
630 if (Features.Trigraphs && Ptr[0] == '?' && Ptr[1] == '?') {
631 // If this is actually a legal trigraph (not something like "??x"), return
632 // it.
633 if (char C = GetTrigraphCharForLetter(Ptr[2])) {
634 Ptr += 3;
635 Size += 3;
636 if (C == '\\') goto Slash;
637 return C;
638 }
639 }
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 // If this is neither, return a single character.
642 ++Size;
643 return *Ptr;
644}
645
646//===----------------------------------------------------------------------===//
647// Helper methods for lexing.
648//===----------------------------------------------------------------------===//
649
Chris Lattnerd2177732007-07-20 16:59:19 +0000650void Lexer::LexIdentifier(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000651 // Match [_A-Za-z0-9]*, we have already matched [_A-Za-z$]
652 unsigned Size;
653 unsigned char C = *CurPtr++;
Chris Lattnercd991db2010-01-11 02:38:50 +0000654 while (isIdentifierBody(C))
Reid Spencer5f016e22007-07-11 17:01:13 +0000655 C = *CurPtr++;
Chris Lattnercd991db2010-01-11 02:38:50 +0000656
Reid Spencer5f016e22007-07-11 17:01:13 +0000657 --CurPtr; // Back up over the skipped character.
658
659 // Fast path, no $,\,? in identifier found. '\' might be an escaped newline
660 // or UCN, and ? might be a trigraph for '\', an escaped newline or UCN.
661 // FIXME: UCNs.
Chris Lattnercd991db2010-01-11 02:38:50 +0000662 //
663 // TODO: Could merge these checks into a CharInfo flag to make the comparison
664 // cheaper
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 if (C != '\\' && C != '?' && (C != '$' || !Features.DollarIdents)) {
666FinishIdentifier:
667 const char *IdStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +0000668 FormTokenWithChars(Result, CurPtr, tok::identifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Reid Spencer5f016e22007-07-11 17:01:13 +0000670 // If we are in raw mode, return this identifier raw. There is no need to
671 // look up identifier information or attempt to macro expand it.
672 if (LexingRawMode) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Reid Spencer5f016e22007-07-11 17:01:13 +0000674 // Fill in Result.IdentifierInfo, looking up the identifier in the
675 // identifier table.
Chris Lattnerd1186fa2009-01-21 07:45:14 +0000676 IdentifierInfo *II = PP->LookUpIdentifierInfo(Result, IdStart);
Mike Stump1eb44332009-09-09 15:08:12 +0000677
Chris Lattner863c4862009-01-23 18:35:48 +0000678 // Change the kind of this identifier to the appropriate token kind, e.g.
679 // turning "for" into a keyword.
680 Result.setKind(II->getTokenID());
Mike Stump1eb44332009-09-09 15:08:12 +0000681
Reid Spencer5f016e22007-07-11 17:01:13 +0000682 // Finally, now that we know we have an identifier, pass this off to the
683 // preprocessor, which may macro expand it or something.
Chris Lattnerd1186fa2009-01-21 07:45:14 +0000684 if (II->isHandleIdentifierCase())
Chris Lattner6a170eb2009-01-21 07:43:11 +0000685 PP->HandleIdentifier(Result);
686 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000687 }
Mike Stump1eb44332009-09-09 15:08:12 +0000688
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 // Otherwise, $,\,? in identifier found. Enter slower path.
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 C = getCharAndSize(CurPtr, Size);
692 while (1) {
693 if (C == '$') {
694 // If we hit a $ and they are not supported in identifiers, we are done.
695 if (!Features.DollarIdents) goto FinishIdentifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000696
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 // Otherwise, emit a diagnostic and continue.
Chris Lattner74d15df2008-11-22 02:02:22 +0000698 if (!isLexingRawMode())
699 Diag(CurPtr, diag::ext_dollar_in_identifier);
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 CurPtr = ConsumeChar(CurPtr, Size, Result);
701 C = getCharAndSize(CurPtr, Size);
702 continue;
703 } else if (!isIdentifierBody(C)) { // FIXME: UCNs.
704 // Found end of identifier.
705 goto FinishIdentifier;
706 }
707
708 // Otherwise, this character is good, consume it.
709 CurPtr = ConsumeChar(CurPtr, Size, Result);
710
711 C = getCharAndSize(CurPtr, Size);
712 while (isIdentifierBody(C)) { // FIXME: UCNs.
713 CurPtr = ConsumeChar(CurPtr, Size, Result);
714 C = getCharAndSize(CurPtr, Size);
715 }
716 }
717}
718
719
Nate Begeman5253c7f2008-04-14 02:26:39 +0000720/// LexNumericConstant - Lex the remainder of a integer or floating point
Reid Spencer5f016e22007-07-11 17:01:13 +0000721/// constant. From[-1] is the first character lexed. Return the end of the
722/// constant.
Chris Lattnerd2177732007-07-20 16:59:19 +0000723void Lexer::LexNumericConstant(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000724 unsigned Size;
725 char C = getCharAndSize(CurPtr, Size);
726 char PrevCh = 0;
727 while (isNumberBody(C)) { // FIXME: UCNs?
728 CurPtr = ConsumeChar(CurPtr, Size, Result);
729 PrevCh = C;
730 C = getCharAndSize(CurPtr, Size);
731 }
Mike Stump1eb44332009-09-09 15:08:12 +0000732
Reid Spencer5f016e22007-07-11 17:01:13 +0000733 // If we fell out, check for a sign, due to 1e+12. If we have one, continue.
734 if ((C == '-' || C == '+') && (PrevCh == 'E' || PrevCh == 'e'))
735 return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result));
736
737 // If we have a hex FP constant, continue.
Sean Hunt8c723402010-01-10 23:37:56 +0000738 if ((C == '-' || C == '+') && (PrevCh == 'P' || PrevCh == 'p') &&
739 (!PP || !PP->getLangOptions().CPlusPlus0x))
Reid Spencer5f016e22007-07-11 17:01:13 +0000740 return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result));
Mike Stump1eb44332009-09-09 15:08:12 +0000741
Reid Spencer5f016e22007-07-11 17:01:13 +0000742 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +0000743 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +0000744 FormTokenWithChars(Result, CurPtr, tok::numeric_constant);
Chris Lattner47246be2009-01-26 19:29:26 +0000745 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +0000746}
747
748/// LexStringLiteral - Lex the remainder of a string literal, after having lexed
749/// either " or L".
Chris Lattnerd88dc482008-10-12 04:05:48 +0000750void Lexer::LexStringLiteral(Token &Result, const char *CurPtr, bool Wide) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 const char *NulCharacter = 0; // Does this string contain the \0 character?
Mike Stump1eb44332009-09-09 15:08:12 +0000752
Reid Spencer5f016e22007-07-11 17:01:13 +0000753 char C = getAndAdvanceChar(CurPtr, Result);
754 while (C != '"') {
755 // Skip escaped characters.
756 if (C == '\\') {
757 // Skip the escaped character.
758 C = getAndAdvanceChar(CurPtr, Result);
759 } else if (C == '\n' || C == '\r' || // Newline.
760 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Chris Lattner33ab3f62009-03-18 21:10:12 +0000761 if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattner74d15df2008-11-22 02:02:22 +0000762 Diag(BufferPtr, diag::err_unterminated_string);
Chris Lattner9e6293d2008-10-12 04:51:35 +0000763 FormTokenWithChars(Result, CurPtr-1, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +0000764 return;
765 } else if (C == 0) {
766 NulCharacter = CurPtr-1;
767 }
768 C = getAndAdvanceChar(CurPtr, Result);
769 }
Mike Stump1eb44332009-09-09 15:08:12 +0000770
Reid Spencer5f016e22007-07-11 17:01:13 +0000771 // If a nul character existed in the string, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +0000772 if (NulCharacter && !isLexingRawMode())
773 Diag(NulCharacter, diag::null_in_string);
Reid Spencer5f016e22007-07-11 17:01:13 +0000774
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 // Update the location of the token as well as the BufferPtr instance var.
Chris Lattner47246be2009-01-26 19:29:26 +0000776 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +0000777 FormTokenWithChars(Result, CurPtr,
778 Wide ? tok::wide_string_literal : tok::string_literal);
Chris Lattner47246be2009-01-26 19:29:26 +0000779 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +0000780}
781
782/// LexAngledStringLiteral - Lex the remainder of an angled string literal,
783/// after having lexed the '<' character. This is used for #include filenames.
Chris Lattnerd2177732007-07-20 16:59:19 +0000784void Lexer::LexAngledStringLiteral(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 const char *NulCharacter = 0; // Does this string contain the \0 character?
Chris Lattner9cb51ce2009-04-17 23:56:52 +0000786 const char *AfterLessPos = CurPtr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 char C = getAndAdvanceChar(CurPtr, Result);
788 while (C != '>') {
789 // Skip escaped characters.
790 if (C == '\\') {
791 // Skip the escaped character.
792 C = getAndAdvanceChar(CurPtr, Result);
793 } else if (C == '\n' || C == '\r' || // Newline.
794 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Chris Lattner9cb51ce2009-04-17 23:56:52 +0000795 // If the filename is unterminated, then it must just be a lone <
796 // character. Return this as such.
797 FormTokenWithChars(Result, AfterLessPos, tok::less);
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 return;
799 } else if (C == 0) {
800 NulCharacter = CurPtr-1;
801 }
802 C = getAndAdvanceChar(CurPtr, Result);
803 }
Mike Stump1eb44332009-09-09 15:08:12 +0000804
Reid Spencer5f016e22007-07-11 17:01:13 +0000805 // If a nul character existed in the string, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +0000806 if (NulCharacter && !isLexingRawMode())
807 Diag(NulCharacter, diag::null_in_string);
Mike Stump1eb44332009-09-09 15:08:12 +0000808
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +0000810 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +0000811 FormTokenWithChars(Result, CurPtr, tok::angle_string_literal);
Chris Lattner47246be2009-01-26 19:29:26 +0000812 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +0000813}
814
815
816/// LexCharConstant - Lex the remainder of a character constant, after having
817/// lexed either ' or L'.
Chris Lattnerd2177732007-07-20 16:59:19 +0000818void Lexer::LexCharConstant(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000819 const char *NulCharacter = 0; // Does this character contain the \0 character?
820
821 // Handle the common case of 'x' and '\y' efficiently.
822 char C = getAndAdvanceChar(CurPtr, Result);
823 if (C == '\'') {
Chris Lattner33ab3f62009-03-18 21:10:12 +0000824 if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattner74d15df2008-11-22 02:02:22 +0000825 Diag(BufferPtr, diag::err_empty_character);
Chris Lattner9e6293d2008-10-12 04:51:35 +0000826 FormTokenWithChars(Result, CurPtr, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +0000827 return;
828 } else if (C == '\\') {
829 // Skip the escaped character.
830 // FIXME: UCN's.
831 C = getAndAdvanceChar(CurPtr, Result);
832 }
Mike Stump1eb44332009-09-09 15:08:12 +0000833
Reid Spencer5f016e22007-07-11 17:01:13 +0000834 if (C && C != '\n' && C != '\r' && CurPtr[0] == '\'') {
835 ++CurPtr;
836 } else {
837 // Fall back on generic code for embedded nulls, newlines, wide chars.
838 do {
839 // Skip escaped characters.
840 if (C == '\\') {
841 // Skip the escaped character.
842 C = getAndAdvanceChar(CurPtr, Result);
843 } else if (C == '\n' || C == '\r' || // Newline.
844 (C == 0 && CurPtr-1 == BufferEnd)) { // End of file.
Chris Lattner33ab3f62009-03-18 21:10:12 +0000845 if (!isLexingRawMode() && !Features.AsmPreprocessor)
Chris Lattner74d15df2008-11-22 02:02:22 +0000846 Diag(BufferPtr, diag::err_unterminated_char);
Chris Lattner9e6293d2008-10-12 04:51:35 +0000847 FormTokenWithChars(Result, CurPtr-1, tok::unknown);
Reid Spencer5f016e22007-07-11 17:01:13 +0000848 return;
849 } else if (C == 0) {
850 NulCharacter = CurPtr-1;
851 }
852 C = getAndAdvanceChar(CurPtr, Result);
853 } while (C != '\'');
854 }
Mike Stump1eb44332009-09-09 15:08:12 +0000855
Chris Lattner74d15df2008-11-22 02:02:22 +0000856 if (NulCharacter && !isLexingRawMode())
857 Diag(NulCharacter, diag::null_in_char);
Reid Spencer5f016e22007-07-11 17:01:13 +0000858
Reid Spencer5f016e22007-07-11 17:01:13 +0000859 // Update the location of token as well as BufferPtr.
Chris Lattner47246be2009-01-26 19:29:26 +0000860 const char *TokStart = BufferPtr;
Chris Lattner9e6293d2008-10-12 04:51:35 +0000861 FormTokenWithChars(Result, CurPtr, tok::char_constant);
Chris Lattner47246be2009-01-26 19:29:26 +0000862 Result.setLiteralData(TokStart);
Reid Spencer5f016e22007-07-11 17:01:13 +0000863}
864
865/// SkipWhitespace - Efficiently skip over a series of whitespace characters.
866/// Update BufferPtr to point to the next non-whitespace character and return.
Chris Lattnerd88dc482008-10-12 04:05:48 +0000867///
868/// This method forms a token and returns true if KeepWhitespaceMode is enabled.
869///
870bool Lexer::SkipWhitespace(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000871 // Whitespace - Skip it, then return the token after the whitespace.
872 unsigned char Char = *CurPtr; // Skip consequtive spaces efficiently.
873 while (1) {
874 // Skip horizontal whitespace very aggressively.
875 while (isHorizontalWhitespace(Char))
876 Char = *++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +0000877
Daniel Dunbarddd3e8b2008-11-25 00:20:22 +0000878 // Otherwise if we have something other than whitespace, we're done.
Reid Spencer5f016e22007-07-11 17:01:13 +0000879 if (Char != '\n' && Char != '\r')
880 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000881
Reid Spencer5f016e22007-07-11 17:01:13 +0000882 if (ParsingPreprocessorDirective) {
883 // End of preprocessor directive line, let LexTokenInternal handle this.
884 BufferPtr = CurPtr;
Chris Lattnerd88dc482008-10-12 04:05:48 +0000885 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000886 }
Mike Stump1eb44332009-09-09 15:08:12 +0000887
Reid Spencer5f016e22007-07-11 17:01:13 +0000888 // ok, but handle newline.
889 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +0000890 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +0000891 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +0000892 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000893 Char = *++CurPtr;
894 }
895
896 // If this isn't immediately after a newline, there is leading space.
897 char PrevChar = CurPtr[-1];
898 if (PrevChar != '\n' && PrevChar != '\r')
Chris Lattnerd2177732007-07-20 16:59:19 +0000899 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000900
Chris Lattnerd88dc482008-10-12 04:05:48 +0000901 // If the client wants us to return whitespace, return it now.
902 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +0000903 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +0000904 return true;
905 }
Mike Stump1eb44332009-09-09 15:08:12 +0000906
Reid Spencer5f016e22007-07-11 17:01:13 +0000907 BufferPtr = CurPtr;
Chris Lattnerd88dc482008-10-12 04:05:48 +0000908 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000909}
910
911// SkipBCPLComment - We have just read the // characters from input. Skip until
912// we find the newline character thats terminate the comment. Then update
Chris Lattner046c2272010-01-18 22:35:47 +0000913/// BufferPtr and return.
914///
915/// If we're in KeepCommentMode or any CommentHandler has inserted
916/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +0000917bool Lexer::SkipBCPLComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000918 // If BCPL comments aren't explicitly enabled for this language, emit an
919 // extension warning.
Chris Lattner74d15df2008-11-22 02:02:22 +0000920 if (!Features.BCPLComment && !isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 Diag(BufferPtr, diag::ext_bcpl_comment);
Mike Stump1eb44332009-09-09 15:08:12 +0000922
Reid Spencer5f016e22007-07-11 17:01:13 +0000923 // Mark them enabled so we only emit one warning for this translation
924 // unit.
925 Features.BCPLComment = true;
926 }
Mike Stump1eb44332009-09-09 15:08:12 +0000927
Reid Spencer5f016e22007-07-11 17:01:13 +0000928 // Scan over the body of the comment. The common case, when scanning, is that
929 // the comment contains normal ascii characters with nothing interesting in
930 // them. As such, optimize for this case with the inner loop.
931 char C;
932 do {
933 C = *CurPtr;
934 // FIXME: Speedup BCPL comment lexing. Just scan for a \n or \r character.
935 // If we find a \n character, scan backwards, checking to see if it's an
936 // escaped newline, like we do for block comments.
Mike Stump1eb44332009-09-09 15:08:12 +0000937
Reid Spencer5f016e22007-07-11 17:01:13 +0000938 // Skip over characters in the fast loop.
939 while (C != 0 && // Potentially EOF.
940 C != '\\' && // Potentially escaped newline.
941 C != '?' && // Potentially trigraph.
942 C != '\n' && C != '\r') // Newline or DOS-style newline.
943 C = *++CurPtr;
944
945 // If this is a newline, we're done.
946 if (C == '\n' || C == '\r')
947 break; // Found the newline? Break out!
Mike Stump1eb44332009-09-09 15:08:12 +0000948
Reid Spencer5f016e22007-07-11 17:01:13 +0000949 // Otherwise, this is a hard case. Fall back on getAndAdvanceChar to
Chris Lattnerbc3e9842008-12-12 07:34:39 +0000950 // properly decode the character. Read it in raw mode to avoid emitting
951 // diagnostics about things like trigraphs. If we see an escaped newline,
952 // we'll handle it below.
Reid Spencer5f016e22007-07-11 17:01:13 +0000953 const char *OldPtr = CurPtr;
Chris Lattnerbc3e9842008-12-12 07:34:39 +0000954 bool OldRawMode = isLexingRawMode();
955 LexingRawMode = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000956 C = getAndAdvanceChar(CurPtr, Result);
Chris Lattnerbc3e9842008-12-12 07:34:39 +0000957 LexingRawMode = OldRawMode;
Chris Lattneread616c2009-04-05 00:26:41 +0000958
959 // If the char that we finally got was a \n, then we must have had something
960 // like \<newline><newline>. We don't want to have consumed the second
961 // newline, we want CurPtr, to end up pointing to it down below.
962 if (C == '\n' || C == '\r') {
963 --CurPtr;
964 C = 'x'; // doesn't matter what this is.
965 }
Mike Stump1eb44332009-09-09 15:08:12 +0000966
Reid Spencer5f016e22007-07-11 17:01:13 +0000967 // If we read multiple characters, and one of those characters was a \r or
968 // \n, then we had an escaped newline within the comment. Emit diagnostic
969 // unless the next line is also a // comment.
970 if (CurPtr != OldPtr+1 && C != '/' && CurPtr[0] != '/') {
971 for (; OldPtr != CurPtr; ++OldPtr)
972 if (OldPtr[0] == '\n' || OldPtr[0] == '\r') {
973 // Okay, we found a // comment that ends in a newline, if the next
974 // line is also a // comment, but has spaces, don't emit a diagnostic.
975 if (isspace(C)) {
976 const char *ForwardPtr = CurPtr;
977 while (isspace(*ForwardPtr)) // Skip whitespace.
978 ++ForwardPtr;
979 if (ForwardPtr[0] == '/' && ForwardPtr[1] == '/')
980 break;
981 }
Mike Stump1eb44332009-09-09 15:08:12 +0000982
Chris Lattner74d15df2008-11-22 02:02:22 +0000983 if (!isLexingRawMode())
984 Diag(OldPtr-1, diag::ext_multi_line_bcpl_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 break;
986 }
987 }
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Reid Spencer5f016e22007-07-11 17:01:13 +0000989 if (CurPtr == BufferEnd+1) { --CurPtr; break; }
990 } while (C != '\n' && C != '\r');
991
Chris Lattner3d0ad582010-02-03 21:06:21 +0000992 // Found but did not consume the newline. Notify comment handlers about the
993 // comment unless we're in a #if 0 block.
994 if (PP && !isLexingRawMode() &&
995 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
996 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +0000997 BufferPtr = CurPtr;
998 return true; // A token has to be returned.
999 }
Mike Stump1eb44332009-09-09 15:08:12 +00001000
Reid Spencer5f016e22007-07-11 17:01:13 +00001001 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001002 if (inKeepCommentMode())
Reid Spencer5f016e22007-07-11 17:01:13 +00001003 return SaveBCPLComment(Result, CurPtr);
1004
1005 // If we are inside a preprocessor directive and we see the end of line,
1006 // return immediately, so that the lexer can return this as an EOM token.
1007 if (ParsingPreprocessorDirective || CurPtr == BufferEnd) {
1008 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001009 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001010 }
Mike Stump1eb44332009-09-09 15:08:12 +00001011
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 // Otherwise, eat the \n character. We don't care if this is a \n\r or
Chris Lattner7a4f0042008-10-12 00:23:07 +00001013 // \r\n sequence. This is an efficiency hack (because we know the \n can't
Chris Lattnerd88dc482008-10-12 04:05:48 +00001014 // contribute to another token), it isn't needed for correctness. Note that
1015 // this is ok even in KeepWhitespaceMode, because we would have returned the
1016 /// comment above in that mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00001017 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001018
Reid Spencer5f016e22007-07-11 17:01:13 +00001019 // The next returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001020 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001021 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001022 Result.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001023 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001024 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001025}
1026
1027/// SaveBCPLComment - If in save-comment mode, package up this BCPL comment in
1028/// an appropriate way and return it.
Chris Lattnerd2177732007-07-20 16:59:19 +00001029bool Lexer::SaveBCPLComment(Token &Result, const char *CurPtr) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001030 // If we're not in a preprocessor directive, just return the // comment
1031 // directly.
1032 FormTokenWithChars(Result, CurPtr, tok::comment);
Mike Stump1eb44332009-09-09 15:08:12 +00001033
Chris Lattner9e6293d2008-10-12 04:51:35 +00001034 if (!ParsingPreprocessorDirective)
1035 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001036
Chris Lattner9e6293d2008-10-12 04:51:35 +00001037 // If this BCPL-style comment is in a macro definition, transmogrify it into
1038 // a C-style block comment.
1039 std::string Spelling = PP->getSpelling(Result);
1040 assert(Spelling[0] == '/' && Spelling[1] == '/' && "Not bcpl comment?");
1041 Spelling[1] = '*'; // Change prefix to "/*".
1042 Spelling += "*/"; // add suffix.
Mike Stump1eb44332009-09-09 15:08:12 +00001043
Chris Lattner9e6293d2008-10-12 04:51:35 +00001044 Result.setKind(tok::comment);
Chris Lattner47246be2009-01-26 19:29:26 +00001045 PP->CreateString(&Spelling[0], Spelling.size(), Result,
1046 Result.getLocation());
Chris Lattner2d381892008-10-12 04:15:42 +00001047 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001048}
1049
1050/// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline
1051/// character (either \n or \r) is part of an escaped newline sequence. Issue a
Chris Lattner47a2b402008-12-12 07:14:34 +00001052/// diagnostic if so. We know that the newline is inside of a block comment.
Mike Stump1eb44332009-09-09 15:08:12 +00001053static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr,
Reid Spencer5f016e22007-07-11 17:01:13 +00001054 Lexer *L) {
1055 assert(CurPtr[0] == '\n' || CurPtr[0] == '\r');
Mike Stump1eb44332009-09-09 15:08:12 +00001056
Reid Spencer5f016e22007-07-11 17:01:13 +00001057 // Back up off the newline.
1058 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001059
Reid Spencer5f016e22007-07-11 17:01:13 +00001060 // If this is a two-character newline sequence, skip the other character.
1061 if (CurPtr[0] == '\n' || CurPtr[0] == '\r') {
1062 // \n\n or \r\r -> not escaped newline.
1063 if (CurPtr[0] == CurPtr[1])
1064 return false;
1065 // \n\r or \r\n -> skip the newline.
1066 --CurPtr;
1067 }
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Reid Spencer5f016e22007-07-11 17:01:13 +00001069 // If we have horizontal whitespace, skip over it. We allow whitespace
1070 // between the slash and newline.
1071 bool HasSpace = false;
1072 while (isHorizontalWhitespace(*CurPtr) || *CurPtr == 0) {
1073 --CurPtr;
1074 HasSpace = true;
1075 }
Mike Stump1eb44332009-09-09 15:08:12 +00001076
Reid Spencer5f016e22007-07-11 17:01:13 +00001077 // If we have a slash, we know this is an escaped newline.
1078 if (*CurPtr == '\\') {
1079 if (CurPtr[-1] != '*') return false;
1080 } else {
1081 // It isn't a slash, is it the ?? / trigraph?
1082 if (CurPtr[0] != '/' || CurPtr[-1] != '?' || CurPtr[-2] != '?' ||
1083 CurPtr[-3] != '*')
1084 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001085
Reid Spencer5f016e22007-07-11 17:01:13 +00001086 // This is the trigraph ending the comment. Emit a stern warning!
1087 CurPtr -= 2;
1088
1089 // If no trigraphs are enabled, warn that we ignored this trigraph and
1090 // ignore this * character.
1091 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001092 if (!L->isLexingRawMode())
1093 L->Diag(CurPtr, diag::trigraph_ignored_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001094 return false;
1095 }
Chris Lattner74d15df2008-11-22 02:02:22 +00001096 if (!L->isLexingRawMode())
1097 L->Diag(CurPtr, diag::trigraph_ends_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001098 }
Mike Stump1eb44332009-09-09 15:08:12 +00001099
Reid Spencer5f016e22007-07-11 17:01:13 +00001100 // Warn about having an escaped newline between the */ characters.
Chris Lattner74d15df2008-11-22 02:02:22 +00001101 if (!L->isLexingRawMode())
1102 L->Diag(CurPtr, diag::escaped_newline_block_comment_end);
Mike Stump1eb44332009-09-09 15:08:12 +00001103
Reid Spencer5f016e22007-07-11 17:01:13 +00001104 // If there was space between the backslash and newline, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001105 if (HasSpace && !L->isLexingRawMode())
1106 L->Diag(CurPtr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +00001107
Reid Spencer5f016e22007-07-11 17:01:13 +00001108 return true;
1109}
1110
1111#ifdef __SSE2__
1112#include <emmintrin.h>
1113#elif __ALTIVEC__
1114#include <altivec.h>
1115#undef bool
1116#endif
1117
1118/// SkipBlockComment - We have just read the /* characters from input. Read
1119/// until we find the */ characters that terminate the comment. Note that we
1120/// don't bother decoding trigraphs or escaped newlines in block comments,
1121/// because they cannot cause the comment to end. The only thing that can
1122/// happen is the comment could end with an escaped newline between the */ end
1123/// of comment.
Chris Lattner2d381892008-10-12 04:15:42 +00001124///
Chris Lattner046c2272010-01-18 22:35:47 +00001125/// If we're in KeepCommentMode or any CommentHandler has inserted
1126/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +00001127bool Lexer::SkipBlockComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001128 // Scan one character past where we should, looking for a '/' character. Once
1129 // we find it, check to see if it was preceeded by a *. This common
1130 // optimization helps people who like to put a lot of * characters in their
1131 // comments.
Chris Lattner8146b682007-07-21 23:43:37 +00001132
1133 // The first character we get with newlines and trigraphs skipped to handle
1134 // the degenerate /*/ case below correctly if the * has an escaped newline
1135 // after it.
1136 unsigned CharSize;
1137 unsigned char C = getCharAndSize(CurPtr, CharSize);
1138 CurPtr += CharSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001139 if (C == 0 && CurPtr == BufferEnd+1) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001140 if (!isLexingRawMode())
Chris Lattner0af57422008-10-12 01:31:51 +00001141 Diag(BufferPtr, diag::err_unterminated_block_comment);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001142 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001143
Chris Lattner31f0eca2008-10-12 04:19:49 +00001144 // KeepWhitespaceMode should return this broken comment as a token. Since
1145 // it isn't a well formed comment, just return it as an 'unknown' token.
1146 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001147 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001148 return true;
1149 }
Mike Stump1eb44332009-09-09 15:08:12 +00001150
Chris Lattner31f0eca2008-10-12 04:19:49 +00001151 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001152 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001153 }
Mike Stump1eb44332009-09-09 15:08:12 +00001154
Chris Lattner8146b682007-07-21 23:43:37 +00001155 // Check to see if the first character after the '/*' is another /. If so,
1156 // then this slash does not end the block comment, it is part of it.
1157 if (C == '/')
1158 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Reid Spencer5f016e22007-07-11 17:01:13 +00001160 while (1) {
1161 // Skip over all non-interesting characters until we find end of buffer or a
1162 // (probably ending) '/' character.
1163 if (CurPtr + 24 < BufferEnd) {
1164 // While not aligned to a 16-byte boundary.
1165 while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0)
1166 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001167
Reid Spencer5f016e22007-07-11 17:01:13 +00001168 if (C == '/') goto FoundSlash;
1169
1170#ifdef __SSE2__
1171 __m128i Slashes = _mm_set_epi8('/', '/', '/', '/', '/', '/', '/', '/',
1172 '/', '/', '/', '/', '/', '/', '/', '/');
1173 while (CurPtr+16 <= BufferEnd &&
1174 _mm_movemask_epi8(_mm_cmpeq_epi8(*(__m128i*)CurPtr, Slashes)) == 0)
1175 CurPtr += 16;
1176#elif __ALTIVEC__
1177 __vector unsigned char Slashes = {
Mike Stump1eb44332009-09-09 15:08:12 +00001178 '/', '/', '/', '/', '/', '/', '/', '/',
Reid Spencer5f016e22007-07-11 17:01:13 +00001179 '/', '/', '/', '/', '/', '/', '/', '/'
1180 };
1181 while (CurPtr+16 <= BufferEnd &&
1182 !vec_any_eq(*(vector unsigned char*)CurPtr, Slashes))
1183 CurPtr += 16;
Mike Stump1eb44332009-09-09 15:08:12 +00001184#else
Reid Spencer5f016e22007-07-11 17:01:13 +00001185 // Scan for '/' quickly. Many block comments are very large.
1186 while (CurPtr[0] != '/' &&
1187 CurPtr[1] != '/' &&
1188 CurPtr[2] != '/' &&
1189 CurPtr[3] != '/' &&
1190 CurPtr+4 < BufferEnd) {
1191 CurPtr += 4;
1192 }
1193#endif
Mike Stump1eb44332009-09-09 15:08:12 +00001194
Reid Spencer5f016e22007-07-11 17:01:13 +00001195 // It has to be one of the bytes scanned, increment to it and read one.
1196 C = *CurPtr++;
1197 }
Mike Stump1eb44332009-09-09 15:08:12 +00001198
Reid Spencer5f016e22007-07-11 17:01:13 +00001199 // Loop to scan the remainder.
1200 while (C != '/' && C != '\0')
1201 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Reid Spencer5f016e22007-07-11 17:01:13 +00001203 FoundSlash:
1204 if (C == '/') {
1205 if (CurPtr[-2] == '*') // We found the final */. We're done!
1206 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001207
Reid Spencer5f016e22007-07-11 17:01:13 +00001208 if ((CurPtr[-2] == '\n' || CurPtr[-2] == '\r')) {
1209 if (isEndOfBlockCommentWithEscapedNewLine(CurPtr-2, this)) {
1210 // We found the final */, though it had an escaped newline between the
1211 // * and /. We're done!
1212 break;
1213 }
1214 }
1215 if (CurPtr[0] == '*' && CurPtr[1] != '/') {
1216 // If this is a /* inside of the comment, emit a warning. Don't do this
1217 // if this is a /*/, which will end the comment. This misses cases with
1218 // embedded escaped newlines, but oh well.
Chris Lattner74d15df2008-11-22 02:02:22 +00001219 if (!isLexingRawMode())
1220 Diag(CurPtr-1, diag::warn_nested_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001221 }
1222 } else if (C == 0 && CurPtr == BufferEnd+1) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001223 if (!isLexingRawMode())
1224 Diag(BufferPtr, diag::err_unterminated_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001225 // Note: the user probably forgot a */. We could continue immediately
1226 // after the /*, but this would involve lexing a lot of what really is the
1227 // comment, which surely would confuse the parser.
Chris Lattner31f0eca2008-10-12 04:19:49 +00001228 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001229
Chris Lattner31f0eca2008-10-12 04:19:49 +00001230 // KeepWhitespaceMode should return this broken comment as a token. Since
1231 // it isn't a well formed comment, just return it as an 'unknown' token.
1232 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001233 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001234 return true;
1235 }
Mike Stump1eb44332009-09-09 15:08:12 +00001236
Chris Lattner31f0eca2008-10-12 04:19:49 +00001237 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001238 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001239 }
1240 C = *CurPtr++;
1241 }
Mike Stump1eb44332009-09-09 15:08:12 +00001242
Chris Lattner3d0ad582010-02-03 21:06:21 +00001243 // Notify comment handlers about the comment unless we're in a #if 0 block.
1244 if (PP && !isLexingRawMode() &&
1245 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
1246 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +00001247 BufferPtr = CurPtr;
1248 return true; // A token has to be returned.
1249 }
Douglas Gregor2e222532009-07-02 17:08:52 +00001250
Reid Spencer5f016e22007-07-11 17:01:13 +00001251 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001252 if (inKeepCommentMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001253 FormTokenWithChars(Result, CurPtr, tok::comment);
Chris Lattner2d381892008-10-12 04:15:42 +00001254 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 }
1256
1257 // It is common for the tokens immediately after a /**/ comment to be
1258 // whitespace. Instead of going through the big switch, handle it
Chris Lattnerd88dc482008-10-12 04:05:48 +00001259 // efficiently now. This is safe even in KeepWhitespaceMode because we would
1260 // have already returned above with the comment as a token.
Reid Spencer5f016e22007-07-11 17:01:13 +00001261 if (isHorizontalWhitespace(*CurPtr)) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001262 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001263 SkipWhitespace(Result, CurPtr+1);
Chris Lattner2d381892008-10-12 04:15:42 +00001264 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 }
1266
1267 // Otherwise, just return so that the next character will be lexed as a token.
1268 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001269 Result.setFlag(Token::LeadingSpace);
Chris Lattner2d381892008-10-12 04:15:42 +00001270 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001271}
1272
1273//===----------------------------------------------------------------------===//
1274// Primary Lexing Entry Points
1275//===----------------------------------------------------------------------===//
1276
Reid Spencer5f016e22007-07-11 17:01:13 +00001277/// ReadToEndOfLine - Read the rest of the current preprocessor line as an
1278/// uninterpreted string. This switches the lexer out of directive mode.
1279std::string Lexer::ReadToEndOfLine() {
1280 assert(ParsingPreprocessorDirective && ParsingFilename == false &&
1281 "Must be in a preprocessing directive!");
1282 std::string Result;
Chris Lattnerd2177732007-07-20 16:59:19 +00001283 Token Tmp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001284
1285 // CurPtr - Cache BufferPtr in an automatic variable.
1286 const char *CurPtr = BufferPtr;
1287 while (1) {
1288 char Char = getAndAdvanceChar(CurPtr, Tmp);
1289 switch (Char) {
1290 default:
1291 Result += Char;
1292 break;
1293 case 0: // Null.
1294 // Found end of file?
1295 if (CurPtr-1 != BufferEnd) {
1296 // Nope, normal character, continue.
1297 Result += Char;
1298 break;
1299 }
1300 // FALL THROUGH.
1301 case '\r':
1302 case '\n':
1303 // Okay, we found the end of the line. First, back up past the \0, \r, \n.
1304 assert(CurPtr[-1] == Char && "Trigraphs for newline?");
1305 BufferPtr = CurPtr-1;
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Reid Spencer5f016e22007-07-11 17:01:13 +00001307 // Next, lex the character, which should handle the EOM transition.
1308 Lex(Tmp);
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001309 assert(Tmp.is(tok::eom) && "Unexpected token!");
Mike Stump1eb44332009-09-09 15:08:12 +00001310
Reid Spencer5f016e22007-07-11 17:01:13 +00001311 // Finally, we're done, return the string we found.
1312 return Result;
1313 }
1314 }
1315}
1316
1317/// LexEndOfFile - CurPtr points to the end of this file. Handle this
1318/// condition, reporting diagnostics and handling other edge cases as required.
1319/// This returns true if Result contains a token, false if PP.Lex should be
1320/// called again.
Chris Lattnerd2177732007-07-20 16:59:19 +00001321bool Lexer::LexEndOfFile(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001322 // If we hit the end of the file while parsing a preprocessor directive,
1323 // end the preprocessor directive first. The next token returned will
1324 // then be the end of file.
1325 if (ParsingPreprocessorDirective) {
1326 // Done parsing the "line".
1327 ParsingPreprocessorDirective = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001328 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00001329 FormTokenWithChars(Result, CurPtr, tok::eom);
Mike Stump1eb44332009-09-09 15:08:12 +00001330
Reid Spencer5f016e22007-07-11 17:01:13 +00001331 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00001332 SetCommentRetentionState(PP->getCommentRetentionState());
Reid Spencer5f016e22007-07-11 17:01:13 +00001333 return true; // Have a token.
Mike Stump1eb44332009-09-09 15:08:12 +00001334 }
Douglas Gregor86d9a522009-09-21 16:56:56 +00001335
Reid Spencer5f016e22007-07-11 17:01:13 +00001336 // If we are in raw mode, return this event as an EOF token. Let the caller
1337 // that put us in raw mode handle the event.
Chris Lattner74d15df2008-11-22 02:02:22 +00001338 if (isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001339 Result.startToken();
1340 BufferPtr = BufferEnd;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001341 FormTokenWithChars(Result, BufferEnd, tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +00001342 return true;
1343 }
Mike Stump1eb44332009-09-09 15:08:12 +00001344
Douglas Gregor86d9a522009-09-21 16:56:56 +00001345 // Otherwise, check if we are code-completing, then issue diagnostics for
1346 // unterminated #if and missing newline.
Reid Spencer5f016e22007-07-11 17:01:13 +00001347
Douglas Gregor29684422009-12-02 06:49:09 +00001348 if (PP && PP->isCodeCompletionFile(FileLoc)) {
1349 // We're at the end of the file, but we've been asked to consider the
1350 // end of the file to be a code-completion token. Return the
1351 // code-completion token.
1352 Result.startToken();
1353 FormTokenWithChars(Result, CurPtr, tok::code_completion);
Douglas Gregor86d9a522009-09-21 16:56:56 +00001354
Douglas Gregor29684422009-12-02 06:49:09 +00001355 // Only do the eof -> code_completion translation once.
1356 PP->SetCodeCompletionPoint(0, 0, 0);
1357 return true;
Douglas Gregor86d9a522009-09-21 16:56:56 +00001358 }
1359
Reid Spencer5f016e22007-07-11 17:01:13 +00001360 // If we are in a #if directive, emit an error.
1361 while (!ConditionalStack.empty()) {
Chris Lattner30c64762008-11-22 06:22:39 +00001362 PP->Diag(ConditionalStack.back().IfLoc,
1363 diag::err_pp_unterminated_conditional);
Reid Spencer5f016e22007-07-11 17:01:13 +00001364 ConditionalStack.pop_back();
1365 }
Mike Stump1eb44332009-09-09 15:08:12 +00001366
Chris Lattnerb25e5d72008-04-12 05:54:25 +00001367 // C99 5.1.1.2p2: If the file is non-empty and didn't end in a newline, issue
1368 // a pedwarn.
1369 if (CurPtr != BufferStart && (CurPtr[-1] != '\n' && CurPtr[-1] != '\r'))
Mike Stump20d0ee52009-04-02 02:29:42 +00001370 Diag(BufferEnd, diag::ext_no_newline_eof)
1371 << CodeModificationHint::CreateInsertion(getSourceLocation(BufferEnd),
1372 "\n");
Mike Stump1eb44332009-09-09 15:08:12 +00001373
Reid Spencer5f016e22007-07-11 17:01:13 +00001374 BufferPtr = CurPtr;
1375
1376 // Finally, let the preprocessor handle this.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001377 return PP->HandleEndOfFile(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001378}
1379
1380/// isNextPPTokenLParen - Return 1 if the next unexpanded token lexed from
1381/// the specified lexer will return a tok::l_paren token, 0 if it is something
1382/// else and 2 if there are no more tokens in the buffer controlled by the
1383/// lexer.
1384unsigned Lexer::isNextPPTokenLParen() {
1385 assert(!LexingRawMode && "How can we expand a macro from a skipping buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +00001386
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 // Switch to 'skipping' mode. This will ensure that we can lex a token
1388 // without emitting diagnostics, disables macro expansion, and will cause EOF
1389 // to return an EOF token instead of popping the include stack.
1390 LexingRawMode = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001391
Reid Spencer5f016e22007-07-11 17:01:13 +00001392 // Save state that can be changed while lexing so that we can restore it.
1393 const char *TmpBufferPtr = BufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001394 bool inPPDirectiveMode = ParsingPreprocessorDirective;
Mike Stump1eb44332009-09-09 15:08:12 +00001395
Chris Lattnerd2177732007-07-20 16:59:19 +00001396 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001397 Tok.startToken();
1398 LexTokenInternal(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001399
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 // Restore state that may have changed.
1401 BufferPtr = TmpBufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001402 ParsingPreprocessorDirective = inPPDirectiveMode;
Mike Stump1eb44332009-09-09 15:08:12 +00001403
Reid Spencer5f016e22007-07-11 17:01:13 +00001404 // Restore the lexer back to non-skipping mode.
1405 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001406
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001407 if (Tok.is(tok::eof))
Reid Spencer5f016e22007-07-11 17:01:13 +00001408 return 2;
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001409 return Tok.is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +00001410}
1411
Chris Lattner34f349d2009-12-14 06:16:57 +00001412/// FindConflictEnd - Find the end of a version control conflict marker.
1413static const char *FindConflictEnd(const char *CurPtr, const char *BufferEnd) {
1414 llvm::StringRef RestOfBuffer(CurPtr+7, BufferEnd-CurPtr-7);
1415 size_t Pos = RestOfBuffer.find(">>>>>>>");
1416 while (Pos != llvm::StringRef::npos) {
1417 // Must occur at start of line.
1418 if (RestOfBuffer[Pos-1] != '\r' &&
1419 RestOfBuffer[Pos-1] != '\n') {
1420 RestOfBuffer = RestOfBuffer.substr(Pos+7);
1421 continue;
1422 }
1423 return RestOfBuffer.data()+Pos;
1424 }
1425 return 0;
1426}
1427
1428/// IsStartOfConflictMarker - If the specified pointer is the start of a version
1429/// control conflict marker like '<<<<<<<', recognize it as such, emit an error
1430/// and recover nicely. This returns true if it is a conflict marker and false
1431/// if not.
1432bool Lexer::IsStartOfConflictMarker(const char *CurPtr) {
1433 // Only a conflict marker if it starts at the beginning of a line.
1434 if (CurPtr != BufferStart &&
1435 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1436 return false;
1437
1438 // Check to see if we have <<<<<<<.
1439 if (BufferEnd-CurPtr < 8 ||
1440 llvm::StringRef(CurPtr, 7) != "<<<<<<<")
1441 return false;
1442
1443 // If we have a situation where we don't care about conflict markers, ignore
1444 // it.
1445 if (IsInConflictMarker || isLexingRawMode())
1446 return false;
1447
1448 // Check to see if there is a >>>>>>> somewhere in the buffer at the start of
1449 // a line to terminate this conflict marker.
1450 if (FindConflictEnd(CurPtr+7, BufferEnd)) {
1451 // We found a match. We are really in a conflict marker.
1452 // Diagnose this, and ignore to the end of line.
1453 Diag(CurPtr, diag::err_conflict_marker);
1454 IsInConflictMarker = true;
1455
1456 // Skip ahead to the end of line. We know this exists because the
1457 // end-of-conflict marker starts with \r or \n.
1458 while (*CurPtr != '\r' && *CurPtr != '\n') {
1459 assert(CurPtr != BufferEnd && "Didn't find end of line");
1460 ++CurPtr;
1461 }
1462 BufferPtr = CurPtr;
1463 return true;
1464 }
1465
1466 // No end of conflict marker found.
1467 return false;
1468}
1469
1470
1471/// HandleEndOfConflictMarker - If this is a '=======' or '|||||||' or '>>>>>>>'
1472/// marker, then it is the end of a conflict marker. Handle it by ignoring up
1473/// until the end of the line. This returns true if it is a conflict marker and
1474/// false if not.
1475bool Lexer::HandleEndOfConflictMarker(const char *CurPtr) {
1476 // Only a conflict marker if it starts at the beginning of a line.
1477 if (CurPtr != BufferStart &&
1478 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1479 return false;
1480
1481 // If we have a situation where we don't care about conflict markers, ignore
1482 // it.
1483 if (!IsInConflictMarker || isLexingRawMode())
1484 return false;
1485
1486 // Check to see if we have the marker (7 characters in a row).
1487 for (unsigned i = 1; i != 7; ++i)
1488 if (CurPtr[i] != CurPtr[0])
1489 return false;
1490
1491 // If we do have it, search for the end of the conflict marker. This could
1492 // fail if it got skipped with a '#if 0' or something. Note that CurPtr might
1493 // be the end of conflict marker.
1494 if (const char *End = FindConflictEnd(CurPtr, BufferEnd)) {
1495 CurPtr = End;
1496
1497 // Skip ahead to the end of line.
1498 while (CurPtr != BufferEnd && *CurPtr != '\r' && *CurPtr != '\n')
1499 ++CurPtr;
1500
1501 BufferPtr = CurPtr;
1502
1503 // No longer in the conflict marker.
1504 IsInConflictMarker = false;
1505 return true;
1506 }
1507
1508 return false;
1509}
1510
Reid Spencer5f016e22007-07-11 17:01:13 +00001511
1512/// LexTokenInternal - This implements a simple C family lexer. It is an
1513/// extremely performance critical piece of code. This assumes that the buffer
Chris Lattnerefb173d2009-07-07 05:05:42 +00001514/// has a null character at the end of the file. This returns a preprocessing
1515/// token, not a normal token, as such, it is an internal interface. It assumes
1516/// that the Flags of result have been cleared before calling this.
Chris Lattnerd2177732007-07-20 16:59:19 +00001517void Lexer::LexTokenInternal(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001518LexNextToken:
1519 // New token, can't need cleaning yet.
Chris Lattnerd2177732007-07-20 16:59:19 +00001520 Result.clearFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00001521 Result.setIdentifierInfo(0);
Mike Stump1eb44332009-09-09 15:08:12 +00001522
Reid Spencer5f016e22007-07-11 17:01:13 +00001523 // CurPtr - Cache BufferPtr in an automatic variable.
1524 const char *CurPtr = BufferPtr;
1525
1526 // Small amounts of horizontal whitespace is very common between tokens.
1527 if ((*CurPtr == ' ') || (*CurPtr == '\t')) {
1528 ++CurPtr;
1529 while ((*CurPtr == ' ') || (*CurPtr == '\t'))
1530 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001531
Chris Lattnerd88dc482008-10-12 04:05:48 +00001532 // If we are keeping whitespace and other tokens, just return what we just
1533 // skipped. The next lexer invocation will return the token after the
1534 // whitespace.
1535 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001536 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001537 return;
1538 }
Mike Stump1eb44332009-09-09 15:08:12 +00001539
Reid Spencer5f016e22007-07-11 17:01:13 +00001540 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001541 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001542 }
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Reid Spencer5f016e22007-07-11 17:01:13 +00001544 unsigned SizeTmp, SizeTmp2; // Temporaries for use in cases below.
Mike Stump1eb44332009-09-09 15:08:12 +00001545
Reid Spencer5f016e22007-07-11 17:01:13 +00001546 // Read a character, advancing over it.
1547 char Char = getAndAdvanceChar(CurPtr, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001548 tok::TokenKind Kind;
Mike Stump1eb44332009-09-09 15:08:12 +00001549
Reid Spencer5f016e22007-07-11 17:01:13 +00001550 switch (Char) {
1551 case 0: // Null.
1552 // Found end of file?
1553 if (CurPtr-1 == BufferEnd) {
1554 // Read the PP instance variable into an automatic variable, because
1555 // LexEndOfFile will often delete 'this'.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001556 Preprocessor *PPCache = PP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001557 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
1558 return; // Got a token to return.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001559 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
1560 return PPCache->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001561 }
Mike Stump1eb44332009-09-09 15:08:12 +00001562
Chris Lattner74d15df2008-11-22 02:02:22 +00001563 if (!isLexingRawMode())
1564 Diag(CurPtr-1, diag::null_in_file);
Chris Lattnerd2177732007-07-20 16:59:19 +00001565 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001566 if (SkipWhitespace(Result, CurPtr))
1567 return; // KeepWhitespaceMode
Mike Stump1eb44332009-09-09 15:08:12 +00001568
Reid Spencer5f016e22007-07-11 17:01:13 +00001569 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00001570
1571 case 26: // DOS & CP/M EOF: "^Z".
1572 // If we're in Microsoft extensions mode, treat this as end of file.
1573 if (Features.Microsoft) {
1574 // Read the PP instance variable into an automatic variable, because
1575 // LexEndOfFile will often delete 'this'.
1576 Preprocessor *PPCache = PP;
1577 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
1578 return; // Got a token to return.
1579 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
1580 return PPCache->Lex(Result);
1581 }
1582 // If Microsoft extensions are disabled, this is just random garbage.
1583 Kind = tok::unknown;
1584 break;
1585
Reid Spencer5f016e22007-07-11 17:01:13 +00001586 case '\n':
1587 case '\r':
1588 // If we are inside a preprocessor directive and we see the end of line,
1589 // we know we are done with the directive, so return an EOM token.
1590 if (ParsingPreprocessorDirective) {
1591 // Done parsing the "line".
1592 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001593
Reid Spencer5f016e22007-07-11 17:01:13 +00001594 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00001595 SetCommentRetentionState(PP->getCommentRetentionState());
Mike Stump1eb44332009-09-09 15:08:12 +00001596
Reid Spencer5f016e22007-07-11 17:01:13 +00001597 // Since we consumed a newline, we are back at the start of a line.
1598 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001599
Chris Lattner9e6293d2008-10-12 04:51:35 +00001600 Kind = tok::eom;
Reid Spencer5f016e22007-07-11 17:01:13 +00001601 break;
1602 }
1603 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001604 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001605 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001606 Result.clearFlag(Token::LeadingSpace);
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Chris Lattnerd88dc482008-10-12 04:05:48 +00001608 if (SkipWhitespace(Result, CurPtr))
1609 return; // KeepWhitespaceMode
Reid Spencer5f016e22007-07-11 17:01:13 +00001610 goto LexNextToken; // GCC isn't tail call eliminating.
1611 case ' ':
1612 case '\t':
1613 case '\f':
1614 case '\v':
Chris Lattner8133cfc2007-07-22 06:29:05 +00001615 SkipHorizontalWhitespace:
Chris Lattnerd2177732007-07-20 16:59:19 +00001616 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001617 if (SkipWhitespace(Result, CurPtr))
1618 return; // KeepWhitespaceMode
Chris Lattner8133cfc2007-07-22 06:29:05 +00001619
1620 SkipIgnoredUnits:
1621 CurPtr = BufferPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001622
Chris Lattner8133cfc2007-07-22 06:29:05 +00001623 // If the next token is obviously a // or /* */ comment, skip it efficiently
1624 // too (without going through the big switch stmt).
Chris Lattner8402c732009-01-16 22:39:25 +00001625 if (CurPtr[0] == '/' && CurPtr[1] == '/' && !inKeepCommentMode() &&
1626 Features.BCPLComment) {
Chris Lattner046c2272010-01-18 22:35:47 +00001627 if (SkipBCPLComment(Result, CurPtr+2))
1628 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00001629 goto SkipIgnoredUnits;
Chris Lattnerfa95a012008-10-12 03:22:02 +00001630 } else if (CurPtr[0] == '/' && CurPtr[1] == '*' && !inKeepCommentMode()) {
Chris Lattner046c2272010-01-18 22:35:47 +00001631 if (SkipBlockComment(Result, CurPtr+2))
1632 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00001633 goto SkipIgnoredUnits;
1634 } else if (isHorizontalWhitespace(*CurPtr)) {
1635 goto SkipHorizontalWhitespace;
1636 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001637 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00001638
Chris Lattner3a570772008-01-03 17:58:54 +00001639 // C99 6.4.4.1: Integer Constants.
1640 // C99 6.4.4.2: Floating Constants.
1641 case '0': case '1': case '2': case '3': case '4':
1642 case '5': case '6': case '7': case '8': case '9':
1643 // Notify MIOpt that we read a non-whitespace/non-comment token.
1644 MIOpt.ReadToken();
1645 return LexNumericConstant(Result, CurPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001646
Chris Lattner3a570772008-01-03 17:58:54 +00001647 case 'L': // Identifier (Loony) or wide literal (L'x' or L"xyz").
Reid Spencer5f016e22007-07-11 17:01:13 +00001648 // Notify MIOpt that we read a non-whitespace/non-comment token.
1649 MIOpt.ReadToken();
1650 Char = getCharAndSize(CurPtr, SizeTmp);
1651
1652 // Wide string literal.
1653 if (Char == '"')
1654 return LexStringLiteral(Result, ConsumeChar(CurPtr, SizeTmp, Result),
1655 true);
1656
1657 // Wide character constant.
1658 if (Char == '\'')
1659 return LexCharConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
1660 // FALL THROUGH, treating L like the start of an identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00001661
Reid Spencer5f016e22007-07-11 17:01:13 +00001662 // C99 6.4.2: Identifiers.
1663 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1664 case 'H': case 'I': case 'J': case 'K': /*'L'*/case 'M': case 'N':
1665 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1666 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1667 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1668 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1669 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1670 case 'v': case 'w': case 'x': case 'y': case 'z':
1671 case '_':
1672 // Notify MIOpt that we read a non-whitespace/non-comment token.
1673 MIOpt.ReadToken();
1674 return LexIdentifier(Result, CurPtr);
Chris Lattner3a570772008-01-03 17:58:54 +00001675
1676 case '$': // $ in identifiers.
1677 if (Features.DollarIdents) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001678 if (!isLexingRawMode())
1679 Diag(CurPtr-1, diag::ext_dollar_in_identifier);
Chris Lattner3a570772008-01-03 17:58:54 +00001680 // Notify MIOpt that we read a non-whitespace/non-comment token.
1681 MIOpt.ReadToken();
1682 return LexIdentifier(Result, CurPtr);
1683 }
Mike Stump1eb44332009-09-09 15:08:12 +00001684
Chris Lattner9e6293d2008-10-12 04:51:35 +00001685 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00001686 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001687
Reid Spencer5f016e22007-07-11 17:01:13 +00001688 // C99 6.4.4: Character Constants.
1689 case '\'':
1690 // Notify MIOpt that we read a non-whitespace/non-comment token.
1691 MIOpt.ReadToken();
1692 return LexCharConstant(Result, CurPtr);
1693
1694 // C99 6.4.5: String Literals.
1695 case '"':
1696 // Notify MIOpt that we read a non-whitespace/non-comment token.
1697 MIOpt.ReadToken();
1698 return LexStringLiteral(Result, CurPtr, false);
1699
1700 // C99 6.4.6: Punctuators.
1701 case '?':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001702 Kind = tok::question;
Reid Spencer5f016e22007-07-11 17:01:13 +00001703 break;
1704 case '[':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001705 Kind = tok::l_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00001706 break;
1707 case ']':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001708 Kind = tok::r_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00001709 break;
1710 case '(':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001711 Kind = tok::l_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00001712 break;
1713 case ')':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001714 Kind = tok::r_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00001715 break;
1716 case '{':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001717 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00001718 break;
1719 case '}':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001720 Kind = tok::r_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00001721 break;
1722 case '.':
1723 Char = getCharAndSize(CurPtr, SizeTmp);
1724 if (Char >= '0' && Char <= '9') {
1725 // Notify MIOpt that we read a non-whitespace/non-comment token.
1726 MIOpt.ReadToken();
1727
1728 return LexNumericConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
1729 } else if (Features.CPlusPlus && Char == '*') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001730 Kind = tok::periodstar;
Reid Spencer5f016e22007-07-11 17:01:13 +00001731 CurPtr += SizeTmp;
1732 } else if (Char == '.' &&
1733 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '.') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001734 Kind = tok::ellipsis;
Reid Spencer5f016e22007-07-11 17:01:13 +00001735 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1736 SizeTmp2, Result);
1737 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001738 Kind = tok::period;
Reid Spencer5f016e22007-07-11 17:01:13 +00001739 }
1740 break;
1741 case '&':
1742 Char = getCharAndSize(CurPtr, SizeTmp);
1743 if (Char == '&') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001744 Kind = tok::ampamp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001745 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1746 } else if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001747 Kind = tok::ampequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001748 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1749 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001750 Kind = tok::amp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001751 }
1752 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001753 case '*':
Reid Spencer5f016e22007-07-11 17:01:13 +00001754 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001755 Kind = tok::starequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001756 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1757 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001758 Kind = tok::star;
Reid Spencer5f016e22007-07-11 17:01:13 +00001759 }
1760 break;
1761 case '+':
1762 Char = getCharAndSize(CurPtr, SizeTmp);
1763 if (Char == '+') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001764 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001765 Kind = tok::plusplus;
Reid Spencer5f016e22007-07-11 17:01:13 +00001766 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001767 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001768 Kind = tok::plusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001769 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001770 Kind = tok::plus;
Reid Spencer5f016e22007-07-11 17:01:13 +00001771 }
1772 break;
1773 case '-':
1774 Char = getCharAndSize(CurPtr, SizeTmp);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001775 if (Char == '-') { // --
Reid Spencer5f016e22007-07-11 17:01:13 +00001776 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001777 Kind = tok::minusminus;
Mike Stump1eb44332009-09-09 15:08:12 +00001778 } else if (Char == '>' && Features.CPlusPlus &&
Chris Lattner9e6293d2008-10-12 04:51:35 +00001779 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '*') { // C++ ->*
Reid Spencer5f016e22007-07-11 17:01:13 +00001780 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1781 SizeTmp2, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001782 Kind = tok::arrowstar;
1783 } else if (Char == '>') { // ->
Reid Spencer5f016e22007-07-11 17:01:13 +00001784 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001785 Kind = tok::arrow;
1786 } else if (Char == '=') { // -=
Reid Spencer5f016e22007-07-11 17:01:13 +00001787 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001788 Kind = tok::minusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001789 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001790 Kind = tok::minus;
Reid Spencer5f016e22007-07-11 17:01:13 +00001791 }
1792 break;
1793 case '~':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001794 Kind = tok::tilde;
Reid Spencer5f016e22007-07-11 17:01:13 +00001795 break;
1796 case '!':
1797 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001798 Kind = tok::exclaimequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001799 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1800 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001801 Kind = tok::exclaim;
Reid Spencer5f016e22007-07-11 17:01:13 +00001802 }
1803 break;
1804 case '/':
1805 // 6.4.9: Comments
1806 Char = getCharAndSize(CurPtr, SizeTmp);
1807 if (Char == '/') { // BCPL comment.
Chris Lattner8402c732009-01-16 22:39:25 +00001808 // Even if BCPL comments are disabled (e.g. in C89 mode), we generally
1809 // want to lex this as a comment. There is one problem with this though,
1810 // that in one particular corner case, this can change the behavior of the
1811 // resultant program. For example, In "foo //**/ bar", C89 would lex
1812 // this as "foo / bar" and langauges with BCPL comments would lex it as
1813 // "foo". Check to see if the character after the second slash is a '*'.
1814 // If so, we will lex that as a "/" instead of the start of a comment.
1815 if (Features.BCPLComment ||
1816 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) != '*') {
1817 if (SkipBCPLComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00001818 return; // There is a token to return.
Mike Stump1eb44332009-09-09 15:08:12 +00001819
Chris Lattner8402c732009-01-16 22:39:25 +00001820 // It is common for the tokens immediately after a // comment to be
1821 // whitespace (indentation for the next line). Instead of going through
1822 // the big switch, handle it efficiently now.
1823 goto SkipIgnoredUnits;
1824 }
1825 }
Mike Stump1eb44332009-09-09 15:08:12 +00001826
Chris Lattner8402c732009-01-16 22:39:25 +00001827 if (Char == '*') { // /**/ comment.
Reid Spencer5f016e22007-07-11 17:01:13 +00001828 if (SkipBlockComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00001829 return; // There is a token to return.
Chris Lattner2d381892008-10-12 04:15:42 +00001830 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattner8402c732009-01-16 22:39:25 +00001831 }
Mike Stump1eb44332009-09-09 15:08:12 +00001832
Chris Lattner8402c732009-01-16 22:39:25 +00001833 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001834 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001835 Kind = tok::slashequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001836 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001837 Kind = tok::slash;
Reid Spencer5f016e22007-07-11 17:01:13 +00001838 }
1839 break;
1840 case '%':
1841 Char = getCharAndSize(CurPtr, SizeTmp);
1842 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001843 Kind = tok::percentequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001844 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1845 } else if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001846 Kind = tok::r_brace; // '%>' -> '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00001847 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1848 } else if (Features.Digraphs && Char == ':') {
1849 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1850 Char = getCharAndSize(CurPtr, SizeTmp);
1851 if (Char == '%' && getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001852 Kind = tok::hashhash; // '%:%:' -> '##'
Reid Spencer5f016e22007-07-11 17:01:13 +00001853 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1854 SizeTmp2, Result);
1855 } else if (Char == '@' && Features.Microsoft) { // %:@ -> #@ -> Charize
Reid Spencer5f016e22007-07-11 17:01:13 +00001856 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner74d15df2008-11-22 02:02:22 +00001857 if (!isLexingRawMode())
1858 Diag(BufferPtr, diag::charize_microsoft_ext);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001859 Kind = tok::hashat;
Chris Lattnere91e9322009-03-18 20:58:27 +00001860 } else { // '%:' -> '#'
Reid Spencer5f016e22007-07-11 17:01:13 +00001861 // We parsed a # character. If this occurs at the start of the line,
1862 // it's actually the start of a preprocessing directive. Callback to
1863 // the preprocessor to handle it.
1864 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00001865 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00001866 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00001867 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001868
Reid Spencer5f016e22007-07-11 17:01:13 +00001869 // As an optimization, if the preprocessor didn't switch lexers, tail
1870 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001871 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001872 // Start a new token. If this is a #include or something, the PP may
1873 // want us starting at the beginning of the line again. If so, set
1874 // the StartOfLine flag.
1875 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001876 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001877 IsAtStartOfLine = false;
1878 }
1879 goto LexNextToken; // GCC isn't tail call eliminating.
1880 }
Mike Stump1eb44332009-09-09 15:08:12 +00001881
Chris Lattner168ae2d2007-10-17 20:41:00 +00001882 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001883 }
Mike Stump1eb44332009-09-09 15:08:12 +00001884
Chris Lattnere91e9322009-03-18 20:58:27 +00001885 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00001886 }
1887 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001888 Kind = tok::percent;
Reid Spencer5f016e22007-07-11 17:01:13 +00001889 }
1890 break;
1891 case '<':
1892 Char = getCharAndSize(CurPtr, SizeTmp);
1893 if (ParsingFilename) {
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001894 return LexAngledStringLiteral(Result, CurPtr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001895 } else if (Char == '<') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001896 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
1897 if (After == '=') {
1898 Kind = tok::lesslessequal;
1899 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1900 SizeTmp2, Result);
1901 } else if (After == '<' && IsStartOfConflictMarker(CurPtr-1)) {
1902 // If this is actually a '<<<<<<<' version control conflict marker,
1903 // recognize it as such and recover nicely.
1904 goto LexNextToken;
1905 } else {
1906 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1907 Kind = tok::lessless;
1908 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001909 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001910 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001911 Kind = tok::lessequal;
1912 } else if (Features.Digraphs && Char == ':') { // '<:' -> '['
Reid Spencer5f016e22007-07-11 17:01:13 +00001913 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001914 Kind = tok::l_square;
1915 } else if (Features.Digraphs && Char == '%') { // '<%' -> '{'
Reid Spencer5f016e22007-07-11 17:01:13 +00001916 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001917 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00001918 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001919 Kind = tok::less;
Reid Spencer5f016e22007-07-11 17:01:13 +00001920 }
1921 break;
1922 case '>':
1923 Char = getCharAndSize(CurPtr, SizeTmp);
1924 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001925 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001926 Kind = tok::greaterequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 } else if (Char == '>') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001928 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
1929 if (After == '=') {
1930 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1931 SizeTmp2, Result);
1932 Kind = tok::greatergreaterequal;
1933 } else if (After == '>' && HandleEndOfConflictMarker(CurPtr-1)) {
1934 // If this is '>>>>>>>' and we're in a conflict marker, ignore it.
1935 goto LexNextToken;
1936 } else {
1937 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1938 Kind = tok::greatergreater;
1939 }
1940
Reid Spencer5f016e22007-07-11 17:01:13 +00001941 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001942 Kind = tok::greater;
Reid Spencer5f016e22007-07-11 17:01:13 +00001943 }
1944 break;
1945 case '^':
1946 Char = getCharAndSize(CurPtr, SizeTmp);
1947 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001948 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001949 Kind = tok::caretequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001950 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001951 Kind = tok::caret;
Reid Spencer5f016e22007-07-11 17:01:13 +00001952 }
1953 break;
1954 case '|':
1955 Char = getCharAndSize(CurPtr, SizeTmp);
1956 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001957 Kind = tok::pipeequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001958 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1959 } else if (Char == '|') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001960 // If this is '|||||||' and we're in a conflict marker, ignore it.
1961 if (CurPtr[1] == '|' && HandleEndOfConflictMarker(CurPtr-1))
1962 goto LexNextToken;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001963 Kind = tok::pipepipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00001964 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1965 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001966 Kind = tok::pipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00001967 }
1968 break;
1969 case ':':
1970 Char = getCharAndSize(CurPtr, SizeTmp);
1971 if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001972 Kind = tok::r_square; // ':>' -> ']'
Reid Spencer5f016e22007-07-11 17:01:13 +00001973 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1974 } else if (Features.CPlusPlus && Char == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001975 Kind = tok::coloncolon;
Reid Spencer5f016e22007-07-11 17:01:13 +00001976 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001977 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001978 Kind = tok::colon;
Reid Spencer5f016e22007-07-11 17:01:13 +00001979 }
1980 break;
1981 case ';':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001982 Kind = tok::semi;
Reid Spencer5f016e22007-07-11 17:01:13 +00001983 break;
1984 case '=':
1985 Char = getCharAndSize(CurPtr, SizeTmp);
1986 if (Char == '=') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001987 // If this is '=======' and we're in a conflict marker, ignore it.
1988 if (CurPtr[1] == '=' && HandleEndOfConflictMarker(CurPtr-1))
1989 goto LexNextToken;
1990
Chris Lattner9e6293d2008-10-12 04:51:35 +00001991 Kind = tok::equalequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001992 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001993 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001994 Kind = tok::equal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001995 }
1996 break;
1997 case ',':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001998 Kind = tok::comma;
Reid Spencer5f016e22007-07-11 17:01:13 +00001999 break;
2000 case '#':
2001 Char = getCharAndSize(CurPtr, SizeTmp);
2002 if (Char == '#') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002003 Kind = tok::hashhash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002004 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2005 } else if (Char == '@' && Features.Microsoft) { // #@ -> Charize
Chris Lattner9e6293d2008-10-12 04:51:35 +00002006 Kind = tok::hashat;
Chris Lattner74d15df2008-11-22 02:02:22 +00002007 if (!isLexingRawMode())
2008 Diag(BufferPtr, diag::charize_microsoft_ext);
Reid Spencer5f016e22007-07-11 17:01:13 +00002009 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2010 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +00002011 // We parsed a # character. If this occurs at the start of the line,
2012 // it's actually the start of a preprocessing directive. Callback to
2013 // the preprocessor to handle it.
2014 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00002015 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00002016 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00002017 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002018
Reid Spencer5f016e22007-07-11 17:01:13 +00002019 // As an optimization, if the preprocessor didn't switch lexers, tail
2020 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002021 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002022 // Start a new token. If this is a #include or something, the PP may
2023 // want us starting at the beginning of the line again. If so, set
2024 // the StartOfLine flag.
2025 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00002026 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00002027 IsAtStartOfLine = false;
2028 }
2029 goto LexNextToken; // GCC isn't tail call eliminating.
2030 }
Chris Lattner168ae2d2007-10-17 20:41:00 +00002031 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002032 }
Mike Stump1eb44332009-09-09 15:08:12 +00002033
Chris Lattnere91e9322009-03-18 20:58:27 +00002034 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002035 }
2036 break;
2037
Chris Lattner3a570772008-01-03 17:58:54 +00002038 case '@':
2039 // Objective C support.
2040 if (CurPtr[-1] == '@' && Features.ObjC1)
Chris Lattner9e6293d2008-10-12 04:51:35 +00002041 Kind = tok::at;
Chris Lattner3a570772008-01-03 17:58:54 +00002042 else
Chris Lattner9e6293d2008-10-12 04:51:35 +00002043 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00002044 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002045
Reid Spencer5f016e22007-07-11 17:01:13 +00002046 case '\\':
2047 // FIXME: UCN's.
2048 // FALL THROUGH.
2049 default:
Chris Lattner9e6293d2008-10-12 04:51:35 +00002050 Kind = tok::unknown;
Reid Spencer5f016e22007-07-11 17:01:13 +00002051 break;
2052 }
Mike Stump1eb44332009-09-09 15:08:12 +00002053
Reid Spencer5f016e22007-07-11 17:01:13 +00002054 // Notify MIOpt that we read a non-whitespace/non-comment token.
2055 MIOpt.ReadToken();
2056
2057 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00002058 FormTokenWithChars(Result, CurPtr, Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00002059}