1 //===--- Lexer.cpp - C Language Family Lexer ------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the Lexer and Token interfaces.
12 //===----------------------------------------------------------------------===//
14 // TODO: GCC Diagnostics emitted by the lexer:
15 // PEDWARN: (form feed|vertical tab) in preprocessing directive
17 // Universal characters, unicode, char mapping:
18 // WARNING: `%.*s' is not in NFKC
19 // WARNING: `%.*s' is not in NFC
22 // TODO: Options to support:
23 // -fexec-charset,-fwide-exec-charset
25 //===----------------------------------------------------------------------===//
27 #include "clang/Lex/Lexer.h"
28 #include "clang/Lex/Preprocessor.h"
29 #include "clang/Lex/LexDiagnostic.h"
30 #include "clang/Lex/CodeCompletionHandler.h"
31 #include "clang/Basic/SourceManager.h"
32 #include "llvm/ADT/StringSwitch.h"
33 #include "llvm/Support/Compiler.h"
34 #include "llvm/Support/MemoryBuffer.h"
36 using namespace clang
;
38 static void InitCharacterInfo();
40 //===----------------------------------------------------------------------===//
41 // Token Class Implementation
42 //===----------------------------------------------------------------------===//
44 /// isObjCAtKeyword - Return true if we have an ObjC keyword identifier.
45 bool Token::isObjCAtKeyword(tok::ObjCKeywordKind objcKey
) const {
46 if (IdentifierInfo
*II
= getIdentifierInfo())
47 return II
->getObjCKeywordID() == objcKey
;
51 /// getObjCKeywordID - Return the ObjC keyword kind.
52 tok::ObjCKeywordKind
Token::getObjCKeywordID() const {
53 IdentifierInfo
*specId
= getIdentifierInfo();
54 return specId
? specId
->getObjCKeywordID() : tok::objc_not_keyword
;
58 //===----------------------------------------------------------------------===//
59 // Lexer Class Implementation
60 //===----------------------------------------------------------------------===//
62 void Lexer::InitLexer(const char *BufStart
, const char *BufPtr
,
66 BufferStart
= BufStart
;
70 assert(BufEnd
[0] == 0 &&
71 "We assume that the input buffer has a null character at the end"
72 " to simplify lexing!");
74 Is_PragmaLexer
= false;
75 IsInConflictMarker
= false;
77 // Start of the file is a start of line.
78 IsAtStartOfLine
= true;
80 // We are not after parsing a #.
81 ParsingPreprocessorDirective
= false;
83 // We are not after parsing #include.
84 ParsingFilename
= false;
86 // We are not in raw mode. Raw mode disables diagnostics and interpretation
87 // of tokens (e.g. identifiers, thus disabling macro expansion). It is used
88 // to quickly lex the tokens of the buffer, e.g. when handling a "#if 0" block
89 // or otherwise skipping over tokens.
90 LexingRawMode
= false;
92 // Default to not keeping comments.
93 ExtendedTokenMode
= 0;
96 /// Lexer constructor - Create a new lexer object for the specified buffer
97 /// with the specified preprocessor managing the lexing process. This lexer
98 /// assumes that the associated file buffer and Preprocessor objects will
99 /// outlive it, so it doesn't take ownership of either of them.
100 Lexer::Lexer(FileID FID
, const llvm::MemoryBuffer
*InputFile
, Preprocessor
&PP
)
101 : PreprocessorLexer(&PP
, FID
),
102 FileLoc(PP
.getSourceManager().getLocForStartOfFile(FID
)),
103 Features(PP
.getLangOptions()) {
105 InitLexer(InputFile
->getBufferStart(), InputFile
->getBufferStart(),
106 InputFile
->getBufferEnd());
108 // Default to keeping comments if the preprocessor wants them.
109 SetCommentRetentionState(PP
.getCommentRetentionState());
112 /// Lexer constructor - Create a new raw lexer object. This object is only
113 /// suitable for calls to 'LexRawToken'. This lexer assumes that the text
114 /// range will outlive it, so it doesn't take ownership of it.
115 Lexer::Lexer(SourceLocation fileloc
, const LangOptions
&features
,
116 const char *BufStart
, const char *BufPtr
, const char *BufEnd
)
117 : FileLoc(fileloc
), Features(features
) {
119 InitLexer(BufStart
, BufPtr
, BufEnd
);
121 // We *are* in raw mode.
122 LexingRawMode
= true;
125 /// Lexer constructor - Create a new raw lexer object. This object is only
126 /// suitable for calls to 'LexRawToken'. This lexer assumes that the text
127 /// range will outlive it, so it doesn't take ownership of it.
128 Lexer::Lexer(FileID FID
, const llvm::MemoryBuffer
*FromFile
,
129 const SourceManager
&SM
, const LangOptions
&features
)
130 : FileLoc(SM
.getLocForStartOfFile(FID
)), Features(features
) {
132 InitLexer(FromFile
->getBufferStart(), FromFile
->getBufferStart(),
133 FromFile
->getBufferEnd());
135 // We *are* in raw mode.
136 LexingRawMode
= true;
139 /// Create_PragmaLexer: Lexer constructor - Create a new lexer object for
140 /// _Pragma expansion. This has a variety of magic semantics that this method
141 /// sets up. It returns a new'd Lexer that must be delete'd when done.
143 /// On entrance to this routine, TokStartLoc is a macro location which has a
144 /// spelling loc that indicates the bytes to be lexed for the token and an
145 /// instantiation location that indicates where all lexed tokens should be
148 /// FIXME: It would really be nice to make _Pragma just be a wrapper around a
149 /// normal lexer that remaps tokens as they fly by. This would require making
150 /// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer
151 /// interface that could handle this stuff. This would pull GetMappedTokenLoc
152 /// out of the critical path of the lexer!
154 Lexer
*Lexer::Create_PragmaLexer(SourceLocation SpellingLoc
,
155 SourceLocation InstantiationLocStart
,
156 SourceLocation InstantiationLocEnd
,
157 unsigned TokLen
, Preprocessor
&PP
) {
158 SourceManager
&SM
= PP
.getSourceManager();
160 // Create the lexer as if we were going to lex the file normally.
161 FileID SpellingFID
= SM
.getFileID(SpellingLoc
);
162 const llvm::MemoryBuffer
*InputFile
= SM
.getBuffer(SpellingFID
);
163 Lexer
*L
= new Lexer(SpellingFID
, InputFile
, PP
);
165 // Now that the lexer is created, change the start/end locations so that we
166 // just lex the subsection of the file that we want. This is lexing from a
168 const char *StrData
= SM
.getCharacterData(SpellingLoc
);
170 L
->BufferPtr
= StrData
;
171 L
->BufferEnd
= StrData
+TokLen
;
172 assert(L
->BufferEnd
[0] == 0 && "Buffer is not nul terminated!");
174 // Set the SourceLocation with the remapping information. This ensures that
175 // GetMappedTokenLoc will remap the tokens as they are lexed.
176 L
->FileLoc
= SM
.createInstantiationLoc(SM
.getLocForStartOfFile(SpellingFID
),
177 InstantiationLocStart
,
178 InstantiationLocEnd
, TokLen
);
180 // Ensure that the lexer thinks it is inside a directive, so that end \n will
181 // return an EOM token.
182 L
->ParsingPreprocessorDirective
= true;
184 // This lexer really is for _Pragma.
185 L
->Is_PragmaLexer
= true;
190 /// Stringify - Convert the specified string into a C string, with surrounding
191 /// ""'s, and with escaped \ and " characters.
192 std::string
Lexer::Stringify(const std::string
&Str
, bool Charify
) {
193 std::string Result
= Str
;
194 char Quote
= Charify
? '\'' : '"';
195 for (unsigned i
= 0, e
= Result
.size(); i
!= e
; ++i
) {
196 if (Result
[i
] == '\\' || Result
[i
] == Quote
) {
197 Result
.insert(Result
.begin()+i
, '\\');
204 /// Stringify - Convert the specified string into a C string by escaping '\'
205 /// and " characters. This does not add surrounding ""'s to the string.
206 void Lexer::Stringify(llvm::SmallVectorImpl
<char> &Str
) {
207 for (unsigned i
= 0, e
= Str
.size(); i
!= e
; ++i
) {
208 if (Str
[i
] == '\\' || Str
[i
] == '"') {
209 Str
.insert(Str
.begin()+i
, '\\');
215 //===----------------------------------------------------------------------===//
217 //===----------------------------------------------------------------------===//
219 /// getSpelling() - Return the 'spelling' of this token. The spelling of a
220 /// token are the characters used to represent the token in the source file
221 /// after trigraph expansion and escaped-newline folding. In particular, this
222 /// wants to get the true, uncanonicalized, spelling of things like digraphs
224 std::string
Lexer::getSpelling(const Token
&Tok
, const SourceManager
&SourceMgr
,
225 const LangOptions
&Features
, bool *Invalid
) {
226 assert((int)Tok
.getLength() >= 0 && "Token character range is bogus!");
228 // If this token contains nothing interesting, return it directly.
229 bool CharDataInvalid
= false;
230 const char* TokStart
= SourceMgr
.getCharacterData(Tok
.getLocation(),
233 *Invalid
= CharDataInvalid
;
235 return std::string();
237 if (!Tok
.needsCleaning())
238 return std::string(TokStart
, TokStart
+Tok
.getLength());
241 Result
.reserve(Tok
.getLength());
243 // Otherwise, hard case, relex the characters into the string.
244 for (const char *Ptr
= TokStart
, *End
= TokStart
+Tok
.getLength();
247 Result
.push_back(Lexer::getCharAndSizeNoWarn(Ptr
, CharSize
, Features
));
250 assert(Result
.size() != unsigned(Tok
.getLength()) &&
251 "NeedsCleaning flag set on something that didn't need cleaning!");
255 /// getSpelling - This method is used to get the spelling of a token into a
256 /// preallocated buffer, instead of as an std::string. The caller is required
257 /// to allocate enough space for the token, which is guaranteed to be at least
258 /// Tok.getLength() bytes long. The actual length of the token is returned.
260 /// Note that this method may do two possible things: it may either fill in
261 /// the buffer specified with characters, or it may *change the input pointer*
262 /// to point to a constant buffer with the data already in it (avoiding a
263 /// copy). The caller is not allowed to modify the returned buffer pointer
264 /// if an internal buffer is returned.
265 unsigned Lexer::getSpelling(const Token
&Tok
, const char *&Buffer
,
266 const SourceManager
&SourceMgr
,
267 const LangOptions
&Features
, bool *Invalid
) {
268 assert((int)Tok
.getLength() >= 0 && "Token character range is bogus!");
270 const char *TokStart
= 0;
271 // NOTE: this has to be checked *before* testing for an IdentifierInfo.
272 if (Tok
.is(tok::raw_identifier
))
273 TokStart
= Tok
.getRawIdentifierData();
274 else if (const IdentifierInfo
*II
= Tok
.getIdentifierInfo()) {
275 // Just return the string from the identifier table, which is very quick.
276 Buffer
= II
->getNameStart();
277 return II
->getLength();
280 // NOTE: this can be checked even after testing for an IdentifierInfo.
282 TokStart
= Tok
.getLiteralData();
285 // Compute the start of the token in the input lexer buffer.
286 bool CharDataInvalid
= false;
287 TokStart
= SourceMgr
.getCharacterData(Tok
.getLocation(), &CharDataInvalid
);
289 *Invalid
= CharDataInvalid
;
290 if (CharDataInvalid
) {
296 // If this token contains nothing interesting, return it directly.
297 if (!Tok
.needsCleaning()) {
299 return Tok
.getLength();
302 // Otherwise, hard case, relex the characters into the string.
303 char *OutBuf
= const_cast<char*>(Buffer
);
304 for (const char *Ptr
= TokStart
, *End
= TokStart
+Tok
.getLength();
307 *OutBuf
++ = Lexer::getCharAndSizeNoWarn(Ptr
, CharSize
, Features
);
310 assert(unsigned(OutBuf
-Buffer
) != Tok
.getLength() &&
311 "NeedsCleaning flag set on something that didn't need cleaning!");
313 return OutBuf
-Buffer
;
318 static bool isWhitespace(unsigned char c
);
320 /// MeasureTokenLength - Relex the token at the specified location and return
321 /// its length in bytes in the input file. If the token needs cleaning (e.g.
322 /// includes a trigraph or an escaped newline) then this count includes bytes
323 /// that are part of that.
324 unsigned Lexer::MeasureTokenLength(SourceLocation Loc
,
325 const SourceManager
&SM
,
326 const LangOptions
&LangOpts
) {
327 // TODO: this could be special cased for common tokens like identifiers, ')',
328 // etc to make this faster, if it mattered. Just look at StrData[0] to handle
329 // all obviously single-char tokens. This could use
330 // Lexer::isObviouslySimpleCharacter for example to handle identifiers or
333 // If this comes from a macro expansion, we really do want the macro name, not
334 // the token this macro expanded to.
335 Loc
= SM
.getInstantiationLoc(Loc
);
336 std::pair
<FileID
, unsigned> LocInfo
= SM
.getDecomposedLoc(Loc
);
337 bool Invalid
= false;
338 llvm::StringRef Buffer
= SM
.getBufferData(LocInfo
.first
, &Invalid
);
342 const char *StrData
= Buffer
.data()+LocInfo
.second
;
344 if (isWhitespace(StrData
[0]))
347 // Create a lexer starting at the beginning of this token.
348 Lexer
TheLexer(SM
.getLocForStartOfFile(LocInfo
.first
), LangOpts
,
349 Buffer
.begin(), StrData
, Buffer
.end());
350 TheLexer
.SetCommentRetentionState(true);
352 TheLexer
.LexFromRawLexer(TheTok
);
353 return TheTok
.getLength();
356 SourceLocation
Lexer::GetBeginningOfToken(SourceLocation Loc
,
357 const SourceManager
&SM
,
358 const LangOptions
&LangOpts
) {
359 std::pair
<FileID
, unsigned> LocInfo
= SM
.getDecomposedLoc(Loc
);
360 bool Invalid
= false;
361 llvm::StringRef Buffer
= SM
.getBufferData(LocInfo
.first
, &Invalid
);
365 // Back up from the current location until we hit the beginning of a line
366 // (or the buffer). We'll relex from that point.
367 const char *BufStart
= Buffer
.data();
368 const char *StrData
= BufStart
+LocInfo
.second
;
369 if (StrData
[0] == '\n' || StrData
[0] == '\r')
372 const char *LexStart
= StrData
;
373 while (LexStart
!= BufStart
) {
374 if (LexStart
[0] == '\n' || LexStart
[0] == '\r') {
382 // Create a lexer starting at the beginning of this token.
383 SourceLocation LexerStartLoc
= Loc
.getFileLocWithOffset(-LocInfo
.second
);
384 Lexer
TheLexer(LexerStartLoc
, LangOpts
, BufStart
, LexStart
, Buffer
.end());
385 TheLexer
.SetCommentRetentionState(true);
387 // Lex tokens until we find the token that contains the source location.
390 TheLexer
.LexFromRawLexer(TheTok
);
392 if (TheLexer
.getBufferLocation() > StrData
) {
393 // Lexing this token has taken the lexer past the source location we're
394 // looking for. If the current token encompasses our source location,
395 // return the beginning of that token.
396 if (TheLexer
.getBufferLocation() - TheTok
.getLength() <= StrData
)
397 return TheTok
.getLocation();
399 // We ended up skipping over the source location entirely, which means
400 // that it points into whitespace. We're done here.
403 } while (TheTok
.getKind() != tok::eof
);
405 // We've passed our source location; just return the original source location.
410 enum PreambleDirectiveKind
{
418 std::pair
<unsigned, bool>
419 Lexer::ComputePreamble(const llvm::MemoryBuffer
*Buffer
, unsigned MaxLines
) {
420 // Create a lexer starting at the beginning of the file. Note that we use a
421 // "fake" file source location at offset 1 so that the lexer will track our
422 // position within the file.
423 const unsigned StartOffset
= 1;
424 SourceLocation StartLoc
= SourceLocation::getFromRawEncoding(StartOffset
);
425 LangOptions LangOpts
;
426 Lexer
TheLexer(StartLoc
, LangOpts
, Buffer
->getBufferStart(),
427 Buffer
->getBufferStart(), Buffer
->getBufferEnd());
429 bool InPreprocessorDirective
= false;
432 unsigned IfCount
= 0;
436 TheLexer
.LexFromRawLexer(TheTok
);
438 if (InPreprocessorDirective
) {
439 // If we've hit the end of the file, we're done.
440 if (TheTok
.getKind() == tok::eof
) {
441 InPreprocessorDirective
= false;
445 // If we haven't hit the end of the preprocessor directive, skip this
447 if (!TheTok
.isAtStartOfLine())
450 // We've passed the end of the preprocessor directive, and will look
451 // at this token again below.
452 InPreprocessorDirective
= false;
455 // Keep track of the # of lines in the preamble.
456 if (TheTok
.isAtStartOfLine()) {
459 // If we were asked to limit the number of lines in the preamble,
460 // and we're about to exceed that limit, we're done.
461 if (MaxLines
&& Line
>= MaxLines
)
465 // Comments are okay; skip over them.
466 if (TheTok
.getKind() == tok::comment
)
469 if (TheTok
.isAtStartOfLine() && TheTok
.getKind() == tok::hash
) {
470 // This is the start of a preprocessor directive.
471 Token HashTok
= TheTok
;
472 InPreprocessorDirective
= true;
474 // Figure out which direective this is. Since we're lexing raw tokens,
475 // we don't have an identifier table available. Instead, just look at
476 // the raw identifier to recognize and categorize preprocessor directives.
477 TheLexer
.LexFromRawLexer(TheTok
);
478 if (TheTok
.getKind() == tok::raw_identifier
&& !TheTok
.needsCleaning()) {
479 llvm::StringRef
Keyword(TheTok
.getRawIdentifierData(),
481 PreambleDirectiveKind PDK
482 = llvm::StringSwitch
<PreambleDirectiveKind
>(Keyword
)
483 .Case("include", PDK_Skipped
)
484 .Case("__include_macros", PDK_Skipped
)
485 .Case("define", PDK_Skipped
)
486 .Case("undef", PDK_Skipped
)
487 .Case("line", PDK_Skipped
)
488 .Case("error", PDK_Skipped
)
489 .Case("pragma", PDK_Skipped
)
490 .Case("import", PDK_Skipped
)
491 .Case("include_next", PDK_Skipped
)
492 .Case("warning", PDK_Skipped
)
493 .Case("ident", PDK_Skipped
)
494 .Case("sccs", PDK_Skipped
)
495 .Case("assert", PDK_Skipped
)
496 .Case("unassert", PDK_Skipped
)
497 .Case("if", PDK_StartIf
)
498 .Case("ifdef", PDK_StartIf
)
499 .Case("ifndef", PDK_StartIf
)
500 .Case("elif", PDK_Skipped
)
501 .Case("else", PDK_Skipped
)
502 .Case("endif", PDK_EndIf
)
503 .Default(PDK_Unknown
);
511 IfStartTok
= HashTok
;
517 // Mismatched #endif. The preamble ends here.
525 // We don't know what this directive is; stop at the '#'.
530 // We only end up here if we didn't recognize the preprocessor
531 // directive or it was one that can't occur in the preamble at this
532 // point. Roll back the current token to the location of the '#'.
533 InPreprocessorDirective
= false;
537 // We hit a token that we don't recognize as being in the
538 // "preprocessing only" part of the file, so we're no longer in
543 SourceLocation End
= IfCount
? IfStartTok
.getLocation() : TheTok
.getLocation();
544 return std::make_pair(End
.getRawEncoding() - StartLoc
.getRawEncoding(),
545 IfCount
? IfStartTok
.isAtStartOfLine()
546 : TheTok
.isAtStartOfLine());
550 /// AdvanceToTokenCharacter - Given a location that specifies the start of a
551 /// token, return a new location that specifies a character within the token.
552 SourceLocation
Lexer::AdvanceToTokenCharacter(SourceLocation TokStart
,
554 const SourceManager
&SM
,
555 const LangOptions
&Features
) {
556 // Figure out how many physical characters away the specified instantiation
557 // character is. This needs to take into consideration newlines and
559 bool Invalid
= false;
560 const char *TokPtr
= SM
.getCharacterData(TokStart
, &Invalid
);
562 // If they request the first char of the token, we're trivially done.
563 if (Invalid
|| (CharNo
== 0 && Lexer::isObviouslySimpleCharacter(*TokPtr
)))
566 unsigned PhysOffset
= 0;
568 // The usual case is that tokens don't contain anything interesting. Skip
569 // over the uninteresting characters. If a token only consists of simple
570 // chars, this method is extremely fast.
571 while (Lexer::isObviouslySimpleCharacter(*TokPtr
)) {
573 return TokStart
.getFileLocWithOffset(PhysOffset
);
574 ++TokPtr
, --CharNo
, ++PhysOffset
;
577 // If we have a character that may be a trigraph or escaped newline, use a
578 // lexer to parse it correctly.
579 for (; CharNo
; --CharNo
) {
581 Lexer::getCharAndSizeNoWarn(TokPtr
, Size
, Features
);
586 // Final detail: if we end up on an escaped newline, we want to return the
587 // location of the actual byte of the token. For example foo\<newline>bar
588 // advanced by 3 should return the location of b, not of \\. One compounding
589 // detail of this is that the escape may be made by a trigraph.
590 if (!Lexer::isObviouslySimpleCharacter(*TokPtr
))
591 PhysOffset
+= Lexer::SkipEscapedNewLines(TokPtr
)-TokPtr
;
593 return TokStart
.getFileLocWithOffset(PhysOffset
);
596 /// \brief Computes the source location just past the end of the
597 /// token at this source location.
599 /// This routine can be used to produce a source location that
600 /// points just past the end of the token referenced by \p Loc, and
601 /// is generally used when a diagnostic needs to point just after a
602 /// token where it expected something different that it received. If
603 /// the returned source location would not be meaningful (e.g., if
604 /// it points into a macro), this routine returns an invalid
607 /// \param Offset an offset from the end of the token, where the source
608 /// location should refer to. The default offset (0) produces a source
609 /// location pointing just past the end of the token; an offset of 1 produces
610 /// a source location pointing to the last character in the token, etc.
611 SourceLocation
Lexer::getLocForEndOfToken(SourceLocation Loc
, unsigned Offset
,
612 const SourceManager
&SM
,
613 const LangOptions
&Features
) {
614 if (Loc
.isInvalid() || !Loc
.isFileID())
615 return SourceLocation();
617 unsigned Len
= Lexer::MeasureTokenLength(Loc
, SM
, Features
);
623 return AdvanceToTokenCharacter(Loc
, Len
, SM
, Features
);
626 //===----------------------------------------------------------------------===//
627 // Character information.
628 //===----------------------------------------------------------------------===//
631 CHAR_HORZ_WS
= 0x01, // ' ', '\t', '\f', '\v'. Note, no '\0'
632 CHAR_VERT_WS
= 0x02, // '\r', '\n'
633 CHAR_LETTER
= 0x04, // a-z,A-Z
634 CHAR_NUMBER
= 0x08, // 0-9
635 CHAR_UNDER
= 0x10, // _
636 CHAR_PERIOD
= 0x20 // .
639 // Statically initialize CharInfo table based on ASCII character set
640 // Reference: FreeBSD 7.2 /usr/share/misc/ascii
641 static const unsigned char CharInfo
[256] =
643 // 0 NUL 1 SOH 2 STX 3 ETX
644 // 4 EOT 5 ENQ 6 ACK 7 BEL
647 // 8 BS 9 HT 10 NL 11 VT
648 //12 NP 13 CR 14 SO 15 SI
649 0 , CHAR_HORZ_WS
, CHAR_VERT_WS
, CHAR_HORZ_WS
,
650 CHAR_HORZ_WS
, CHAR_VERT_WS
, 0 , 0 ,
651 //16 DLE 17 DC1 18 DC2 19 DC3
652 //20 DC4 21 NAK 22 SYN 23 ETB
655 //24 CAN 25 EM 26 SUB 27 ESC
656 //28 FS 29 GS 30 RS 31 US
659 //32 SP 33 ! 34 " 35 #
660 //36 $ 37 % 38 & 39 '
661 CHAR_HORZ_WS
, 0 , 0 , 0 ,
663 //40 ( 41 ) 42 * 43 +
664 //44 , 45 - 46 . 47 /
666 0 , 0 , CHAR_PERIOD
, 0 ,
667 //48 0 49 1 50 2 51 3
668 //52 4 53 5 54 6 55 7
669 CHAR_NUMBER
, CHAR_NUMBER
, CHAR_NUMBER
, CHAR_NUMBER
,
670 CHAR_NUMBER
, CHAR_NUMBER
, CHAR_NUMBER
, CHAR_NUMBER
,
671 //56 8 57 9 58 : 59 ;
672 //60 < 61 = 62 > 63 ?
673 CHAR_NUMBER
, CHAR_NUMBER
, 0 , 0 ,
675 //64 @ 65 A 66 B 67 C
676 //68 D 69 E 70 F 71 G
677 0 , CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
678 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
679 //72 H 73 I 74 J 75 K
680 //76 L 77 M 78 N 79 O
681 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
682 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
683 //80 P 81 Q 82 R 83 S
684 //84 T 85 U 86 V 87 W
685 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
686 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
687 //88 X 89 Y 90 Z 91 [
688 //92 \ 93 ] 94 ^ 95 _
689 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, 0 ,
690 0 , 0 , 0 , CHAR_UNDER
,
691 //96 ` 97 a 98 b 99 c
692 //100 d 101 e 102 f 103 g
693 0 , CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
694 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
695 //104 h 105 i 106 j 107 k
696 //108 l 109 m 110 n 111 o
697 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
698 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
699 //112 p 113 q 114 r 115 s
700 //116 t 117 u 118 v 119 w
701 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
702 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
,
703 //120 x 121 y 122 z 123 {
704 //124 | 125 } 126 ~ 127 DEL
705 CHAR_LETTER
, CHAR_LETTER
, CHAR_LETTER
, 0 ,
709 static void InitCharacterInfo() {
710 static bool isInited
= false;
711 if (isInited
) return;
712 // check the statically-initialized CharInfo table
713 assert(CHAR_HORZ_WS
== CharInfo
[(int)' ']);
714 assert(CHAR_HORZ_WS
== CharInfo
[(int)'\t']);
715 assert(CHAR_HORZ_WS
== CharInfo
[(int)'\f']);
716 assert(CHAR_HORZ_WS
== CharInfo
[(int)'\v']);
717 assert(CHAR_VERT_WS
== CharInfo
[(int)'\n']);
718 assert(CHAR_VERT_WS
== CharInfo
[(int)'\r']);
719 assert(CHAR_UNDER
== CharInfo
[(int)'_']);
720 assert(CHAR_PERIOD
== CharInfo
[(int)'.']);
721 for (unsigned i
= 'a'; i
<= 'z'; ++i
) {
722 assert(CHAR_LETTER
== CharInfo
[i
]);
723 assert(CHAR_LETTER
== CharInfo
[i
+'A'-'a']);
725 for (unsigned i
= '0'; i
<= '9'; ++i
)
726 assert(CHAR_NUMBER
== CharInfo
[i
]);
732 /// isIdentifierBody - Return true if this is the body character of an
733 /// identifier, which is [a-zA-Z0-9_].
734 static inline bool isIdentifierBody(unsigned char c
) {
735 return (CharInfo
[c
] & (CHAR_LETTER
|CHAR_NUMBER
|CHAR_UNDER
)) ? true : false;
738 /// isHorizontalWhitespace - Return true if this character is horizontal
739 /// whitespace: ' ', '\t', '\f', '\v'. Note that this returns false for '\0'.
740 static inline bool isHorizontalWhitespace(unsigned char c
) {
741 return (CharInfo
[c
] & CHAR_HORZ_WS
) ? true : false;
744 /// isWhitespace - Return true if this character is horizontal or vertical
745 /// whitespace: ' ', '\t', '\f', '\v', '\n', '\r'. Note that this returns false
747 static inline bool isWhitespace(unsigned char c
) {
748 return (CharInfo
[c
] & (CHAR_HORZ_WS
|CHAR_VERT_WS
)) ? true : false;
751 /// isNumberBody - Return true if this is the body character of an
752 /// preprocessing number, which is [a-zA-Z0-9_.].
753 static inline bool isNumberBody(unsigned char c
) {
754 return (CharInfo
[c
] & (CHAR_LETTER
|CHAR_NUMBER
|CHAR_UNDER
|CHAR_PERIOD
)) ?
759 //===----------------------------------------------------------------------===//
760 // Diagnostics forwarding code.
761 //===----------------------------------------------------------------------===//
763 /// GetMappedTokenLoc - If lexing out of a 'mapped buffer', where we pretend the
764 /// lexer buffer was all instantiated at a single point, perform the mapping.
765 /// This is currently only used for _Pragma implementation, so it is the slow
766 /// path of the hot getSourceLocation method. Do not allow it to be inlined.
767 static LLVM_ATTRIBUTE_NOINLINE SourceLocation
GetMappedTokenLoc(
768 Preprocessor
&PP
, SourceLocation FileLoc
, unsigned CharNo
, unsigned TokLen
);
769 static SourceLocation
GetMappedTokenLoc(Preprocessor
&PP
,
770 SourceLocation FileLoc
,
771 unsigned CharNo
, unsigned TokLen
) {
772 assert(FileLoc
.isMacroID() && "Must be an instantiation");
774 // Otherwise, we're lexing "mapped tokens". This is used for things like
775 // _Pragma handling. Combine the instantiation location of FileLoc with the
776 // spelling location.
777 SourceManager
&SM
= PP
.getSourceManager();
779 // Create a new SLoc which is expanded from Instantiation(FileLoc) but whose
780 // characters come from spelling(FileLoc)+Offset.
781 SourceLocation SpellingLoc
= SM
.getSpellingLoc(FileLoc
);
782 SpellingLoc
= SpellingLoc
.getFileLocWithOffset(CharNo
);
784 // Figure out the expansion loc range, which is the range covered by the
785 // original _Pragma(...) sequence.
786 std::pair
<SourceLocation
,SourceLocation
> II
=
787 SM
.getImmediateInstantiationRange(FileLoc
);
789 return SM
.createInstantiationLoc(SpellingLoc
, II
.first
, II
.second
, TokLen
);
792 /// getSourceLocation - Return a source location identifier for the specified
793 /// offset in the current file.
794 SourceLocation
Lexer::getSourceLocation(const char *Loc
,
795 unsigned TokLen
) const {
796 assert(Loc
>= BufferStart
&& Loc
<= BufferEnd
&&
797 "Location out of range for this buffer!");
799 // In the normal case, we're just lexing from a simple file buffer, return
800 // the file id from FileLoc with the offset specified.
801 unsigned CharNo
= Loc
-BufferStart
;
802 if (FileLoc
.isFileID())
803 return FileLoc
.getFileLocWithOffset(CharNo
);
805 // Otherwise, this is the _Pragma lexer case, which pretends that all of the
806 // tokens are lexed from where the _Pragma was defined.
807 assert(PP
&& "This doesn't work on raw lexers");
808 return GetMappedTokenLoc(*PP
, FileLoc
, CharNo
, TokLen
);
811 /// Diag - Forwarding function for diagnostics. This translate a source
812 /// position in the current buffer into a SourceLocation object for rendering.
813 DiagnosticBuilder
Lexer::Diag(const char *Loc
, unsigned DiagID
) const {
814 return PP
->Diag(getSourceLocation(Loc
), DiagID
);
817 //===----------------------------------------------------------------------===//
818 // Trigraph and Escaped Newline Handling Code.
819 //===----------------------------------------------------------------------===//
821 /// GetTrigraphCharForLetter - Given a character that occurs after a ?? pair,
822 /// return the decoded trigraph letter it corresponds to, or '\0' if nothing.
823 static char GetTrigraphCharForLetter(char Letter
) {
826 case '=': return '#';
827 case ')': return ']';
828 case '(': return '[';
829 case '!': return '|';
830 case '\'': return '^';
831 case '>': return '}';
832 case '/': return '\\';
833 case '<': return '{';
834 case '-': return '~';
838 /// DecodeTrigraphChar - If the specified character is a legal trigraph when
839 /// prefixed with ??, emit a trigraph warning. If trigraphs are enabled,
840 /// return the result character. Finally, emit a warning about trigraph use
841 /// whether trigraphs are enabled or not.
842 static char DecodeTrigraphChar(const char *CP
, Lexer
*L
) {
843 char Res
= GetTrigraphCharForLetter(*CP
);
844 if (!Res
|| !L
) return Res
;
846 if (!L
->getFeatures().Trigraphs
) {
847 if (!L
->isLexingRawMode())
848 L
->Diag(CP
-2, diag::trigraph_ignored
);
852 if (!L
->isLexingRawMode())
853 L
->Diag(CP
-2, diag::trigraph_converted
) << llvm::StringRef(&Res
, 1);
857 /// getEscapedNewLineSize - Return the size of the specified escaped newline,
858 /// or 0 if it is not an escaped newline. P[-1] is known to be a "\" or a
859 /// trigraph equivalent on entry to this function.
860 unsigned Lexer::getEscapedNewLineSize(const char *Ptr
) {
862 while (isWhitespace(Ptr
[Size
])) {
865 if (Ptr
[Size
-1] != '\n' && Ptr
[Size
-1] != '\r')
868 // If this is a \r\n or \n\r, skip the other half.
869 if ((Ptr
[Size
] == '\r' || Ptr
[Size
] == '\n') &&
870 Ptr
[Size
-1] != Ptr
[Size
])
876 // Not an escaped newline, must be a \t or something else.
880 /// SkipEscapedNewLines - If P points to an escaped newline (or a series of
881 /// them), skip over them and return the first non-escaped-newline found,
882 /// otherwise return P.
883 const char *Lexer::SkipEscapedNewLines(const char *P
) {
885 const char *AfterEscape
;
888 } else if (*P
== '?') {
889 // If not a trigraph for escape, bail out.
890 if (P
[1] != '?' || P
[2] != '/')
897 unsigned NewLineSize
= Lexer::getEscapedNewLineSize(AfterEscape
);
898 if (NewLineSize
== 0) return P
;
899 P
= AfterEscape
+NewLineSize
;
904 /// getCharAndSizeSlow - Peek a single 'character' from the specified buffer,
905 /// get its size, and return it. This is tricky in several cases:
906 /// 1. If currently at the start of a trigraph, we warn about the trigraph,
907 /// then either return the trigraph (skipping 3 chars) or the '?',
908 /// depending on whether trigraphs are enabled or not.
909 /// 2. If this is an escaped newline (potentially with whitespace between
910 /// the backslash and newline), implicitly skip the newline and return
911 /// the char after it.
912 /// 3. If this is a UCN, return it. FIXME: C++ UCN's?
914 /// This handles the slow/uncommon case of the getCharAndSize method. Here we
915 /// know that we can accumulate into Size, and that we have already incremented
916 /// Ptr by Size bytes.
918 /// NOTE: When this method is updated, getCharAndSizeSlowNoWarn (below) should
919 /// be updated to match.
921 char Lexer::getCharAndSizeSlow(const char *Ptr
, unsigned &Size
,
923 // If we have a slash, look for an escaped newline.
924 if (Ptr
[0] == '\\') {
928 // Common case, backslash-char where the char is not whitespace.
929 if (!isWhitespace(Ptr
[0])) return '\\';
931 // See if we have optional whitespace characters between the slash and
933 if (unsigned EscapedNewLineSize
= getEscapedNewLineSize(Ptr
)) {
934 // Remember that this token needs to be cleaned.
935 if (Tok
) Tok
->setFlag(Token::NeedsCleaning
);
937 // Warn if there was whitespace between the backslash and newline.
938 if (Ptr
[0] != '\n' && Ptr
[0] != '\r' && Tok
&& !isLexingRawMode())
939 Diag(Ptr
, diag::backslash_newline_space
);
941 // Found backslash<whitespace><newline>. Parse the char after it.
942 Size
+= EscapedNewLineSize
;
943 Ptr
+= EscapedNewLineSize
;
944 // Use slow version to accumulate a correct size field.
945 return getCharAndSizeSlow(Ptr
, Size
, Tok
);
948 // Otherwise, this is not an escaped newline, just return the slash.
952 // If this is a trigraph, process it.
953 if (Ptr
[0] == '?' && Ptr
[1] == '?') {
954 // If this is actually a legal trigraph (not something like "??x"), emit
955 // a trigraph warning. If so, and if trigraphs are enabled, return it.
956 if (char C
= DecodeTrigraphChar(Ptr
+2, Tok
? this : 0)) {
957 // Remember that this token needs to be cleaned.
958 if (Tok
) Tok
->setFlag(Token::NeedsCleaning
);
962 if (C
== '\\') goto Slash
;
967 // If this is neither, return a single character.
973 /// getCharAndSizeSlowNoWarn - Handle the slow/uncommon case of the
974 /// getCharAndSizeNoWarn method. Here we know that we can accumulate into Size,
975 /// and that we have already incremented Ptr by Size bytes.
977 /// NOTE: When this method is updated, getCharAndSizeSlow (above) should
978 /// be updated to match.
979 char Lexer::getCharAndSizeSlowNoWarn(const char *Ptr
, unsigned &Size
,
980 const LangOptions
&Features
) {
981 // If we have a slash, look for an escaped newline.
982 if (Ptr
[0] == '\\') {
986 // Common case, backslash-char where the char is not whitespace.
987 if (!isWhitespace(Ptr
[0])) return '\\';
989 // See if we have optional whitespace characters followed by a newline.
990 if (unsigned EscapedNewLineSize
= getEscapedNewLineSize(Ptr
)) {
991 // Found backslash<whitespace><newline>. Parse the char after it.
992 Size
+= EscapedNewLineSize
;
993 Ptr
+= EscapedNewLineSize
;
995 // Use slow version to accumulate a correct size field.
996 return getCharAndSizeSlowNoWarn(Ptr
, Size
, Features
);
999 // Otherwise, this is not an escaped newline, just return the slash.
1003 // If this is a trigraph, process it.
1004 if (Features
.Trigraphs
&& Ptr
[0] == '?' && Ptr
[1] == '?') {
1005 // If this is actually a legal trigraph (not something like "??x"), return
1007 if (char C
= GetTrigraphCharForLetter(Ptr
[2])) {
1010 if (C
== '\\') goto Slash
;
1015 // If this is neither, return a single character.
1020 //===----------------------------------------------------------------------===//
1021 // Helper methods for lexing.
1022 //===----------------------------------------------------------------------===//
1024 /// \brief Routine that indiscriminately skips bytes in the source file.
1025 void Lexer::SkipBytes(unsigned Bytes
, bool StartOfLine
) {
1027 if (BufferPtr
> BufferEnd
)
1028 BufferPtr
= BufferEnd
;
1029 IsAtStartOfLine
= StartOfLine
;
1032 void Lexer::LexIdentifier(Token
&Result
, const char *CurPtr
) {
1033 // Match [_A-Za-z0-9]*, we have already matched [_A-Za-z$]
1035 unsigned char C
= *CurPtr
++;
1036 while (isIdentifierBody(C
))
1039 --CurPtr
; // Back up over the skipped character.
1041 // Fast path, no $,\,? in identifier found. '\' might be an escaped newline
1042 // or UCN, and ? might be a trigraph for '\', an escaped newline or UCN.
1045 // TODO: Could merge these checks into a CharInfo flag to make the comparison
1047 if (C
!= '\\' && C
!= '?' && (C
!= '$' || !Features
.DollarIdents
)) {
1049 const char *IdStart
= BufferPtr
;
1050 FormTokenWithChars(Result
, CurPtr
, tok::raw_identifier
);
1051 Result
.setRawIdentifierData(IdStart
);
1053 // If we are in raw mode, return this identifier raw. There is no need to
1054 // look up identifier information or attempt to macro expand it.
1058 // Fill in Result.IdentifierInfo and update the token kind,
1059 // looking up the identifier in the identifier table.
1060 IdentifierInfo
*II
= PP
->LookUpIdentifierInfo(Result
);
1062 // Finally, now that we know we have an identifier, pass this off to the
1063 // preprocessor, which may macro expand it or something.
1064 if (II
->isHandleIdentifierCase())
1065 PP
->HandleIdentifier(Result
);
1069 // Otherwise, $,\,? in identifier found. Enter slower path.
1071 C
= getCharAndSize(CurPtr
, Size
);
1074 // If we hit a $ and they are not supported in identifiers, we are done.
1075 if (!Features
.DollarIdents
) goto FinishIdentifier
;
1077 // Otherwise, emit a diagnostic and continue.
1078 if (!isLexingRawMode())
1079 Diag(CurPtr
, diag::ext_dollar_in_identifier
);
1080 CurPtr
= ConsumeChar(CurPtr
, Size
, Result
);
1081 C
= getCharAndSize(CurPtr
, Size
);
1083 } else if (!isIdentifierBody(C
)) { // FIXME: UCNs.
1084 // Found end of identifier.
1085 goto FinishIdentifier
;
1088 // Otherwise, this character is good, consume it.
1089 CurPtr
= ConsumeChar(CurPtr
, Size
, Result
);
1091 C
= getCharAndSize(CurPtr
, Size
);
1092 while (isIdentifierBody(C
)) { // FIXME: UCNs.
1093 CurPtr
= ConsumeChar(CurPtr
, Size
, Result
);
1094 C
= getCharAndSize(CurPtr
, Size
);
1099 /// isHexaLiteral - Return true if Start points to a hex constant.
1100 /// in microsoft mode (where this is supposed to be several different tokens).
1101 static bool isHexaLiteral(const char *Start
, const LangOptions
&Features
) {
1103 char C1
= Lexer::getCharAndSizeNoWarn(Start
, Size
, Features
);
1106 char C2
= Lexer::getCharAndSizeNoWarn(Start
+ Size
, Size
, Features
);
1107 return (C2
== 'x' || C2
== 'X');
1110 /// LexNumericConstant - Lex the remainder of a integer or floating point
1111 /// constant. From[-1] is the first character lexed. Return the end of the
1113 void Lexer::LexNumericConstant(Token
&Result
, const char *CurPtr
) {
1115 char C
= getCharAndSize(CurPtr
, Size
);
1117 while (isNumberBody(C
)) { // FIXME: UCNs?
1118 CurPtr
= ConsumeChar(CurPtr
, Size
, Result
);
1120 C
= getCharAndSize(CurPtr
, Size
);
1123 // If we fell out, check for a sign, due to 1e+12. If we have one, continue.
1124 if ((C
== '-' || C
== '+') && (PrevCh
== 'E' || PrevCh
== 'e')) {
1125 // If we are in Microsoft mode, don't continue if the constant is hex.
1126 // For example, MSVC will accept the following as 3 tokens: 0x1234567e+1
1127 if (!Features
.Microsoft
|| !isHexaLiteral(BufferPtr
, Features
))
1128 return LexNumericConstant(Result
, ConsumeChar(CurPtr
, Size
, Result
));
1131 // If we have a hex FP constant, continue.
1132 if ((C
== '-' || C
== '+') && (PrevCh
== 'P' || PrevCh
== 'p') &&
1133 !Features
.CPlusPlus0x
)
1134 return LexNumericConstant(Result
, ConsumeChar(CurPtr
, Size
, Result
));
1136 // Update the location of token as well as BufferPtr.
1137 const char *TokStart
= BufferPtr
;
1138 FormTokenWithChars(Result
, CurPtr
, tok::numeric_constant
);
1139 Result
.setLiteralData(TokStart
);
1142 /// LexStringLiteral - Lex the remainder of a string literal, after having lexed
1144 void Lexer::LexStringLiteral(Token
&Result
, const char *CurPtr
, bool Wide
) {
1145 const char *NulCharacter
= 0; // Does this string contain the \0 character?
1147 char C
= getAndAdvanceChar(CurPtr
, Result
);
1149 // Skip escaped characters. Escaped newlines will already be processed by
1150 // getAndAdvanceChar.
1152 C
= getAndAdvanceChar(CurPtr
, Result
);
1154 if (C
== '\n' || C
== '\r' || // Newline.
1155 (C
== 0 && CurPtr
-1 == BufferEnd
)) { // End of file.
1156 if (C
== 0 && PP
&& PP
->isCodeCompletionFile(FileLoc
))
1157 PP
->CodeCompleteNaturalLanguage();
1158 else if (!isLexingRawMode() && !Features
.AsmPreprocessor
)
1159 Diag(BufferPtr
, diag::err_unterminated_string
);
1160 FormTokenWithChars(Result
, CurPtr
-1, tok::unknown
);
1165 NulCharacter
= CurPtr
-1;
1166 C
= getAndAdvanceChar(CurPtr
, Result
);
1169 // If a nul character existed in the string, warn about it.
1170 if (NulCharacter
&& !isLexingRawMode())
1171 Diag(NulCharacter
, diag::null_in_string
);
1173 // Update the location of the token as well as the BufferPtr instance var.
1174 const char *TokStart
= BufferPtr
;
1175 FormTokenWithChars(Result
, CurPtr
,
1176 Wide
? tok::wide_string_literal
: tok::string_literal
);
1177 Result
.setLiteralData(TokStart
);
1180 /// LexAngledStringLiteral - Lex the remainder of an angled string literal,
1181 /// after having lexed the '<' character. This is used for #include filenames.
1182 void Lexer::LexAngledStringLiteral(Token
&Result
, const char *CurPtr
) {
1183 const char *NulCharacter
= 0; // Does this string contain the \0 character?
1184 const char *AfterLessPos
= CurPtr
;
1185 char C
= getAndAdvanceChar(CurPtr
, Result
);
1187 // Skip escaped characters.
1189 // Skip the escaped character.
1190 C
= getAndAdvanceChar(CurPtr
, Result
);
1191 } else if (C
== '\n' || C
== '\r' || // Newline.
1192 (C
== 0 && CurPtr
-1 == BufferEnd
)) { // End of file.
1193 // If the filename is unterminated, then it must just be a lone <
1194 // character. Return this as such.
1195 FormTokenWithChars(Result
, AfterLessPos
, tok::less
);
1197 } else if (C
== 0) {
1198 NulCharacter
= CurPtr
-1;
1200 C
= getAndAdvanceChar(CurPtr
, Result
);
1203 // If a nul character existed in the string, warn about it.
1204 if (NulCharacter
&& !isLexingRawMode())
1205 Diag(NulCharacter
, diag::null_in_string
);
1207 // Update the location of token as well as BufferPtr.
1208 const char *TokStart
= BufferPtr
;
1209 FormTokenWithChars(Result
, CurPtr
, tok::angle_string_literal
);
1210 Result
.setLiteralData(TokStart
);
1214 /// LexCharConstant - Lex the remainder of a character constant, after having
1215 /// lexed either ' or L'.
1216 void Lexer::LexCharConstant(Token
&Result
, const char *CurPtr
) {
1217 const char *NulCharacter
= 0; // Does this character contain the \0 character?
1219 char C
= getAndAdvanceChar(CurPtr
, Result
);
1221 if (!isLexingRawMode() && !Features
.AsmPreprocessor
)
1222 Diag(BufferPtr
, diag::err_empty_character
);
1223 FormTokenWithChars(Result
, CurPtr
, tok::unknown
);
1228 // Skip escaped characters.
1230 // Skip the escaped character.
1232 C
= getAndAdvanceChar(CurPtr
, Result
);
1233 } else if (C
== '\n' || C
== '\r' || // Newline.
1234 (C
== 0 && CurPtr
-1 == BufferEnd
)) { // End of file.
1235 if (C
== 0 && PP
&& PP
->isCodeCompletionFile(FileLoc
))
1236 PP
->CodeCompleteNaturalLanguage();
1237 else if (!isLexingRawMode() && !Features
.AsmPreprocessor
)
1238 Diag(BufferPtr
, diag::err_unterminated_char
);
1239 FormTokenWithChars(Result
, CurPtr
-1, tok::unknown
);
1241 } else if (C
== 0) {
1242 NulCharacter
= CurPtr
-1;
1244 C
= getAndAdvanceChar(CurPtr
, Result
);
1247 // If a nul character existed in the character, warn about it.
1248 if (NulCharacter
&& !isLexingRawMode())
1249 Diag(NulCharacter
, diag::null_in_char
);
1251 // Update the location of token as well as BufferPtr.
1252 const char *TokStart
= BufferPtr
;
1253 FormTokenWithChars(Result
, CurPtr
, tok::char_constant
);
1254 Result
.setLiteralData(TokStart
);
1257 /// SkipWhitespace - Efficiently skip over a series of whitespace characters.
1258 /// Update BufferPtr to point to the next non-whitespace character and return.
1260 /// This method forms a token and returns true if KeepWhitespaceMode is enabled.
1262 bool Lexer::SkipWhitespace(Token
&Result
, const char *CurPtr
) {
1263 // Whitespace - Skip it, then return the token after the whitespace.
1264 unsigned char Char
= *CurPtr
; // Skip consequtive spaces efficiently.
1266 // Skip horizontal whitespace very aggressively.
1267 while (isHorizontalWhitespace(Char
))
1270 // Otherwise if we have something other than whitespace, we're done.
1271 if (Char
!= '\n' && Char
!= '\r')
1274 if (ParsingPreprocessorDirective
) {
1275 // End of preprocessor directive line, let LexTokenInternal handle this.
1280 // ok, but handle newline.
1281 // The returned token is at the start of the line.
1282 Result
.setFlag(Token::StartOfLine
);
1283 // No leading whitespace seen so far.
1284 Result
.clearFlag(Token::LeadingSpace
);
1288 // If this isn't immediately after a newline, there is leading space.
1289 char PrevChar
= CurPtr
[-1];
1290 if (PrevChar
!= '\n' && PrevChar
!= '\r')
1291 Result
.setFlag(Token::LeadingSpace
);
1293 // If the client wants us to return whitespace, return it now.
1294 if (isKeepWhitespaceMode()) {
1295 FormTokenWithChars(Result
, CurPtr
, tok::unknown
);
1303 // SkipBCPLComment - We have just read the // characters from input. Skip until
1304 // we find the newline character thats terminate the comment. Then update
1305 /// BufferPtr and return.
1307 /// If we're in KeepCommentMode or any CommentHandler has inserted
1308 /// some tokens, this will store the first token and return true.
1309 bool Lexer::SkipBCPLComment(Token
&Result
, const char *CurPtr
) {
1310 // If BCPL comments aren't explicitly enabled for this language, emit an
1311 // extension warning.
1312 if (!Features
.BCPLComment
&& !isLexingRawMode()) {
1313 Diag(BufferPtr
, diag::ext_bcpl_comment
);
1315 // Mark them enabled so we only emit one warning for this translation
1317 Features
.BCPLComment
= true;
1320 // Scan over the body of the comment. The common case, when scanning, is that
1321 // the comment contains normal ascii characters with nothing interesting in
1322 // them. As such, optimize for this case with the inner loop.
1326 // FIXME: Speedup BCPL comment lexing. Just scan for a \n or \r character.
1327 // If we find a \n character, scan backwards, checking to see if it's an
1328 // escaped newline, like we do for block comments.
1330 // Skip over characters in the fast loop.
1331 while (C
!= 0 && // Potentially EOF.
1332 C
!= '\\' && // Potentially escaped newline.
1333 C
!= '?' && // Potentially trigraph.
1334 C
!= '\n' && C
!= '\r') // Newline or DOS-style newline.
1337 // If this is a newline, we're done.
1338 if (C
== '\n' || C
== '\r')
1339 break; // Found the newline? Break out!
1341 // Otherwise, this is a hard case. Fall back on getAndAdvanceChar to
1342 // properly decode the character. Read it in raw mode to avoid emitting
1343 // diagnostics about things like trigraphs. If we see an escaped newline,
1344 // we'll handle it below.
1345 const char *OldPtr
= CurPtr
;
1346 bool OldRawMode
= isLexingRawMode();
1347 LexingRawMode
= true;
1348 C
= getAndAdvanceChar(CurPtr
, Result
);
1349 LexingRawMode
= OldRawMode
;
1351 // If the char that we finally got was a \n, then we must have had something
1352 // like \<newline><newline>. We don't want to have consumed the second
1353 // newline, we want CurPtr, to end up pointing to it down below.
1354 if (C
== '\n' || C
== '\r') {
1356 C
= 'x'; // doesn't matter what this is.
1359 // If we read multiple characters, and one of those characters was a \r or
1360 // \n, then we had an escaped newline within the comment. Emit diagnostic
1361 // unless the next line is also a // comment.
1362 if (CurPtr
!= OldPtr
+1 && C
!= '/' && CurPtr
[0] != '/') {
1363 for (; OldPtr
!= CurPtr
; ++OldPtr
)
1364 if (OldPtr
[0] == '\n' || OldPtr
[0] == '\r') {
1365 // Okay, we found a // comment that ends in a newline, if the next
1366 // line is also a // comment, but has spaces, don't emit a diagnostic.
1368 const char *ForwardPtr
= CurPtr
;
1369 while (isspace(*ForwardPtr
)) // Skip whitespace.
1371 if (ForwardPtr
[0] == '/' && ForwardPtr
[1] == '/')
1375 if (!isLexingRawMode())
1376 Diag(OldPtr
-1, diag::ext_multi_line_bcpl_comment
);
1381 if (CurPtr
== BufferEnd
+1) {
1382 if (PP
&& PP
->isCodeCompletionFile(FileLoc
))
1383 PP
->CodeCompleteNaturalLanguage();
1388 } while (C
!= '\n' && C
!= '\r');
1390 // Found but did not consume the newline. Notify comment handlers about the
1391 // comment unless we're in a #if 0 block.
1392 if (PP
&& !isLexingRawMode() &&
1393 PP
->HandleComment(Result
, SourceRange(getSourceLocation(BufferPtr
),
1394 getSourceLocation(CurPtr
)))) {
1396 return true; // A token has to be returned.
1399 // If we are returning comments as tokens, return this comment as a token.
1400 if (inKeepCommentMode())
1401 return SaveBCPLComment(Result
, CurPtr
);
1403 // If we are inside a preprocessor directive and we see the end of line,
1404 // return immediately, so that the lexer can return this as an EOM token.
1405 if (ParsingPreprocessorDirective
|| CurPtr
== BufferEnd
) {
1410 // Otherwise, eat the \n character. We don't care if this is a \n\r or
1411 // \r\n sequence. This is an efficiency hack (because we know the \n can't
1412 // contribute to another token), it isn't needed for correctness. Note that
1413 // this is ok even in KeepWhitespaceMode, because we would have returned the
1414 /// comment above in that mode.
1417 // The next returned token is at the start of the line.
1418 Result
.setFlag(Token::StartOfLine
);
1419 // No leading whitespace seen so far.
1420 Result
.clearFlag(Token::LeadingSpace
);
1425 /// SaveBCPLComment - If in save-comment mode, package up this BCPL comment in
1426 /// an appropriate way and return it.
1427 bool Lexer::SaveBCPLComment(Token
&Result
, const char *CurPtr
) {
1428 // If we're not in a preprocessor directive, just return the // comment
1430 FormTokenWithChars(Result
, CurPtr
, tok::comment
);
1432 if (!ParsingPreprocessorDirective
)
1435 // If this BCPL-style comment is in a macro definition, transmogrify it into
1436 // a C-style block comment.
1437 bool Invalid
= false;
1438 std::string Spelling
= PP
->getSpelling(Result
, &Invalid
);
1442 assert(Spelling
[0] == '/' && Spelling
[1] == '/' && "Not bcpl comment?");
1443 Spelling
[1] = '*'; // Change prefix to "/*".
1444 Spelling
+= "*/"; // add suffix.
1446 Result
.setKind(tok::comment
);
1447 PP
->CreateString(&Spelling
[0], Spelling
.size(), Result
,
1448 Result
.getLocation());
1452 /// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline
1453 /// character (either \n or \r) is part of an escaped newline sequence. Issue a
1454 /// diagnostic if so. We know that the newline is inside of a block comment.
1455 static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr
,
1457 assert(CurPtr
[0] == '\n' || CurPtr
[0] == '\r');
1459 // Back up off the newline.
1462 // If this is a two-character newline sequence, skip the other character.
1463 if (CurPtr
[0] == '\n' || CurPtr
[0] == '\r') {
1464 // \n\n or \r\r -> not escaped newline.
1465 if (CurPtr
[0] == CurPtr
[1])
1467 // \n\r or \r\n -> skip the newline.
1471 // If we have horizontal whitespace, skip over it. We allow whitespace
1472 // between the slash and newline.
1473 bool HasSpace
= false;
1474 while (isHorizontalWhitespace(*CurPtr
) || *CurPtr
== 0) {
1479 // If we have a slash, we know this is an escaped newline.
1480 if (*CurPtr
== '\\') {
1481 if (CurPtr
[-1] != '*') return false;
1483 // It isn't a slash, is it the ?? / trigraph?
1484 if (CurPtr
[0] != '/' || CurPtr
[-1] != '?' || CurPtr
[-2] != '?' ||
1488 // This is the trigraph ending the comment. Emit a stern warning!
1491 // If no trigraphs are enabled, warn that we ignored this trigraph and
1492 // ignore this * character.
1493 if (!L
->getFeatures().Trigraphs
) {
1494 if (!L
->isLexingRawMode())
1495 L
->Diag(CurPtr
, diag::trigraph_ignored_block_comment
);
1498 if (!L
->isLexingRawMode())
1499 L
->Diag(CurPtr
, diag::trigraph_ends_block_comment
);
1502 // Warn about having an escaped newline between the */ characters.
1503 if (!L
->isLexingRawMode())
1504 L
->Diag(CurPtr
, diag::escaped_newline_block_comment_end
);
1506 // If there was space between the backslash and newline, warn about it.
1507 if (HasSpace
&& !L
->isLexingRawMode())
1508 L
->Diag(CurPtr
, diag::backslash_newline_space
);
1514 #include <emmintrin.h>
1516 #include <altivec.h>
1520 /// SkipBlockComment - We have just read the /* characters from input. Read
1521 /// until we find the */ characters that terminate the comment. Note that we
1522 /// don't bother decoding trigraphs or escaped newlines in block comments,
1523 /// because they cannot cause the comment to end. The only thing that can
1524 /// happen is the comment could end with an escaped newline between the */ end
1527 /// If we're in KeepCommentMode or any CommentHandler has inserted
1528 /// some tokens, this will store the first token and return true.
1529 bool Lexer::SkipBlockComment(Token
&Result
, const char *CurPtr
) {
1530 // Scan one character past where we should, looking for a '/' character. Once
1531 // we find it, check to see if it was preceeded by a *. This common
1532 // optimization helps people who like to put a lot of * characters in their
1535 // The first character we get with newlines and trigraphs skipped to handle
1536 // the degenerate /*/ case below correctly if the * has an escaped newline
1539 unsigned char C
= getCharAndSize(CurPtr
, CharSize
);
1541 if (C
== 0 && CurPtr
== BufferEnd
+1) {
1542 if (!isLexingRawMode() &&
1543 !PP
->isCodeCompletionFile(FileLoc
))
1544 Diag(BufferPtr
, diag::err_unterminated_block_comment
);
1547 // KeepWhitespaceMode should return this broken comment as a token. Since
1548 // it isn't a well formed comment, just return it as an 'unknown' token.
1549 if (isKeepWhitespaceMode()) {
1550 FormTokenWithChars(Result
, CurPtr
, tok::unknown
);
1558 // Check to see if the first character after the '/*' is another /. If so,
1559 // then this slash does not end the block comment, it is part of it.
1564 // Skip over all non-interesting characters until we find end of buffer or a
1565 // (probably ending) '/' character.
1566 if (CurPtr
+ 24 < BufferEnd
) {
1567 // While not aligned to a 16-byte boundary.
1568 while (C
!= '/' && ((intptr_t)CurPtr
& 0x0F) != 0)
1571 if (C
== '/') goto FoundSlash
;
1574 __m128i Slashes
= _mm_set_epi8('/', '/', '/', '/', '/', '/', '/', '/',
1575 '/', '/', '/', '/', '/', '/', '/', '/');
1576 while (CurPtr
+16 <= BufferEnd
&&
1577 _mm_movemask_epi8(_mm_cmpeq_epi8(*(__m128i
*)CurPtr
, Slashes
)) == 0)
1580 __vector
unsigned char Slashes
= {
1581 '/', '/', '/', '/', '/', '/', '/', '/',
1582 '/', '/', '/', '/', '/', '/', '/', '/'
1584 while (CurPtr
+16 <= BufferEnd
&&
1585 !vec_any_eq(*(vector
unsigned char*)CurPtr
, Slashes
))
1588 // Scan for '/' quickly. Many block comments are very large.
1589 while (CurPtr
[0] != '/' &&
1593 CurPtr
+4 < BufferEnd
) {
1598 // It has to be one of the bytes scanned, increment to it and read one.
1602 // Loop to scan the remainder.
1603 while (C
!= '/' && C
!= '\0')
1608 if (CurPtr
[-2] == '*') // We found the final */. We're done!
1611 if ((CurPtr
[-2] == '\n' || CurPtr
[-2] == '\r')) {
1612 if (isEndOfBlockCommentWithEscapedNewLine(CurPtr
-2, this)) {
1613 // We found the final */, though it had an escaped newline between the
1614 // * and /. We're done!
1618 if (CurPtr
[0] == '*' && CurPtr
[1] != '/') {
1619 // If this is a /* inside of the comment, emit a warning. Don't do this
1620 // if this is a /*/, which will end the comment. This misses cases with
1621 // embedded escaped newlines, but oh well.
1622 if (!isLexingRawMode())
1623 Diag(CurPtr
-1, diag::warn_nested_block_comment
);
1625 } else if (C
== 0 && CurPtr
== BufferEnd
+1) {
1626 if (PP
&& PP
->isCodeCompletionFile(FileLoc
))
1627 PP
->CodeCompleteNaturalLanguage();
1628 else if (!isLexingRawMode())
1629 Diag(BufferPtr
, diag::err_unterminated_block_comment
);
1630 // Note: the user probably forgot a */. We could continue immediately
1631 // after the /*, but this would involve lexing a lot of what really is the
1632 // comment, which surely would confuse the parser.
1635 // KeepWhitespaceMode should return this broken comment as a token. Since
1636 // it isn't a well formed comment, just return it as an 'unknown' token.
1637 if (isKeepWhitespaceMode()) {
1638 FormTokenWithChars(Result
, CurPtr
, tok::unknown
);
1648 // Notify comment handlers about the comment unless we're in a #if 0 block.
1649 if (PP
&& !isLexingRawMode() &&
1650 PP
->HandleComment(Result
, SourceRange(getSourceLocation(BufferPtr
),
1651 getSourceLocation(CurPtr
)))) {
1653 return true; // A token has to be returned.
1656 // If we are returning comments as tokens, return this comment as a token.
1657 if (inKeepCommentMode()) {
1658 FormTokenWithChars(Result
, CurPtr
, tok::comment
);
1662 // It is common for the tokens immediately after a /**/ comment to be
1663 // whitespace. Instead of going through the big switch, handle it
1664 // efficiently now. This is safe even in KeepWhitespaceMode because we would
1665 // have already returned above with the comment as a token.
1666 if (isHorizontalWhitespace(*CurPtr
)) {
1667 Result
.setFlag(Token::LeadingSpace
);
1668 SkipWhitespace(Result
, CurPtr
+1);
1672 // Otherwise, just return so that the next character will be lexed as a token.
1674 Result
.setFlag(Token::LeadingSpace
);
1678 //===----------------------------------------------------------------------===//
1679 // Primary Lexing Entry Points
1680 //===----------------------------------------------------------------------===//
1682 /// ReadToEndOfLine - Read the rest of the current preprocessor line as an
1683 /// uninterpreted string. This switches the lexer out of directive mode.
1684 std::string
Lexer::ReadToEndOfLine() {
1685 assert(ParsingPreprocessorDirective
&& ParsingFilename
== false &&
1686 "Must be in a preprocessing directive!");
1690 // CurPtr - Cache BufferPtr in an automatic variable.
1691 const char *CurPtr
= BufferPtr
;
1693 char Char
= getAndAdvanceChar(CurPtr
, Tmp
);
1699 // Found end of file?
1700 if (CurPtr
-1 != BufferEnd
) {
1701 // Nope, normal character, continue.
1708 // Okay, we found the end of the line. First, back up past the \0, \r, \n.
1709 assert(CurPtr
[-1] == Char
&& "Trigraphs for newline?");
1710 BufferPtr
= CurPtr
-1;
1712 // Next, lex the character, which should handle the EOM transition.
1714 if (Tmp
.is(tok::code_completion
)) {
1715 if (PP
&& PP
->getCodeCompletionHandler())
1716 PP
->getCodeCompletionHandler()->CodeCompleteNaturalLanguage();
1719 assert(Tmp
.is(tok::eom
) && "Unexpected token!");
1721 // Finally, we're done, return the string we found.
1727 /// LexEndOfFile - CurPtr points to the end of this file. Handle this
1728 /// condition, reporting diagnostics and handling other edge cases as required.
1729 /// This returns true if Result contains a token, false if PP.Lex should be
1731 bool Lexer::LexEndOfFile(Token
&Result
, const char *CurPtr
) {
1732 // Check if we are performing code completion.
1733 if (PP
&& PP
->isCodeCompletionFile(FileLoc
)) {
1734 // We're at the end of the file, but we've been asked to consider the
1735 // end of the file to be a code-completion token. Return the
1736 // code-completion token.
1737 Result
.startToken();
1738 FormTokenWithChars(Result
, CurPtr
, tok::code_completion
);
1740 // Only do the eof -> code_completion translation once.
1741 PP
->SetCodeCompletionPoint(0, 0, 0);
1743 // Silence any diagnostics that occur once we hit the code-completion point.
1744 PP
->getDiagnostics().setSuppressAllDiagnostics(true);
1748 // If we hit the end of the file while parsing a preprocessor directive,
1749 // end the preprocessor directive first. The next token returned will
1750 // then be the end of file.
1751 if (ParsingPreprocessorDirective
) {
1752 // Done parsing the "line".
1753 ParsingPreprocessorDirective
= false;
1754 // Update the location of token as well as BufferPtr.
1755 FormTokenWithChars(Result
, CurPtr
, tok::eom
);
1757 // Restore comment saving mode, in case it was disabled for directive.
1758 SetCommentRetentionState(PP
->getCommentRetentionState());
1759 return true; // Have a token.
1762 // If we are in raw mode, return this event as an EOF token. Let the caller
1763 // that put us in raw mode handle the event.
1764 if (isLexingRawMode()) {
1765 Result
.startToken();
1766 BufferPtr
= BufferEnd
;
1767 FormTokenWithChars(Result
, BufferEnd
, tok::eof
);
1771 // Issue diagnostics for unterminated #if and missing newline.
1773 // If we are in a #if directive, emit an error.
1774 while (!ConditionalStack
.empty()) {
1775 if (!PP
->isCodeCompletionFile(FileLoc
))
1776 PP
->Diag(ConditionalStack
.back().IfLoc
,
1777 diag::err_pp_unterminated_conditional
);
1778 ConditionalStack
.pop_back();
1781 // C99 5.1.1.2p2: If the file is non-empty and didn't end in a newline, issue
1783 if (CurPtr
!= BufferStart
&& (CurPtr
[-1] != '\n' && CurPtr
[-1] != '\r'))
1784 Diag(BufferEnd
, diag::ext_no_newline_eof
)
1785 << FixItHint::CreateInsertion(getSourceLocation(BufferEnd
), "\n");
1789 // Finally, let the preprocessor handle this.
1790 return PP
->HandleEndOfFile(Result
);
1793 /// isNextPPTokenLParen - Return 1 if the next unexpanded token lexed from
1794 /// the specified lexer will return a tok::l_paren token, 0 if it is something
1795 /// else and 2 if there are no more tokens in the buffer controlled by the
1797 unsigned Lexer::isNextPPTokenLParen() {
1798 assert(!LexingRawMode
&& "How can we expand a macro from a skipping buffer?");
1800 // Switch to 'skipping' mode. This will ensure that we can lex a token
1801 // without emitting diagnostics, disables macro expansion, and will cause EOF
1802 // to return an EOF token instead of popping the include stack.
1803 LexingRawMode
= true;
1805 // Save state that can be changed while lexing so that we can restore it.
1806 const char *TmpBufferPtr
= BufferPtr
;
1807 bool inPPDirectiveMode
= ParsingPreprocessorDirective
;
1811 LexTokenInternal(Tok
);
1813 // Restore state that may have changed.
1814 BufferPtr
= TmpBufferPtr
;
1815 ParsingPreprocessorDirective
= inPPDirectiveMode
;
1817 // Restore the lexer back to non-skipping mode.
1818 LexingRawMode
= false;
1820 if (Tok
.is(tok::eof
))
1822 return Tok
.is(tok::l_paren
);
1825 /// FindConflictEnd - Find the end of a version control conflict marker.
1826 static const char *FindConflictEnd(const char *CurPtr
, const char *BufferEnd
) {
1827 llvm::StringRef
RestOfBuffer(CurPtr
+7, BufferEnd
-CurPtr
-7);
1828 size_t Pos
= RestOfBuffer
.find(">>>>>>>");
1829 while (Pos
!= llvm::StringRef::npos
) {
1830 // Must occur at start of line.
1831 if (RestOfBuffer
[Pos
-1] != '\r' &&
1832 RestOfBuffer
[Pos
-1] != '\n') {
1833 RestOfBuffer
= RestOfBuffer
.substr(Pos
+7);
1834 Pos
= RestOfBuffer
.find(">>>>>>>");
1837 return RestOfBuffer
.data()+Pos
;
1842 /// IsStartOfConflictMarker - If the specified pointer is the start of a version
1843 /// control conflict marker like '<<<<<<<', recognize it as such, emit an error
1844 /// and recover nicely. This returns true if it is a conflict marker and false
1846 bool Lexer::IsStartOfConflictMarker(const char *CurPtr
) {
1847 // Only a conflict marker if it starts at the beginning of a line.
1848 if (CurPtr
!= BufferStart
&&
1849 CurPtr
[-1] != '\n' && CurPtr
[-1] != '\r')
1852 // Check to see if we have <<<<<<<.
1853 if (BufferEnd
-CurPtr
< 8 ||
1854 llvm::StringRef(CurPtr
, 7) != "<<<<<<<")
1857 // If we have a situation where we don't care about conflict markers, ignore
1859 if (IsInConflictMarker
|| isLexingRawMode())
1862 // Check to see if there is a >>>>>>> somewhere in the buffer at the start of
1863 // a line to terminate this conflict marker.
1864 if (FindConflictEnd(CurPtr
, BufferEnd
)) {
1865 // We found a match. We are really in a conflict marker.
1866 // Diagnose this, and ignore to the end of line.
1867 Diag(CurPtr
, diag::err_conflict_marker
);
1868 IsInConflictMarker
= true;
1870 // Skip ahead to the end of line. We know this exists because the
1871 // end-of-conflict marker starts with \r or \n.
1872 while (*CurPtr
!= '\r' && *CurPtr
!= '\n') {
1873 assert(CurPtr
!= BufferEnd
&& "Didn't find end of line");
1880 // No end of conflict marker found.
1885 /// HandleEndOfConflictMarker - If this is a '=======' or '|||||||' or '>>>>>>>'
1886 /// marker, then it is the end of a conflict marker. Handle it by ignoring up
1887 /// until the end of the line. This returns true if it is a conflict marker and
1889 bool Lexer::HandleEndOfConflictMarker(const char *CurPtr
) {
1890 // Only a conflict marker if it starts at the beginning of a line.
1891 if (CurPtr
!= BufferStart
&&
1892 CurPtr
[-1] != '\n' && CurPtr
[-1] != '\r')
1895 // If we have a situation where we don't care about conflict markers, ignore
1897 if (!IsInConflictMarker
|| isLexingRawMode())
1900 // Check to see if we have the marker (7 characters in a row).
1901 for (unsigned i
= 1; i
!= 7; ++i
)
1902 if (CurPtr
[i
] != CurPtr
[0])
1905 // If we do have it, search for the end of the conflict marker. This could
1906 // fail if it got skipped with a '#if 0' or something. Note that CurPtr might
1907 // be the end of conflict marker.
1908 if (const char *End
= FindConflictEnd(CurPtr
, BufferEnd
)) {
1911 // Skip ahead to the end of line.
1912 while (CurPtr
!= BufferEnd
&& *CurPtr
!= '\r' && *CurPtr
!= '\n')
1917 // No longer in the conflict marker.
1918 IsInConflictMarker
= false;
1926 /// LexTokenInternal - This implements a simple C family lexer. It is an
1927 /// extremely performance critical piece of code. This assumes that the buffer
1928 /// has a null character at the end of the file. This returns a preprocessing
1929 /// token, not a normal token, as such, it is an internal interface. It assumes
1930 /// that the Flags of result have been cleared before calling this.
1931 void Lexer::LexTokenInternal(Token
&Result
) {
1933 // New token, can't need cleaning yet.
1934 Result
.clearFlag(Token::NeedsCleaning
);
1935 Result
.setIdentifierInfo(0);
1937 // CurPtr - Cache BufferPtr in an automatic variable.
1938 const char *CurPtr
= BufferPtr
;
1940 // Small amounts of horizontal whitespace is very common between tokens.
1941 if ((*CurPtr
== ' ') || (*CurPtr
== '\t')) {
1943 while ((*CurPtr
== ' ') || (*CurPtr
== '\t'))
1946 // If we are keeping whitespace and other tokens, just return what we just
1947 // skipped. The next lexer invocation will return the token after the
1949 if (isKeepWhitespaceMode()) {
1950 FormTokenWithChars(Result
, CurPtr
, tok::unknown
);
1955 Result
.setFlag(Token::LeadingSpace
);
1958 unsigned SizeTmp
, SizeTmp2
; // Temporaries for use in cases below.
1960 // Read a character, advancing over it.
1961 char Char
= getAndAdvanceChar(CurPtr
, Result
);
1962 tok::TokenKind Kind
;
1966 // Found end of file?
1967 if (CurPtr
-1 == BufferEnd
) {
1968 // Read the PP instance variable into an automatic variable, because
1969 // LexEndOfFile will often delete 'this'.
1970 Preprocessor
*PPCache
= PP
;
1971 if (LexEndOfFile(Result
, CurPtr
-1)) // Retreat back into the file.
1972 return; // Got a token to return.
1973 assert(PPCache
&& "Raw buffer::LexEndOfFile should return a token");
1974 return PPCache
->Lex(Result
);
1977 if (!isLexingRawMode())
1978 Diag(CurPtr
-1, diag::null_in_file
);
1979 Result
.setFlag(Token::LeadingSpace
);
1980 if (SkipWhitespace(Result
, CurPtr
))
1981 return; // KeepWhitespaceMode
1983 goto LexNextToken
; // GCC isn't tail call eliminating.
1985 case 26: // DOS & CP/M EOF: "^Z".
1986 // If we're in Microsoft extensions mode, treat this as end of file.
1987 if (Features
.Microsoft
) {
1988 // Read the PP instance variable into an automatic variable, because
1989 // LexEndOfFile will often delete 'this'.
1990 Preprocessor
*PPCache
= PP
;
1991 if (LexEndOfFile(Result
, CurPtr
-1)) // Retreat back into the file.
1992 return; // Got a token to return.
1993 assert(PPCache
&& "Raw buffer::LexEndOfFile should return a token");
1994 return PPCache
->Lex(Result
);
1996 // If Microsoft extensions are disabled, this is just random garbage.
1997 Kind
= tok::unknown
;
2002 // If we are inside a preprocessor directive and we see the end of line,
2003 // we know we are done with the directive, so return an EOM token.
2004 if (ParsingPreprocessorDirective
) {
2005 // Done parsing the "line".
2006 ParsingPreprocessorDirective
= false;
2008 // Restore comment saving mode, in case it was disabled for directive.
2009 SetCommentRetentionState(PP
->getCommentRetentionState());
2011 // Since we consumed a newline, we are back at the start of a line.
2012 IsAtStartOfLine
= true;
2017 // The returned token is at the start of the line.
2018 Result
.setFlag(Token::StartOfLine
);
2019 // No leading whitespace seen so far.
2020 Result
.clearFlag(Token::LeadingSpace
);
2022 if (SkipWhitespace(Result
, CurPtr
))
2023 return; // KeepWhitespaceMode
2024 goto LexNextToken
; // GCC isn't tail call eliminating.
2029 SkipHorizontalWhitespace
:
2030 Result
.setFlag(Token::LeadingSpace
);
2031 if (SkipWhitespace(Result
, CurPtr
))
2032 return; // KeepWhitespaceMode
2037 // If the next token is obviously a // or /* */ comment, skip it efficiently
2038 // too (without going through the big switch stmt).
2039 if (CurPtr
[0] == '/' && CurPtr
[1] == '/' && !inKeepCommentMode() &&
2040 Features
.BCPLComment
) {
2041 if (SkipBCPLComment(Result
, CurPtr
+2))
2042 return; // There is a token to return.
2043 goto SkipIgnoredUnits
;
2044 } else if (CurPtr
[0] == '/' && CurPtr
[1] == '*' && !inKeepCommentMode()) {
2045 if (SkipBlockComment(Result
, CurPtr
+2))
2046 return; // There is a token to return.
2047 goto SkipIgnoredUnits
;
2048 } else if (isHorizontalWhitespace(*CurPtr
)) {
2049 goto SkipHorizontalWhitespace
;
2051 goto LexNextToken
; // GCC isn't tail call eliminating.
2053 // C99 6.4.4.1: Integer Constants.
2054 // C99 6.4.4.2: Floating Constants.
2055 case '0': case '1': case '2': case '3': case '4':
2056 case '5': case '6': case '7': case '8': case '9':
2057 // Notify MIOpt that we read a non-whitespace/non-comment token.
2059 return LexNumericConstant(Result
, CurPtr
);
2061 case 'L': // Identifier (Loony) or wide literal (L'x' or L"xyz").
2062 // Notify MIOpt that we read a non-whitespace/non-comment token.
2064 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2066 // Wide string literal.
2068 return LexStringLiteral(Result
, ConsumeChar(CurPtr
, SizeTmp
, Result
),
2071 // Wide character constant.
2073 return LexCharConstant(Result
, ConsumeChar(CurPtr
, SizeTmp
, Result
));
2074 // FALL THROUGH, treating L like the start of an identifier.
2076 // C99 6.4.2: Identifiers.
2077 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
2078 case 'H': case 'I': case 'J': case 'K': /*'L'*/case 'M': case 'N':
2079 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
2080 case 'V': case 'W': case 'X': case 'Y': case 'Z':
2081 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
2082 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
2083 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
2084 case 'v': case 'w': case 'x': case 'y': case 'z':
2086 // Notify MIOpt that we read a non-whitespace/non-comment token.
2088 return LexIdentifier(Result
, CurPtr
);
2090 case '$': // $ in identifiers.
2091 if (Features
.DollarIdents
) {
2092 if (!isLexingRawMode())
2093 Diag(CurPtr
-1, diag::ext_dollar_in_identifier
);
2094 // Notify MIOpt that we read a non-whitespace/non-comment token.
2096 return LexIdentifier(Result
, CurPtr
);
2099 Kind
= tok::unknown
;
2102 // C99 6.4.4: Character Constants.
2104 // Notify MIOpt that we read a non-whitespace/non-comment token.
2106 return LexCharConstant(Result
, CurPtr
);
2108 // C99 6.4.5: String Literals.
2110 // Notify MIOpt that we read a non-whitespace/non-comment token.
2112 return LexStringLiteral(Result
, CurPtr
, false);
2114 // C99 6.4.6: Punctuators.
2116 Kind
= tok::question
;
2119 Kind
= tok::l_square
;
2122 Kind
= tok::r_square
;
2125 Kind
= tok::l_paren
;
2128 Kind
= tok::r_paren
;
2131 Kind
= tok::l_brace
;
2134 Kind
= tok::r_brace
;
2137 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2138 if (Char
>= '0' && Char
<= '9') {
2139 // Notify MIOpt that we read a non-whitespace/non-comment token.
2142 return LexNumericConstant(Result
, ConsumeChar(CurPtr
, SizeTmp
, Result
));
2143 } else if (Features
.CPlusPlus
&& Char
== '*') {
2144 Kind
= tok::periodstar
;
2146 } else if (Char
== '.' &&
2147 getCharAndSize(CurPtr
+SizeTmp
, SizeTmp2
) == '.') {
2148 Kind
= tok::ellipsis
;
2149 CurPtr
= ConsumeChar(ConsumeChar(CurPtr
, SizeTmp
, Result
),
2156 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2159 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2160 } else if (Char
== '=') {
2161 Kind
= tok::ampequal
;
2162 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2168 if (getCharAndSize(CurPtr
, SizeTmp
) == '=') {
2169 Kind
= tok::starequal
;
2170 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2176 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2178 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2179 Kind
= tok::plusplus
;
2180 } else if (Char
== '=') {
2181 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2182 Kind
= tok::plusequal
;
2188 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2189 if (Char
== '-') { // --
2190 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2191 Kind
= tok::minusminus
;
2192 } else if (Char
== '>' && Features
.CPlusPlus
&&
2193 getCharAndSize(CurPtr
+SizeTmp
, SizeTmp2
) == '*') { // C++ ->*
2194 CurPtr
= ConsumeChar(ConsumeChar(CurPtr
, SizeTmp
, Result
),
2196 Kind
= tok::arrowstar
;
2197 } else if (Char
== '>') { // ->
2198 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2200 } else if (Char
== '=') { // -=
2201 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2202 Kind
= tok::minusequal
;
2211 if (getCharAndSize(CurPtr
, SizeTmp
) == '=') {
2212 Kind
= tok::exclaimequal
;
2213 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2215 Kind
= tok::exclaim
;
2220 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2221 if (Char
== '/') { // BCPL comment.
2222 // Even if BCPL comments are disabled (e.g. in C89 mode), we generally
2223 // want to lex this as a comment. There is one problem with this though,
2224 // that in one particular corner case, this can change the behavior of the
2225 // resultant program. For example, In "foo //**/ bar", C89 would lex
2226 // this as "foo / bar" and langauges with BCPL comments would lex it as
2227 // "foo". Check to see if the character after the second slash is a '*'.
2228 // If so, we will lex that as a "/" instead of the start of a comment.
2229 if (Features
.BCPLComment
||
2230 getCharAndSize(CurPtr
+SizeTmp
, SizeTmp2
) != '*') {
2231 if (SkipBCPLComment(Result
, ConsumeChar(CurPtr
, SizeTmp
, Result
)))
2232 return; // There is a token to return.
2234 // It is common for the tokens immediately after a // comment to be
2235 // whitespace (indentation for the next line). Instead of going through
2236 // the big switch, handle it efficiently now.
2237 goto SkipIgnoredUnits
;
2241 if (Char
== '*') { // /**/ comment.
2242 if (SkipBlockComment(Result
, ConsumeChar(CurPtr
, SizeTmp
, Result
)))
2243 return; // There is a token to return.
2244 goto LexNextToken
; // GCC isn't tail call eliminating.
2248 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2249 Kind
= tok::slashequal
;
2255 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2257 Kind
= tok::percentequal
;
2258 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2259 } else if (Features
.Digraphs
&& Char
== '>') {
2260 Kind
= tok::r_brace
; // '%>' -> '}'
2261 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2262 } else if (Features
.Digraphs
&& Char
== ':') {
2263 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2264 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2265 if (Char
== '%' && getCharAndSize(CurPtr
+SizeTmp
, SizeTmp2
) == ':') {
2266 Kind
= tok::hashhash
; // '%:%:' -> '##'
2267 CurPtr
= ConsumeChar(ConsumeChar(CurPtr
, SizeTmp
, Result
),
2269 } else if (Char
== '@' && Features
.Microsoft
) { // %:@ -> #@ -> Charize
2270 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2271 if (!isLexingRawMode())
2272 Diag(BufferPtr
, diag::charize_microsoft_ext
);
2274 } else { // '%:' -> '#'
2275 // We parsed a # character. If this occurs at the start of the line,
2276 // it's actually the start of a preprocessing directive. Callback to
2277 // the preprocessor to handle it.
2278 // FIXME: -fpreprocessed mode??
2279 if (Result
.isAtStartOfLine() && !LexingRawMode
&& !Is_PragmaLexer
) {
2280 FormTokenWithChars(Result
, CurPtr
, tok::hash
);
2281 PP
->HandleDirective(Result
);
2283 // As an optimization, if the preprocessor didn't switch lexers, tail
2285 if (PP
->isCurrentLexer(this)) {
2286 // Start a new token. If this is a #include or something, the PP may
2287 // want us starting at the beginning of the line again. If so, set
2288 // the StartOfLine flag and clear LeadingSpace.
2289 if (IsAtStartOfLine
) {
2290 Result
.setFlag(Token::StartOfLine
);
2291 Result
.clearFlag(Token::LeadingSpace
);
2292 IsAtStartOfLine
= false;
2294 goto LexNextToken
; // GCC isn't tail call eliminating.
2297 return PP
->Lex(Result
);
2303 Kind
= tok::percent
;
2307 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2308 if (ParsingFilename
) {
2309 return LexAngledStringLiteral(Result
, CurPtr
);
2310 } else if (Char
== '<') {
2311 char After
= getCharAndSize(CurPtr
+SizeTmp
, SizeTmp2
);
2313 Kind
= tok::lesslessequal
;
2314 CurPtr
= ConsumeChar(ConsumeChar(CurPtr
, SizeTmp
, Result
),
2316 } else if (After
== '<' && IsStartOfConflictMarker(CurPtr
-1)) {
2317 // If this is actually a '<<<<<<<' version control conflict marker,
2318 // recognize it as such and recover nicely.
2321 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2322 Kind
= tok::lessless
;
2324 } else if (Char
== '=') {
2325 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2326 Kind
= tok::lessequal
;
2327 } else if (Features
.Digraphs
&& Char
== ':') { // '<:' -> '['
2328 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2329 Kind
= tok::l_square
;
2330 } else if (Features
.Digraphs
&& Char
== '%') { // '<%' -> '{'
2331 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2332 Kind
= tok::l_brace
;
2338 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2340 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2341 Kind
= tok::greaterequal
;
2342 } else if (Char
== '>') {
2343 char After
= getCharAndSize(CurPtr
+SizeTmp
, SizeTmp2
);
2345 CurPtr
= ConsumeChar(ConsumeChar(CurPtr
, SizeTmp
, Result
),
2347 Kind
= tok::greatergreaterequal
;
2348 } else if (After
== '>' && HandleEndOfConflictMarker(CurPtr
-1)) {
2349 // If this is '>>>>>>>' and we're in a conflict marker, ignore it.
2352 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2353 Kind
= tok::greatergreater
;
2357 Kind
= tok::greater
;
2361 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2363 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2364 Kind
= tok::caretequal
;
2370 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2372 Kind
= tok::pipeequal
;
2373 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2374 } else if (Char
== '|') {
2375 // If this is '|||||||' and we're in a conflict marker, ignore it.
2376 if (CurPtr
[1] == '|' && HandleEndOfConflictMarker(CurPtr
-1))
2378 Kind
= tok::pipepipe
;
2379 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2385 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2386 if (Features
.Digraphs
&& Char
== '>') {
2387 Kind
= tok::r_square
; // ':>' -> ']'
2388 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2389 } else if (Features
.CPlusPlus
&& Char
== ':') {
2390 Kind
= tok::coloncolon
;
2391 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2400 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2402 // If this is '=======' and we're in a conflict marker, ignore it.
2403 if (CurPtr
[1] == '=' && HandleEndOfConflictMarker(CurPtr
-1))
2406 Kind
= tok::equalequal
;
2407 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2416 Char
= getCharAndSize(CurPtr
, SizeTmp
);
2418 Kind
= tok::hashhash
;
2419 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2420 } else if (Char
== '@' && Features
.Microsoft
) { // #@ -> Charize
2422 if (!isLexingRawMode())
2423 Diag(BufferPtr
, diag::charize_microsoft_ext
);
2424 CurPtr
= ConsumeChar(CurPtr
, SizeTmp
, Result
);
2426 // We parsed a # character. If this occurs at the start of the line,
2427 // it's actually the start of a preprocessing directive. Callback to
2428 // the preprocessor to handle it.
2429 // FIXME: -fpreprocessed mode??
2430 if (Result
.isAtStartOfLine() && !LexingRawMode
&& !Is_PragmaLexer
) {
2431 FormTokenWithChars(Result
, CurPtr
, tok::hash
);
2432 PP
->HandleDirective(Result
);
2434 // As an optimization, if the preprocessor didn't switch lexers, tail
2436 if (PP
->isCurrentLexer(this)) {
2437 // Start a new token. If this is a #include or something, the PP may
2438 // want us starting at the beginning of the line again. If so, set
2439 // the StartOfLine flag and clear LeadingSpace.
2440 if (IsAtStartOfLine
) {
2441 Result
.setFlag(Token::StartOfLine
);
2442 Result
.clearFlag(Token::LeadingSpace
);
2443 IsAtStartOfLine
= false;
2445 goto LexNextToken
; // GCC isn't tail call eliminating.
2447 return PP
->Lex(Result
);
2455 // Objective C support.
2456 if (CurPtr
[-1] == '@' && Features
.ObjC1
)
2459 Kind
= tok::unknown
;
2466 Kind
= tok::unknown
;
2470 // Notify MIOpt that we read a non-whitespace/non-comment token.
2473 // Update the location of token as well as BufferPtr.
2474 FormTokenWithChars(Result
, CurPtr
, Kind
);