Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Lexer.cpp - C Language Family Lexer ------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 10 | // This file implements the Lexer and Token interfaces. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 11 | // |
| 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 Lattner | 500d329 | 2009-01-29 05:15:15 +0000 | [diff] [blame] | 29 | #include "clang/Lex/LexDiagnostic.h" |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 30 | #include "clang/Lex/CodeCompletionHandler.h" |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 31 | #include "clang/Basic/SourceManager.h" |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/StringSwitch.h" |
Chris Lattner | 409a036 | 2007-07-22 18:38:25 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Compiler.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 34 | #include "llvm/Support/MemoryBuffer.h" |
| 35 | #include <cctype> |
| 36 | using namespace clang; |
| 37 | |
Chris Lattner | a2bf105 | 2009-12-17 05:29:40 +0000 | [diff] [blame] | 38 | static void InitCharacterInfo(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 39 | |
Chris Lattner | dbf388b | 2007-10-07 08:47:24 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
| 41 | // Token Class Implementation |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 44 | /// isObjCAtKeyword - Return true if we have an ObjC keyword identifier. |
Chris Lattner | dbf388b | 2007-10-07 08:47:24 +0000 | [diff] [blame] | 45 | bool Token::isObjCAtKeyword(tok::ObjCKeywordKind objcKey) const { |
Douglas Gregor | bec1c9d | 2008-12-01 21:46:47 +0000 | [diff] [blame] | 46 | if (IdentifierInfo *II = getIdentifierInfo()) |
| 47 | return II->getObjCKeywordID() == objcKey; |
| 48 | return false; |
Chris Lattner | dbf388b | 2007-10-07 08:47:24 +0000 | [diff] [blame] | 49 | } |
| 50 | |
| 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; |
| 55 | } |
| 56 | |
Chris Lattner | 53702cd | 2007-12-13 01:59:49 +0000 | [diff] [blame] | 57 | |
Chris Lattner | dbf388b | 2007-10-07 08:47:24 +0000 | [diff] [blame] | 58 | //===----------------------------------------------------------------------===// |
| 59 | // Lexer Class Implementation |
| 60 | //===----------------------------------------------------------------------===// |
| 61 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 62 | void Lexer::InitLexer(const char *BufStart, const char *BufPtr, |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 63 | const char *BufEnd) { |
Chris Lattner | a2bf105 | 2009-12-17 05:29:40 +0000 | [diff] [blame] | 64 | InitCharacterInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 65 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 66 | BufferStart = BufStart; |
| 67 | BufferPtr = BufPtr; |
| 68 | BufferEnd = BufEnd; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 70 | assert(BufEnd[0] == 0 && |
| 71 | "We assume that the input buffer has a null character at the end" |
| 72 | " to simplify lexing!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 74 | Is_PragmaLexer = false; |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 75 | IsInConflictMarker = false; |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 76 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 77 | // Start of the file is a start of line. |
| 78 | IsAtStartOfLine = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 79 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 80 | // We are not after parsing a #. |
| 81 | ParsingPreprocessorDirective = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 82 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 83 | // We are not after parsing #include. |
| 84 | ParsingFilename = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 85 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 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; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 91 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 92 | // Default to not keeping comments. |
| 93 | ExtendedTokenMode = 0; |
| 94 | } |
| 95 | |
Chris Lattner | 0770dab | 2009-01-17 07:56:59 +0000 | [diff] [blame] | 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. |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 100 | Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *InputFile, Preprocessor &PP) |
Chris Lattner | 88d3ac1 | 2009-01-17 08:03:42 +0000 | [diff] [blame] | 101 | : PreprocessorLexer(&PP, FID), |
| 102 | FileLoc(PP.getSourceManager().getLocForStartOfFile(FID)), |
| 103 | Features(PP.getLangOptions()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 104 | |
Chris Lattner | 0770dab | 2009-01-17 07:56:59 +0000 | [diff] [blame] | 105 | InitLexer(InputFile->getBufferStart(), InputFile->getBufferStart(), |
| 106 | InputFile->getBufferEnd()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Chris Lattner | 0770dab | 2009-01-17 07:56:59 +0000 | [diff] [blame] | 108 | // Default to keeping comments if the preprocessor wants them. |
| 109 | SetCommentRetentionState(PP.getCommentRetentionState()); |
| 110 | } |
Chris Lattner | dbf388b | 2007-10-07 08:47:24 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 112 | /// Lexer constructor - Create a new raw lexer object. This object is only |
Chris Lattner | 590f0cc | 2008-10-12 01:15:46 +0000 | [diff] [blame] | 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. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 115 | Lexer::Lexer(SourceLocation fileloc, const LangOptions &features, |
Chris Lattner | de96c0f | 2009-01-17 07:42:27 +0000 | [diff] [blame] | 116 | const char *BufStart, const char *BufPtr, const char *BufEnd) |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 117 | : FileLoc(fileloc), Features(features) { |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 118 | |
Chris Lattner | 22d91ca | 2009-01-17 06:55:17 +0000 | [diff] [blame] | 119 | InitLexer(BufStart, BufPtr, BufEnd); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 121 | // We *are* in raw mode. |
| 122 | LexingRawMode = true; |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 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. |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 128 | Lexer::Lexer(FileID FID, const llvm::MemoryBuffer *FromFile, |
| 129 | const SourceManager &SM, const LangOptions &features) |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 130 | : FileLoc(SM.getLocForStartOfFile(FID)), Features(features) { |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 131 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 132 | InitLexer(FromFile->getBufferStart(), FromFile->getBufferStart(), |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 133 | FromFile->getBufferEnd()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 134 | |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 135 | // We *are* in raw mode. |
| 136 | LexingRawMode = true; |
| 137 | } |
| 138 | |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 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. |
| 142 | /// |
| 143 | /// On entrance to this routine, TokStartLoc is a macro location which has a |
| 144 | /// spelling loc that indicates the bytes to be lexed for the token and an |
| 145 | /// instantiation location that indicates where all lexed tokens should be |
| 146 | /// "expanded from". |
| 147 | /// |
| 148 | /// FIXME: It would really be nice to make _Pragma just be a wrapper around a |
| 149 | /// normal lexer that remaps tokens as they fly by. This would require making |
| 150 | /// Preprocessor::Lex virtual. Given that, we could just dump in a magic lexer |
| 151 | /// interface that could handle this stuff. This would pull GetMappedTokenLoc |
| 152 | /// out of the critical path of the lexer! |
| 153 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 154 | Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc, |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 155 | SourceLocation InstantiationLocStart, |
| 156 | SourceLocation InstantiationLocEnd, |
Chris Lattner | bcc2a67 | 2009-01-19 06:46:35 +0000 | [diff] [blame] | 157 | unsigned TokLen, Preprocessor &PP) { |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 158 | SourceManager &SM = PP.getSourceManager(); |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 159 | |
| 160 | // Create the lexer as if we were going to lex the file normally. |
Chris Lattner | a11d617 | 2009-01-19 07:46:45 +0000 | [diff] [blame] | 161 | FileID SpellingFID = SM.getFileID(SpellingLoc); |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 162 | const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID); |
| 163 | Lexer *L = new Lexer(SpellingFID, InputFile, PP); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 164 | |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 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 |
| 167 | // scratch buffer. |
| 168 | const char *StrData = SM.getCharacterData(SpellingLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 169 | |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 170 | L->BufferPtr = StrData; |
| 171 | L->BufferEnd = StrData+TokLen; |
Chris Lattner | 1fa4953 | 2009-03-08 08:08:45 +0000 | [diff] [blame] | 172 | assert(L->BufferEnd[0] == 0 && "Buffer is not nul terminated!"); |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 173 | |
| 174 | // Set the SourceLocation with the remapping information. This ensures that |
| 175 | // GetMappedTokenLoc will remap the tokens as they are lexed. |
Chris Lattner | de7aeef | 2009-01-26 00:43:02 +0000 | [diff] [blame] | 176 | L->FileLoc = SM.createInstantiationLoc(SM.getLocForStartOfFile(SpellingFID), |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 177 | InstantiationLocStart, |
| 178 | InstantiationLocEnd, TokLen); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 179 | |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 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; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 183 | |
Chris Lattner | 42e00d1 | 2009-01-17 08:27:52 +0000 | [diff] [blame] | 184 | // This lexer really is for _Pragma. |
| 185 | L->Is_PragmaLexer = true; |
| 186 | return L; |
| 187 | } |
| 188 | |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 189 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 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, '\\'); |
| 198 | ++i; ++e; |
| 199 | } |
| 200 | } |
| 201 | return Result; |
| 202 | } |
| 203 | |
Chris Lattner | d8e3083 | 2007-07-24 06:57:14 +0000 | [diff] [blame] | 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, '\\'); |
| 210 | ++i; ++e; |
| 211 | } |
| 212 | } |
| 213 | } |
| 214 | |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 215 | //===----------------------------------------------------------------------===// |
| 216 | // Token Spelling |
| 217 | //===----------------------------------------------------------------------===// |
| 218 | |
| 219 | /// getSpelling() - Return the 'spelling' of this token. The spelling of a |
| 220 | /// token are the characters used to represent the token in the source file |
| 221 | /// after trigraph expansion and escaped-newline folding. In particular, this |
| 222 | /// wants to get the true, uncanonicalized, spelling of things like digraphs |
| 223 | /// UCNs, etc. |
| 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!"); |
| 227 | |
| 228 | // If this token contains nothing interesting, return it directly. |
| 229 | bool CharDataInvalid = false; |
| 230 | const char* TokStart = SourceMgr.getCharacterData(Tok.getLocation(), |
| 231 | &CharDataInvalid); |
| 232 | if (Invalid) |
| 233 | *Invalid = CharDataInvalid; |
| 234 | if (CharDataInvalid) |
| 235 | return std::string(); |
| 236 | |
| 237 | if (!Tok.needsCleaning()) |
| 238 | return std::string(TokStart, TokStart+Tok.getLength()); |
| 239 | |
| 240 | std::string Result; |
| 241 | Result.reserve(Tok.getLength()); |
| 242 | |
| 243 | // Otherwise, hard case, relex the characters into the string. |
| 244 | for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength(); |
| 245 | Ptr != End; ) { |
| 246 | unsigned CharSize; |
| 247 | Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features)); |
| 248 | Ptr += CharSize; |
| 249 | } |
| 250 | assert(Result.size() != unsigned(Tok.getLength()) && |
| 251 | "NeedsCleaning flag set on something that didn't need cleaning!"); |
| 252 | return Result; |
| 253 | } |
| 254 | |
| 255 | /// getSpelling - This method is used to get the spelling of a token into a |
| 256 | /// preallocated buffer, instead of as an std::string. The caller is required |
| 257 | /// to allocate enough space for the token, which is guaranteed to be at least |
| 258 | /// Tok.getLength() bytes long. The actual length of the token is returned. |
| 259 | /// |
| 260 | /// Note that this method may do two possible things: it may either fill in |
| 261 | /// the buffer specified with characters, or it may *change the input pointer* |
| 262 | /// to point to a constant buffer with the data already in it (avoiding a |
| 263 | /// copy). The caller is not allowed to modify the returned buffer pointer |
| 264 | /// if an internal buffer is returned. |
| 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!"); |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 269 | |
| 270 | const char *TokStart = 0; |
| 271 | // NOTE: this has to be checked *before* testing for an IdentifierInfo. |
| 272 | if (Tok.is(tok::raw_identifier)) |
| 273 | TokStart = Tok.getRawIdentifierData(); |
| 274 | else if (const IdentifierInfo *II = Tok.getIdentifierInfo()) { |
| 275 | // Just return the string from the identifier table, which is very quick. |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 276 | Buffer = II->getNameStart(); |
| 277 | return II->getLength(); |
| 278 | } |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 279 | |
| 280 | // NOTE: this can be checked even after testing for an IdentifierInfo. |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 281 | if (Tok.isLiteral()) |
| 282 | TokStart = Tok.getLiteralData(); |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 283 | |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 284 | if (TokStart == 0) { |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 285 | // Compute the start of the token in the input lexer buffer. |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 286 | bool CharDataInvalid = false; |
| 287 | TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid); |
| 288 | if (Invalid) |
| 289 | *Invalid = CharDataInvalid; |
| 290 | if (CharDataInvalid) { |
| 291 | Buffer = ""; |
| 292 | return 0; |
| 293 | } |
| 294 | } |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 295 | |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 296 | // If this token contains nothing interesting, return it directly. |
| 297 | if (!Tok.needsCleaning()) { |
| 298 | Buffer = TokStart; |
| 299 | return Tok.getLength(); |
| 300 | } |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 301 | |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 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(); |
| 305 | Ptr != End; ) { |
| 306 | unsigned CharSize; |
| 307 | *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features); |
| 308 | Ptr += CharSize; |
| 309 | } |
| 310 | assert(unsigned(OutBuf-Buffer) != Tok.getLength() && |
| 311 | "NeedsCleaning flag set on something that didn't need cleaning!"); |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 312 | |
Chris Lattner | b060727 | 2010-11-17 07:26:20 +0000 | [diff] [blame] | 313 | return OutBuf-Buffer; |
| 314 | } |
| 315 | |
| 316 | |
| 317 | |
Douglas Gregor | 33e9abd | 2010-01-22 19:49:59 +0000 | [diff] [blame] | 318 | static bool isWhitespace(unsigned char c); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 319 | |
Chris Lattner | 9a61194 | 2007-10-17 21:18:47 +0000 | [diff] [blame] | 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, |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 325 | const SourceManager &SM, |
| 326 | const LangOptions &LangOpts) { |
Chris Lattner | 9a61194 | 2007-10-17 21:18:47 +0000 | [diff] [blame] | 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 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 329 | // all obviously single-char tokens. This could use |
Chris Lattner | 9a61194 | 2007-10-17 21:18:47 +0000 | [diff] [blame] | 330 | // Lexer::isObviouslySimpleCharacter for example to handle identifiers or |
| 331 | // something. |
Chris Lattner | de7aeef | 2009-01-26 00:43:02 +0000 | [diff] [blame] | 332 | |
| 333 | // If this comes from a macro expansion, we really do want the macro name, not |
| 334 | // the token this macro expanded to. |
Chris Lattner | 363fdc2 | 2009-01-26 22:24:27 +0000 | [diff] [blame] | 335 | Loc = SM.getInstantiationLoc(Loc); |
| 336 | std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); |
Douglas Gregor | f715ca1 | 2010-03-16 00:06:06 +0000 | [diff] [blame] | 337 | bool Invalid = false; |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 338 | llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid); |
Douglas Gregor | f715ca1 | 2010-03-16 00:06:06 +0000 | [diff] [blame] | 339 | if (Invalid) |
Douglas Gregor | aea67db | 2010-03-15 22:54:52 +0000 | [diff] [blame] | 340 | return 0; |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 341 | |
| 342 | const char *StrData = Buffer.data()+LocInfo.second; |
Chris Lattner | 8350394 | 2009-01-17 08:30:10 +0000 | [diff] [blame] | 343 | |
Douglas Gregor | 33e9abd | 2010-01-22 19:49:59 +0000 | [diff] [blame] | 344 | if (isWhitespace(StrData[0])) |
| 345 | return 0; |
| 346 | |
Chris Lattner | 9a61194 | 2007-10-17 21:18:47 +0000 | [diff] [blame] | 347 | // Create a lexer starting at the beginning of this token. |
Sebastian Redl | c3526d8 | 2010-09-30 01:03:03 +0000 | [diff] [blame] | 348 | Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), LangOpts, |
| 349 | Buffer.begin(), StrData, Buffer.end()); |
Chris Lattner | 39de740 | 2009-10-14 15:04:18 +0000 | [diff] [blame] | 350 | TheLexer.SetCommentRetentionState(true); |
Chris Lattner | 9a61194 | 2007-10-17 21:18:47 +0000 | [diff] [blame] | 351 | Token TheTok; |
Chris Lattner | 590f0cc | 2008-10-12 01:15:46 +0000 | [diff] [blame] | 352 | TheLexer.LexFromRawLexer(TheTok); |
Chris Lattner | 9a61194 | 2007-10-17 21:18:47 +0000 | [diff] [blame] | 353 | return TheTok.getLength(); |
| 354 | } |
| 355 | |
Douglas Gregor | a8e5c5b | 2010-07-22 20:22:31 +0000 | [diff] [blame] | 356 | SourceLocation Lexer::GetBeginningOfToken(SourceLocation Loc, |
| 357 | const SourceManager &SM, |
| 358 | const LangOptions &LangOpts) { |
| 359 | std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); |
Douglas Gregor | 3de8424 | 2011-01-31 22:42:36 +0000 | [diff] [blame] | 360 | if (LocInfo.first.isInvalid()) |
| 361 | return Loc; |
| 362 | |
Douglas Gregor | a8e5c5b | 2010-07-22 20:22:31 +0000 | [diff] [blame] | 363 | bool Invalid = false; |
| 364 | llvm::StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid); |
| 365 | if (Invalid) |
| 366 | return Loc; |
| 367 | |
| 368 | // Back up from the current location until we hit the beginning of a line |
| 369 | // (or the buffer). We'll relex from that point. |
| 370 | const char *BufStart = Buffer.data(); |
Douglas Gregor | 3de8424 | 2011-01-31 22:42:36 +0000 | [diff] [blame] | 371 | if (LocInfo.second >= Buffer.size()) |
| 372 | return Loc; |
| 373 | |
Douglas Gregor | a8e5c5b | 2010-07-22 20:22:31 +0000 | [diff] [blame] | 374 | const char *StrData = BufStart+LocInfo.second; |
| 375 | if (StrData[0] == '\n' || StrData[0] == '\r') |
| 376 | return Loc; |
| 377 | |
| 378 | const char *LexStart = StrData; |
| 379 | while (LexStart != BufStart) { |
| 380 | if (LexStart[0] == '\n' || LexStart[0] == '\r') { |
| 381 | ++LexStart; |
| 382 | break; |
| 383 | } |
| 384 | |
| 385 | --LexStart; |
| 386 | } |
| 387 | |
| 388 | // Create a lexer starting at the beginning of this token. |
| 389 | SourceLocation LexerStartLoc = Loc.getFileLocWithOffset(-LocInfo.second); |
| 390 | Lexer TheLexer(LexerStartLoc, LangOpts, BufStart, LexStart, Buffer.end()); |
| 391 | TheLexer.SetCommentRetentionState(true); |
| 392 | |
| 393 | // Lex tokens until we find the token that contains the source location. |
| 394 | Token TheTok; |
| 395 | do { |
| 396 | TheLexer.LexFromRawLexer(TheTok); |
| 397 | |
| 398 | if (TheLexer.getBufferLocation() > StrData) { |
| 399 | // Lexing this token has taken the lexer past the source location we're |
| 400 | // looking for. If the current token encompasses our source location, |
| 401 | // return the beginning of that token. |
| 402 | if (TheLexer.getBufferLocation() - TheTok.getLength() <= StrData) |
| 403 | return TheTok.getLocation(); |
| 404 | |
| 405 | // We ended up skipping over the source location entirely, which means |
| 406 | // that it points into whitespace. We're done here. |
| 407 | break; |
| 408 | } |
| 409 | } while (TheTok.getKind() != tok::eof); |
| 410 | |
| 411 | // We've passed our source location; just return the original source location. |
| 412 | return Loc; |
| 413 | } |
| 414 | |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 415 | namespace { |
| 416 | enum PreambleDirectiveKind { |
| 417 | PDK_Skipped, |
| 418 | PDK_StartIf, |
| 419 | PDK_EndIf, |
| 420 | PDK_Unknown |
| 421 | }; |
| 422 | } |
| 423 | |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 424 | std::pair<unsigned, bool> |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 425 | Lexer::ComputePreamble(const llvm::MemoryBuffer *Buffer, unsigned MaxLines) { |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 426 | // Create a lexer starting at the beginning of the file. Note that we use a |
| 427 | // "fake" file source location at offset 1 so that the lexer will track our |
| 428 | // position within the file. |
| 429 | const unsigned StartOffset = 1; |
| 430 | SourceLocation StartLoc = SourceLocation::getFromRawEncoding(StartOffset); |
| 431 | LangOptions LangOpts; |
| 432 | Lexer TheLexer(StartLoc, LangOpts, Buffer->getBufferStart(), |
| 433 | Buffer->getBufferStart(), Buffer->getBufferEnd()); |
| 434 | |
| 435 | bool InPreprocessorDirective = false; |
| 436 | Token TheTok; |
| 437 | Token IfStartTok; |
| 438 | unsigned IfCount = 0; |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 439 | unsigned Line = 0; |
| 440 | |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 441 | do { |
| 442 | TheLexer.LexFromRawLexer(TheTok); |
| 443 | |
| 444 | if (InPreprocessorDirective) { |
| 445 | // If we've hit the end of the file, we're done. |
| 446 | if (TheTok.getKind() == tok::eof) { |
| 447 | InPreprocessorDirective = false; |
| 448 | break; |
| 449 | } |
| 450 | |
| 451 | // If we haven't hit the end of the preprocessor directive, skip this |
| 452 | // token. |
| 453 | if (!TheTok.isAtStartOfLine()) |
| 454 | continue; |
| 455 | |
| 456 | // We've passed the end of the preprocessor directive, and will look |
| 457 | // at this token again below. |
| 458 | InPreprocessorDirective = false; |
| 459 | } |
| 460 | |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 461 | // Keep track of the # of lines in the preamble. |
| 462 | if (TheTok.isAtStartOfLine()) { |
| 463 | ++Line; |
| 464 | |
| 465 | // If we were asked to limit the number of lines in the preamble, |
| 466 | // and we're about to exceed that limit, we're done. |
| 467 | if (MaxLines && Line >= MaxLines) |
| 468 | break; |
| 469 | } |
| 470 | |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 471 | // Comments are okay; skip over them. |
| 472 | if (TheTok.getKind() == tok::comment) |
| 473 | continue; |
| 474 | |
| 475 | if (TheTok.isAtStartOfLine() && TheTok.getKind() == tok::hash) { |
| 476 | // This is the start of a preprocessor directive. |
| 477 | Token HashTok = TheTok; |
| 478 | InPreprocessorDirective = true; |
| 479 | |
| 480 | // Figure out which direective this is. Since we're lexing raw tokens, |
| 481 | // we don't have an identifier table available. Instead, just look at |
| 482 | // the raw identifier to recognize and categorize preprocessor directives. |
| 483 | TheLexer.LexFromRawLexer(TheTok); |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 484 | if (TheTok.getKind() == tok::raw_identifier && !TheTok.needsCleaning()) { |
| 485 | llvm::StringRef Keyword(TheTok.getRawIdentifierData(), |
| 486 | TheTok.getLength()); |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 487 | PreambleDirectiveKind PDK |
| 488 | = llvm::StringSwitch<PreambleDirectiveKind>(Keyword) |
| 489 | .Case("include", PDK_Skipped) |
| 490 | .Case("__include_macros", PDK_Skipped) |
| 491 | .Case("define", PDK_Skipped) |
| 492 | .Case("undef", PDK_Skipped) |
| 493 | .Case("line", PDK_Skipped) |
| 494 | .Case("error", PDK_Skipped) |
| 495 | .Case("pragma", PDK_Skipped) |
| 496 | .Case("import", PDK_Skipped) |
| 497 | .Case("include_next", PDK_Skipped) |
| 498 | .Case("warning", PDK_Skipped) |
| 499 | .Case("ident", PDK_Skipped) |
| 500 | .Case("sccs", PDK_Skipped) |
| 501 | .Case("assert", PDK_Skipped) |
| 502 | .Case("unassert", PDK_Skipped) |
| 503 | .Case("if", PDK_StartIf) |
| 504 | .Case("ifdef", PDK_StartIf) |
| 505 | .Case("ifndef", PDK_StartIf) |
| 506 | .Case("elif", PDK_Skipped) |
| 507 | .Case("else", PDK_Skipped) |
| 508 | .Case("endif", PDK_EndIf) |
| 509 | .Default(PDK_Unknown); |
| 510 | |
| 511 | switch (PDK) { |
| 512 | case PDK_Skipped: |
| 513 | continue; |
| 514 | |
| 515 | case PDK_StartIf: |
| 516 | if (IfCount == 0) |
| 517 | IfStartTok = HashTok; |
| 518 | |
| 519 | ++IfCount; |
| 520 | continue; |
| 521 | |
| 522 | case PDK_EndIf: |
| 523 | // Mismatched #endif. The preamble ends here. |
| 524 | if (IfCount == 0) |
| 525 | break; |
| 526 | |
| 527 | --IfCount; |
| 528 | continue; |
| 529 | |
| 530 | case PDK_Unknown: |
| 531 | // We don't know what this directive is; stop at the '#'. |
| 532 | break; |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | // We only end up here if we didn't recognize the preprocessor |
| 537 | // directive or it was one that can't occur in the preamble at this |
| 538 | // point. Roll back the current token to the location of the '#'. |
| 539 | InPreprocessorDirective = false; |
| 540 | TheTok = HashTok; |
| 541 | } |
| 542 | |
Douglas Gregor | df95a13 | 2010-08-09 20:45:32 +0000 | [diff] [blame] | 543 | // We hit a token that we don't recognize as being in the |
| 544 | // "preprocessing only" part of the file, so we're no longer in |
| 545 | // the preamble. |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 546 | break; |
| 547 | } while (true); |
| 548 | |
| 549 | SourceLocation End = IfCount? IfStartTok.getLocation() : TheTok.getLocation(); |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 550 | return std::make_pair(End.getRawEncoding() - StartLoc.getRawEncoding(), |
| 551 | IfCount? IfStartTok.isAtStartOfLine() |
| 552 | : TheTok.isAtStartOfLine()); |
Douglas Gregor | f033f1d | 2010-07-20 20:18:03 +0000 | [diff] [blame] | 553 | } |
| 554 | |
Chris Lattner | 7ef5c27 | 2010-11-17 07:05:50 +0000 | [diff] [blame] | 555 | |
| 556 | /// AdvanceToTokenCharacter - Given a location that specifies the start of a |
| 557 | /// token, return a new location that specifies a character within the token. |
| 558 | SourceLocation Lexer::AdvanceToTokenCharacter(SourceLocation TokStart, |
| 559 | unsigned CharNo, |
| 560 | const SourceManager &SM, |
| 561 | const LangOptions &Features) { |
| 562 | // Figure out how many physical characters away the specified instantiation |
| 563 | // character is. This needs to take into consideration newlines and |
| 564 | // trigraphs. |
| 565 | bool Invalid = false; |
| 566 | const char *TokPtr = SM.getCharacterData(TokStart, &Invalid); |
| 567 | |
| 568 | // If they request the first char of the token, we're trivially done. |
| 569 | if (Invalid || (CharNo == 0 && Lexer::isObviouslySimpleCharacter(*TokPtr))) |
| 570 | return TokStart; |
| 571 | |
| 572 | unsigned PhysOffset = 0; |
| 573 | |
| 574 | // The usual case is that tokens don't contain anything interesting. Skip |
| 575 | // over the uninteresting characters. If a token only consists of simple |
| 576 | // chars, this method is extremely fast. |
| 577 | while (Lexer::isObviouslySimpleCharacter(*TokPtr)) { |
| 578 | if (CharNo == 0) |
| 579 | return TokStart.getFileLocWithOffset(PhysOffset); |
| 580 | ++TokPtr, --CharNo, ++PhysOffset; |
| 581 | } |
| 582 | |
| 583 | // If we have a character that may be a trigraph or escaped newline, use a |
| 584 | // lexer to parse it correctly. |
| 585 | for (; CharNo; --CharNo) { |
| 586 | unsigned Size; |
| 587 | Lexer::getCharAndSizeNoWarn(TokPtr, Size, Features); |
| 588 | TokPtr += Size; |
| 589 | PhysOffset += Size; |
| 590 | } |
| 591 | |
| 592 | // Final detail: if we end up on an escaped newline, we want to return the |
| 593 | // location of the actual byte of the token. For example foo\<newline>bar |
| 594 | // advanced by 3 should return the location of b, not of \\. One compounding |
| 595 | // detail of this is that the escape may be made by a trigraph. |
| 596 | if (!Lexer::isObviouslySimpleCharacter(*TokPtr)) |
| 597 | PhysOffset += Lexer::SkipEscapedNewLines(TokPtr)-TokPtr; |
| 598 | |
| 599 | return TokStart.getFileLocWithOffset(PhysOffset); |
| 600 | } |
| 601 | |
| 602 | /// \brief Computes the source location just past the end of the |
| 603 | /// token at this source location. |
| 604 | /// |
| 605 | /// This routine can be used to produce a source location that |
| 606 | /// points just past the end of the token referenced by \p Loc, and |
| 607 | /// is generally used when a diagnostic needs to point just after a |
| 608 | /// token where it expected something different that it received. If |
| 609 | /// the returned source location would not be meaningful (e.g., if |
| 610 | /// it points into a macro), this routine returns an invalid |
| 611 | /// source location. |
| 612 | /// |
| 613 | /// \param Offset an offset from the end of the token, where the source |
| 614 | /// location should refer to. The default offset (0) produces a source |
| 615 | /// location pointing just past the end of the token; an offset of 1 produces |
| 616 | /// a source location pointing to the last character in the token, etc. |
| 617 | SourceLocation Lexer::getLocForEndOfToken(SourceLocation Loc, unsigned Offset, |
| 618 | const SourceManager &SM, |
| 619 | const LangOptions &Features) { |
| 620 | if (Loc.isInvalid() || !Loc.isFileID()) |
| 621 | return SourceLocation(); |
| 622 | |
| 623 | unsigned Len = Lexer::MeasureTokenLength(Loc, SM, Features); |
| 624 | if (Len > Offset) |
| 625 | Len = Len - Offset; |
| 626 | else |
| 627 | return Loc; |
| 628 | |
| 629 | return AdvanceToTokenCharacter(Loc, Len, SM, Features); |
| 630 | } |
| 631 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 632 | //===----------------------------------------------------------------------===// |
| 633 | // Character information. |
| 634 | //===----------------------------------------------------------------------===// |
| 635 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 636 | enum { |
| 637 | CHAR_HORZ_WS = 0x01, // ' ', '\t', '\f', '\v'. Note, no '\0' |
| 638 | CHAR_VERT_WS = 0x02, // '\r', '\n' |
| 639 | CHAR_LETTER = 0x04, // a-z,A-Z |
| 640 | CHAR_NUMBER = 0x08, // 0-9 |
| 641 | CHAR_UNDER = 0x10, // _ |
| 642 | CHAR_PERIOD = 0x20 // . |
| 643 | }; |
| 644 | |
Chris Lattner | 03b9866 | 2009-07-07 17:09:54 +0000 | [diff] [blame] | 645 | // Statically initialize CharInfo table based on ASCII character set |
| 646 | // Reference: FreeBSD 7.2 /usr/share/misc/ascii |
Chris Lattner | a2bf105 | 2009-12-17 05:29:40 +0000 | [diff] [blame] | 647 | static const unsigned char CharInfo[256] = |
Chris Lattner | 03b9866 | 2009-07-07 17:09:54 +0000 | [diff] [blame] | 648 | { |
| 649 | // 0 NUL 1 SOH 2 STX 3 ETX |
| 650 | // 4 EOT 5 ENQ 6 ACK 7 BEL |
| 651 | 0 , 0 , 0 , 0 , |
| 652 | 0 , 0 , 0 , 0 , |
| 653 | // 8 BS 9 HT 10 NL 11 VT |
| 654 | //12 NP 13 CR 14 SO 15 SI |
| 655 | 0 , CHAR_HORZ_WS, CHAR_VERT_WS, CHAR_HORZ_WS, |
| 656 | CHAR_HORZ_WS, CHAR_VERT_WS, 0 , 0 , |
| 657 | //16 DLE 17 DC1 18 DC2 19 DC3 |
| 658 | //20 DC4 21 NAK 22 SYN 23 ETB |
| 659 | 0 , 0 , 0 , 0 , |
| 660 | 0 , 0 , 0 , 0 , |
| 661 | //24 CAN 25 EM 26 SUB 27 ESC |
| 662 | //28 FS 29 GS 30 RS 31 US |
| 663 | 0 , 0 , 0 , 0 , |
| 664 | 0 , 0 , 0 , 0 , |
| 665 | //32 SP 33 ! 34 " 35 # |
| 666 | //36 $ 37 % 38 & 39 ' |
| 667 | CHAR_HORZ_WS, 0 , 0 , 0 , |
| 668 | 0 , 0 , 0 , 0 , |
| 669 | //40 ( 41 ) 42 * 43 + |
| 670 | //44 , 45 - 46 . 47 / |
| 671 | 0 , 0 , 0 , 0 , |
| 672 | 0 , 0 , CHAR_PERIOD , 0 , |
| 673 | //48 0 49 1 50 2 51 3 |
| 674 | //52 4 53 5 54 6 55 7 |
| 675 | CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , |
| 676 | CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , CHAR_NUMBER , |
| 677 | //56 8 57 9 58 : 59 ; |
| 678 | //60 < 61 = 62 > 63 ? |
| 679 | CHAR_NUMBER , CHAR_NUMBER , 0 , 0 , |
| 680 | 0 , 0 , 0 , 0 , |
| 681 | //64 @ 65 A 66 B 67 C |
| 682 | //68 D 69 E 70 F 71 G |
| 683 | 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 684 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 685 | //72 H 73 I 74 J 75 K |
| 686 | //76 L 77 M 78 N 79 O |
| 687 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 688 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 689 | //80 P 81 Q 82 R 83 S |
| 690 | //84 T 85 U 86 V 87 W |
| 691 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 692 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 693 | //88 X 89 Y 90 Z 91 [ |
| 694 | //92 \ 93 ] 94 ^ 95 _ |
| 695 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 , |
| 696 | 0 , 0 , 0 , CHAR_UNDER , |
| 697 | //96 ` 97 a 98 b 99 c |
| 698 | //100 d 101 e 102 f 103 g |
| 699 | 0 , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 700 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 701 | //104 h 105 i 106 j 107 k |
| 702 | //108 l 109 m 110 n 111 o |
| 703 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 704 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 705 | //112 p 113 q 114 r 115 s |
| 706 | //116 t 117 u 118 v 119 w |
| 707 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 708 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , |
| 709 | //120 x 121 y 122 z 123 { |
| 710 | //124 | 125 } 126 ~ 127 DEL |
| 711 | CHAR_LETTER , CHAR_LETTER , CHAR_LETTER , 0 , |
| 712 | 0 , 0 , 0 , 0 |
| 713 | }; |
| 714 | |
Chris Lattner | a2bf105 | 2009-12-17 05:29:40 +0000 | [diff] [blame] | 715 | static void InitCharacterInfo() { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 716 | static bool isInited = false; |
| 717 | if (isInited) return; |
Chris Lattner | 03b9866 | 2009-07-07 17:09:54 +0000 | [diff] [blame] | 718 | // check the statically-initialized CharInfo table |
| 719 | assert(CHAR_HORZ_WS == CharInfo[(int)' ']); |
| 720 | assert(CHAR_HORZ_WS == CharInfo[(int)'\t']); |
| 721 | assert(CHAR_HORZ_WS == CharInfo[(int)'\f']); |
| 722 | assert(CHAR_HORZ_WS == CharInfo[(int)'\v']); |
| 723 | assert(CHAR_VERT_WS == CharInfo[(int)'\n']); |
| 724 | assert(CHAR_VERT_WS == CharInfo[(int)'\r']); |
| 725 | assert(CHAR_UNDER == CharInfo[(int)'_']); |
| 726 | assert(CHAR_PERIOD == CharInfo[(int)'.']); |
| 727 | for (unsigned i = 'a'; i <= 'z'; ++i) { |
| 728 | assert(CHAR_LETTER == CharInfo[i]); |
| 729 | assert(CHAR_LETTER == CharInfo[i+'A'-'a']); |
| 730 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 731 | for (unsigned i = '0'; i <= '9'; ++i) |
Chris Lattner | 03b9866 | 2009-07-07 17:09:54 +0000 | [diff] [blame] | 732 | assert(CHAR_NUMBER == CharInfo[i]); |
Steve Naroff | 7b68265 | 2009-12-08 16:38:12 +0000 | [diff] [blame] | 733 | |
Chris Lattner | 03b9866 | 2009-07-07 17:09:54 +0000 | [diff] [blame] | 734 | isInited = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Chris Lattner | 03b9866 | 2009-07-07 17:09:54 +0000 | [diff] [blame] | 737 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 738 | /// isIdentifierBody - Return true if this is the body character of an |
| 739 | /// identifier, which is [a-zA-Z0-9_]. |
| 740 | static inline bool isIdentifierBody(unsigned char c) { |
Hartmut Kaiser | 95c062b | 2007-10-18 12:47:01 +0000 | [diff] [blame] | 741 | return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER)) ? true : false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | /// isHorizontalWhitespace - Return true if this character is horizontal |
| 745 | /// whitespace: ' ', '\t', '\f', '\v'. Note that this returns false for '\0'. |
| 746 | static inline bool isHorizontalWhitespace(unsigned char c) { |
Hartmut Kaiser | 95c062b | 2007-10-18 12:47:01 +0000 | [diff] [blame] | 747 | return (CharInfo[c] & CHAR_HORZ_WS) ? true : false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | /// isWhitespace - Return true if this character is horizontal or vertical |
| 751 | /// whitespace: ' ', '\t', '\f', '\v', '\n', '\r'. Note that this returns false |
| 752 | /// for '\0'. |
| 753 | static inline bool isWhitespace(unsigned char c) { |
Hartmut Kaiser | 95c062b | 2007-10-18 12:47:01 +0000 | [diff] [blame] | 754 | return (CharInfo[c] & (CHAR_HORZ_WS|CHAR_VERT_WS)) ? true : false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | /// isNumberBody - Return true if this is the body character of an |
| 758 | /// preprocessing number, which is [a-zA-Z0-9_.]. |
| 759 | static inline bool isNumberBody(unsigned char c) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 760 | return (CharInfo[c] & (CHAR_LETTER|CHAR_NUMBER|CHAR_UNDER|CHAR_PERIOD)) ? |
Hartmut Kaiser | 95c062b | 2007-10-18 12:47:01 +0000 | [diff] [blame] | 761 | true : false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | |
| 765 | //===----------------------------------------------------------------------===// |
| 766 | // Diagnostics forwarding code. |
| 767 | //===----------------------------------------------------------------------===// |
| 768 | |
Chris Lattner | 409a036 | 2007-07-22 18:38:25 +0000 | [diff] [blame] | 769 | /// GetMappedTokenLoc - If lexing out of a 'mapped buffer', where we pretend the |
| 770 | /// lexer buffer was all instantiated at a single point, perform the mapping. |
| 771 | /// This is currently only used for _Pragma implementation, so it is the slow |
| 772 | /// path of the hot getSourceLocation method. Do not allow it to be inlined. |
Chandler Carruth | 14bd965 | 2010-10-23 08:44:57 +0000 | [diff] [blame] | 773 | static LLVM_ATTRIBUTE_NOINLINE SourceLocation GetMappedTokenLoc( |
| 774 | Preprocessor &PP, SourceLocation FileLoc, unsigned CharNo, unsigned TokLen); |
Chris Lattner | 409a036 | 2007-07-22 18:38:25 +0000 | [diff] [blame] | 775 | static SourceLocation GetMappedTokenLoc(Preprocessor &PP, |
| 776 | SourceLocation FileLoc, |
Chris Lattner | de7aeef | 2009-01-26 00:43:02 +0000 | [diff] [blame] | 777 | unsigned CharNo, unsigned TokLen) { |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 778 | assert(FileLoc.isMacroID() && "Must be an instantiation"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 779 | |
Chris Lattner | 409a036 | 2007-07-22 18:38:25 +0000 | [diff] [blame] | 780 | // Otherwise, we're lexing "mapped tokens". This is used for things like |
| 781 | // _Pragma handling. Combine the instantiation location of FileLoc with the |
Chris Lattner | df7c17a | 2009-01-16 07:00:02 +0000 | [diff] [blame] | 782 | // spelling location. |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 783 | SourceManager &SM = PP.getSourceManager(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 784 | |
Chris Lattner | f7cf85b | 2009-01-16 07:36:28 +0000 | [diff] [blame] | 785 | // Create a new SLoc which is expanded from Instantiation(FileLoc) but whose |
Chris Lattner | df7c17a | 2009-01-16 07:00:02 +0000 | [diff] [blame] | 786 | // characters come from spelling(FileLoc)+Offset. |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 787 | SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc); |
Chris Lattner | bcc2a67 | 2009-01-19 06:46:35 +0000 | [diff] [blame] | 788 | SpellingLoc = SpellingLoc.getFileLocWithOffset(CharNo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 789 | |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 790 | // Figure out the expansion loc range, which is the range covered by the |
| 791 | // original _Pragma(...) sequence. |
| 792 | std::pair<SourceLocation,SourceLocation> II = |
| 793 | SM.getImmediateInstantiationRange(FileLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 794 | |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 795 | return SM.createInstantiationLoc(SpellingLoc, II.first, II.second, TokLen); |
Chris Lattner | 409a036 | 2007-07-22 18:38:25 +0000 | [diff] [blame] | 796 | } |
| 797 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 798 | /// getSourceLocation - Return a source location identifier for the specified |
| 799 | /// offset in the current file. |
Chris Lattner | de7aeef | 2009-01-26 00:43:02 +0000 | [diff] [blame] | 800 | SourceLocation Lexer::getSourceLocation(const char *Loc, |
| 801 | unsigned TokLen) const { |
Chris Lattner | 448cec4 | 2007-07-22 18:44:36 +0000 | [diff] [blame] | 802 | assert(Loc >= BufferStart && Loc <= BufferEnd && |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 803 | "Location out of range for this buffer!"); |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 804 | |
| 805 | // In the normal case, we're just lexing from a simple file buffer, return |
| 806 | // the file id from FileLoc with the offset specified. |
Chris Lattner | 448cec4 | 2007-07-22 18:44:36 +0000 | [diff] [blame] | 807 | unsigned CharNo = Loc-BufferStart; |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 808 | if (FileLoc.isFileID()) |
Chris Lattner | bcc2a67 | 2009-01-19 06:46:35 +0000 | [diff] [blame] | 809 | return FileLoc.getFileLocWithOffset(CharNo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 810 | |
Chris Lattner | 2b2453a | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 811 | // Otherwise, this is the _Pragma lexer case, which pretends that all of the |
| 812 | // tokens are lexed from where the _Pragma was defined. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 813 | assert(PP && "This doesn't work on raw lexers"); |
Chris Lattner | de7aeef | 2009-01-26 00:43:02 +0000 | [diff] [blame] | 814 | return GetMappedTokenLoc(*PP, FileLoc, CharNo, TokLen); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 817 | /// Diag - Forwarding function for diagnostics. This translate a source |
| 818 | /// position in the current buffer into a SourceLocation object for rendering. |
Chris Lattner | 3cbfe2c | 2008-11-22 00:59:29 +0000 | [diff] [blame] | 819 | DiagnosticBuilder Lexer::Diag(const char *Loc, unsigned DiagID) const { |
Chris Lattner | 3692b09 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 820 | return PP->Diag(getSourceLocation(Loc), DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 821 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 822 | |
| 823 | //===----------------------------------------------------------------------===// |
| 824 | // Trigraph and Escaped Newline Handling Code. |
| 825 | //===----------------------------------------------------------------------===// |
| 826 | |
| 827 | /// GetTrigraphCharForLetter - Given a character that occurs after a ?? pair, |
| 828 | /// return the decoded trigraph letter it corresponds to, or '\0' if nothing. |
| 829 | static char GetTrigraphCharForLetter(char Letter) { |
| 830 | switch (Letter) { |
| 831 | default: return 0; |
| 832 | case '=': return '#'; |
| 833 | case ')': return ']'; |
| 834 | case '(': return '['; |
| 835 | case '!': return '|'; |
| 836 | case '\'': return '^'; |
| 837 | case '>': return '}'; |
| 838 | case '/': return '\\'; |
| 839 | case '<': return '{'; |
| 840 | case '-': return '~'; |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | /// DecodeTrigraphChar - If the specified character is a legal trigraph when |
| 845 | /// prefixed with ??, emit a trigraph warning. If trigraphs are enabled, |
| 846 | /// return the result character. Finally, emit a warning about trigraph use |
| 847 | /// whether trigraphs are enabled or not. |
| 848 | static char DecodeTrigraphChar(const char *CP, Lexer *L) { |
| 849 | char Res = GetTrigraphCharForLetter(*CP); |
Chris Lattner | 3692b09 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 850 | if (!Res || !L) return Res; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 851 | |
Chris Lattner | 3692b09 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 852 | if (!L->getFeatures().Trigraphs) { |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 853 | if (!L->isLexingRawMode()) |
| 854 | L->Diag(CP-2, diag::trigraph_ignored); |
Chris Lattner | 3692b09 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 855 | return 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 856 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 857 | |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 858 | if (!L->isLexingRawMode()) |
Benjamin Kramer | 476d8b8 | 2010-08-11 14:47:12 +0000 | [diff] [blame] | 859 | L->Diag(CP-2, diag::trigraph_converted) << llvm::StringRef(&Res, 1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 860 | return Res; |
| 861 | } |
| 862 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 863 | /// getEscapedNewLineSize - Return the size of the specified escaped newline, |
| 864 | /// or 0 if it is not an escaped newline. P[-1] is known to be a "\" or a |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 865 | /// trigraph equivalent on entry to this function. |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 866 | unsigned Lexer::getEscapedNewLineSize(const char *Ptr) { |
| 867 | unsigned Size = 0; |
| 868 | while (isWhitespace(Ptr[Size])) { |
| 869 | ++Size; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 870 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 871 | if (Ptr[Size-1] != '\n' && Ptr[Size-1] != '\r') |
| 872 | continue; |
| 873 | |
| 874 | // If this is a \r\n or \n\r, skip the other half. |
| 875 | if ((Ptr[Size] == '\r' || Ptr[Size] == '\n') && |
| 876 | Ptr[Size-1] != Ptr[Size]) |
| 877 | ++Size; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 878 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 879 | return Size; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 880 | } |
| 881 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 882 | // Not an escaped newline, must be a \t or something else. |
| 883 | return 0; |
| 884 | } |
| 885 | |
Chris Lattner | 0337495 | 2009-04-18 22:27:02 +0000 | [diff] [blame] | 886 | /// SkipEscapedNewLines - If P points to an escaped newline (or a series of |
| 887 | /// them), skip over them and return the first non-escaped-newline found, |
| 888 | /// otherwise return P. |
| 889 | const char *Lexer::SkipEscapedNewLines(const char *P) { |
| 890 | while (1) { |
| 891 | const char *AfterEscape; |
| 892 | if (*P == '\\') { |
| 893 | AfterEscape = P+1; |
| 894 | } else if (*P == '?') { |
| 895 | // If not a trigraph for escape, bail out. |
| 896 | if (P[1] != '?' || P[2] != '/') |
| 897 | return P; |
| 898 | AfterEscape = P+3; |
| 899 | } else { |
| 900 | return P; |
| 901 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 902 | |
Chris Lattner | 0337495 | 2009-04-18 22:27:02 +0000 | [diff] [blame] | 903 | unsigned NewLineSize = Lexer::getEscapedNewLineSize(AfterEscape); |
| 904 | if (NewLineSize == 0) return P; |
| 905 | P = AfterEscape+NewLineSize; |
| 906 | } |
| 907 | } |
| 908 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 909 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 910 | /// getCharAndSizeSlow - Peek a single 'character' from the specified buffer, |
| 911 | /// get its size, and return it. This is tricky in several cases: |
| 912 | /// 1. If currently at the start of a trigraph, we warn about the trigraph, |
| 913 | /// then either return the trigraph (skipping 3 chars) or the '?', |
| 914 | /// depending on whether trigraphs are enabled or not. |
| 915 | /// 2. If this is an escaped newline (potentially with whitespace between |
| 916 | /// the backslash and newline), implicitly skip the newline and return |
| 917 | /// the char after it. |
| 918 | /// 3. If this is a UCN, return it. FIXME: C++ UCN's? |
| 919 | /// |
| 920 | /// This handles the slow/uncommon case of the getCharAndSize method. Here we |
| 921 | /// know that we can accumulate into Size, and that we have already incremented |
| 922 | /// Ptr by Size bytes. |
| 923 | /// |
| 924 | /// NOTE: When this method is updated, getCharAndSizeSlowNoWarn (below) should |
| 925 | /// be updated to match. |
| 926 | /// |
| 927 | char Lexer::getCharAndSizeSlow(const char *Ptr, unsigned &Size, |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 928 | Token *Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 929 | // If we have a slash, look for an escaped newline. |
| 930 | if (Ptr[0] == '\\') { |
| 931 | ++Size; |
| 932 | ++Ptr; |
| 933 | Slash: |
| 934 | // Common case, backslash-char where the char is not whitespace. |
| 935 | if (!isWhitespace(Ptr[0])) return '\\'; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 936 | |
Chris Lattner | 5636a3b | 2009-06-23 05:15:06 +0000 | [diff] [blame] | 937 | // See if we have optional whitespace characters between the slash and |
| 938 | // newline. |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 939 | if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) { |
| 940 | // Remember that this token needs to be cleaned. |
| 941 | if (Tok) Tok->setFlag(Token::NeedsCleaning); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 942 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 943 | // Warn if there was whitespace between the backslash and newline. |
Chris Lattner | 5636a3b | 2009-06-23 05:15:06 +0000 | [diff] [blame] | 944 | if (Ptr[0] != '\n' && Ptr[0] != '\r' && Tok && !isLexingRawMode()) |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 945 | Diag(Ptr, diag::backslash_newline_space); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 946 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 947 | // Found backslash<whitespace><newline>. Parse the char after it. |
| 948 | Size += EscapedNewLineSize; |
| 949 | Ptr += EscapedNewLineSize; |
| 950 | // Use slow version to accumulate a correct size field. |
| 951 | return getCharAndSizeSlow(Ptr, Size, Tok); |
| 952 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 953 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 954 | // Otherwise, this is not an escaped newline, just return the slash. |
| 955 | return '\\'; |
| 956 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 957 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 958 | // If this is a trigraph, process it. |
| 959 | if (Ptr[0] == '?' && Ptr[1] == '?') { |
| 960 | // If this is actually a legal trigraph (not something like "??x"), emit |
| 961 | // a trigraph warning. If so, and if trigraphs are enabled, return it. |
| 962 | if (char C = DecodeTrigraphChar(Ptr+2, Tok ? this : 0)) { |
| 963 | // Remember that this token needs to be cleaned. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 964 | if (Tok) Tok->setFlag(Token::NeedsCleaning); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 965 | |
| 966 | Ptr += 3; |
| 967 | Size += 3; |
| 968 | if (C == '\\') goto Slash; |
| 969 | return C; |
| 970 | } |
| 971 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 972 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 973 | // If this is neither, return a single character. |
| 974 | ++Size; |
| 975 | return *Ptr; |
| 976 | } |
| 977 | |
| 978 | |
| 979 | /// getCharAndSizeSlowNoWarn - Handle the slow/uncommon case of the |
| 980 | /// getCharAndSizeNoWarn method. Here we know that we can accumulate into Size, |
| 981 | /// and that we have already incremented Ptr by Size bytes. |
| 982 | /// |
| 983 | /// NOTE: When this method is updated, getCharAndSizeSlow (above) should |
| 984 | /// be updated to match. |
| 985 | char Lexer::getCharAndSizeSlowNoWarn(const char *Ptr, unsigned &Size, |
| 986 | const LangOptions &Features) { |
| 987 | // If we have a slash, look for an escaped newline. |
| 988 | if (Ptr[0] == '\\') { |
| 989 | ++Size; |
| 990 | ++Ptr; |
| 991 | Slash: |
| 992 | // Common case, backslash-char where the char is not whitespace. |
| 993 | if (!isWhitespace(Ptr[0])) return '\\'; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 994 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 995 | // See if we have optional whitespace characters followed by a newline. |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 996 | if (unsigned EscapedNewLineSize = getEscapedNewLineSize(Ptr)) { |
| 997 | // Found backslash<whitespace><newline>. Parse the char after it. |
| 998 | Size += EscapedNewLineSize; |
| 999 | Ptr += EscapedNewLineSize; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1000 | |
Chris Lattner | 24f0e48 | 2009-04-18 22:05:41 +0000 | [diff] [blame] | 1001 | // Use slow version to accumulate a correct size field. |
| 1002 | return getCharAndSizeSlowNoWarn(Ptr, Size, Features); |
| 1003 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1004 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1005 | // Otherwise, this is not an escaped newline, just return the slash. |
| 1006 | return '\\'; |
| 1007 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1008 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1009 | // If this is a trigraph, process it. |
| 1010 | if (Features.Trigraphs && Ptr[0] == '?' && Ptr[1] == '?') { |
| 1011 | // If this is actually a legal trigraph (not something like "??x"), return |
| 1012 | // it. |
| 1013 | if (char C = GetTrigraphCharForLetter(Ptr[2])) { |
| 1014 | Ptr += 3; |
| 1015 | Size += 3; |
| 1016 | if (C == '\\') goto Slash; |
| 1017 | return C; |
| 1018 | } |
| 1019 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1020 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1021 | // If this is neither, return a single character. |
| 1022 | ++Size; |
| 1023 | return *Ptr; |
| 1024 | } |
| 1025 | |
| 1026 | //===----------------------------------------------------------------------===// |
| 1027 | // Helper methods for lexing. |
| 1028 | //===----------------------------------------------------------------------===// |
| 1029 | |
Douglas Gregor | f4f6c9d | 2010-07-26 21:36:20 +0000 | [diff] [blame] | 1030 | /// \brief Routine that indiscriminately skips bytes in the source file. |
| 1031 | void Lexer::SkipBytes(unsigned Bytes, bool StartOfLine) { |
| 1032 | BufferPtr += Bytes; |
| 1033 | if (BufferPtr > BufferEnd) |
| 1034 | BufferPtr = BufferEnd; |
| 1035 | IsAtStartOfLine = StartOfLine; |
| 1036 | } |
| 1037 | |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1038 | void Lexer::LexIdentifier(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1039 | // Match [_A-Za-z0-9]*, we have already matched [_A-Za-z$] |
| 1040 | unsigned Size; |
| 1041 | unsigned char C = *CurPtr++; |
Chris Lattner | cd991db | 2010-01-11 02:38:50 +0000 | [diff] [blame] | 1042 | while (isIdentifierBody(C)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1043 | C = *CurPtr++; |
Chris Lattner | cd991db | 2010-01-11 02:38:50 +0000 | [diff] [blame] | 1044 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1045 | --CurPtr; // Back up over the skipped character. |
| 1046 | |
| 1047 | // Fast path, no $,\,? in identifier found. '\' might be an escaped newline |
| 1048 | // or UCN, and ? might be a trigraph for '\', an escaped newline or UCN. |
| 1049 | // FIXME: UCNs. |
Chris Lattner | cd991db | 2010-01-11 02:38:50 +0000 | [diff] [blame] | 1050 | // |
| 1051 | // TODO: Could merge these checks into a CharInfo flag to make the comparison |
| 1052 | // cheaper |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1053 | if (C != '\\' && C != '?' && (C != '$' || !Features.DollarIdents)) { |
| 1054 | FinishIdentifier: |
| 1055 | const char *IdStart = BufferPtr; |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 1056 | FormTokenWithChars(Result, CurPtr, tok::raw_identifier); |
| 1057 | Result.setRawIdentifierData(IdStart); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1058 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1059 | // If we are in raw mode, return this identifier raw. There is no need to |
| 1060 | // look up identifier information or attempt to macro expand it. |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 1061 | if (LexingRawMode) |
| 1062 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1063 | |
Abramo Bagnara | c4bf2b9 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 1064 | // Fill in Result.IdentifierInfo and update the token kind, |
| 1065 | // looking up the identifier in the identifier table. |
| 1066 | IdentifierInfo *II = PP->LookUpIdentifierInfo(Result); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1067 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1068 | // Finally, now that we know we have an identifier, pass this off to the |
| 1069 | // preprocessor, which may macro expand it or something. |
Chris Lattner | d1186fa | 2009-01-21 07:45:14 +0000 | [diff] [blame] | 1070 | if (II->isHandleIdentifierCase()) |
Chris Lattner | 6a170eb | 2009-01-21 07:43:11 +0000 | [diff] [blame] | 1071 | PP->HandleIdentifier(Result); |
| 1072 | return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1073 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1074 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1075 | // Otherwise, $,\,? in identifier found. Enter slower path. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1076 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1077 | C = getCharAndSize(CurPtr, Size); |
| 1078 | while (1) { |
| 1079 | if (C == '$') { |
| 1080 | // If we hit a $ and they are not supported in identifiers, we are done. |
| 1081 | if (!Features.DollarIdents) goto FinishIdentifier; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1082 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1083 | // Otherwise, emit a diagnostic and continue. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1084 | if (!isLexingRawMode()) |
| 1085 | Diag(CurPtr, diag::ext_dollar_in_identifier); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1086 | CurPtr = ConsumeChar(CurPtr, Size, Result); |
| 1087 | C = getCharAndSize(CurPtr, Size); |
| 1088 | continue; |
| 1089 | } else if (!isIdentifierBody(C)) { // FIXME: UCNs. |
| 1090 | // Found end of identifier. |
| 1091 | goto FinishIdentifier; |
| 1092 | } |
| 1093 | |
| 1094 | // Otherwise, this character is good, consume it. |
| 1095 | CurPtr = ConsumeChar(CurPtr, Size, Result); |
| 1096 | |
| 1097 | C = getCharAndSize(CurPtr, Size); |
| 1098 | while (isIdentifierBody(C)) { // FIXME: UCNs. |
| 1099 | CurPtr = ConsumeChar(CurPtr, Size, Result); |
| 1100 | C = getCharAndSize(CurPtr, Size); |
| 1101 | } |
| 1102 | } |
| 1103 | } |
| 1104 | |
Douglas Gregor | a75ec43 | 2010-08-30 14:50:47 +0000 | [diff] [blame] | 1105 | /// isHexaLiteral - Return true if Start points to a hex constant. |
Chris Lattner | 4a55100 | 2010-08-30 17:11:14 +0000 | [diff] [blame] | 1106 | /// in microsoft mode (where this is supposed to be several different tokens). |
Chris Lattner | 6ab55eb | 2010-08-31 16:42:00 +0000 | [diff] [blame] | 1107 | static bool isHexaLiteral(const char *Start, const LangOptions &Features) { |
| 1108 | unsigned Size; |
| 1109 | char C1 = Lexer::getCharAndSizeNoWarn(Start, Size, Features); |
| 1110 | if (C1 != '0') |
| 1111 | return false; |
| 1112 | char C2 = Lexer::getCharAndSizeNoWarn(Start + Size, Size, Features); |
| 1113 | return (C2 == 'x' || C2 == 'X'); |
Douglas Gregor | a75ec43 | 2010-08-30 14:50:47 +0000 | [diff] [blame] | 1114 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1115 | |
Nate Begeman | 5253c7f | 2008-04-14 02:26:39 +0000 | [diff] [blame] | 1116 | /// LexNumericConstant - Lex the remainder of a integer or floating point |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1117 | /// constant. From[-1] is the first character lexed. Return the end of the |
| 1118 | /// constant. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1119 | void Lexer::LexNumericConstant(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1120 | unsigned Size; |
| 1121 | char C = getCharAndSize(CurPtr, Size); |
| 1122 | char PrevCh = 0; |
| 1123 | while (isNumberBody(C)) { // FIXME: UCNs? |
| 1124 | CurPtr = ConsumeChar(CurPtr, Size, Result); |
| 1125 | PrevCh = C; |
| 1126 | C = getCharAndSize(CurPtr, Size); |
| 1127 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1128 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1129 | // If we fell out, check for a sign, due to 1e+12. If we have one, continue. |
Chris Lattner | b2f4a20 | 2010-08-30 17:09:08 +0000 | [diff] [blame] | 1130 | if ((C == '-' || C == '+') && (PrevCh == 'E' || PrevCh == 'e')) { |
| 1131 | // If we are in Microsoft mode, don't continue if the constant is hex. |
| 1132 | // For example, MSVC will accept the following as 3 tokens: 0x1234567e+1 |
Chris Lattner | 6ab55eb | 2010-08-31 16:42:00 +0000 | [diff] [blame] | 1133 | if (!Features.Microsoft || !isHexaLiteral(BufferPtr, Features)) |
Chris Lattner | b2f4a20 | 2010-08-30 17:09:08 +0000 | [diff] [blame] | 1134 | return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result)); |
| 1135 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1136 | |
| 1137 | // If we have a hex FP constant, continue. |
Sean Hunt | 8c72340 | 2010-01-10 23:37:56 +0000 | [diff] [blame] | 1138 | if ((C == '-' || C == '+') && (PrevCh == 'P' || PrevCh == 'p') && |
Chris Lattner | b2f4a20 | 2010-08-30 17:09:08 +0000 | [diff] [blame] | 1139 | !Features.CPlusPlus0x) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1140 | return LexNumericConstant(Result, ConsumeChar(CurPtr, Size, Result)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1141 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1142 | // Update the location of token as well as BufferPtr. |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1143 | const char *TokStart = BufferPtr; |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1144 | FormTokenWithChars(Result, CurPtr, tok::numeric_constant); |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1145 | Result.setLiteralData(TokStart); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | /// LexStringLiteral - Lex the remainder of a string literal, after having lexed |
| 1149 | /// either " or L". |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1150 | void Lexer::LexStringLiteral(Token &Result, const char *CurPtr, bool Wide) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1151 | const char *NulCharacter = 0; // Does this string contain the \0 character? |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1152 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1153 | char C = getAndAdvanceChar(CurPtr, Result); |
| 1154 | while (C != '"') { |
Chris Lattner | 571339c | 2010-05-30 23:27:38 +0000 | [diff] [blame] | 1155 | // Skip escaped characters. Escaped newlines will already be processed by |
| 1156 | // getAndAdvanceChar. |
| 1157 | if (C == '\\') |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1158 | C = getAndAdvanceChar(CurPtr, Result); |
Douglas Gregor | 33611e0 | 2010-05-30 22:59:50 +0000 | [diff] [blame] | 1159 | |
Chris Lattner | 571339c | 2010-05-30 23:27:38 +0000 | [diff] [blame] | 1160 | if (C == '\n' || C == '\r' || // Newline. |
Douglas Gregor | 33611e0 | 2010-05-30 22:59:50 +0000 | [diff] [blame] | 1161 | (C == 0 && CurPtr-1 == BufferEnd)) { // End of file. |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 1162 | if (C == 0 && PP && PP->isCodeCompletionFile(FileLoc)) |
| 1163 | PP->CodeCompleteNaturalLanguage(); |
| 1164 | else if (!isLexingRawMode() && !Features.AsmPreprocessor) |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1165 | Diag(BufferPtr, diag::err_unterminated_string); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1166 | FormTokenWithChars(Result, CurPtr-1, tok::unknown); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1167 | return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1168 | } |
Chris Lattner | 571339c | 2010-05-30 23:27:38 +0000 | [diff] [blame] | 1169 | |
| 1170 | if (C == 0) |
| 1171 | NulCharacter = CurPtr-1; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1172 | C = getAndAdvanceChar(CurPtr, Result); |
| 1173 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1174 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1175 | // If a nul character existed in the string, warn about it. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1176 | if (NulCharacter && !isLexingRawMode()) |
| 1177 | Diag(NulCharacter, diag::null_in_string); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1178 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1179 | // Update the location of the token as well as the BufferPtr instance var. |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1180 | const char *TokStart = BufferPtr; |
Sean Hunt | 6cf7502 | 2010-08-30 17:47:05 +0000 | [diff] [blame] | 1181 | FormTokenWithChars(Result, CurPtr, |
| 1182 | Wide ? tok::wide_string_literal : tok::string_literal); |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1183 | Result.setLiteralData(TokStart); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
| 1186 | /// LexAngledStringLiteral - Lex the remainder of an angled string literal, |
| 1187 | /// after having lexed the '<' character. This is used for #include filenames. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1188 | void Lexer::LexAngledStringLiteral(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1189 | const char *NulCharacter = 0; // Does this string contain the \0 character? |
Chris Lattner | 9cb51ce | 2009-04-17 23:56:52 +0000 | [diff] [blame] | 1190 | const char *AfterLessPos = CurPtr; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1191 | char C = getAndAdvanceChar(CurPtr, Result); |
| 1192 | while (C != '>') { |
| 1193 | // Skip escaped characters. |
| 1194 | if (C == '\\') { |
| 1195 | // Skip the escaped character. |
| 1196 | C = getAndAdvanceChar(CurPtr, Result); |
| 1197 | } else if (C == '\n' || C == '\r' || // Newline. |
| 1198 | (C == 0 && CurPtr-1 == BufferEnd)) { // End of file. |
Chris Lattner | 9cb51ce | 2009-04-17 23:56:52 +0000 | [diff] [blame] | 1199 | // If the filename is unterminated, then it must just be a lone < |
| 1200 | // character. Return this as such. |
| 1201 | FormTokenWithChars(Result, AfterLessPos, tok::less); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1202 | return; |
| 1203 | } else if (C == 0) { |
| 1204 | NulCharacter = CurPtr-1; |
| 1205 | } |
| 1206 | C = getAndAdvanceChar(CurPtr, Result); |
| 1207 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1208 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1209 | // If a nul character existed in the string, warn about it. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1210 | if (NulCharacter && !isLexingRawMode()) |
| 1211 | Diag(NulCharacter, diag::null_in_string); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1212 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1213 | // Update the location of token as well as BufferPtr. |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1214 | const char *TokStart = BufferPtr; |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1215 | FormTokenWithChars(Result, CurPtr, tok::angle_string_literal); |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1216 | Result.setLiteralData(TokStart); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1217 | } |
| 1218 | |
| 1219 | |
| 1220 | /// LexCharConstant - Lex the remainder of a character constant, after having |
| 1221 | /// lexed either ' or L'. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1222 | void Lexer::LexCharConstant(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1223 | const char *NulCharacter = 0; // Does this character contain the \0 character? |
| 1224 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1225 | char C = getAndAdvanceChar(CurPtr, Result); |
| 1226 | if (C == '\'') { |
Chris Lattner | 33ab3f6 | 2009-03-18 21:10:12 +0000 | [diff] [blame] | 1227 | if (!isLexingRawMode() && !Features.AsmPreprocessor) |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1228 | Diag(BufferPtr, diag::err_empty_character); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1229 | FormTokenWithChars(Result, CurPtr, tok::unknown); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1230 | return; |
Chris Lattner | d80f786 | 2010-07-07 23:24:27 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
| 1233 | while (C != '\'') { |
| 1234 | // Skip escaped characters. |
| 1235 | if (C == '\\') { |
| 1236 | // Skip the escaped character. |
| 1237 | // FIXME: UCN's |
| 1238 | C = getAndAdvanceChar(CurPtr, Result); |
| 1239 | } else if (C == '\n' || C == '\r' || // Newline. |
| 1240 | (C == 0 && CurPtr-1 == BufferEnd)) { // End of file. |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 1241 | if (C == 0 && PP && PP->isCodeCompletionFile(FileLoc)) |
| 1242 | PP->CodeCompleteNaturalLanguage(); |
| 1243 | else if (!isLexingRawMode() && !Features.AsmPreprocessor) |
Chris Lattner | d80f786 | 2010-07-07 23:24:27 +0000 | [diff] [blame] | 1244 | Diag(BufferPtr, diag::err_unterminated_char); |
| 1245 | FormTokenWithChars(Result, CurPtr-1, tok::unknown); |
| 1246 | return; |
| 1247 | } else if (C == 0) { |
| 1248 | NulCharacter = CurPtr-1; |
| 1249 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1250 | C = getAndAdvanceChar(CurPtr, Result); |
| 1251 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1252 | |
Chris Lattner | d80f786 | 2010-07-07 23:24:27 +0000 | [diff] [blame] | 1253 | // If a nul character existed in the character, warn about it. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1254 | if (NulCharacter && !isLexingRawMode()) |
| 1255 | Diag(NulCharacter, diag::null_in_char); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1256 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1257 | // Update the location of token as well as BufferPtr. |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1258 | const char *TokStart = BufferPtr; |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1259 | FormTokenWithChars(Result, CurPtr, tok::char_constant); |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1260 | Result.setLiteralData(TokStart); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | /// SkipWhitespace - Efficiently skip over a series of whitespace characters. |
| 1264 | /// Update BufferPtr to point to the next non-whitespace character and return. |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1265 | /// |
| 1266 | /// This method forms a token and returns true if KeepWhitespaceMode is enabled. |
| 1267 | /// |
| 1268 | bool Lexer::SkipWhitespace(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1269 | // Whitespace - Skip it, then return the token after the whitespace. |
| 1270 | unsigned char Char = *CurPtr; // Skip consequtive spaces efficiently. |
| 1271 | while (1) { |
| 1272 | // Skip horizontal whitespace very aggressively. |
| 1273 | while (isHorizontalWhitespace(Char)) |
| 1274 | Char = *++CurPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1275 | |
Daniel Dunbar | ddd3e8b | 2008-11-25 00:20:22 +0000 | [diff] [blame] | 1276 | // Otherwise if we have something other than whitespace, we're done. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1277 | if (Char != '\n' && Char != '\r') |
| 1278 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1279 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1280 | if (ParsingPreprocessorDirective) { |
| 1281 | // End of preprocessor directive line, let LexTokenInternal handle this. |
| 1282 | BufferPtr = CurPtr; |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1283 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1284 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1285 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1286 | // ok, but handle newline. |
| 1287 | // The returned token is at the start of the line. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1288 | Result.setFlag(Token::StartOfLine); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1289 | // No leading whitespace seen so far. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1290 | Result.clearFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1291 | Char = *++CurPtr; |
| 1292 | } |
| 1293 | |
| 1294 | // If this isn't immediately after a newline, there is leading space. |
| 1295 | char PrevChar = CurPtr[-1]; |
| 1296 | if (PrevChar != '\n' && PrevChar != '\r') |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1297 | Result.setFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1298 | |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1299 | // If the client wants us to return whitespace, return it now. |
| 1300 | if (isKeepWhitespaceMode()) { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1301 | FormTokenWithChars(Result, CurPtr, tok::unknown); |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1302 | return true; |
| 1303 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1304 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1305 | BufferPtr = CurPtr; |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1306 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1307 | } |
| 1308 | |
| 1309 | // SkipBCPLComment - We have just read the // characters from input. Skip until |
| 1310 | // we find the newline character thats terminate the comment. Then update |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 1311 | /// BufferPtr and return. |
| 1312 | /// |
| 1313 | /// If we're in KeepCommentMode or any CommentHandler has inserted |
| 1314 | /// some tokens, this will store the first token and return true. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1315 | bool Lexer::SkipBCPLComment(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1316 | // If BCPL comments aren't explicitly enabled for this language, emit an |
| 1317 | // extension warning. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1318 | if (!Features.BCPLComment && !isLexingRawMode()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1319 | Diag(BufferPtr, diag::ext_bcpl_comment); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1320 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1321 | // Mark them enabled so we only emit one warning for this translation |
| 1322 | // unit. |
| 1323 | Features.BCPLComment = true; |
| 1324 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1325 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1326 | // Scan over the body of the comment. The common case, when scanning, is that |
| 1327 | // the comment contains normal ascii characters with nothing interesting in |
| 1328 | // them. As such, optimize for this case with the inner loop. |
| 1329 | char C; |
| 1330 | do { |
| 1331 | C = *CurPtr; |
| 1332 | // FIXME: Speedup BCPL comment lexing. Just scan for a \n or \r character. |
| 1333 | // If we find a \n character, scan backwards, checking to see if it's an |
| 1334 | // escaped newline, like we do for block comments. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1335 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1336 | // Skip over characters in the fast loop. |
| 1337 | while (C != 0 && // Potentially EOF. |
| 1338 | C != '\\' && // Potentially escaped newline. |
| 1339 | C != '?' && // Potentially trigraph. |
| 1340 | C != '\n' && C != '\r') // Newline or DOS-style newline. |
| 1341 | C = *++CurPtr; |
| 1342 | |
| 1343 | // If this is a newline, we're done. |
| 1344 | if (C == '\n' || C == '\r') |
| 1345 | break; // Found the newline? Break out! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1346 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1347 | // Otherwise, this is a hard case. Fall back on getAndAdvanceChar to |
Chris Lattner | bc3e984 | 2008-12-12 07:34:39 +0000 | [diff] [blame] | 1348 | // properly decode the character. Read it in raw mode to avoid emitting |
| 1349 | // diagnostics about things like trigraphs. If we see an escaped newline, |
| 1350 | // we'll handle it below. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1351 | const char *OldPtr = CurPtr; |
Chris Lattner | bc3e984 | 2008-12-12 07:34:39 +0000 | [diff] [blame] | 1352 | bool OldRawMode = isLexingRawMode(); |
| 1353 | LexingRawMode = true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1354 | C = getAndAdvanceChar(CurPtr, Result); |
Chris Lattner | bc3e984 | 2008-12-12 07:34:39 +0000 | [diff] [blame] | 1355 | LexingRawMode = OldRawMode; |
Chris Lattner | ead616c | 2009-04-05 00:26:41 +0000 | [diff] [blame] | 1356 | |
| 1357 | // If the char that we finally got was a \n, then we must have had something |
| 1358 | // like \<newline><newline>. We don't want to have consumed the second |
| 1359 | // newline, we want CurPtr, to end up pointing to it down below. |
| 1360 | if (C == '\n' || C == '\r') { |
| 1361 | --CurPtr; |
| 1362 | C = 'x'; // doesn't matter what this is. |
| 1363 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1364 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1365 | // If we read multiple characters, and one of those characters was a \r or |
| 1366 | // \n, then we had an escaped newline within the comment. Emit diagnostic |
| 1367 | // unless the next line is also a // comment. |
| 1368 | if (CurPtr != OldPtr+1 && C != '/' && CurPtr[0] != '/') { |
| 1369 | for (; OldPtr != CurPtr; ++OldPtr) |
| 1370 | if (OldPtr[0] == '\n' || OldPtr[0] == '\r') { |
| 1371 | // Okay, we found a // comment that ends in a newline, if the next |
| 1372 | // line is also a // comment, but has spaces, don't emit a diagnostic. |
| 1373 | if (isspace(C)) { |
| 1374 | const char *ForwardPtr = CurPtr; |
| 1375 | while (isspace(*ForwardPtr)) // Skip whitespace. |
| 1376 | ++ForwardPtr; |
| 1377 | if (ForwardPtr[0] == '/' && ForwardPtr[1] == '/') |
| 1378 | break; |
| 1379 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1380 | |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1381 | if (!isLexingRawMode()) |
| 1382 | Diag(OldPtr-1, diag::ext_multi_line_bcpl_comment); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1383 | break; |
| 1384 | } |
| 1385 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1386 | |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 1387 | if (CurPtr == BufferEnd+1) { |
| 1388 | if (PP && PP->isCodeCompletionFile(FileLoc)) |
| 1389 | PP->CodeCompleteNaturalLanguage(); |
| 1390 | |
| 1391 | --CurPtr; |
| 1392 | break; |
| 1393 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1394 | } while (C != '\n' && C != '\r'); |
| 1395 | |
Chris Lattner | 3d0ad58 | 2010-02-03 21:06:21 +0000 | [diff] [blame] | 1396 | // Found but did not consume the newline. Notify comment handlers about the |
| 1397 | // comment unless we're in a #if 0 block. |
| 1398 | if (PP && !isLexingRawMode() && |
| 1399 | PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr), |
| 1400 | getSourceLocation(CurPtr)))) { |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 1401 | BufferPtr = CurPtr; |
| 1402 | return true; // A token has to be returned. |
| 1403 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1404 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1405 | // If we are returning comments as tokens, return this comment as a token. |
Chris Lattner | fa95a01 | 2008-10-12 03:22:02 +0000 | [diff] [blame] | 1406 | if (inKeepCommentMode()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1407 | return SaveBCPLComment(Result, CurPtr); |
| 1408 | |
| 1409 | // If we are inside a preprocessor directive and we see the end of line, |
| 1410 | // return immediately, so that the lexer can return this as an EOM token. |
| 1411 | if (ParsingPreprocessorDirective || CurPtr == BufferEnd) { |
| 1412 | BufferPtr = CurPtr; |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1413 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1414 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1415 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1416 | // Otherwise, eat the \n character. We don't care if this is a \n\r or |
Chris Lattner | 7a4f004 | 2008-10-12 00:23:07 +0000 | [diff] [blame] | 1417 | // \r\n sequence. This is an efficiency hack (because we know the \n can't |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1418 | // contribute to another token), it isn't needed for correctness. Note that |
| 1419 | // this is ok even in KeepWhitespaceMode, because we would have returned the |
| 1420 | /// comment above in that mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1421 | ++CurPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1422 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1423 | // The next returned token is at the start of the line. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1424 | Result.setFlag(Token::StartOfLine); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1425 | // No leading whitespace seen so far. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1426 | Result.clearFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1427 | BufferPtr = CurPtr; |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1428 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | /// SaveBCPLComment - If in save-comment mode, package up this BCPL comment in |
| 1432 | /// an appropriate way and return it. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1433 | bool Lexer::SaveBCPLComment(Token &Result, const char *CurPtr) { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1434 | // If we're not in a preprocessor directive, just return the // comment |
| 1435 | // directly. |
| 1436 | FormTokenWithChars(Result, CurPtr, tok::comment); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1437 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1438 | if (!ParsingPreprocessorDirective) |
| 1439 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1440 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1441 | // If this BCPL-style comment is in a macro definition, transmogrify it into |
| 1442 | // a C-style block comment. |
Douglas Gregor | 453091c | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 1443 | bool Invalid = false; |
| 1444 | std::string Spelling = PP->getSpelling(Result, &Invalid); |
| 1445 | if (Invalid) |
| 1446 | return true; |
| 1447 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1448 | assert(Spelling[0] == '/' && Spelling[1] == '/' && "Not bcpl comment?"); |
| 1449 | Spelling[1] = '*'; // Change prefix to "/*". |
| 1450 | Spelling += "*/"; // add suffix. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1451 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1452 | Result.setKind(tok::comment); |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 1453 | PP->CreateString(&Spelling[0], Spelling.size(), Result, |
| 1454 | Result.getLocation()); |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1455 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | /// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline |
| 1459 | /// character (either \n or \r) is part of an escaped newline sequence. Issue a |
Chris Lattner | 47a2b40 | 2008-12-12 07:14:34 +0000 | [diff] [blame] | 1460 | /// diagnostic if so. We know that the newline is inside of a block comment. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1461 | static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1462 | Lexer *L) { |
| 1463 | assert(CurPtr[0] == '\n' || CurPtr[0] == '\r'); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1464 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1465 | // Back up off the newline. |
| 1466 | --CurPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1467 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1468 | // If this is a two-character newline sequence, skip the other character. |
| 1469 | if (CurPtr[0] == '\n' || CurPtr[0] == '\r') { |
| 1470 | // \n\n or \r\r -> not escaped newline. |
| 1471 | if (CurPtr[0] == CurPtr[1]) |
| 1472 | return false; |
| 1473 | // \n\r or \r\n -> skip the newline. |
| 1474 | --CurPtr; |
| 1475 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1476 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1477 | // If we have horizontal whitespace, skip over it. We allow whitespace |
| 1478 | // between the slash and newline. |
| 1479 | bool HasSpace = false; |
| 1480 | while (isHorizontalWhitespace(*CurPtr) || *CurPtr == 0) { |
| 1481 | --CurPtr; |
| 1482 | HasSpace = true; |
| 1483 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1484 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1485 | // If we have a slash, we know this is an escaped newline. |
| 1486 | if (*CurPtr == '\\') { |
| 1487 | if (CurPtr[-1] != '*') return false; |
| 1488 | } else { |
| 1489 | // It isn't a slash, is it the ?? / trigraph? |
| 1490 | if (CurPtr[0] != '/' || CurPtr[-1] != '?' || CurPtr[-2] != '?' || |
| 1491 | CurPtr[-3] != '*') |
| 1492 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1493 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1494 | // This is the trigraph ending the comment. Emit a stern warning! |
| 1495 | CurPtr -= 2; |
| 1496 | |
| 1497 | // If no trigraphs are enabled, warn that we ignored this trigraph and |
| 1498 | // ignore this * character. |
| 1499 | if (!L->getFeatures().Trigraphs) { |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1500 | if (!L->isLexingRawMode()) |
| 1501 | L->Diag(CurPtr, diag::trigraph_ignored_block_comment); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1502 | return false; |
| 1503 | } |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1504 | if (!L->isLexingRawMode()) |
| 1505 | L->Diag(CurPtr, diag::trigraph_ends_block_comment); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1506 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1507 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1508 | // Warn about having an escaped newline between the */ characters. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1509 | if (!L->isLexingRawMode()) |
| 1510 | L->Diag(CurPtr, diag::escaped_newline_block_comment_end); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1511 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1512 | // If there was space between the backslash and newline, warn about it. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1513 | if (HasSpace && !L->isLexingRawMode()) |
| 1514 | L->Diag(CurPtr, diag::backslash_newline_space); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1515 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1516 | return true; |
| 1517 | } |
| 1518 | |
| 1519 | #ifdef __SSE2__ |
| 1520 | #include <emmintrin.h> |
| 1521 | #elif __ALTIVEC__ |
| 1522 | #include <altivec.h> |
| 1523 | #undef bool |
| 1524 | #endif |
| 1525 | |
| 1526 | /// SkipBlockComment - We have just read the /* characters from input. Read |
| 1527 | /// until we find the */ characters that terminate the comment. Note that we |
| 1528 | /// don't bother decoding trigraphs or escaped newlines in block comments, |
| 1529 | /// because they cannot cause the comment to end. The only thing that can |
| 1530 | /// happen is the comment could end with an escaped newline between the */ end |
| 1531 | /// of comment. |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1532 | /// |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 1533 | /// If we're in KeepCommentMode or any CommentHandler has inserted |
| 1534 | /// some tokens, this will store the first token and return true. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1535 | bool Lexer::SkipBlockComment(Token &Result, const char *CurPtr) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1536 | // Scan one character past where we should, looking for a '/' character. Once |
| 1537 | // we find it, check to see if it was preceeded by a *. This common |
| 1538 | // optimization helps people who like to put a lot of * characters in their |
| 1539 | // comments. |
Chris Lattner | 8146b68 | 2007-07-21 23:43:37 +0000 | [diff] [blame] | 1540 | |
| 1541 | // The first character we get with newlines and trigraphs skipped to handle |
| 1542 | // the degenerate /*/ case below correctly if the * has an escaped newline |
| 1543 | // after it. |
| 1544 | unsigned CharSize; |
| 1545 | unsigned char C = getCharAndSize(CurPtr, CharSize); |
| 1546 | CurPtr += CharSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1547 | if (C == 0 && CurPtr == BufferEnd+1) { |
Chris Lattner | 150fcd5 | 2010-05-16 19:54:05 +0000 | [diff] [blame] | 1548 | if (!isLexingRawMode() && |
| 1549 | !PP->isCodeCompletionFile(FileLoc)) |
Chris Lattner | 0af5742 | 2008-10-12 01:31:51 +0000 | [diff] [blame] | 1550 | Diag(BufferPtr, diag::err_unterminated_block_comment); |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1551 | --CurPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1552 | |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1553 | // KeepWhitespaceMode should return this broken comment as a token. Since |
| 1554 | // it isn't a well formed comment, just return it as an 'unknown' token. |
| 1555 | if (isKeepWhitespaceMode()) { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1556 | FormTokenWithChars(Result, CurPtr, tok::unknown); |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1557 | return true; |
| 1558 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1559 | |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1560 | BufferPtr = CurPtr; |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1561 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1562 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1563 | |
Chris Lattner | 8146b68 | 2007-07-21 23:43:37 +0000 | [diff] [blame] | 1564 | // Check to see if the first character after the '/*' is another /. If so, |
| 1565 | // then this slash does not end the block comment, it is part of it. |
| 1566 | if (C == '/') |
| 1567 | C = *CurPtr++; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1568 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1569 | while (1) { |
| 1570 | // Skip over all non-interesting characters until we find end of buffer or a |
| 1571 | // (probably ending) '/' character. |
| 1572 | if (CurPtr + 24 < BufferEnd) { |
| 1573 | // While not aligned to a 16-byte boundary. |
| 1574 | while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0) |
| 1575 | C = *CurPtr++; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1576 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1577 | if (C == '/') goto FoundSlash; |
| 1578 | |
| 1579 | #ifdef __SSE2__ |
| 1580 | __m128i Slashes = _mm_set_epi8('/', '/', '/', '/', '/', '/', '/', '/', |
| 1581 | '/', '/', '/', '/', '/', '/', '/', '/'); |
| 1582 | while (CurPtr+16 <= BufferEnd && |
| 1583 | _mm_movemask_epi8(_mm_cmpeq_epi8(*(__m128i*)CurPtr, Slashes)) == 0) |
| 1584 | CurPtr += 16; |
| 1585 | #elif __ALTIVEC__ |
| 1586 | __vector unsigned char Slashes = { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1587 | '/', '/', '/', '/', '/', '/', '/', '/', |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1588 | '/', '/', '/', '/', '/', '/', '/', '/' |
| 1589 | }; |
| 1590 | while (CurPtr+16 <= BufferEnd && |
| 1591 | !vec_any_eq(*(vector unsigned char*)CurPtr, Slashes)) |
| 1592 | CurPtr += 16; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1593 | #else |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1594 | // Scan for '/' quickly. Many block comments are very large. |
| 1595 | while (CurPtr[0] != '/' && |
| 1596 | CurPtr[1] != '/' && |
| 1597 | CurPtr[2] != '/' && |
| 1598 | CurPtr[3] != '/' && |
| 1599 | CurPtr+4 < BufferEnd) { |
| 1600 | CurPtr += 4; |
| 1601 | } |
| 1602 | #endif |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1603 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1604 | // It has to be one of the bytes scanned, increment to it and read one. |
| 1605 | C = *CurPtr++; |
| 1606 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1607 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1608 | // Loop to scan the remainder. |
| 1609 | while (C != '/' && C != '\0') |
| 1610 | C = *CurPtr++; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1611 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1612 | FoundSlash: |
| 1613 | if (C == '/') { |
| 1614 | if (CurPtr[-2] == '*') // We found the final */. We're done! |
| 1615 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1616 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1617 | if ((CurPtr[-2] == '\n' || CurPtr[-2] == '\r')) { |
| 1618 | if (isEndOfBlockCommentWithEscapedNewLine(CurPtr-2, this)) { |
| 1619 | // We found the final */, though it had an escaped newline between the |
| 1620 | // * and /. We're done! |
| 1621 | break; |
| 1622 | } |
| 1623 | } |
| 1624 | if (CurPtr[0] == '*' && CurPtr[1] != '/') { |
| 1625 | // If this is a /* inside of the comment, emit a warning. Don't do this |
| 1626 | // if this is a /*/, which will end the comment. This misses cases with |
| 1627 | // embedded escaped newlines, but oh well. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1628 | if (!isLexingRawMode()) |
| 1629 | Diag(CurPtr-1, diag::warn_nested_block_comment); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1630 | } |
| 1631 | } else if (C == 0 && CurPtr == BufferEnd+1) { |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 1632 | if (PP && PP->isCodeCompletionFile(FileLoc)) |
| 1633 | PP->CodeCompleteNaturalLanguage(); |
| 1634 | else if (!isLexingRawMode()) |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1635 | Diag(BufferPtr, diag::err_unterminated_block_comment); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1636 | // Note: the user probably forgot a */. We could continue immediately |
| 1637 | // after the /*, but this would involve lexing a lot of what really is the |
| 1638 | // comment, which surely would confuse the parser. |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1639 | --CurPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1640 | |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1641 | // KeepWhitespaceMode should return this broken comment as a token. Since |
| 1642 | // it isn't a well formed comment, just return it as an 'unknown' token. |
| 1643 | if (isKeepWhitespaceMode()) { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1644 | FormTokenWithChars(Result, CurPtr, tok::unknown); |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1645 | return true; |
| 1646 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1647 | |
Chris Lattner | 31f0eca | 2008-10-12 04:19:49 +0000 | [diff] [blame] | 1648 | BufferPtr = CurPtr; |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1649 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1650 | } |
| 1651 | C = *CurPtr++; |
| 1652 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1653 | |
Chris Lattner | 3d0ad58 | 2010-02-03 21:06:21 +0000 | [diff] [blame] | 1654 | // Notify comment handlers about the comment unless we're in a #if 0 block. |
| 1655 | if (PP && !isLexingRawMode() && |
| 1656 | PP->HandleComment(Result, SourceRange(getSourceLocation(BufferPtr), |
| 1657 | getSourceLocation(CurPtr)))) { |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 1658 | BufferPtr = CurPtr; |
| 1659 | return true; // A token has to be returned. |
| 1660 | } |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 1661 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1662 | // If we are returning comments as tokens, return this comment as a token. |
Chris Lattner | fa95a01 | 2008-10-12 03:22:02 +0000 | [diff] [blame] | 1663 | if (inKeepCommentMode()) { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1664 | FormTokenWithChars(Result, CurPtr, tok::comment); |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1665 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | // It is common for the tokens immediately after a /**/ comment to be |
| 1669 | // whitespace. Instead of going through the big switch, handle it |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1670 | // efficiently now. This is safe even in KeepWhitespaceMode because we would |
| 1671 | // have already returned above with the comment as a token. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1672 | if (isHorizontalWhitespace(*CurPtr)) { |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1673 | Result.setFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1674 | SkipWhitespace(Result, CurPtr+1); |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1675 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | // Otherwise, just return so that the next character will be lexed as a token. |
| 1679 | BufferPtr = CurPtr; |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1680 | Result.setFlag(Token::LeadingSpace); |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 1681 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1682 | } |
| 1683 | |
| 1684 | //===----------------------------------------------------------------------===// |
| 1685 | // Primary Lexing Entry Points |
| 1686 | //===----------------------------------------------------------------------===// |
| 1687 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1688 | /// ReadToEndOfLine - Read the rest of the current preprocessor line as an |
| 1689 | /// uninterpreted string. This switches the lexer out of directive mode. |
| 1690 | std::string Lexer::ReadToEndOfLine() { |
| 1691 | assert(ParsingPreprocessorDirective && ParsingFilename == false && |
| 1692 | "Must be in a preprocessing directive!"); |
| 1693 | std::string Result; |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1694 | Token Tmp; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1695 | |
| 1696 | // CurPtr - Cache BufferPtr in an automatic variable. |
| 1697 | const char *CurPtr = BufferPtr; |
| 1698 | while (1) { |
| 1699 | char Char = getAndAdvanceChar(CurPtr, Tmp); |
| 1700 | switch (Char) { |
| 1701 | default: |
| 1702 | Result += Char; |
| 1703 | break; |
| 1704 | case 0: // Null. |
| 1705 | // Found end of file? |
| 1706 | if (CurPtr-1 != BufferEnd) { |
| 1707 | // Nope, normal character, continue. |
| 1708 | Result += Char; |
| 1709 | break; |
| 1710 | } |
| 1711 | // FALL THROUGH. |
| 1712 | case '\r': |
| 1713 | case '\n': |
| 1714 | // Okay, we found the end of the line. First, back up past the \0, \r, \n. |
| 1715 | assert(CurPtr[-1] == Char && "Trigraphs for newline?"); |
| 1716 | BufferPtr = CurPtr-1; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1717 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1718 | // Next, lex the character, which should handle the EOM transition. |
| 1719 | Lex(Tmp); |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 1720 | if (Tmp.is(tok::code_completion)) { |
| 1721 | if (PP && PP->getCodeCompletionHandler()) |
| 1722 | PP->getCodeCompletionHandler()->CodeCompleteNaturalLanguage(); |
| 1723 | Lex(Tmp); |
| 1724 | } |
Chris Lattner | 22f6bbc | 2007-10-09 18:02:16 +0000 | [diff] [blame] | 1725 | assert(Tmp.is(tok::eom) && "Unexpected token!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1726 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1727 | // Finally, we're done, return the string we found. |
| 1728 | return Result; |
| 1729 | } |
| 1730 | } |
| 1731 | } |
| 1732 | |
| 1733 | /// LexEndOfFile - CurPtr points to the end of this file. Handle this |
| 1734 | /// condition, reporting diagnostics and handling other edge cases as required. |
| 1735 | /// This returns true if Result contains a token, false if PP.Lex should be |
| 1736 | /// called again. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1737 | bool Lexer::LexEndOfFile(Token &Result, const char *CurPtr) { |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 1738 | // Check if we are performing code completion. |
| 1739 | if (PP && PP->isCodeCompletionFile(FileLoc)) { |
| 1740 | // We're at the end of the file, but we've been asked to consider the |
| 1741 | // end of the file to be a code-completion token. Return the |
| 1742 | // code-completion token. |
| 1743 | Result.startToken(); |
| 1744 | FormTokenWithChars(Result, CurPtr, tok::code_completion); |
| 1745 | |
| 1746 | // Only do the eof -> code_completion translation once. |
| 1747 | PP->SetCodeCompletionPoint(0, 0, 0); |
| 1748 | |
| 1749 | // Silence any diagnostics that occur once we hit the code-completion point. |
| 1750 | PP->getDiagnostics().setSuppressAllDiagnostics(true); |
| 1751 | return true; |
| 1752 | } |
| 1753 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1754 | // If we hit the end of the file while parsing a preprocessor directive, |
| 1755 | // end the preprocessor directive first. The next token returned will |
| 1756 | // then be the end of file. |
| 1757 | if (ParsingPreprocessorDirective) { |
| 1758 | // Done parsing the "line". |
| 1759 | ParsingPreprocessorDirective = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1760 | // Update the location of token as well as BufferPtr. |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1761 | FormTokenWithChars(Result, CurPtr, tok::eom); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1762 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1763 | // Restore comment saving mode, in case it was disabled for directive. |
Chris Lattner | f744d13 | 2008-10-12 03:27:19 +0000 | [diff] [blame] | 1764 | SetCommentRetentionState(PP->getCommentRetentionState()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1765 | return true; // Have a token. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1766 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1767 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1768 | // If we are in raw mode, return this event as an EOF token. Let the caller |
| 1769 | // that put us in raw mode handle the event. |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1770 | if (isLexingRawMode()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1771 | Result.startToken(); |
| 1772 | BufferPtr = BufferEnd; |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1773 | FormTokenWithChars(Result, BufferEnd, tok::eof); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1774 | return true; |
| 1775 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1776 | |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 1777 | // Issue diagnostics for unterminated #if and missing newline. |
| 1778 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1779 | // If we are in a #if directive, emit an error. |
| 1780 | while (!ConditionalStack.empty()) { |
Douglas Gregor | 2d474ba | 2010-08-12 17:04:55 +0000 | [diff] [blame] | 1781 | if (!PP->isCodeCompletionFile(FileLoc)) |
| 1782 | PP->Diag(ConditionalStack.back().IfLoc, |
| 1783 | diag::err_pp_unterminated_conditional); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1784 | ConditionalStack.pop_back(); |
| 1785 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1786 | |
Chris Lattner | b25e5d7 | 2008-04-12 05:54:25 +0000 | [diff] [blame] | 1787 | // C99 5.1.1.2p2: If the file is non-empty and didn't end in a newline, issue |
| 1788 | // a pedwarn. |
| 1789 | if (CurPtr != BufferStart && (CurPtr[-1] != '\n' && CurPtr[-1] != '\r')) |
Mike Stump | 20d0ee5 | 2009-04-02 02:29:42 +0000 | [diff] [blame] | 1790 | Diag(BufferEnd, diag::ext_no_newline_eof) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 1791 | << FixItHint::CreateInsertion(getSourceLocation(BufferEnd), "\n"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1792 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1793 | BufferPtr = CurPtr; |
| 1794 | |
| 1795 | // Finally, let the preprocessor handle this. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 1796 | return PP->HandleEndOfFile(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1797 | } |
| 1798 | |
| 1799 | /// isNextPPTokenLParen - Return 1 if the next unexpanded token lexed from |
| 1800 | /// the specified lexer will return a tok::l_paren token, 0 if it is something |
| 1801 | /// else and 2 if there are no more tokens in the buffer controlled by the |
| 1802 | /// lexer. |
| 1803 | unsigned Lexer::isNextPPTokenLParen() { |
| 1804 | assert(!LexingRawMode && "How can we expand a macro from a skipping buffer?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1805 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1806 | // Switch to 'skipping' mode. This will ensure that we can lex a token |
| 1807 | // without emitting diagnostics, disables macro expansion, and will cause EOF |
| 1808 | // to return an EOF token instead of popping the include stack. |
| 1809 | LexingRawMode = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1810 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1811 | // Save state that can be changed while lexing so that we can restore it. |
| 1812 | const char *TmpBufferPtr = BufferPtr; |
Chris Lattner | a864cf7 | 2009-04-24 07:15:46 +0000 | [diff] [blame] | 1813 | bool inPPDirectiveMode = ParsingPreprocessorDirective; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1814 | |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1815 | Token Tok; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1816 | Tok.startToken(); |
| 1817 | LexTokenInternal(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1818 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1819 | // Restore state that may have changed. |
| 1820 | BufferPtr = TmpBufferPtr; |
Chris Lattner | a864cf7 | 2009-04-24 07:15:46 +0000 | [diff] [blame] | 1821 | ParsingPreprocessorDirective = inPPDirectiveMode; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1822 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1823 | // Restore the lexer back to non-skipping mode. |
| 1824 | LexingRawMode = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1825 | |
Chris Lattner | 22f6bbc | 2007-10-09 18:02:16 +0000 | [diff] [blame] | 1826 | if (Tok.is(tok::eof)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1827 | return 2; |
Chris Lattner | 22f6bbc | 2007-10-09 18:02:16 +0000 | [diff] [blame] | 1828 | return Tok.is(tok::l_paren); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1829 | } |
| 1830 | |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 1831 | /// FindConflictEnd - Find the end of a version control conflict marker. |
| 1832 | static const char *FindConflictEnd(const char *CurPtr, const char *BufferEnd) { |
| 1833 | llvm::StringRef RestOfBuffer(CurPtr+7, BufferEnd-CurPtr-7); |
| 1834 | size_t Pos = RestOfBuffer.find(">>>>>>>"); |
| 1835 | while (Pos != llvm::StringRef::npos) { |
| 1836 | // Must occur at start of line. |
| 1837 | if (RestOfBuffer[Pos-1] != '\r' && |
| 1838 | RestOfBuffer[Pos-1] != '\n') { |
| 1839 | RestOfBuffer = RestOfBuffer.substr(Pos+7); |
Chris Lattner | 3d48899 | 2010-05-17 20:27:25 +0000 | [diff] [blame] | 1840 | Pos = RestOfBuffer.find(">>>>>>>"); |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 1841 | continue; |
| 1842 | } |
| 1843 | return RestOfBuffer.data()+Pos; |
| 1844 | } |
| 1845 | return 0; |
| 1846 | } |
| 1847 | |
| 1848 | /// IsStartOfConflictMarker - If the specified pointer is the start of a version |
| 1849 | /// control conflict marker like '<<<<<<<', recognize it as such, emit an error |
| 1850 | /// and recover nicely. This returns true if it is a conflict marker and false |
| 1851 | /// if not. |
| 1852 | bool Lexer::IsStartOfConflictMarker(const char *CurPtr) { |
| 1853 | // Only a conflict marker if it starts at the beginning of a line. |
| 1854 | if (CurPtr != BufferStart && |
| 1855 | CurPtr[-1] != '\n' && CurPtr[-1] != '\r') |
| 1856 | return false; |
| 1857 | |
| 1858 | // Check to see if we have <<<<<<<. |
| 1859 | if (BufferEnd-CurPtr < 8 || |
| 1860 | llvm::StringRef(CurPtr, 7) != "<<<<<<<") |
| 1861 | return false; |
| 1862 | |
| 1863 | // If we have a situation where we don't care about conflict markers, ignore |
| 1864 | // it. |
| 1865 | if (IsInConflictMarker || isLexingRawMode()) |
| 1866 | return false; |
| 1867 | |
| 1868 | // Check to see if there is a >>>>>>> somewhere in the buffer at the start of |
| 1869 | // a line to terminate this conflict marker. |
Chris Lattner | 3d48899 | 2010-05-17 20:27:25 +0000 | [diff] [blame] | 1870 | if (FindConflictEnd(CurPtr, BufferEnd)) { |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 1871 | // We found a match. We are really in a conflict marker. |
| 1872 | // Diagnose this, and ignore to the end of line. |
| 1873 | Diag(CurPtr, diag::err_conflict_marker); |
| 1874 | IsInConflictMarker = true; |
| 1875 | |
| 1876 | // Skip ahead to the end of line. We know this exists because the |
| 1877 | // end-of-conflict marker starts with \r or \n. |
| 1878 | while (*CurPtr != '\r' && *CurPtr != '\n') { |
| 1879 | assert(CurPtr != BufferEnd && "Didn't find end of line"); |
| 1880 | ++CurPtr; |
| 1881 | } |
| 1882 | BufferPtr = CurPtr; |
| 1883 | return true; |
| 1884 | } |
| 1885 | |
| 1886 | // No end of conflict marker found. |
| 1887 | return false; |
| 1888 | } |
| 1889 | |
| 1890 | |
| 1891 | /// HandleEndOfConflictMarker - If this is a '=======' or '|||||||' or '>>>>>>>' |
| 1892 | /// marker, then it is the end of a conflict marker. Handle it by ignoring up |
| 1893 | /// until the end of the line. This returns true if it is a conflict marker and |
| 1894 | /// false if not. |
| 1895 | bool Lexer::HandleEndOfConflictMarker(const char *CurPtr) { |
| 1896 | // Only a conflict marker if it starts at the beginning of a line. |
| 1897 | if (CurPtr != BufferStart && |
| 1898 | CurPtr[-1] != '\n' && CurPtr[-1] != '\r') |
| 1899 | return false; |
| 1900 | |
| 1901 | // If we have a situation where we don't care about conflict markers, ignore |
| 1902 | // it. |
| 1903 | if (!IsInConflictMarker || isLexingRawMode()) |
| 1904 | return false; |
| 1905 | |
| 1906 | // Check to see if we have the marker (7 characters in a row). |
| 1907 | for (unsigned i = 1; i != 7; ++i) |
| 1908 | if (CurPtr[i] != CurPtr[0]) |
| 1909 | return false; |
| 1910 | |
| 1911 | // If we do have it, search for the end of the conflict marker. This could |
| 1912 | // fail if it got skipped with a '#if 0' or something. Note that CurPtr might |
| 1913 | // be the end of conflict marker. |
| 1914 | if (const char *End = FindConflictEnd(CurPtr, BufferEnd)) { |
| 1915 | CurPtr = End; |
| 1916 | |
| 1917 | // Skip ahead to the end of line. |
| 1918 | while (CurPtr != BufferEnd && *CurPtr != '\r' && *CurPtr != '\n') |
| 1919 | ++CurPtr; |
| 1920 | |
| 1921 | BufferPtr = CurPtr; |
| 1922 | |
| 1923 | // No longer in the conflict marker. |
| 1924 | IsInConflictMarker = false; |
| 1925 | return true; |
| 1926 | } |
| 1927 | |
| 1928 | return false; |
| 1929 | } |
| 1930 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1931 | |
| 1932 | /// LexTokenInternal - This implements a simple C family lexer. It is an |
| 1933 | /// extremely performance critical piece of code. This assumes that the buffer |
Chris Lattner | efb173d | 2009-07-07 05:05:42 +0000 | [diff] [blame] | 1934 | /// has a null character at the end of the file. This returns a preprocessing |
| 1935 | /// token, not a normal token, as such, it is an internal interface. It assumes |
| 1936 | /// that the Flags of result have been cleared before calling this. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1937 | void Lexer::LexTokenInternal(Token &Result) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1938 | LexNextToken: |
| 1939 | // New token, can't need cleaning yet. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1940 | Result.clearFlag(Token::NeedsCleaning); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1941 | Result.setIdentifierInfo(0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1942 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1943 | // CurPtr - Cache BufferPtr in an automatic variable. |
| 1944 | const char *CurPtr = BufferPtr; |
| 1945 | |
| 1946 | // Small amounts of horizontal whitespace is very common between tokens. |
| 1947 | if ((*CurPtr == ' ') || (*CurPtr == '\t')) { |
| 1948 | ++CurPtr; |
| 1949 | while ((*CurPtr == ' ') || (*CurPtr == '\t')) |
| 1950 | ++CurPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1951 | |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1952 | // If we are keeping whitespace and other tokens, just return what we just |
| 1953 | // skipped. The next lexer invocation will return the token after the |
| 1954 | // whitespace. |
| 1955 | if (isKeepWhitespaceMode()) { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1956 | FormTokenWithChars(Result, CurPtr, tok::unknown); |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1957 | return; |
| 1958 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1959 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1960 | BufferPtr = CurPtr; |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1961 | Result.setFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1962 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1963 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1964 | unsigned SizeTmp, SizeTmp2; // Temporaries for use in cases below. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1965 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1966 | // Read a character, advancing over it. |
| 1967 | char Char = getAndAdvanceChar(CurPtr, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 1968 | tok::TokenKind Kind; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1969 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1970 | switch (Char) { |
| 1971 | case 0: // Null. |
| 1972 | // Found end of file? |
| 1973 | if (CurPtr-1 == BufferEnd) { |
| 1974 | // Read the PP instance variable into an automatic variable, because |
| 1975 | // LexEndOfFile will often delete 'this'. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 1976 | Preprocessor *PPCache = PP; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1977 | if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file. |
| 1978 | return; // Got a token to return. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 1979 | assert(PPCache && "Raw buffer::LexEndOfFile should return a token"); |
| 1980 | return PPCache->Lex(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1981 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1982 | |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 1983 | if (!isLexingRawMode()) |
| 1984 | Diag(CurPtr-1, diag::null_in_file); |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 1985 | Result.setFlag(Token::LeadingSpace); |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 1986 | if (SkipWhitespace(Result, CurPtr)) |
| 1987 | return; // KeepWhitespaceMode |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1988 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1989 | goto LexNextToken; // GCC isn't tail call eliminating. |
Chris Lattner | a2bf105 | 2009-12-17 05:29:40 +0000 | [diff] [blame] | 1990 | |
| 1991 | case 26: // DOS & CP/M EOF: "^Z". |
| 1992 | // If we're in Microsoft extensions mode, treat this as end of file. |
| 1993 | if (Features.Microsoft) { |
| 1994 | // Read the PP instance variable into an automatic variable, because |
| 1995 | // LexEndOfFile will often delete 'this'. |
| 1996 | Preprocessor *PPCache = PP; |
| 1997 | if (LexEndOfFile(Result, CurPtr-1)) // Retreat back into the file. |
| 1998 | return; // Got a token to return. |
| 1999 | assert(PPCache && "Raw buffer::LexEndOfFile should return a token"); |
| 2000 | return PPCache->Lex(Result); |
| 2001 | } |
| 2002 | // If Microsoft extensions are disabled, this is just random garbage. |
| 2003 | Kind = tok::unknown; |
| 2004 | break; |
| 2005 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2006 | case '\n': |
| 2007 | case '\r': |
| 2008 | // If we are inside a preprocessor directive and we see the end of line, |
| 2009 | // we know we are done with the directive, so return an EOM token. |
| 2010 | if (ParsingPreprocessorDirective) { |
| 2011 | // Done parsing the "line". |
| 2012 | ParsingPreprocessorDirective = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2013 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2014 | // Restore comment saving mode, in case it was disabled for directive. |
Chris Lattner | f744d13 | 2008-10-12 03:27:19 +0000 | [diff] [blame] | 2015 | SetCommentRetentionState(PP->getCommentRetentionState()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2016 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2017 | // Since we consumed a newline, we are back at the start of a line. |
| 2018 | IsAtStartOfLine = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2019 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2020 | Kind = tok::eom; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2021 | break; |
| 2022 | } |
| 2023 | // The returned token is at the start of the line. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 2024 | Result.setFlag(Token::StartOfLine); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2025 | // No leading whitespace seen so far. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 2026 | Result.clearFlag(Token::LeadingSpace); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2027 | |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 2028 | if (SkipWhitespace(Result, CurPtr)) |
| 2029 | return; // KeepWhitespaceMode |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2030 | goto LexNextToken; // GCC isn't tail call eliminating. |
| 2031 | case ' ': |
| 2032 | case '\t': |
| 2033 | case '\f': |
| 2034 | case '\v': |
Chris Lattner | 8133cfc | 2007-07-22 06:29:05 +0000 | [diff] [blame] | 2035 | SkipHorizontalWhitespace: |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 2036 | Result.setFlag(Token::LeadingSpace); |
Chris Lattner | d88dc48 | 2008-10-12 04:05:48 +0000 | [diff] [blame] | 2037 | if (SkipWhitespace(Result, CurPtr)) |
| 2038 | return; // KeepWhitespaceMode |
Chris Lattner | 8133cfc | 2007-07-22 06:29:05 +0000 | [diff] [blame] | 2039 | |
| 2040 | SkipIgnoredUnits: |
| 2041 | CurPtr = BufferPtr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2042 | |
Chris Lattner | 8133cfc | 2007-07-22 06:29:05 +0000 | [diff] [blame] | 2043 | // If the next token is obviously a // or /* */ comment, skip it efficiently |
| 2044 | // too (without going through the big switch stmt). |
Chris Lattner | 8402c73 | 2009-01-16 22:39:25 +0000 | [diff] [blame] | 2045 | if (CurPtr[0] == '/' && CurPtr[1] == '/' && !inKeepCommentMode() && |
| 2046 | Features.BCPLComment) { |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 2047 | if (SkipBCPLComment(Result, CurPtr+2)) |
| 2048 | return; // There is a token to return. |
Chris Lattner | 8133cfc | 2007-07-22 06:29:05 +0000 | [diff] [blame] | 2049 | goto SkipIgnoredUnits; |
Chris Lattner | fa95a01 | 2008-10-12 03:22:02 +0000 | [diff] [blame] | 2050 | } else if (CurPtr[0] == '/' && CurPtr[1] == '*' && !inKeepCommentMode()) { |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 2051 | if (SkipBlockComment(Result, CurPtr+2)) |
| 2052 | return; // There is a token to return. |
Chris Lattner | 8133cfc | 2007-07-22 06:29:05 +0000 | [diff] [blame] | 2053 | goto SkipIgnoredUnits; |
| 2054 | } else if (isHorizontalWhitespace(*CurPtr)) { |
| 2055 | goto SkipHorizontalWhitespace; |
| 2056 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2057 | goto LexNextToken; // GCC isn't tail call eliminating. |
Chris Lattner | a2bf105 | 2009-12-17 05:29:40 +0000 | [diff] [blame] | 2058 | |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2059 | // C99 6.4.4.1: Integer Constants. |
| 2060 | // C99 6.4.4.2: Floating Constants. |
| 2061 | case '0': case '1': case '2': case '3': case '4': |
| 2062 | case '5': case '6': case '7': case '8': case '9': |
| 2063 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2064 | MIOpt.ReadToken(); |
| 2065 | return LexNumericConstant(Result, CurPtr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2066 | |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2067 | case 'L': // Identifier (Loony) or wide literal (L'x' or L"xyz"). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2068 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2069 | MIOpt.ReadToken(); |
| 2070 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2071 | |
| 2072 | // Wide string literal. |
| 2073 | if (Char == '"') |
| 2074 | return LexStringLiteral(Result, ConsumeChar(CurPtr, SizeTmp, Result), |
| 2075 | true); |
| 2076 | |
| 2077 | // Wide character constant. |
| 2078 | if (Char == '\'') |
| 2079 | return LexCharConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result)); |
| 2080 | // FALL THROUGH, treating L like the start of an identifier. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2081 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2082 | // C99 6.4.2: Identifiers. |
| 2083 | case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G': |
| 2084 | case 'H': case 'I': case 'J': case 'K': /*'L'*/case 'M': case 'N': |
| 2085 | case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U': |
| 2086 | case 'V': case 'W': case 'X': case 'Y': case 'Z': |
| 2087 | case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g': |
| 2088 | case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n': |
| 2089 | case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u': |
| 2090 | case 'v': case 'w': case 'x': case 'y': case 'z': |
| 2091 | case '_': |
| 2092 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2093 | MIOpt.ReadToken(); |
| 2094 | return LexIdentifier(Result, CurPtr); |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2095 | |
| 2096 | case '$': // $ in identifiers. |
| 2097 | if (Features.DollarIdents) { |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 2098 | if (!isLexingRawMode()) |
| 2099 | Diag(CurPtr-1, diag::ext_dollar_in_identifier); |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2100 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2101 | MIOpt.ReadToken(); |
| 2102 | return LexIdentifier(Result, CurPtr); |
| 2103 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2104 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2105 | Kind = tok::unknown; |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2106 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2107 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2108 | // C99 6.4.4: Character Constants. |
| 2109 | case '\'': |
| 2110 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2111 | MIOpt.ReadToken(); |
| 2112 | return LexCharConstant(Result, CurPtr); |
| 2113 | |
| 2114 | // C99 6.4.5: String Literals. |
| 2115 | case '"': |
| 2116 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2117 | MIOpt.ReadToken(); |
| 2118 | return LexStringLiteral(Result, CurPtr, false); |
| 2119 | |
| 2120 | // C99 6.4.6: Punctuators. |
| 2121 | case '?': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2122 | Kind = tok::question; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2123 | break; |
| 2124 | case '[': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2125 | Kind = tok::l_square; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2126 | break; |
| 2127 | case ']': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2128 | Kind = tok::r_square; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2129 | break; |
| 2130 | case '(': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2131 | Kind = tok::l_paren; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2132 | break; |
| 2133 | case ')': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2134 | Kind = tok::r_paren; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2135 | break; |
| 2136 | case '{': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2137 | Kind = tok::l_brace; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2138 | break; |
| 2139 | case '}': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2140 | Kind = tok::r_brace; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2141 | break; |
| 2142 | case '.': |
| 2143 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2144 | if (Char >= '0' && Char <= '9') { |
| 2145 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2146 | MIOpt.ReadToken(); |
| 2147 | |
| 2148 | return LexNumericConstant(Result, ConsumeChar(CurPtr, SizeTmp, Result)); |
| 2149 | } else if (Features.CPlusPlus && Char == '*') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2150 | Kind = tok::periodstar; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2151 | CurPtr += SizeTmp; |
| 2152 | } else if (Char == '.' && |
| 2153 | getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '.') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2154 | Kind = tok::ellipsis; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2155 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2156 | SizeTmp2, Result); |
| 2157 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2158 | Kind = tok::period; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2159 | } |
| 2160 | break; |
| 2161 | case '&': |
| 2162 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2163 | if (Char == '&') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2164 | Kind = tok::ampamp; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2165 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2166 | } else if (Char == '=') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2167 | Kind = tok::ampequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2168 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2169 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2170 | Kind = tok::amp; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2171 | } |
| 2172 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2173 | case '*': |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2174 | if (getCharAndSize(CurPtr, SizeTmp) == '=') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2175 | Kind = tok::starequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2176 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2177 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2178 | Kind = tok::star; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2179 | } |
| 2180 | break; |
| 2181 | case '+': |
| 2182 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2183 | if (Char == '+') { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2184 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2185 | Kind = tok::plusplus; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2186 | } else if (Char == '=') { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2187 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2188 | Kind = tok::plusequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2189 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2190 | Kind = tok::plus; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2191 | } |
| 2192 | break; |
| 2193 | case '-': |
| 2194 | Char = getCharAndSize(CurPtr, SizeTmp); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2195 | if (Char == '-') { // -- |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2196 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2197 | Kind = tok::minusminus; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2198 | } else if (Char == '>' && Features.CPlusPlus && |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2199 | getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == '*') { // C++ ->* |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2200 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2201 | SizeTmp2, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2202 | Kind = tok::arrowstar; |
| 2203 | } else if (Char == '>') { // -> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2204 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2205 | Kind = tok::arrow; |
| 2206 | } else if (Char == '=') { // -= |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2207 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2208 | Kind = tok::minusequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2209 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2210 | Kind = tok::minus; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2211 | } |
| 2212 | break; |
| 2213 | case '~': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2214 | Kind = tok::tilde; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2215 | break; |
| 2216 | case '!': |
| 2217 | if (getCharAndSize(CurPtr, SizeTmp) == '=') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2218 | Kind = tok::exclaimequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2219 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2220 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2221 | Kind = tok::exclaim; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2222 | } |
| 2223 | break; |
| 2224 | case '/': |
| 2225 | // 6.4.9: Comments |
| 2226 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2227 | if (Char == '/') { // BCPL comment. |
Chris Lattner | 8402c73 | 2009-01-16 22:39:25 +0000 | [diff] [blame] | 2228 | // Even if BCPL comments are disabled (e.g. in C89 mode), we generally |
| 2229 | // want to lex this as a comment. There is one problem with this though, |
| 2230 | // that in one particular corner case, this can change the behavior of the |
| 2231 | // resultant program. For example, In "foo //**/ bar", C89 would lex |
| 2232 | // this as "foo / bar" and langauges with BCPL comments would lex it as |
| 2233 | // "foo". Check to see if the character after the second slash is a '*'. |
| 2234 | // If so, we will lex that as a "/" instead of the start of a comment. |
| 2235 | if (Features.BCPLComment || |
| 2236 | getCharAndSize(CurPtr+SizeTmp, SizeTmp2) != '*') { |
| 2237 | if (SkipBCPLComment(Result, ConsumeChar(CurPtr, SizeTmp, Result))) |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 2238 | return; // There is a token to return. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2239 | |
Chris Lattner | 8402c73 | 2009-01-16 22:39:25 +0000 | [diff] [blame] | 2240 | // It is common for the tokens immediately after a // comment to be |
| 2241 | // whitespace (indentation for the next line). Instead of going through |
| 2242 | // the big switch, handle it efficiently now. |
| 2243 | goto SkipIgnoredUnits; |
| 2244 | } |
| 2245 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2246 | |
Chris Lattner | 8402c73 | 2009-01-16 22:39:25 +0000 | [diff] [blame] | 2247 | if (Char == '*') { // /**/ comment. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2248 | if (SkipBlockComment(Result, ConsumeChar(CurPtr, SizeTmp, Result))) |
Chris Lattner | 046c227 | 2010-01-18 22:35:47 +0000 | [diff] [blame] | 2249 | return; // There is a token to return. |
Chris Lattner | 2d38189 | 2008-10-12 04:15:42 +0000 | [diff] [blame] | 2250 | goto LexNextToken; // GCC isn't tail call eliminating. |
Chris Lattner | 8402c73 | 2009-01-16 22:39:25 +0000 | [diff] [blame] | 2251 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2252 | |
Chris Lattner | 8402c73 | 2009-01-16 22:39:25 +0000 | [diff] [blame] | 2253 | if (Char == '=') { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2254 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2255 | Kind = tok::slashequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2256 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2257 | Kind = tok::slash; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2258 | } |
| 2259 | break; |
| 2260 | case '%': |
| 2261 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2262 | if (Char == '=') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2263 | Kind = tok::percentequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2264 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2265 | } else if (Features.Digraphs && Char == '>') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2266 | Kind = tok::r_brace; // '%>' -> '}' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2267 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2268 | } else if (Features.Digraphs && Char == ':') { |
| 2269 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2270 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2271 | if (Char == '%' && getCharAndSize(CurPtr+SizeTmp, SizeTmp2) == ':') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2272 | Kind = tok::hashhash; // '%:%:' -> '##' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2273 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2274 | SizeTmp2, Result); |
| 2275 | } else if (Char == '@' && Features.Microsoft) { // %:@ -> #@ -> Charize |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2276 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 2277 | if (!isLexingRawMode()) |
| 2278 | Diag(BufferPtr, diag::charize_microsoft_ext); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2279 | Kind = tok::hashat; |
Chris Lattner | e91e932 | 2009-03-18 20:58:27 +0000 | [diff] [blame] | 2280 | } else { // '%:' -> '#' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2281 | // We parsed a # character. If this occurs at the start of the line, |
| 2282 | // it's actually the start of a preprocessing directive. Callback to |
| 2283 | // the preprocessor to handle it. |
| 2284 | // FIXME: -fpreprocessed mode?? |
Chris Lattner | 766703b | 2009-05-13 06:10:29 +0000 | [diff] [blame] | 2285 | if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) { |
Chris Lattner | e91e932 | 2009-03-18 20:58:27 +0000 | [diff] [blame] | 2286 | FormTokenWithChars(Result, CurPtr, tok::hash); |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 2287 | PP->HandleDirective(Result); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2288 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2289 | // As an optimization, if the preprocessor didn't switch lexers, tail |
| 2290 | // recurse. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 2291 | if (PP->isCurrentLexer(this)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2292 | // Start a new token. If this is a #include or something, the PP may |
| 2293 | // want us starting at the beginning of the line again. If so, set |
Chris Lattner | 515f43f | 2010-04-12 23:04:41 +0000 | [diff] [blame] | 2294 | // the StartOfLine flag and clear LeadingSpace. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2295 | if (IsAtStartOfLine) { |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 2296 | Result.setFlag(Token::StartOfLine); |
Chris Lattner | 515f43f | 2010-04-12 23:04:41 +0000 | [diff] [blame] | 2297 | Result.clearFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2298 | IsAtStartOfLine = false; |
| 2299 | } |
| 2300 | goto LexNextToken; // GCC isn't tail call eliminating. |
| 2301 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2302 | |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 2303 | return PP->Lex(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2304 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2305 | |
Chris Lattner | e91e932 | 2009-03-18 20:58:27 +0000 | [diff] [blame] | 2306 | Kind = tok::hash; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2307 | } |
| 2308 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2309 | Kind = tok::percent; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2310 | } |
| 2311 | break; |
| 2312 | case '<': |
| 2313 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2314 | if (ParsingFilename) { |
Chris Lattner | 9cb51ce | 2009-04-17 23:56:52 +0000 | [diff] [blame] | 2315 | return LexAngledStringLiteral(Result, CurPtr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2316 | } else if (Char == '<') { |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 2317 | char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2); |
| 2318 | if (After == '=') { |
| 2319 | Kind = tok::lesslessequal; |
| 2320 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2321 | SizeTmp2, Result); |
| 2322 | } else if (After == '<' && IsStartOfConflictMarker(CurPtr-1)) { |
| 2323 | // If this is actually a '<<<<<<<' version control conflict marker, |
| 2324 | // recognize it as such and recover nicely. |
| 2325 | goto LexNextToken; |
Peter Collingbourne | 1b791d6 | 2011-02-09 21:08:21 +0000 | [diff] [blame^] | 2326 | } else if (Features.CUDA && After == '<') { |
| 2327 | Kind = tok::lesslessless; |
| 2328 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2329 | SizeTmp2, Result); |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 2330 | } else { |
| 2331 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2332 | Kind = tok::lessless; |
| 2333 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2334 | } else if (Char == '=') { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2335 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2336 | Kind = tok::lessequal; |
| 2337 | } else if (Features.Digraphs && Char == ':') { // '<:' -> '[' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2338 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2339 | Kind = tok::l_square; |
| 2340 | } else if (Features.Digraphs && Char == '%') { // '<%' -> '{' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2341 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2342 | Kind = tok::l_brace; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2343 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2344 | Kind = tok::less; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2345 | } |
| 2346 | break; |
| 2347 | case '>': |
| 2348 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2349 | if (Char == '=') { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2350 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2351 | Kind = tok::greaterequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2352 | } else if (Char == '>') { |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 2353 | char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2); |
| 2354 | if (After == '=') { |
| 2355 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2356 | SizeTmp2, Result); |
| 2357 | Kind = tok::greatergreaterequal; |
| 2358 | } else if (After == '>' && HandleEndOfConflictMarker(CurPtr-1)) { |
| 2359 | // If this is '>>>>>>>' and we're in a conflict marker, ignore it. |
| 2360 | goto LexNextToken; |
Peter Collingbourne | 1b791d6 | 2011-02-09 21:08:21 +0000 | [diff] [blame^] | 2361 | } else if (Features.CUDA && After == '>') { |
| 2362 | Kind = tok::greatergreatergreater; |
| 2363 | CurPtr = ConsumeChar(ConsumeChar(CurPtr, SizeTmp, Result), |
| 2364 | SizeTmp2, Result); |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 2365 | } else { |
| 2366 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2367 | Kind = tok::greatergreater; |
| 2368 | } |
| 2369 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2370 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2371 | Kind = tok::greater; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2372 | } |
| 2373 | break; |
| 2374 | case '^': |
| 2375 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2376 | if (Char == '=') { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2377 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2378 | Kind = tok::caretequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2379 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2380 | Kind = tok::caret; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2381 | } |
| 2382 | break; |
| 2383 | case '|': |
| 2384 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2385 | if (Char == '=') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2386 | Kind = tok::pipeequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2387 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2388 | } else if (Char == '|') { |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 2389 | // If this is '|||||||' and we're in a conflict marker, ignore it. |
| 2390 | if (CurPtr[1] == '|' && HandleEndOfConflictMarker(CurPtr-1)) |
| 2391 | goto LexNextToken; |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2392 | Kind = tok::pipepipe; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2393 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2394 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2395 | Kind = tok::pipe; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2396 | } |
| 2397 | break; |
| 2398 | case ':': |
| 2399 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2400 | if (Features.Digraphs && Char == '>') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2401 | Kind = tok::r_square; // ':>' -> ']' |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2402 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2403 | } else if (Features.CPlusPlus && Char == ':') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2404 | Kind = tok::coloncolon; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2405 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2406 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2407 | Kind = tok::colon; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2408 | } |
| 2409 | break; |
| 2410 | case ';': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2411 | Kind = tok::semi; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2412 | break; |
| 2413 | case '=': |
| 2414 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2415 | if (Char == '=') { |
Chris Lattner | 34f349d | 2009-12-14 06:16:57 +0000 | [diff] [blame] | 2416 | // If this is '=======' and we're in a conflict marker, ignore it. |
| 2417 | if (CurPtr[1] == '=' && HandleEndOfConflictMarker(CurPtr-1)) |
| 2418 | goto LexNextToken; |
| 2419 | |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2420 | Kind = tok::equalequal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2421 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2422 | } else { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2423 | Kind = tok::equal; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2424 | } |
| 2425 | break; |
| 2426 | case ',': |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2427 | Kind = tok::comma; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2428 | break; |
| 2429 | case '#': |
| 2430 | Char = getCharAndSize(CurPtr, SizeTmp); |
| 2431 | if (Char == '#') { |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2432 | Kind = tok::hashhash; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2433 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2434 | } else if (Char == '@' && Features.Microsoft) { // #@ -> Charize |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2435 | Kind = tok::hashat; |
Chris Lattner | 74d15df | 2008-11-22 02:02:22 +0000 | [diff] [blame] | 2436 | if (!isLexingRawMode()) |
| 2437 | Diag(BufferPtr, diag::charize_microsoft_ext); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2438 | CurPtr = ConsumeChar(CurPtr, SizeTmp, Result); |
| 2439 | } else { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2440 | // We parsed a # character. If this occurs at the start of the line, |
| 2441 | // it's actually the start of a preprocessing directive. Callback to |
| 2442 | // the preprocessor to handle it. |
| 2443 | // FIXME: -fpreprocessed mode?? |
Chris Lattner | 766703b | 2009-05-13 06:10:29 +0000 | [diff] [blame] | 2444 | if (Result.isAtStartOfLine() && !LexingRawMode && !Is_PragmaLexer) { |
Chris Lattner | e91e932 | 2009-03-18 20:58:27 +0000 | [diff] [blame] | 2445 | FormTokenWithChars(Result, CurPtr, tok::hash); |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 2446 | PP->HandleDirective(Result); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2447 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2448 | // As an optimization, if the preprocessor didn't switch lexers, tail |
| 2449 | // recurse. |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 2450 | if (PP->isCurrentLexer(this)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2451 | // Start a new token. If this is a #include or something, the PP may |
| 2452 | // want us starting at the beginning of the line again. If so, set |
Chris Lattner | 515f43f | 2010-04-12 23:04:41 +0000 | [diff] [blame] | 2453 | // the StartOfLine flag and clear LeadingSpace. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2454 | if (IsAtStartOfLine) { |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 2455 | Result.setFlag(Token::StartOfLine); |
Chris Lattner | 515f43f | 2010-04-12 23:04:41 +0000 | [diff] [blame] | 2456 | Result.clearFlag(Token::LeadingSpace); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2457 | IsAtStartOfLine = false; |
| 2458 | } |
| 2459 | goto LexNextToken; // GCC isn't tail call eliminating. |
| 2460 | } |
Chris Lattner | 168ae2d | 2007-10-17 20:41:00 +0000 | [diff] [blame] | 2461 | return PP->Lex(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2462 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2463 | |
Chris Lattner | e91e932 | 2009-03-18 20:58:27 +0000 | [diff] [blame] | 2464 | Kind = tok::hash; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2465 | } |
| 2466 | break; |
| 2467 | |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2468 | case '@': |
| 2469 | // Objective C support. |
| 2470 | if (CurPtr[-1] == '@' && Features.ObjC1) |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2471 | Kind = tok::at; |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2472 | else |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2473 | Kind = tok::unknown; |
Chris Lattner | 3a57077 | 2008-01-03 17:58:54 +0000 | [diff] [blame] | 2474 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2475 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2476 | case '\\': |
| 2477 | // FIXME: UCN's. |
| 2478 | // FALL THROUGH. |
| 2479 | default: |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2480 | Kind = tok::unknown; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2481 | break; |
| 2482 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2483 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2484 | // Notify MIOpt that we read a non-whitespace/non-comment token. |
| 2485 | MIOpt.ReadToken(); |
| 2486 | |
| 2487 | // Update the location of token as well as BufferPtr. |
Chris Lattner | 9e6293d | 2008-10-12 04:51:35 +0000 | [diff] [blame] | 2488 | FormTokenWithChars(Result, CurPtr, Kind); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2489 | } |