blob: 19f25ea4a8bb19de48c5773da1302cb1ddf5f2eb [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.
Douglas Gregor453091c2010-03-16 22:30:13 +00001039 bool Invalid = false;
1040 std::string Spelling = PP->getSpelling(Result, &Invalid);
1041 if (Invalid)
1042 return true;
1043
Chris Lattner9e6293d2008-10-12 04:51:35 +00001044 assert(Spelling[0] == '/' && Spelling[1] == '/' && "Not bcpl comment?");
1045 Spelling[1] = '*'; // Change prefix to "/*".
1046 Spelling += "*/"; // add suffix.
Mike Stump1eb44332009-09-09 15:08:12 +00001047
Chris Lattner9e6293d2008-10-12 04:51:35 +00001048 Result.setKind(tok::comment);
Chris Lattner47246be2009-01-26 19:29:26 +00001049 PP->CreateString(&Spelling[0], Spelling.size(), Result,
1050 Result.getLocation());
Chris Lattner2d381892008-10-12 04:15:42 +00001051 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001052}
1053
1054/// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline
1055/// character (either \n or \r) is part of an escaped newline sequence. Issue a
Chris Lattner47a2b402008-12-12 07:14:34 +00001056/// diagnostic if so. We know that the newline is inside of a block comment.
Mike Stump1eb44332009-09-09 15:08:12 +00001057static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr,
Reid Spencer5f016e22007-07-11 17:01:13 +00001058 Lexer *L) {
1059 assert(CurPtr[0] == '\n' || CurPtr[0] == '\r');
Mike Stump1eb44332009-09-09 15:08:12 +00001060
Reid Spencer5f016e22007-07-11 17:01:13 +00001061 // Back up off the newline.
1062 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001063
Reid Spencer5f016e22007-07-11 17:01:13 +00001064 // If this is a two-character newline sequence, skip the other character.
1065 if (CurPtr[0] == '\n' || CurPtr[0] == '\r') {
1066 // \n\n or \r\r -> not escaped newline.
1067 if (CurPtr[0] == CurPtr[1])
1068 return false;
1069 // \n\r or \r\n -> skip the newline.
1070 --CurPtr;
1071 }
Mike Stump1eb44332009-09-09 15:08:12 +00001072
Reid Spencer5f016e22007-07-11 17:01:13 +00001073 // If we have horizontal whitespace, skip over it. We allow whitespace
1074 // between the slash and newline.
1075 bool HasSpace = false;
1076 while (isHorizontalWhitespace(*CurPtr) || *CurPtr == 0) {
1077 --CurPtr;
1078 HasSpace = true;
1079 }
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Reid Spencer5f016e22007-07-11 17:01:13 +00001081 // If we have a slash, we know this is an escaped newline.
1082 if (*CurPtr == '\\') {
1083 if (CurPtr[-1] != '*') return false;
1084 } else {
1085 // It isn't a slash, is it the ?? / trigraph?
1086 if (CurPtr[0] != '/' || CurPtr[-1] != '?' || CurPtr[-2] != '?' ||
1087 CurPtr[-3] != '*')
1088 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Reid Spencer5f016e22007-07-11 17:01:13 +00001090 // This is the trigraph ending the comment. Emit a stern warning!
1091 CurPtr -= 2;
1092
1093 // If no trigraphs are enabled, warn that we ignored this trigraph and
1094 // ignore this * character.
1095 if (!L->getFeatures().Trigraphs) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001096 if (!L->isLexingRawMode())
1097 L->Diag(CurPtr, diag::trigraph_ignored_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001098 return false;
1099 }
Chris Lattner74d15df2008-11-22 02:02:22 +00001100 if (!L->isLexingRawMode())
1101 L->Diag(CurPtr, diag::trigraph_ends_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001102 }
Mike Stump1eb44332009-09-09 15:08:12 +00001103
Reid Spencer5f016e22007-07-11 17:01:13 +00001104 // Warn about having an escaped newline between the */ characters.
Chris Lattner74d15df2008-11-22 02:02:22 +00001105 if (!L->isLexingRawMode())
1106 L->Diag(CurPtr, diag::escaped_newline_block_comment_end);
Mike Stump1eb44332009-09-09 15:08:12 +00001107
Reid Spencer5f016e22007-07-11 17:01:13 +00001108 // If there was space between the backslash and newline, warn about it.
Chris Lattner74d15df2008-11-22 02:02:22 +00001109 if (HasSpace && !L->isLexingRawMode())
1110 L->Diag(CurPtr, diag::backslash_newline_space);
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Reid Spencer5f016e22007-07-11 17:01:13 +00001112 return true;
1113}
1114
1115#ifdef __SSE2__
1116#include <emmintrin.h>
1117#elif __ALTIVEC__
1118#include <altivec.h>
1119#undef bool
1120#endif
1121
1122/// SkipBlockComment - We have just read the /* characters from input. Read
1123/// until we find the */ characters that terminate the comment. Note that we
1124/// don't bother decoding trigraphs or escaped newlines in block comments,
1125/// because they cannot cause the comment to end. The only thing that can
1126/// happen is the comment could end with an escaped newline between the */ end
1127/// of comment.
Chris Lattner2d381892008-10-12 04:15:42 +00001128///
Chris Lattner046c2272010-01-18 22:35:47 +00001129/// If we're in KeepCommentMode or any CommentHandler has inserted
1130/// some tokens, this will store the first token and return true.
Chris Lattnerd2177732007-07-20 16:59:19 +00001131bool Lexer::SkipBlockComment(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001132 // Scan one character past where we should, looking for a '/' character. Once
1133 // we find it, check to see if it was preceeded by a *. This common
1134 // optimization helps people who like to put a lot of * characters in their
1135 // comments.
Chris Lattner8146b682007-07-21 23:43:37 +00001136
1137 // The first character we get with newlines and trigraphs skipped to handle
1138 // the degenerate /*/ case below correctly if the * has an escaped newline
1139 // after it.
1140 unsigned CharSize;
1141 unsigned char C = getCharAndSize(CurPtr, CharSize);
1142 CurPtr += CharSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001143 if (C == 0 && CurPtr == BufferEnd+1) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001144 if (!isLexingRawMode())
Chris Lattner0af57422008-10-12 01:31:51 +00001145 Diag(BufferPtr, diag::err_unterminated_block_comment);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001146 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001147
Chris Lattner31f0eca2008-10-12 04:19:49 +00001148 // KeepWhitespaceMode should return this broken comment as a token. Since
1149 // it isn't a well formed comment, just return it as an 'unknown' token.
1150 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001151 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001152 return true;
1153 }
Mike Stump1eb44332009-09-09 15:08:12 +00001154
Chris Lattner31f0eca2008-10-12 04:19:49 +00001155 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001156 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001157 }
Mike Stump1eb44332009-09-09 15:08:12 +00001158
Chris Lattner8146b682007-07-21 23:43:37 +00001159 // Check to see if the first character after the '/*' is another /. If so,
1160 // then this slash does not end the block comment, it is part of it.
1161 if (C == '/')
1162 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001163
Reid Spencer5f016e22007-07-11 17:01:13 +00001164 while (1) {
1165 // Skip over all non-interesting characters until we find end of buffer or a
1166 // (probably ending) '/' character.
1167 if (CurPtr + 24 < BufferEnd) {
1168 // While not aligned to a 16-byte boundary.
1169 while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0)
1170 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001171
Reid Spencer5f016e22007-07-11 17:01:13 +00001172 if (C == '/') goto FoundSlash;
1173
1174#ifdef __SSE2__
1175 __m128i Slashes = _mm_set_epi8('/', '/', '/', '/', '/', '/', '/', '/',
1176 '/', '/', '/', '/', '/', '/', '/', '/');
1177 while (CurPtr+16 <= BufferEnd &&
1178 _mm_movemask_epi8(_mm_cmpeq_epi8(*(__m128i*)CurPtr, Slashes)) == 0)
1179 CurPtr += 16;
1180#elif __ALTIVEC__
1181 __vector unsigned char Slashes = {
Mike Stump1eb44332009-09-09 15:08:12 +00001182 '/', '/', '/', '/', '/', '/', '/', '/',
Reid Spencer5f016e22007-07-11 17:01:13 +00001183 '/', '/', '/', '/', '/', '/', '/', '/'
1184 };
1185 while (CurPtr+16 <= BufferEnd &&
1186 !vec_any_eq(*(vector unsigned char*)CurPtr, Slashes))
1187 CurPtr += 16;
Mike Stump1eb44332009-09-09 15:08:12 +00001188#else
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 // Scan for '/' quickly. Many block comments are very large.
1190 while (CurPtr[0] != '/' &&
1191 CurPtr[1] != '/' &&
1192 CurPtr[2] != '/' &&
1193 CurPtr[3] != '/' &&
1194 CurPtr+4 < BufferEnd) {
1195 CurPtr += 4;
1196 }
1197#endif
Mike Stump1eb44332009-09-09 15:08:12 +00001198
Reid Spencer5f016e22007-07-11 17:01:13 +00001199 // It has to be one of the bytes scanned, increment to it and read one.
1200 C = *CurPtr++;
1201 }
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Reid Spencer5f016e22007-07-11 17:01:13 +00001203 // Loop to scan the remainder.
1204 while (C != '/' && C != '\0')
1205 C = *CurPtr++;
Mike Stump1eb44332009-09-09 15:08:12 +00001206
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 FoundSlash:
1208 if (C == '/') {
1209 if (CurPtr[-2] == '*') // We found the final */. We're done!
1210 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Reid Spencer5f016e22007-07-11 17:01:13 +00001212 if ((CurPtr[-2] == '\n' || CurPtr[-2] == '\r')) {
1213 if (isEndOfBlockCommentWithEscapedNewLine(CurPtr-2, this)) {
1214 // We found the final */, though it had an escaped newline between the
1215 // * and /. We're done!
1216 break;
1217 }
1218 }
1219 if (CurPtr[0] == '*' && CurPtr[1] != '/') {
1220 // If this is a /* inside of the comment, emit a warning. Don't do this
1221 // if this is a /*/, which will end the comment. This misses cases with
1222 // embedded escaped newlines, but oh well.
Chris Lattner74d15df2008-11-22 02:02:22 +00001223 if (!isLexingRawMode())
1224 Diag(CurPtr-1, diag::warn_nested_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001225 }
1226 } else if (C == 0 && CurPtr == BufferEnd+1) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001227 if (!isLexingRawMode())
1228 Diag(BufferPtr, diag::err_unterminated_block_comment);
Reid Spencer5f016e22007-07-11 17:01:13 +00001229 // Note: the user probably forgot a */. We could continue immediately
1230 // after the /*, but this would involve lexing a lot of what really is the
1231 // comment, which surely would confuse the parser.
Chris Lattner31f0eca2008-10-12 04:19:49 +00001232 --CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001233
Chris Lattner31f0eca2008-10-12 04:19:49 +00001234 // KeepWhitespaceMode should return this broken comment as a token. Since
1235 // it isn't a well formed comment, just return it as an 'unknown' token.
1236 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001237 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattner31f0eca2008-10-12 04:19:49 +00001238 return true;
1239 }
Mike Stump1eb44332009-09-09 15:08:12 +00001240
Chris Lattner31f0eca2008-10-12 04:19:49 +00001241 BufferPtr = CurPtr;
Chris Lattner2d381892008-10-12 04:15:42 +00001242 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001243 }
1244 C = *CurPtr++;
1245 }
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Chris Lattner3d0ad582010-02-03 21:06:21 +00001247 // Notify comment handlers about the comment unless we're in a #if 0 block.
1248 if (PP && !isLexingRawMode() &&
1249 PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr),
1250 getSourceLocation(CurPtr)))) {
Chris Lattner046c2272010-01-18 22:35:47 +00001251 BufferPtr = CurPtr;
1252 return true; // A token has to be returned.
1253 }
Douglas Gregor2e222532009-07-02 17:08:52 +00001254
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 // If we are returning comments as tokens, return this comment as a token.
Chris Lattnerfa95a012008-10-12 03:22:02 +00001256 if (inKeepCommentMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001257 FormTokenWithChars(Result, CurPtr, tok::comment);
Chris Lattner2d381892008-10-12 04:15:42 +00001258 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001259 }
1260
1261 // It is common for the tokens immediately after a /**/ comment to be
1262 // whitespace. Instead of going through the big switch, handle it
Chris Lattnerd88dc482008-10-12 04:05:48 +00001263 // efficiently now. This is safe even in KeepWhitespaceMode because we would
1264 // have already returned above with the comment as a token.
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 if (isHorizontalWhitespace(*CurPtr)) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001266 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001267 SkipWhitespace(Result, CurPtr+1);
Chris Lattner2d381892008-10-12 04:15:42 +00001268 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001269 }
1270
1271 // Otherwise, just return so that the next character will be lexed as a token.
1272 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001273 Result.setFlag(Token::LeadingSpace);
Chris Lattner2d381892008-10-12 04:15:42 +00001274 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001275}
1276
1277//===----------------------------------------------------------------------===//
1278// Primary Lexing Entry Points
1279//===----------------------------------------------------------------------===//
1280
Reid Spencer5f016e22007-07-11 17:01:13 +00001281/// ReadToEndOfLine - Read the rest of the current preprocessor line as an
1282/// uninterpreted string. This switches the lexer out of directive mode.
1283std::string Lexer::ReadToEndOfLine() {
1284 assert(ParsingPreprocessorDirective && ParsingFilename == false &&
1285 "Must be in a preprocessing directive!");
1286 std::string Result;
Chris Lattnerd2177732007-07-20 16:59:19 +00001287 Token Tmp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001288
1289 // CurPtr - Cache BufferPtr in an automatic variable.
1290 const char *CurPtr = BufferPtr;
1291 while (1) {
1292 char Char = getAndAdvanceChar(CurPtr, Tmp);
1293 switch (Char) {
1294 default:
1295 Result += Char;
1296 break;
1297 case 0: // Null.
1298 // Found end of file?
1299 if (CurPtr-1 != BufferEnd) {
1300 // Nope, normal character, continue.
1301 Result += Char;
1302 break;
1303 }
1304 // FALL THROUGH.
1305 case '\r':
1306 case '\n':
1307 // Okay, we found the end of the line. First, back up past the \0, \r, \n.
1308 assert(CurPtr[-1] == Char && "Trigraphs for newline?");
1309 BufferPtr = CurPtr-1;
Mike Stump1eb44332009-09-09 15:08:12 +00001310
Reid Spencer5f016e22007-07-11 17:01:13 +00001311 // Next, lex the character, which should handle the EOM transition.
1312 Lex(Tmp);
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001313 assert(Tmp.is(tok::eom) && "Unexpected token!");
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Reid Spencer5f016e22007-07-11 17:01:13 +00001315 // Finally, we're done, return the string we found.
1316 return Result;
1317 }
1318 }
1319}
1320
1321/// LexEndOfFile - CurPtr points to the end of this file. Handle this
1322/// condition, reporting diagnostics and handling other edge cases as required.
1323/// This returns true if Result contains a token, false if PP.Lex should be
1324/// called again.
Chris Lattnerd2177732007-07-20 16:59:19 +00001325bool Lexer::LexEndOfFile(Token &Result, const char *CurPtr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001326 // If we hit the end of the file while parsing a preprocessor directive,
1327 // end the preprocessor directive first. The next token returned will
1328 // then be the end of file.
1329 if (ParsingPreprocessorDirective) {
1330 // Done parsing the "line".
1331 ParsingPreprocessorDirective = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001332 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00001333 FormTokenWithChars(Result, CurPtr, tok::eom);
Mike Stump1eb44332009-09-09 15:08:12 +00001334
Reid Spencer5f016e22007-07-11 17:01:13 +00001335 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00001336 SetCommentRetentionState(PP->getCommentRetentionState());
Reid Spencer5f016e22007-07-11 17:01:13 +00001337 return true; // Have a token.
Mike Stump1eb44332009-09-09 15:08:12 +00001338 }
Douglas Gregor86d9a522009-09-21 16:56:56 +00001339
Reid Spencer5f016e22007-07-11 17:01:13 +00001340 // If we are in raw mode, return this event as an EOF token. Let the caller
1341 // that put us in raw mode handle the event.
Chris Lattner74d15df2008-11-22 02:02:22 +00001342 if (isLexingRawMode()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001343 Result.startToken();
1344 BufferPtr = BufferEnd;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001345 FormTokenWithChars(Result, BufferEnd, tok::eof);
Reid Spencer5f016e22007-07-11 17:01:13 +00001346 return true;
1347 }
Mike Stump1eb44332009-09-09 15:08:12 +00001348
Douglas Gregor86d9a522009-09-21 16:56:56 +00001349 // Otherwise, check if we are code-completing, then issue diagnostics for
1350 // unterminated #if and missing newline.
Reid Spencer5f016e22007-07-11 17:01:13 +00001351
Douglas Gregor29684422009-12-02 06:49:09 +00001352 if (PP && PP->isCodeCompletionFile(FileLoc)) {
1353 // We're at the end of the file, but we've been asked to consider the
1354 // end of the file to be a code-completion token. Return the
1355 // code-completion token.
1356 Result.startToken();
1357 FormTokenWithChars(Result, CurPtr, tok::code_completion);
Douglas Gregor86d9a522009-09-21 16:56:56 +00001358
Douglas Gregor29684422009-12-02 06:49:09 +00001359 // Only do the eof -> code_completion translation once.
1360 PP->SetCodeCompletionPoint(0, 0, 0);
1361 return true;
Douglas Gregor86d9a522009-09-21 16:56:56 +00001362 }
1363
Reid Spencer5f016e22007-07-11 17:01:13 +00001364 // If we are in a #if directive, emit an error.
1365 while (!ConditionalStack.empty()) {
Chris Lattner30c64762008-11-22 06:22:39 +00001366 PP->Diag(ConditionalStack.back().IfLoc,
1367 diag::err_pp_unterminated_conditional);
Reid Spencer5f016e22007-07-11 17:01:13 +00001368 ConditionalStack.pop_back();
1369 }
Mike Stump1eb44332009-09-09 15:08:12 +00001370
Chris Lattnerb25e5d72008-04-12 05:54:25 +00001371 // C99 5.1.1.2p2: If the file is non-empty and didn't end in a newline, issue
1372 // a pedwarn.
1373 if (CurPtr != BufferStart && (CurPtr[-1] != '\n' && CurPtr[-1] != '\r'))
Mike Stump20d0ee52009-04-02 02:29:42 +00001374 Diag(BufferEnd, diag::ext_no_newline_eof)
Douglas Gregord0ebe082010-03-31 15:31:50 +00001375 << FixItHint::CreateInsertion(getSourceLocation(BufferEnd), "\n");
Mike Stump1eb44332009-09-09 15:08:12 +00001376
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 BufferPtr = CurPtr;
1378
1379 // Finally, let the preprocessor handle this.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001380 return PP->HandleEndOfFile(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001381}
1382
1383/// isNextPPTokenLParen - Return 1 if the next unexpanded token lexed from
1384/// the specified lexer will return a tok::l_paren token, 0 if it is something
1385/// else and 2 if there are no more tokens in the buffer controlled by the
1386/// lexer.
1387unsigned Lexer::isNextPPTokenLParen() {
1388 assert(!LexingRawMode && "How can we expand a macro from a skipping buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +00001389
Reid Spencer5f016e22007-07-11 17:01:13 +00001390 // Switch to 'skipping' mode. This will ensure that we can lex a token
1391 // without emitting diagnostics, disables macro expansion, and will cause EOF
1392 // to return an EOF token instead of popping the include stack.
1393 LexingRawMode = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001394
Reid Spencer5f016e22007-07-11 17:01:13 +00001395 // Save state that can be changed while lexing so that we can restore it.
1396 const char *TmpBufferPtr = BufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001397 bool inPPDirectiveMode = ParsingPreprocessorDirective;
Mike Stump1eb44332009-09-09 15:08:12 +00001398
Chris Lattnerd2177732007-07-20 16:59:19 +00001399 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 Tok.startToken();
1401 LexTokenInternal(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +00001402
Reid Spencer5f016e22007-07-11 17:01:13 +00001403 // Restore state that may have changed.
1404 BufferPtr = TmpBufferPtr;
Chris Lattnera864cf72009-04-24 07:15:46 +00001405 ParsingPreprocessorDirective = inPPDirectiveMode;
Mike Stump1eb44332009-09-09 15:08:12 +00001406
Reid Spencer5f016e22007-07-11 17:01:13 +00001407 // Restore the lexer back to non-skipping mode.
1408 LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001409
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001410 if (Tok.is(tok::eof))
Reid Spencer5f016e22007-07-11 17:01:13 +00001411 return 2;
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001412 return Tok.is(tok::l_paren);
Reid Spencer5f016e22007-07-11 17:01:13 +00001413}
1414
Chris Lattner34f349d2009-12-14 06:16:57 +00001415/// FindConflictEnd - Find the end of a version control conflict marker.
1416static const char *FindConflictEnd(const char *CurPtr, const char *BufferEnd) {
1417 llvm::StringRef RestOfBuffer(CurPtr+7, BufferEnd-CurPtr-7);
1418 size_t Pos = RestOfBuffer.find(">>>>>>>");
1419 while (Pos != llvm::StringRef::npos) {
1420 // Must occur at start of line.
1421 if (RestOfBuffer[Pos-1] != '\r' &&
1422 RestOfBuffer[Pos-1] != '\n') {
1423 RestOfBuffer = RestOfBuffer.substr(Pos+7);
1424 continue;
1425 }
1426 return RestOfBuffer.data()+Pos;
1427 }
1428 return 0;
1429}
1430
1431/// IsStartOfConflictMarker - If the specified pointer is the start of a version
1432/// control conflict marker like '<<<<<<<', recognize it as such, emit an error
1433/// and recover nicely. This returns true if it is a conflict marker and false
1434/// if not.
1435bool Lexer::IsStartOfConflictMarker(const char *CurPtr) {
1436 // Only a conflict marker if it starts at the beginning of a line.
1437 if (CurPtr != BufferStart &&
1438 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1439 return false;
1440
1441 // Check to see if we have <<<<<<<.
1442 if (BufferEnd-CurPtr < 8 ||
1443 llvm::StringRef(CurPtr, 7) != "<<<<<<<")
1444 return false;
1445
1446 // If we have a situation where we don't care about conflict markers, ignore
1447 // it.
1448 if (IsInConflictMarker || isLexingRawMode())
1449 return false;
1450
1451 // Check to see if there is a >>>>>>> somewhere in the buffer at the start of
1452 // a line to terminate this conflict marker.
1453 if (FindConflictEnd(CurPtr+7, BufferEnd)) {
1454 // We found a match. We are really in a conflict marker.
1455 // Diagnose this, and ignore to the end of line.
1456 Diag(CurPtr, diag::err_conflict_marker);
1457 IsInConflictMarker = true;
1458
1459 // Skip ahead to the end of line. We know this exists because the
1460 // end-of-conflict marker starts with \r or \n.
1461 while (*CurPtr != '\r' && *CurPtr != '\n') {
1462 assert(CurPtr != BufferEnd && "Didn't find end of line");
1463 ++CurPtr;
1464 }
1465 BufferPtr = CurPtr;
1466 return true;
1467 }
1468
1469 // No end of conflict marker found.
1470 return false;
1471}
1472
1473
1474/// HandleEndOfConflictMarker - If this is a '=======' or '|||||||' or '>>>>>>>'
1475/// marker, then it is the end of a conflict marker. Handle it by ignoring up
1476/// until the end of the line. This returns true if it is a conflict marker and
1477/// false if not.
1478bool Lexer::HandleEndOfConflictMarker(const char *CurPtr) {
1479 // Only a conflict marker if it starts at the beginning of a line.
1480 if (CurPtr != BufferStart &&
1481 CurPtr[-1] != '\n' && CurPtr[-1] != '\r')
1482 return false;
1483
1484 // If we have a situation where we don't care about conflict markers, ignore
1485 // it.
1486 if (!IsInConflictMarker || isLexingRawMode())
1487 return false;
1488
1489 // Check to see if we have the marker (7 characters in a row).
1490 for (unsigned i = 1; i != 7; ++i)
1491 if (CurPtr[i] != CurPtr[0])
1492 return false;
1493
1494 // If we do have it, search for the end of the conflict marker. This could
1495 // fail if it got skipped with a '#if 0' or something. Note that CurPtr might
1496 // be the end of conflict marker.
1497 if (const char *End = FindConflictEnd(CurPtr, BufferEnd)) {
1498 CurPtr = End;
1499
1500 // Skip ahead to the end of line.
1501 while (CurPtr != BufferEnd && *CurPtr != '\r' && *CurPtr != '\n')
1502 ++CurPtr;
1503
1504 BufferPtr = CurPtr;
1505
1506 // No longer in the conflict marker.
1507 IsInConflictMarker = false;
1508 return true;
1509 }
1510
1511 return false;
1512}
1513
Reid Spencer5f016e22007-07-11 17:01:13 +00001514
1515/// LexTokenInternal - This implements a simple C family lexer. It is an
1516/// extremely performance critical piece of code. This assumes that the buffer
Chris Lattnerefb173d2009-07-07 05:05:42 +00001517/// has a null character at the end of the file. This returns a preprocessing
1518/// token, not a normal token, as such, it is an internal interface. It assumes
1519/// that the Flags of result have been cleared before calling this.
Chris Lattnerd2177732007-07-20 16:59:19 +00001520void Lexer::LexTokenInternal(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001521LexNextToken:
1522 // New token, can't need cleaning yet.
Chris Lattnerd2177732007-07-20 16:59:19 +00001523 Result.clearFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00001524 Result.setIdentifierInfo(0);
Mike Stump1eb44332009-09-09 15:08:12 +00001525
Reid Spencer5f016e22007-07-11 17:01:13 +00001526 // CurPtr - Cache BufferPtr in an automatic variable.
1527 const char *CurPtr = BufferPtr;
1528
1529 // Small amounts of horizontal whitespace is very common between tokens.
1530 if ((*CurPtr == ' ') || (*CurPtr == '\t')) {
1531 ++CurPtr;
1532 while ((*CurPtr == ' ') || (*CurPtr == '\t'))
1533 ++CurPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001534
Chris Lattnerd88dc482008-10-12 04:05:48 +00001535 // If we are keeping whitespace and other tokens, just return what we just
1536 // skipped. The next lexer invocation will return the token after the
1537 // whitespace.
1538 if (isKeepWhitespaceMode()) {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001539 FormTokenWithChars(Result, CurPtr, tok::unknown);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001540 return;
1541 }
Mike Stump1eb44332009-09-09 15:08:12 +00001542
Reid Spencer5f016e22007-07-11 17:01:13 +00001543 BufferPtr = CurPtr;
Chris Lattnerd2177732007-07-20 16:59:19 +00001544 Result.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00001545 }
Mike Stump1eb44332009-09-09 15:08:12 +00001546
Reid Spencer5f016e22007-07-11 17:01:13 +00001547 unsigned SizeTmp, SizeTmp2; // Temporaries for use in cases below.
Mike Stump1eb44332009-09-09 15:08:12 +00001548
Reid Spencer5f016e22007-07-11 17:01:13 +00001549 // Read a character, advancing over it.
1550 char Char = getAndAdvanceChar(CurPtr, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001551 tok::TokenKind Kind;
Mike Stump1eb44332009-09-09 15:08:12 +00001552
Reid Spencer5f016e22007-07-11 17:01:13 +00001553 switch (Char) {
1554 case 0: // Null.
1555 // Found end of file?
1556 if (CurPtr-1 == BufferEnd) {
1557 // Read the PP instance variable into an automatic variable, because
1558 // LexEndOfFile will often delete 'this'.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001559 Preprocessor *PPCache = PP;
Reid Spencer5f016e22007-07-11 17:01:13 +00001560 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
1561 return; // Got a token to return.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001562 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
1563 return PPCache->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001564 }
Mike Stump1eb44332009-09-09 15:08:12 +00001565
Chris Lattner74d15df2008-11-22 02:02:22 +00001566 if (!isLexingRawMode())
1567 Diag(CurPtr-1, diag::null_in_file);
Chris Lattnerd2177732007-07-20 16:59:19 +00001568 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001569 if (SkipWhitespace(Result, CurPtr))
1570 return; // KeepWhitespaceMode
Mike Stump1eb44332009-09-09 15:08:12 +00001571
Reid Spencer5f016e22007-07-11 17:01:13 +00001572 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00001573
1574 case 26: // DOS & CP/M EOF: "^Z".
1575 // If we're in Microsoft extensions mode, treat this as end of file.
1576 if (Features.Microsoft) {
1577 // Read the PP instance variable into an automatic variable, because
1578 // LexEndOfFile will often delete 'this'.
1579 Preprocessor *PPCache = PP;
1580 if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file.
1581 return; // Got a token to return.
1582 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
1583 return PPCache->Lex(Result);
1584 }
1585 // If Microsoft extensions are disabled, this is just random garbage.
1586 Kind = tok::unknown;
1587 break;
1588
Reid Spencer5f016e22007-07-11 17:01:13 +00001589 case '\n':
1590 case '\r':
1591 // If we are inside a preprocessor directive and we see the end of line,
1592 // we know we are done with the directive, so return an EOM token.
1593 if (ParsingPreprocessorDirective) {
1594 // Done parsing the "line".
1595 ParsingPreprocessorDirective = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001596
Reid Spencer5f016e22007-07-11 17:01:13 +00001597 // Restore comment saving mode, in case it was disabled for directive.
Chris Lattnerf744d132008-10-12 03:27:19 +00001598 SetCommentRetentionState(PP->getCommentRetentionState());
Mike Stump1eb44332009-09-09 15:08:12 +00001599
Reid Spencer5f016e22007-07-11 17:01:13 +00001600 // Since we consumed a newline, we are back at the start of a line.
1601 IsAtStartOfLine = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001602
Chris Lattner9e6293d2008-10-12 04:51:35 +00001603 Kind = tok::eom;
Reid Spencer5f016e22007-07-11 17:01:13 +00001604 break;
1605 }
1606 // The returned token is at the start of the line.
Chris Lattnerd2177732007-07-20 16:59:19 +00001607 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001608 // No leading whitespace seen so far.
Chris Lattnerd2177732007-07-20 16:59:19 +00001609 Result.clearFlag(Token::LeadingSpace);
Mike Stump1eb44332009-09-09 15:08:12 +00001610
Chris Lattnerd88dc482008-10-12 04:05:48 +00001611 if (SkipWhitespace(Result, CurPtr))
1612 return; // KeepWhitespaceMode
Reid Spencer5f016e22007-07-11 17:01:13 +00001613 goto LexNextToken; // GCC isn't tail call eliminating.
1614 case ' ':
1615 case '\t':
1616 case '\f':
1617 case '\v':
Chris Lattner8133cfc2007-07-22 06:29:05 +00001618 SkipHorizontalWhitespace:
Chris Lattnerd2177732007-07-20 16:59:19 +00001619 Result.setFlag(Token::LeadingSpace);
Chris Lattnerd88dc482008-10-12 04:05:48 +00001620 if (SkipWhitespace(Result, CurPtr))
1621 return; // KeepWhitespaceMode
Chris Lattner8133cfc2007-07-22 06:29:05 +00001622
1623 SkipIgnoredUnits:
1624 CurPtr = BufferPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001625
Chris Lattner8133cfc2007-07-22 06:29:05 +00001626 // If the next token is obviously a // or /* */ comment, skip it efficiently
1627 // too (without going through the big switch stmt).
Chris Lattner8402c732009-01-16 22:39:25 +00001628 if (CurPtr[0] == '/' && CurPtr[1] == '/' && !inKeepCommentMode() &&
1629 Features.BCPLComment) {
Chris Lattner046c2272010-01-18 22:35:47 +00001630 if (SkipBCPLComment(Result, CurPtr+2))
1631 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00001632 goto SkipIgnoredUnits;
Chris Lattnerfa95a012008-10-12 03:22:02 +00001633 } else if (CurPtr[0] == '/' && CurPtr[1] == '*' && !inKeepCommentMode()) {
Chris Lattner046c2272010-01-18 22:35:47 +00001634 if (SkipBlockComment(Result, CurPtr+2))
1635 return; // There is a token to return.
Chris Lattner8133cfc2007-07-22 06:29:05 +00001636 goto SkipIgnoredUnits;
1637 } else if (isHorizontalWhitespace(*CurPtr)) {
1638 goto SkipHorizontalWhitespace;
1639 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001640 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattnera2bf1052009-12-17 05:29:40 +00001641
Chris Lattner3a570772008-01-03 17:58:54 +00001642 // C99 6.4.4.1: Integer Constants.
1643 // C99 6.4.4.2: Floating Constants.
1644 case '0': case '1': case '2': case '3': case '4':
1645 case '5': case '6': case '7': case '8': case '9':
1646 // Notify MIOpt that we read a non-whitespace/non-comment token.
1647 MIOpt.ReadToken();
1648 return LexNumericConstant(Result, CurPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001649
Chris Lattner3a570772008-01-03 17:58:54 +00001650 case 'L': // Identifier (Loony) or wide literal (L'x' or L"xyz").
Reid Spencer5f016e22007-07-11 17:01:13 +00001651 // Notify MIOpt that we read a non-whitespace/non-comment token.
1652 MIOpt.ReadToken();
1653 Char = getCharAndSize(CurPtr, SizeTmp);
1654
1655 // Wide string literal.
1656 if (Char == '"')
1657 return LexStringLiteral(Result, ConsumeChar(CurPtr, SizeTmp, Result),
1658 true);
1659
1660 // Wide character constant.
1661 if (Char == '\'')
1662 return LexCharConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
1663 // FALL THROUGH, treating L like the start of an identifier.
Mike Stump1eb44332009-09-09 15:08:12 +00001664
Reid Spencer5f016e22007-07-11 17:01:13 +00001665 // C99 6.4.2: Identifiers.
1666 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1667 case 'H': case 'I': case 'J': case 'K': /*'L'*/case 'M': case 'N':
1668 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1669 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1670 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1671 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1672 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1673 case 'v': case 'w': case 'x': case 'y': case 'z':
1674 case '_':
1675 // Notify MIOpt that we read a non-whitespace/non-comment token.
1676 MIOpt.ReadToken();
1677 return LexIdentifier(Result, CurPtr);
Chris Lattner3a570772008-01-03 17:58:54 +00001678
1679 case '$': // $ in identifiers.
1680 if (Features.DollarIdents) {
Chris Lattner74d15df2008-11-22 02:02:22 +00001681 if (!isLexingRawMode())
1682 Diag(CurPtr-1, diag::ext_dollar_in_identifier);
Chris Lattner3a570772008-01-03 17:58:54 +00001683 // Notify MIOpt that we read a non-whitespace/non-comment token.
1684 MIOpt.ReadToken();
1685 return LexIdentifier(Result, CurPtr);
1686 }
Mike Stump1eb44332009-09-09 15:08:12 +00001687
Chris Lattner9e6293d2008-10-12 04:51:35 +00001688 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00001689 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001690
Reid Spencer5f016e22007-07-11 17:01:13 +00001691 // C99 6.4.4: Character Constants.
1692 case '\'':
1693 // Notify MIOpt that we read a non-whitespace/non-comment token.
1694 MIOpt.ReadToken();
1695 return LexCharConstant(Result, CurPtr);
1696
1697 // C99 6.4.5: String Literals.
1698 case '"':
1699 // Notify MIOpt that we read a non-whitespace/non-comment token.
1700 MIOpt.ReadToken();
1701 return LexStringLiteral(Result, CurPtr, false);
1702
1703 // C99 6.4.6: Punctuators.
1704 case '?':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001705 Kind = tok::question;
Reid Spencer5f016e22007-07-11 17:01:13 +00001706 break;
1707 case '[':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001708 Kind = tok::l_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00001709 break;
1710 case ']':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001711 Kind = tok::r_square;
Reid Spencer5f016e22007-07-11 17:01:13 +00001712 break;
1713 case '(':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001714 Kind = tok::l_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00001715 break;
1716 case ')':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001717 Kind = tok::r_paren;
Reid Spencer5f016e22007-07-11 17:01:13 +00001718 break;
1719 case '{':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001720 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00001721 break;
1722 case '}':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001723 Kind = tok::r_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00001724 break;
1725 case '.':
1726 Char = getCharAndSize(CurPtr, SizeTmp);
1727 if (Char >= '0' && Char <= '9') {
1728 // Notify MIOpt that we read a non-whitespace/non-comment token.
1729 MIOpt.ReadToken();
1730
1731 return LexNumericConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result));
1732 } else if (Features.CPlusPlus && Char == '*') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001733 Kind = tok::periodstar;
Reid Spencer5f016e22007-07-11 17:01:13 +00001734 CurPtr += SizeTmp;
1735 } else if (Char == '.' &&
1736 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '.') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001737 Kind = tok::ellipsis;
Reid Spencer5f016e22007-07-11 17:01:13 +00001738 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1739 SizeTmp2, Result);
1740 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001741 Kind = tok::period;
Reid Spencer5f016e22007-07-11 17:01:13 +00001742 }
1743 break;
1744 case '&':
1745 Char = getCharAndSize(CurPtr, SizeTmp);
1746 if (Char == '&') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001747 Kind = tok::ampamp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001748 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1749 } else if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001750 Kind = tok::ampequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001751 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1752 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001753 Kind = tok::amp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001754 }
1755 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001756 case '*':
Reid Spencer5f016e22007-07-11 17:01:13 +00001757 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001758 Kind = tok::starequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001759 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1760 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001761 Kind = tok::star;
Reid Spencer5f016e22007-07-11 17:01:13 +00001762 }
1763 break;
1764 case '+':
1765 Char = getCharAndSize(CurPtr, SizeTmp);
1766 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::plusplus;
Reid Spencer5f016e22007-07-11 17:01:13 +00001769 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001770 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001771 Kind = tok::plusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001772 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001773 Kind = tok::plus;
Reid Spencer5f016e22007-07-11 17:01:13 +00001774 }
1775 break;
1776 case '-':
1777 Char = getCharAndSize(CurPtr, SizeTmp);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001778 if (Char == '-') { // --
Reid Spencer5f016e22007-07-11 17:01:13 +00001779 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001780 Kind = tok::minusminus;
Mike Stump1eb44332009-09-09 15:08:12 +00001781 } else if (Char == '>' && Features.CPlusPlus &&
Chris Lattner9e6293d2008-10-12 04:51:35 +00001782 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '*') { // C++ ->*
Reid Spencer5f016e22007-07-11 17:01:13 +00001783 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1784 SizeTmp2, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001785 Kind = tok::arrowstar;
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::arrow;
1789 } else if (Char == '=') { // -=
Reid Spencer5f016e22007-07-11 17:01:13 +00001790 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001791 Kind = tok::minusequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001792 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001793 Kind = tok::minus;
Reid Spencer5f016e22007-07-11 17:01:13 +00001794 }
1795 break;
1796 case '~':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001797 Kind = tok::tilde;
Reid Spencer5f016e22007-07-11 17:01:13 +00001798 break;
1799 case '!':
1800 if (getCharAndSize(CurPtr, SizeTmp) == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001801 Kind = tok::exclaimequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001802 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1803 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001804 Kind = tok::exclaim;
Reid Spencer5f016e22007-07-11 17:01:13 +00001805 }
1806 break;
1807 case '/':
1808 // 6.4.9: Comments
1809 Char = getCharAndSize(CurPtr, SizeTmp);
1810 if (Char == '/') { // BCPL comment.
Chris Lattner8402c732009-01-16 22:39:25 +00001811 // Even if BCPL comments are disabled (e.g. in C89 mode), we generally
1812 // want to lex this as a comment. There is one problem with this though,
1813 // that in one particular corner case, this can change the behavior of the
1814 // resultant program. For example, In "foo //**/ bar", C89 would lex
1815 // this as "foo / bar" and langauges with BCPL comments would lex it as
1816 // "foo". Check to see if the character after the second slash is a '*'.
1817 // If so, we will lex that as a "/" instead of the start of a comment.
1818 if (Features.BCPLComment ||
1819 getCharAndSize(CurPtr+SizeTmp, SizeTmp2) != '*') {
1820 if (SkipBCPLComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00001821 return; // There is a token to return.
Mike Stump1eb44332009-09-09 15:08:12 +00001822
Chris Lattner8402c732009-01-16 22:39:25 +00001823 // It is common for the tokens immediately after a // comment to be
1824 // whitespace (indentation for the next line). Instead of going through
1825 // the big switch, handle it efficiently now.
1826 goto SkipIgnoredUnits;
1827 }
1828 }
Mike Stump1eb44332009-09-09 15:08:12 +00001829
Chris Lattner8402c732009-01-16 22:39:25 +00001830 if (Char == '*') { // /**/ comment.
Reid Spencer5f016e22007-07-11 17:01:13 +00001831 if (SkipBlockComment(Result, ConsumeChar(CurPtr, SizeTmp, Result)))
Chris Lattner046c2272010-01-18 22:35:47 +00001832 return; // There is a token to return.
Chris Lattner2d381892008-10-12 04:15:42 +00001833 goto LexNextToken; // GCC isn't tail call eliminating.
Chris Lattner8402c732009-01-16 22:39:25 +00001834 }
Mike Stump1eb44332009-09-09 15:08:12 +00001835
Chris Lattner8402c732009-01-16 22:39:25 +00001836 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001837 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001838 Kind = tok::slashequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001839 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001840 Kind = tok::slash;
Reid Spencer5f016e22007-07-11 17:01:13 +00001841 }
1842 break;
1843 case '%':
1844 Char = getCharAndSize(CurPtr, SizeTmp);
1845 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001846 Kind = tok::percentequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001847 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1848 } else if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001849 Kind = tok::r_brace; // '%>' -> '}'
Reid Spencer5f016e22007-07-11 17:01:13 +00001850 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1851 } else if (Features.Digraphs && Char == ':') {
1852 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1853 Char = getCharAndSize(CurPtr, SizeTmp);
1854 if (Char == '%' && getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001855 Kind = tok::hashhash; // '%:%:' -> '##'
Reid Spencer5f016e22007-07-11 17:01:13 +00001856 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1857 SizeTmp2, Result);
1858 } else if (Char == '@' && Features.Microsoft) { // %:@ -> #@ -> Charize
Reid Spencer5f016e22007-07-11 17:01:13 +00001859 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner74d15df2008-11-22 02:02:22 +00001860 if (!isLexingRawMode())
1861 Diag(BufferPtr, diag::charize_microsoft_ext);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001862 Kind = tok::hashat;
Chris Lattnere91e9322009-03-18 20:58:27 +00001863 } else { // '%:' -> '#'
Reid Spencer5f016e22007-07-11 17:01:13 +00001864 // We parsed a # character. If this occurs at the start of the line,
1865 // it's actually the start of a preprocessing directive. Callback to
1866 // the preprocessor to handle it.
1867 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00001868 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00001869 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00001870 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Reid Spencer5f016e22007-07-11 17:01:13 +00001872 // As an optimization, if the preprocessor didn't switch lexers, tail
1873 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00001874 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001875 // Start a new token. If this is a #include or something, the PP may
1876 // want us starting at the beginning of the line again. If so, set
1877 // the StartOfLine flag.
1878 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001879 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00001880 IsAtStartOfLine = false;
1881 }
1882 goto LexNextToken; // GCC isn't tail call eliminating.
1883 }
Mike Stump1eb44332009-09-09 15:08:12 +00001884
Chris Lattner168ae2d2007-10-17 20:41:00 +00001885 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001886 }
Mike Stump1eb44332009-09-09 15:08:12 +00001887
Chris Lattnere91e9322009-03-18 20:58:27 +00001888 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00001889 }
1890 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001891 Kind = tok::percent;
Reid Spencer5f016e22007-07-11 17:01:13 +00001892 }
1893 break;
1894 case '<':
1895 Char = getCharAndSize(CurPtr, SizeTmp);
1896 if (ParsingFilename) {
Chris Lattner9cb51ce2009-04-17 23:56:52 +00001897 return LexAngledStringLiteral(Result, CurPtr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001898 } else if (Char == '<') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001899 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
1900 if (After == '=') {
1901 Kind = tok::lesslessequal;
1902 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1903 SizeTmp2, Result);
1904 } else if (After == '<' && IsStartOfConflictMarker(CurPtr-1)) {
1905 // If this is actually a '<<<<<<<' version control conflict marker,
1906 // recognize it as such and recover nicely.
1907 goto LexNextToken;
1908 } else {
1909 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1910 Kind = tok::lessless;
1911 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001912 } else if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001913 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001914 Kind = tok::lessequal;
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_square;
1918 } else if (Features.Digraphs && Char == '%') { // '<%' -> '{'
Reid Spencer5f016e22007-07-11 17:01:13 +00001919 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001920 Kind = tok::l_brace;
Reid Spencer5f016e22007-07-11 17:01:13 +00001921 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001922 Kind = tok::less;
Reid Spencer5f016e22007-07-11 17:01:13 +00001923 }
1924 break;
1925 case '>':
1926 Char = getCharAndSize(CurPtr, SizeTmp);
1927 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001928 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001929 Kind = tok::greaterequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001930 } else if (Char == '>') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001931 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2);
1932 if (After == '=') {
1933 CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result),
1934 SizeTmp2, Result);
1935 Kind = tok::greatergreaterequal;
1936 } else if (After == '>' && HandleEndOfConflictMarker(CurPtr-1)) {
1937 // If this is '>>>>>>>' and we're in a conflict marker, ignore it.
1938 goto LexNextToken;
1939 } else {
1940 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1941 Kind = tok::greatergreater;
1942 }
1943
Reid Spencer5f016e22007-07-11 17:01:13 +00001944 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001945 Kind = tok::greater;
Reid Spencer5f016e22007-07-11 17:01:13 +00001946 }
1947 break;
1948 case '^':
1949 Char = getCharAndSize(CurPtr, SizeTmp);
1950 if (Char == '=') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001951 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Chris Lattner9e6293d2008-10-12 04:51:35 +00001952 Kind = tok::caretequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001953 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001954 Kind = tok::caret;
Reid Spencer5f016e22007-07-11 17:01:13 +00001955 }
1956 break;
1957 case '|':
1958 Char = getCharAndSize(CurPtr, SizeTmp);
1959 if (Char == '=') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001960 Kind = tok::pipeequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001961 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1962 } else if (Char == '|') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001963 // If this is '|||||||' and we're in a conflict marker, ignore it.
1964 if (CurPtr[1] == '|' && HandleEndOfConflictMarker(CurPtr-1))
1965 goto LexNextToken;
Chris Lattner9e6293d2008-10-12 04:51:35 +00001966 Kind = tok::pipepipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00001967 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1968 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001969 Kind = tok::pipe;
Reid Spencer5f016e22007-07-11 17:01:13 +00001970 }
1971 break;
1972 case ':':
1973 Char = getCharAndSize(CurPtr, SizeTmp);
1974 if (Features.Digraphs && Char == '>') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001975 Kind = tok::r_square; // ':>' -> ']'
Reid Spencer5f016e22007-07-11 17:01:13 +00001976 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
1977 } else if (Features.CPlusPlus && Char == ':') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001978 Kind = tok::coloncolon;
Reid Spencer5f016e22007-07-11 17:01:13 +00001979 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001980 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001981 Kind = tok::colon;
Reid Spencer5f016e22007-07-11 17:01:13 +00001982 }
1983 break;
1984 case ';':
Chris Lattner9e6293d2008-10-12 04:51:35 +00001985 Kind = tok::semi;
Reid Spencer5f016e22007-07-11 17:01:13 +00001986 break;
1987 case '=':
1988 Char = getCharAndSize(CurPtr, SizeTmp);
1989 if (Char == '=') {
Chris Lattner34f349d2009-12-14 06:16:57 +00001990 // If this is '=======' and we're in a conflict marker, ignore it.
1991 if (CurPtr[1] == '=' && HandleEndOfConflictMarker(CurPtr-1))
1992 goto LexNextToken;
1993
Chris Lattner9e6293d2008-10-12 04:51:35 +00001994 Kind = tok::equalequal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001995 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
Mike Stump1eb44332009-09-09 15:08:12 +00001996 } else {
Chris Lattner9e6293d2008-10-12 04:51:35 +00001997 Kind = tok::equal;
Reid Spencer5f016e22007-07-11 17:01:13 +00001998 }
1999 break;
2000 case ',':
Chris Lattner9e6293d2008-10-12 04:51:35 +00002001 Kind = tok::comma;
Reid Spencer5f016e22007-07-11 17:01:13 +00002002 break;
2003 case '#':
2004 Char = getCharAndSize(CurPtr, SizeTmp);
2005 if (Char == '#') {
Chris Lattner9e6293d2008-10-12 04:51:35 +00002006 Kind = tok::hashhash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002007 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2008 } else if (Char == '@' && Features.Microsoft) { // #@ -> Charize
Chris Lattner9e6293d2008-10-12 04:51:35 +00002009 Kind = tok::hashat;
Chris Lattner74d15df2008-11-22 02:02:22 +00002010 if (!isLexingRawMode())
2011 Diag(BufferPtr, diag::charize_microsoft_ext);
Reid Spencer5f016e22007-07-11 17:01:13 +00002012 CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
2013 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +00002014 // We parsed a # character. If this occurs at the start of the line,
2015 // it's actually the start of a preprocessing directive. Callback to
2016 // the preprocessor to handle it.
2017 // FIXME: -fpreprocessed mode??
Chris Lattner766703b2009-05-13 06:10:29 +00002018 if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) {
Chris Lattnere91e9322009-03-18 20:58:27 +00002019 FormTokenWithChars(Result, CurPtr, tok::hash);
Chris Lattner168ae2d2007-10-17 20:41:00 +00002020 PP->HandleDirective(Result);
Mike Stump1eb44332009-09-09 15:08:12 +00002021
Reid Spencer5f016e22007-07-11 17:01:13 +00002022 // As an optimization, if the preprocessor didn't switch lexers, tail
2023 // recurse.
Chris Lattner168ae2d2007-10-17 20:41:00 +00002024 if (PP->isCurrentLexer(this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002025 // Start a new token. If this is a #include or something, the PP may
2026 // want us starting at the beginning of the line again. If so, set
2027 // the StartOfLine flag.
2028 if (IsAtStartOfLine) {
Chris Lattnerd2177732007-07-20 16:59:19 +00002029 Result.setFlag(Token::StartOfLine);
Reid Spencer5f016e22007-07-11 17:01:13 +00002030 IsAtStartOfLine = false;
2031 }
2032 goto LexNextToken; // GCC isn't tail call eliminating.
2033 }
Chris Lattner168ae2d2007-10-17 20:41:00 +00002034 return PP->Lex(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002035 }
Mike Stump1eb44332009-09-09 15:08:12 +00002036
Chris Lattnere91e9322009-03-18 20:58:27 +00002037 Kind = tok::hash;
Reid Spencer5f016e22007-07-11 17:01:13 +00002038 }
2039 break;
2040
Chris Lattner3a570772008-01-03 17:58:54 +00002041 case '@':
2042 // Objective C support.
2043 if (CurPtr[-1] == '@' && Features.ObjC1)
Chris Lattner9e6293d2008-10-12 04:51:35 +00002044 Kind = tok::at;
Chris Lattner3a570772008-01-03 17:58:54 +00002045 else
Chris Lattner9e6293d2008-10-12 04:51:35 +00002046 Kind = tok::unknown;
Chris Lattner3a570772008-01-03 17:58:54 +00002047 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002048
Reid Spencer5f016e22007-07-11 17:01:13 +00002049 case '\\':
2050 // FIXME: UCN's.
2051 // FALL THROUGH.
2052 default:
Chris Lattner9e6293d2008-10-12 04:51:35 +00002053 Kind = tok::unknown;
Reid Spencer5f016e22007-07-11 17:01:13 +00002054 break;
2055 }
Mike Stump1eb44332009-09-09 15:08:12 +00002056
Reid Spencer5f016e22007-07-11 17:01:13 +00002057 // Notify MIOpt that we read a non-whitespace/non-comment token.
2058 MIOpt.ReadToken();
2059
2060 // Update the location of token as well as BufferPtr.
Chris Lattner9e6293d2008-10-12 04:51:35 +00002061 FormTokenWithChars(Result, CurPtr, Kind);
Reid Spencer5f016e22007-07-11 17:01:13 +00002062}