1 //===--- LiteralSupport.cpp - Code to parse and process literals ----------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the NumericLiteralParser, CharLiteralParser, and 11 // StringLiteralParser interfaces. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "clang/Lex/LiteralSupport.h" 16 #include "clang/Basic/CharInfo.h" 17 #include "clang/Basic/LangOptions.h" 18 #include "clang/Basic/SourceLocation.h" 19 #include "clang/Basic/TargetInfo.h" 20 #include "clang/Lex/LexDiagnostic.h" 21 #include "clang/Lex/Lexer.h" 22 #include "clang/Lex/Preprocessor.h" 23 #include "clang/Lex/Token.h" 24 #include "llvm/ADT/APInt.h" 25 #include "llvm/ADT/SmallVector.h" 26 #include "llvm/ADT/StringExtras.h" 27 #include "llvm/ADT/StringSwitch.h" 28 #include "llvm/Support/ConvertUTF.h" 29 #include "llvm/Support/ErrorHandling.h" 30 #include <algorithm> 31 #include <cassert> 32 #include <cstddef> 33 #include <cstdint> 34 #include <cstring> 35 #include <string> 36 37 using namespace clang; 38 39 static unsigned getCharWidth(tok::TokenKind kind, const TargetInfo &Target) { 40 switch (kind) { 41 default: llvm_unreachable("Unknown token type!"); 42 case tok::char_constant: 43 case tok::string_literal: 44 case tok::utf8_char_constant: 45 case tok::utf8_string_literal: 46 return Target.getCharWidth(); 47 case tok::wide_char_constant: 48 case tok::wide_string_literal: 49 return Target.getWCharWidth(); 50 case tok::utf16_char_constant: 51 case tok::utf16_string_literal: 52 return Target.getChar16Width(); 53 case tok::utf32_char_constant: 54 case tok::utf32_string_literal: 55 return Target.getChar32Width(); 56 } 57 } 58 59 static CharSourceRange MakeCharSourceRange(const LangOptions &Features, 60 FullSourceLoc TokLoc, 61 const char *TokBegin, 62 const char *TokRangeBegin, 63 const char *TokRangeEnd) { 64 SourceLocation Begin = 65 Lexer::AdvanceToTokenCharacter(TokLoc, TokRangeBegin - TokBegin, 66 TokLoc.getManager(), Features); 67 SourceLocation End = 68 Lexer::AdvanceToTokenCharacter(Begin, TokRangeEnd - TokRangeBegin, 69 TokLoc.getManager(), Features); 70 return CharSourceRange::getCharRange(Begin, End); 71 } 72 73 /// \brief Produce a diagnostic highlighting some portion of a literal. 74 /// 75 /// Emits the diagnostic \p DiagID, highlighting the range of characters from 76 /// \p TokRangeBegin (inclusive) to \p TokRangeEnd (exclusive), which must be 77 /// a substring of a spelling buffer for the token beginning at \p TokBegin. 78 static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, 79 const LangOptions &Features, FullSourceLoc TokLoc, 80 const char *TokBegin, const char *TokRangeBegin, 81 const char *TokRangeEnd, unsigned DiagID) { 82 SourceLocation Begin = 83 Lexer::AdvanceToTokenCharacter(TokLoc, TokRangeBegin - TokBegin, 84 TokLoc.getManager(), Features); 85 return Diags->Report(Begin, DiagID) << 86 MakeCharSourceRange(Features, TokLoc, TokBegin, TokRangeBegin, TokRangeEnd); 87 } 88 89 /// ProcessCharEscape - Parse a standard C escape sequence, which can occur in 90 /// either a character or a string literal. 91 static unsigned ProcessCharEscape(const char *ThisTokBegin, 92 const char *&ThisTokBuf, 93 const char *ThisTokEnd, bool &HadError, 94 FullSourceLoc Loc, unsigned CharWidth, 95 DiagnosticsEngine *Diags, 96 const LangOptions &Features) { 97 const char *EscapeBegin = ThisTokBuf; 98 99 // Skip the '\' char. 100 ++ThisTokBuf; 101 102 // We know that this character can't be off the end of the buffer, because 103 // that would have been \", which would not have been the end of string. 104 unsigned ResultChar = *ThisTokBuf++; 105 switch (ResultChar) { 106 // These map to themselves. 107 case '\\': case '\'': case '"': case '?': break; 108 109 // These have fixed mappings. 110 case 'a': 111 // TODO: K&R: the meaning of '\\a' is different in traditional C 112 ResultChar = 7; 113 break; 114 case 'b': 115 ResultChar = 8; 116 break; 117 case 'e': 118 if (Diags) 119 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 120 diag::ext_nonstandard_escape) << "e"; 121 ResultChar = 27; 122 break; 123 case 'E': 124 if (Diags) 125 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 126 diag::ext_nonstandard_escape) << "E"; 127 ResultChar = 27; 128 break; 129 case 'f': 130 ResultChar = 12; 131 break; 132 case 'n': 133 ResultChar = 10; 134 break; 135 case 'r': 136 ResultChar = 13; 137 break; 138 case 't': 139 ResultChar = 9; 140 break; 141 case 'v': 142 ResultChar = 11; 143 break; 144 case 'x': { // Hex escape. 145 ResultChar = 0; 146 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { 147 if (Diags) 148 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 149 diag::err_hex_escape_no_digits) << "x"; 150 HadError = true; 151 break; 152 } 153 154 // Hex escapes are a maximal series of hex digits. 155 bool Overflow = false; 156 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) { 157 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]); 158 if (CharVal == -1) break; 159 // About to shift out a digit? 160 if (ResultChar & 0xF0000000) 161 Overflow = true; 162 ResultChar <<= 4; 163 ResultChar |= CharVal; 164 } 165 166 // See if any bits will be truncated when evaluated as a character. 167 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) { 168 Overflow = true; 169 ResultChar &= ~0U >> (32-CharWidth); 170 } 171 172 // Check for overflow. 173 if (Overflow && Diags) // Too many digits to fit in 174 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 175 diag::err_escape_too_large) << 0; 176 break; 177 } 178 case '0': case '1': case '2': case '3': 179 case '4': case '5': case '6': case '7': { 180 // Octal escapes. 181 --ThisTokBuf; 182 ResultChar = 0; 183 184 // Octal escapes are a series of octal digits with maximum length 3. 185 // "\0123" is a two digit sequence equal to "\012" "3". 186 unsigned NumDigits = 0; 187 do { 188 ResultChar <<= 3; 189 ResultChar |= *ThisTokBuf++ - '0'; 190 ++NumDigits; 191 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 && 192 ThisTokBuf[0] >= '0' && ThisTokBuf[0] <= '7'); 193 194 // Check for overflow. Reject '\777', but not L'\777'. 195 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) { 196 if (Diags) 197 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 198 diag::err_escape_too_large) << 1; 199 ResultChar &= ~0U >> (32-CharWidth); 200 } 201 break; 202 } 203 204 // Otherwise, these are not valid escapes. 205 case '(': case '{': case '[': case '%': 206 // GCC accepts these as extensions. We warn about them as such though. 207 if (Diags) 208 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 209 diag::ext_nonstandard_escape) 210 << std::string(1, ResultChar); 211 break; 212 default: 213 if (!Diags) 214 break; 215 216 if (isPrintable(ResultChar)) 217 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 218 diag::ext_unknown_escape) 219 << std::string(1, ResultChar); 220 else 221 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 222 diag::ext_unknown_escape) 223 << "x" + llvm::utohexstr(ResultChar); 224 break; 225 } 226 227 return ResultChar; 228 } 229 230 static void appendCodePoint(unsigned Codepoint, 231 llvm::SmallVectorImpl<char> &Str) { 232 char ResultBuf[4]; 233 char *ResultPtr = ResultBuf; 234 bool Res = llvm::ConvertCodePointToUTF8(Codepoint, ResultPtr); 235 (void)Res; 236 assert(Res && "Unexpected conversion failure"); 237 Str.append(ResultBuf, ResultPtr); 238 } 239 240 void clang::expandUCNs(SmallVectorImpl<char> &Buf, StringRef Input) { 241 for (StringRef::iterator I = Input.begin(), E = Input.end(); I != E; ++I) { 242 if (*I != '\\') { 243 Buf.push_back(*I); 244 continue; 245 } 246 247 ++I; 248 assert(*I == 'u' || *I == 'U'); 249 250 unsigned NumHexDigits; 251 if (*I == 'u') 252 NumHexDigits = 4; 253 else 254 NumHexDigits = 8; 255 256 assert(I + NumHexDigits <= E); 257 258 uint32_t CodePoint = 0; 259 for (++I; NumHexDigits != 0; ++I, --NumHexDigits) { 260 unsigned Value = llvm::hexDigitValue(*I); 261 assert(Value != -1U); 262 263 CodePoint <<= 4; 264 CodePoint += Value; 265 } 266 267 appendCodePoint(CodePoint, Buf); 268 --I; 269 } 270 } 271 272 /// ProcessUCNEscape - Read the Universal Character Name, check constraints and 273 /// return the UTF32. 274 static bool ProcessUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, 275 const char *ThisTokEnd, 276 uint32_t &UcnVal, unsigned short &UcnLen, 277 FullSourceLoc Loc, DiagnosticsEngine *Diags, 278 const LangOptions &Features, 279 bool in_char_string_literal = false) { 280 const char *UcnBegin = ThisTokBuf; 281 282 // Skip the '\u' char's. 283 ThisTokBuf += 2; 284 285 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { 286 if (Diags) 287 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf, 288 diag::err_hex_escape_no_digits) << StringRef(&ThisTokBuf[-1], 1); 289 return false; 290 } 291 UcnLen = (ThisTokBuf[-1] == 'u' ? 4 : 8); 292 unsigned short UcnLenSave = UcnLen; 293 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) { 294 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]); 295 if (CharVal == -1) break; 296 UcnVal <<= 4; 297 UcnVal |= CharVal; 298 } 299 // If we didn't consume the proper number of digits, there is a problem. 300 if (UcnLenSave) { 301 if (Diags) 302 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf, 303 diag::err_ucn_escape_incomplete); 304 return false; 305 } 306 307 // Check UCN constraints (C99 6.4.3p2) [C++11 lex.charset p2] 308 if ((0xD800 <= UcnVal && UcnVal <= 0xDFFF) || // surrogate codepoints 309 UcnVal > 0x10FFFF) { // maximum legal UTF32 value 310 if (Diags) 311 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf, 312 diag::err_ucn_escape_invalid); 313 return false; 314 } 315 316 // C++11 allows UCNs that refer to control characters and basic source 317 // characters inside character and string literals 318 if (UcnVal < 0xa0 && 319 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) { // $, @, ` 320 bool IsError = (!Features.CPlusPlus11 || !in_char_string_literal); 321 if (Diags) { 322 char BasicSCSChar = UcnVal; 323 if (UcnVal >= 0x20 && UcnVal < 0x7f) 324 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf, 325 IsError ? diag::err_ucn_escape_basic_scs : 326 diag::warn_cxx98_compat_literal_ucn_escape_basic_scs) 327 << StringRef(&BasicSCSChar, 1); 328 else 329 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf, 330 IsError ? diag::err_ucn_control_character : 331 diag::warn_cxx98_compat_literal_ucn_control_character); 332 } 333 if (IsError) 334 return false; 335 } 336 337 if (!Features.CPlusPlus && !Features.C99 && Diags) 338 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf, 339 diag::warn_ucn_not_valid_in_c89_literal); 340 341 return true; 342 } 343 344 /// MeasureUCNEscape - Determine the number of bytes within the resulting string 345 /// which this UCN will occupy. 346 static int MeasureUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, 347 const char *ThisTokEnd, unsigned CharByteWidth, 348 const LangOptions &Features, bool &HadError) { 349 // UTF-32: 4 bytes per escape. 350 if (CharByteWidth == 4) 351 return 4; 352 353 uint32_t UcnVal = 0; 354 unsigned short UcnLen = 0; 355 FullSourceLoc Loc; 356 357 if (!ProcessUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, UcnVal, 358 UcnLen, Loc, nullptr, Features, true)) { 359 HadError = true; 360 return 0; 361 } 362 363 // UTF-16: 2 bytes for BMP, 4 bytes otherwise. 364 if (CharByteWidth == 2) 365 return UcnVal <= 0xFFFF ? 2 : 4; 366 367 // UTF-8. 368 if (UcnVal < 0x80) 369 return 1; 370 if (UcnVal < 0x800) 371 return 2; 372 if (UcnVal < 0x10000) 373 return 3; 374 return 4; 375 } 376 377 /// EncodeUCNEscape - Read the Universal Character Name, check constraints and 378 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of 379 /// StringLiteralParser. When we decide to implement UCN's for identifiers, 380 /// we will likely rework our support for UCN's. 381 static void EncodeUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, 382 const char *ThisTokEnd, 383 char *&ResultBuf, bool &HadError, 384 FullSourceLoc Loc, unsigned CharByteWidth, 385 DiagnosticsEngine *Diags, 386 const LangOptions &Features) { 387 typedef uint32_t UTF32; 388 UTF32 UcnVal = 0; 389 unsigned short UcnLen = 0; 390 if (!ProcessUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, UcnVal, UcnLen, 391 Loc, Diags, Features, true)) { 392 HadError = true; 393 return; 394 } 395 396 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth == 4) && 397 "only character widths of 1, 2, or 4 bytes supported"); 398 399 (void)UcnLen; 400 assert((UcnLen== 4 || UcnLen== 8) && "only ucn length of 4 or 8 supported"); 401 402 if (CharByteWidth == 4) { 403 // FIXME: Make the type of the result buffer correct instead of 404 // using reinterpret_cast. 405 llvm::UTF32 *ResultPtr = reinterpret_cast<llvm::UTF32*>(ResultBuf); 406 *ResultPtr = UcnVal; 407 ResultBuf += 4; 408 return; 409 } 410 411 if (CharByteWidth == 2) { 412 // FIXME: Make the type of the result buffer correct instead of 413 // using reinterpret_cast. 414 llvm::UTF16 *ResultPtr = reinterpret_cast<llvm::UTF16*>(ResultBuf); 415 416 if (UcnVal <= (UTF32)0xFFFF) { 417 *ResultPtr = UcnVal; 418 ResultBuf += 2; 419 return; 420 } 421 422 // Convert to UTF16. 423 UcnVal -= 0x10000; 424 *ResultPtr = 0xD800 + (UcnVal >> 10); 425 *(ResultPtr+1) = 0xDC00 + (UcnVal & 0x3FF); 426 ResultBuf += 4; 427 return; 428 } 429 430 assert(CharByteWidth == 1 && "UTF-8 encoding is only for 1 byte characters"); 431 432 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8. 433 // The conversion below was inspired by: 434 // http://www.unicode.org/Public/PROGRAMS/CVTUTF/ConvertUTF.c 435 // First, we determine how many bytes the result will require. 436 typedef uint8_t UTF8; 437 438 unsigned short bytesToWrite = 0; 439 if (UcnVal < (UTF32)0x80) 440 bytesToWrite = 1; 441 else if (UcnVal < (UTF32)0x800) 442 bytesToWrite = 2; 443 else if (UcnVal < (UTF32)0x10000) 444 bytesToWrite = 3; 445 else 446 bytesToWrite = 4; 447 448 const unsigned byteMask = 0xBF; 449 const unsigned byteMark = 0x80; 450 451 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed 452 // into the first byte, depending on how many bytes follow. 453 static const UTF8 firstByteMark[5] = { 454 0x00, 0x00, 0xC0, 0xE0, 0xF0 455 }; 456 // Finally, we write the bytes into ResultBuf. 457 ResultBuf += bytesToWrite; 458 switch (bytesToWrite) { // note: everything falls through. 459 case 4: 460 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6; 461 LLVM_FALLTHROUGH; 462 case 3: 463 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6; 464 LLVM_FALLTHROUGH; 465 case 2: 466 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6; 467 LLVM_FALLTHROUGH; 468 case 1: 469 *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]); 470 } 471 // Update the buffer. 472 ResultBuf += bytesToWrite; 473 } 474 475 /// integer-constant: [C99 6.4.4.1] 476 /// decimal-constant integer-suffix 477 /// octal-constant integer-suffix 478 /// hexadecimal-constant integer-suffix 479 /// binary-literal integer-suffix [GNU, C++1y] 480 /// user-defined-integer-literal: [C++11 lex.ext] 481 /// decimal-literal ud-suffix 482 /// octal-literal ud-suffix 483 /// hexadecimal-literal ud-suffix 484 /// binary-literal ud-suffix [GNU, C++1y] 485 /// decimal-constant: 486 /// nonzero-digit 487 /// decimal-constant digit 488 /// octal-constant: 489 /// 0 490 /// octal-constant octal-digit 491 /// hexadecimal-constant: 492 /// hexadecimal-prefix hexadecimal-digit 493 /// hexadecimal-constant hexadecimal-digit 494 /// hexadecimal-prefix: one of 495 /// 0x 0X 496 /// binary-literal: 497 /// 0b binary-digit 498 /// 0B binary-digit 499 /// binary-literal binary-digit 500 /// integer-suffix: 501 /// unsigned-suffix [long-suffix] 502 /// unsigned-suffix [long-long-suffix] 503 /// long-suffix [unsigned-suffix] 504 /// long-long-suffix [unsigned-sufix] 505 /// nonzero-digit: 506 /// 1 2 3 4 5 6 7 8 9 507 /// octal-digit: 508 /// 0 1 2 3 4 5 6 7 509 /// hexadecimal-digit: 510 /// 0 1 2 3 4 5 6 7 8 9 511 /// a b c d e f 512 /// A B C D E F 513 /// binary-digit: 514 /// 0 515 /// 1 516 /// unsigned-suffix: one of 517 /// u U 518 /// long-suffix: one of 519 /// l L 520 /// long-long-suffix: one of 521 /// ll LL 522 /// 523 /// floating-constant: [C99 6.4.4.2] 524 /// TODO: add rules... 525 /// 526 NumericLiteralParser::NumericLiteralParser(StringRef TokSpelling, 527 SourceLocation TokLoc, 528 Preprocessor &PP) 529 : PP(PP), ThisTokBegin(TokSpelling.begin()), ThisTokEnd(TokSpelling.end()) { 530 531 // This routine assumes that the range begin/end matches the regex for integer 532 // and FP constants (specifically, the 'pp-number' regex), and assumes that 533 // the byte at "*end" is both valid and not part of the regex. Because of 534 // this, it doesn't have to check for 'overscan' in various places. 535 assert(!isPreprocessingNumberBody(*ThisTokEnd) && "didn't maximally munch?"); 536 537 s = DigitsBegin = ThisTokBegin; 538 saw_exponent = false; 539 saw_period = false; 540 saw_ud_suffix = false; 541 isLong = false; 542 isUnsigned = false; 543 isLongLong = false; 544 isHalf = false; 545 isFloat = false; 546 isImaginary = false; 547 isFloat16 = false; 548 isFloat128 = false; 549 MicrosoftInteger = 0; 550 hadError = false; 551 552 if (*s == '0') { // parse radix 553 ParseNumberStartingWithZero(TokLoc); 554 if (hadError) 555 return; 556 } else { // the first digit is non-zero 557 radix = 10; 558 s = SkipDigits(s); 559 if (s == ThisTokEnd) { 560 // Done. 561 } else { 562 ParseDecimalOrOctalCommon(TokLoc); 563 if (hadError) 564 return; 565 } 566 } 567 568 SuffixBegin = s; 569 checkSeparator(TokLoc, s, CSK_AfterDigits); 570 571 // Parse the suffix. At this point we can classify whether we have an FP or 572 // integer constant. 573 bool isFPConstant = isFloatingLiteral(); 574 575 // Loop over all of the characters of the suffix. If we see something bad, 576 // we break out of the loop. 577 for (; s != ThisTokEnd; ++s) { 578 switch (*s) { 579 case 'h': // FP Suffix for "half". 580 case 'H': 581 // OpenCL Extension v1.2 s9.5 - h or H suffix for half type. 582 if (!PP.getLangOpts().Half) break; 583 if (!isFPConstant) break; // Error for integer constant. 584 if (isHalf || isFloat || isLong) break; // HH, FH, LH invalid. 585 isHalf = true; 586 continue; // Success. 587 case 'f': // FP Suffix for "float" 588 case 'F': 589 if (!isFPConstant) break; // Error for integer constant. 590 if (isHalf || isFloat || isLong || isFloat128) 591 break; // HF, FF, LF, QF invalid. 592 593 if (s + 2 < ThisTokEnd && s[1] == '1' && s[2] == '6') { 594 s += 2; // success, eat up 2 characters. 595 isFloat16 = true; 596 continue; 597 } 598 599 isFloat = true; 600 continue; // Success. 601 case 'q': // FP Suffix for "__float128" 602 case 'Q': 603 if (!isFPConstant) break; // Error for integer constant. 604 if (isHalf || isFloat || isLong || isFloat128) 605 break; // HQ, FQ, LQ, QQ invalid. 606 isFloat128 = true; 607 continue; // Success. 608 case 'u': 609 case 'U': 610 if (isFPConstant) break; // Error for floating constant. 611 if (isUnsigned) break; // Cannot be repeated. 612 isUnsigned = true; 613 continue; // Success. 614 case 'l': 615 case 'L': 616 if (isLong || isLongLong) break; // Cannot be repeated. 617 if (isHalf || isFloat || isFloat128) break; // LH, LF, LQ invalid. 618 619 // Check for long long. The L's need to be adjacent and the same case. 620 if (s[1] == s[0]) { 621 assert(s + 1 < ThisTokEnd && "didn't maximally munch?"); 622 if (isFPConstant) break; // long long invalid for floats. 623 isLongLong = true; 624 ++s; // Eat both of them. 625 } else { 626 isLong = true; 627 } 628 continue; // Success. 629 case 'i': 630 case 'I': 631 if (PP.getLangOpts().MicrosoftExt) { 632 if (isLong || isLongLong || MicrosoftInteger) 633 break; 634 635 if (!isFPConstant) { 636 // Allow i8, i16, i32, and i64. 637 switch (s[1]) { 638 case '8': 639 s += 2; // i8 suffix 640 MicrosoftInteger = 8; 641 break; 642 case '1': 643 if (s[2] == '6') { 644 s += 3; // i16 suffix 645 MicrosoftInteger = 16; 646 } 647 break; 648 case '3': 649 if (s[2] == '2') { 650 s += 3; // i32 suffix 651 MicrosoftInteger = 32; 652 } 653 break; 654 case '6': 655 if (s[2] == '4') { 656 s += 3; // i64 suffix 657 MicrosoftInteger = 64; 658 } 659 break; 660 default: 661 break; 662 } 663 } 664 if (MicrosoftInteger) { 665 assert(s <= ThisTokEnd && "didn't maximally munch?"); 666 break; 667 } 668 } 669 // fall through. 670 case 'j': 671 case 'J': 672 if (isImaginary) break; // Cannot be repeated. 673 isImaginary = true; 674 continue; // Success. 675 } 676 // If we reached here, there was an error or a ud-suffix. 677 break; 678 } 679 680 // "i", "if", and "il" are user-defined suffixes in C++1y. 681 if (s != ThisTokEnd || isImaginary) { 682 // FIXME: Don't bother expanding UCNs if !tok.hasUCN(). 683 expandUCNs(UDSuffixBuf, StringRef(SuffixBegin, ThisTokEnd - SuffixBegin)); 684 if (isValidUDSuffix(PP.getLangOpts(), UDSuffixBuf)) { 685 if (!isImaginary) { 686 // Any suffix pieces we might have parsed are actually part of the 687 // ud-suffix. 688 isLong = false; 689 isUnsigned = false; 690 isLongLong = false; 691 isFloat = false; 692 isFloat16 = false; 693 isHalf = false; 694 isImaginary = false; 695 MicrosoftInteger = 0; 696 } 697 698 saw_ud_suffix = true; 699 return; 700 } 701 702 if (s != ThisTokEnd) { 703 // Report an error if there are any. 704 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, SuffixBegin - ThisTokBegin), 705 diag::err_invalid_suffix_constant) 706 << StringRef(SuffixBegin, ThisTokEnd - SuffixBegin) << isFPConstant; 707 hadError = true; 708 } 709 } 710 } 711 712 /// ParseDecimalOrOctalCommon - This method is called for decimal or octal 713 /// numbers. It issues an error for illegal digits, and handles floating point 714 /// parsing. If it detects a floating point number, the radix is set to 10. 715 void NumericLiteralParser::ParseDecimalOrOctalCommon(SourceLocation TokLoc){ 716 assert((radix == 8 || radix == 10) && "Unexpected radix"); 717 718 // If we have a hex digit other than 'e' (which denotes a FP exponent) then 719 // the code is using an incorrect base. 720 if (isHexDigit(*s) && *s != 'e' && *s != 'E') { 721 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin), 722 diag::err_invalid_digit) << StringRef(s, 1) << (radix == 8 ? 1 : 0); 723 hadError = true; 724 return; 725 } 726 727 if (*s == '.') { 728 checkSeparator(TokLoc, s, CSK_AfterDigits); 729 s++; 730 radix = 10; 731 saw_period = true; 732 checkSeparator(TokLoc, s, CSK_BeforeDigits); 733 s = SkipDigits(s); // Skip suffix. 734 } 735 if (*s == 'e' || *s == 'E') { // exponent 736 checkSeparator(TokLoc, s, CSK_AfterDigits); 737 const char *Exponent = s; 738 s++; 739 radix = 10; 740 saw_exponent = true; 741 if (s != ThisTokEnd && (*s == '+' || *s == '-')) s++; // sign 742 const char *first_non_digit = SkipDigits(s); 743 if (containsDigits(s, first_non_digit)) { 744 checkSeparator(TokLoc, s, CSK_BeforeDigits); 745 s = first_non_digit; 746 } else { 747 if (!hadError) { 748 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), 749 diag::err_exponent_has_no_digits); 750 hadError = true; 751 } 752 return; 753 } 754 } 755 } 756 757 /// Determine whether a suffix is a valid ud-suffix. We avoid treating reserved 758 /// suffixes as ud-suffixes, because the diagnostic experience is better if we 759 /// treat it as an invalid suffix. 760 bool NumericLiteralParser::isValidUDSuffix(const LangOptions &LangOpts, 761 StringRef Suffix) { 762 if (!LangOpts.CPlusPlus11 || Suffix.empty()) 763 return false; 764 765 // By C++11 [lex.ext]p10, ud-suffixes starting with an '_' are always valid. 766 if (Suffix[0] == '_') 767 return true; 768 769 // In C++11, there are no library suffixes. 770 if (!LangOpts.CPlusPlus14) 771 return false; 772 773 // In C++1y, "s", "h", "min", "ms", "us", and "ns" are used in the library. 774 // Per tweaked N3660, "il", "i", and "if" are also used in the library. 775 return llvm::StringSwitch<bool>(Suffix) 776 .Cases("h", "min", "s", true) 777 .Cases("ms", "us", "ns", true) 778 .Cases("il", "i", "if", true) 779 .Default(false); 780 } 781 782 void NumericLiteralParser::checkSeparator(SourceLocation TokLoc, 783 const char *Pos, 784 CheckSeparatorKind IsAfterDigits) { 785 if (IsAfterDigits == CSK_AfterDigits) { 786 if (Pos == ThisTokBegin) 787 return; 788 --Pos; 789 } else if (Pos == ThisTokEnd) 790 return; 791 792 if (isDigitSeparator(*Pos)) { 793 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Pos - ThisTokBegin), 794 diag::err_digit_separator_not_between_digits) 795 << IsAfterDigits; 796 hadError = true; 797 } 798 } 799 800 /// ParseNumberStartingWithZero - This method is called when the first character 801 /// of the number is found to be a zero. This means it is either an octal 802 /// number (like '04') or a hex number ('0x123a') a binary number ('0b1010') or 803 /// a floating point number (01239.123e4). Eat the prefix, determining the 804 /// radix etc. 805 void NumericLiteralParser::ParseNumberStartingWithZero(SourceLocation TokLoc) { 806 assert(s[0] == '0' && "Invalid method call"); 807 s++; 808 809 int c1 = s[0]; 810 811 // Handle a hex number like 0x1234. 812 if ((c1 == 'x' || c1 == 'X') && (isHexDigit(s[1]) || s[1] == '.')) { 813 s++; 814 assert(s < ThisTokEnd && "didn't maximally munch?"); 815 radix = 16; 816 DigitsBegin = s; 817 s = SkipHexDigits(s); 818 bool HasSignificandDigits = containsDigits(DigitsBegin, s); 819 if (s == ThisTokEnd) { 820 // Done. 821 } else if (*s == '.') { 822 s++; 823 saw_period = true; 824 const char *floatDigitsBegin = s; 825 s = SkipHexDigits(s); 826 if (containsDigits(floatDigitsBegin, s)) 827 HasSignificandDigits = true; 828 if (HasSignificandDigits) 829 checkSeparator(TokLoc, floatDigitsBegin, CSK_BeforeDigits); 830 } 831 832 if (!HasSignificandDigits) { 833 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s - ThisTokBegin), 834 diag::err_hex_constant_requires) 835 << PP.getLangOpts().CPlusPlus << 1; 836 hadError = true; 837 return; 838 } 839 840 // A binary exponent can appear with or with a '.'. If dotted, the 841 // binary exponent is required. 842 if (*s == 'p' || *s == 'P') { 843 checkSeparator(TokLoc, s, CSK_AfterDigits); 844 const char *Exponent = s; 845 s++; 846 saw_exponent = true; 847 if (s != ThisTokEnd && (*s == '+' || *s == '-')) s++; // sign 848 const char *first_non_digit = SkipDigits(s); 849 if (!containsDigits(s, first_non_digit)) { 850 if (!hadError) { 851 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), 852 diag::err_exponent_has_no_digits); 853 hadError = true; 854 } 855 return; 856 } 857 checkSeparator(TokLoc, s, CSK_BeforeDigits); 858 s = first_non_digit; 859 860 if (!PP.getLangOpts().HexFloats) 861 PP.Diag(TokLoc, PP.getLangOpts().CPlusPlus 862 ? diag::ext_hex_literal_invalid 863 : diag::ext_hex_constant_invalid); 864 else if (PP.getLangOpts().CPlusPlus17) 865 PP.Diag(TokLoc, diag::warn_cxx17_hex_literal); 866 } else if (saw_period) { 867 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s - ThisTokBegin), 868 diag::err_hex_constant_requires) 869 << PP.getLangOpts().CPlusPlus << 0; 870 hadError = true; 871 } 872 return; 873 } 874 875 // Handle simple binary numbers 0b01010 876 if ((c1 == 'b' || c1 == 'B') && (s[1] == '0' || s[1] == '1')) { 877 // 0b101010 is a C++1y / GCC extension. 878 PP.Diag(TokLoc, 879 PP.getLangOpts().CPlusPlus14 880 ? diag::warn_cxx11_compat_binary_literal 881 : PP.getLangOpts().CPlusPlus 882 ? diag::ext_binary_literal_cxx14 883 : diag::ext_binary_literal); 884 ++s; 885 assert(s < ThisTokEnd && "didn't maximally munch?"); 886 radix = 2; 887 DigitsBegin = s; 888 s = SkipBinaryDigits(s); 889 if (s == ThisTokEnd) { 890 // Done. 891 } else if (isHexDigit(*s)) { 892 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin), 893 diag::err_invalid_digit) << StringRef(s, 1) << 2; 894 hadError = true; 895 } 896 // Other suffixes will be diagnosed by the caller. 897 return; 898 } 899 900 // For now, the radix is set to 8. If we discover that we have a 901 // floating point constant, the radix will change to 10. Octal floating 902 // point constants are not permitted (only decimal and hexadecimal). 903 radix = 8; 904 DigitsBegin = s; 905 s = SkipOctalDigits(s); 906 if (s == ThisTokEnd) 907 return; // Done, simple octal number like 01234 908 909 // If we have some other non-octal digit that *is* a decimal digit, see if 910 // this is part of a floating point number like 094.123 or 09e1. 911 if (isDigit(*s)) { 912 const char *EndDecimal = SkipDigits(s); 913 if (EndDecimal[0] == '.' || EndDecimal[0] == 'e' || EndDecimal[0] == 'E') { 914 s = EndDecimal; 915 radix = 10; 916 } 917 } 918 919 ParseDecimalOrOctalCommon(TokLoc); 920 } 921 922 static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits) { 923 switch (Radix) { 924 case 2: 925 return NumDigits <= 64; 926 case 8: 927 return NumDigits <= 64 / 3; // Digits are groups of 3 bits. 928 case 10: 929 return NumDigits <= 19; // floor(log10(2^64)) 930 case 16: 931 return NumDigits <= 64 / 4; // Digits are groups of 4 bits. 932 default: 933 llvm_unreachable("impossible Radix"); 934 } 935 } 936 937 /// GetIntegerValue - Convert this numeric literal value to an APInt that 938 /// matches Val's input width. If there is an overflow, set Val to the low bits 939 /// of the result and return true. Otherwise, return false. 940 bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) { 941 // Fast path: Compute a conservative bound on the maximum number of 942 // bits per digit in this radix. If we can't possibly overflow a 943 // uint64 based on that bound then do the simple conversion to 944 // integer. This avoids the expensive overflow checking below, and 945 // handles the common cases that matter (small decimal integers and 946 // hex/octal values which don't overflow). 947 const unsigned NumDigits = SuffixBegin - DigitsBegin; 948 if (alwaysFitsInto64Bits(radix, NumDigits)) { 949 uint64_t N = 0; 950 for (const char *Ptr = DigitsBegin; Ptr != SuffixBegin; ++Ptr) 951 if (!isDigitSeparator(*Ptr)) 952 N = N * radix + llvm::hexDigitValue(*Ptr); 953 954 // This will truncate the value to Val's input width. Simply check 955 // for overflow by comparing. 956 Val = N; 957 return Val.getZExtValue() != N; 958 } 959 960 Val = 0; 961 const char *Ptr = DigitsBegin; 962 963 llvm::APInt RadixVal(Val.getBitWidth(), radix); 964 llvm::APInt CharVal(Val.getBitWidth(), 0); 965 llvm::APInt OldVal = Val; 966 967 bool OverflowOccurred = false; 968 while (Ptr < SuffixBegin) { 969 if (isDigitSeparator(*Ptr)) { 970 ++Ptr; 971 continue; 972 } 973 974 unsigned C = llvm::hexDigitValue(*Ptr++); 975 976 // If this letter is out of bound for this radix, reject it. 977 assert(C < radix && "NumericLiteralParser ctor should have rejected this"); 978 979 CharVal = C; 980 981 // Add the digit to the value in the appropriate radix. If adding in digits 982 // made the value smaller, then this overflowed. 983 OldVal = Val; 984 985 // Multiply by radix, did overflow occur on the multiply? 986 Val *= RadixVal; 987 OverflowOccurred |= Val.udiv(RadixVal) != OldVal; 988 989 // Add value, did overflow occur on the value? 990 // (a + b) ult b <=> overflow 991 Val += CharVal; 992 OverflowOccurred |= Val.ult(CharVal); 993 } 994 return OverflowOccurred; 995 } 996 997 llvm::APFloat::opStatus 998 NumericLiteralParser::GetFloatValue(llvm::APFloat &Result) { 999 using llvm::APFloat; 1000 1001 unsigned n = std::min(SuffixBegin - ThisTokBegin, ThisTokEnd - ThisTokBegin); 1002 1003 llvm::SmallString<16> Buffer; 1004 StringRef Str(ThisTokBegin, n); 1005 if (Str.find('\'') != StringRef::npos) { 1006 Buffer.reserve(n); 1007 std::remove_copy_if(Str.begin(), Str.end(), std::back_inserter(Buffer), 1008 &isDigitSeparator); 1009 Str = Buffer; 1010 } 1011 1012 return Result.convertFromString(Str, APFloat::rmNearestTiesToEven); 1013 } 1014 1015 /// \verbatim 1016 /// user-defined-character-literal: [C++11 lex.ext] 1017 /// character-literal ud-suffix 1018 /// ud-suffix: 1019 /// identifier 1020 /// character-literal: [C++11 lex.ccon] 1021 /// ' c-char-sequence ' 1022 /// u' c-char-sequence ' 1023 /// U' c-char-sequence ' 1024 /// L' c-char-sequence ' 1025 /// u8' c-char-sequence ' [C++1z lex.ccon] 1026 /// c-char-sequence: 1027 /// c-char 1028 /// c-char-sequence c-char 1029 /// c-char: 1030 /// any member of the source character set except the single-quote ', 1031 /// backslash \, or new-line character 1032 /// escape-sequence 1033 /// universal-character-name 1034 /// escape-sequence: 1035 /// simple-escape-sequence 1036 /// octal-escape-sequence 1037 /// hexadecimal-escape-sequence 1038 /// simple-escape-sequence: 1039 /// one of \' \" \? \\ \a \b \f \n \r \t \v 1040 /// octal-escape-sequence: 1041 /// \ octal-digit 1042 /// \ octal-digit octal-digit 1043 /// \ octal-digit octal-digit octal-digit 1044 /// hexadecimal-escape-sequence: 1045 /// \x hexadecimal-digit 1046 /// hexadecimal-escape-sequence hexadecimal-digit 1047 /// universal-character-name: [C++11 lex.charset] 1048 /// \u hex-quad 1049 /// \U hex-quad hex-quad 1050 /// hex-quad: 1051 /// hex-digit hex-digit hex-digit hex-digit 1052 /// \endverbatim 1053 /// 1054 CharLiteralParser::CharLiteralParser(const char *begin, const char *end, 1055 SourceLocation Loc, Preprocessor &PP, 1056 tok::TokenKind kind) { 1057 // At this point we know that the character matches the regex "(L|u|U)?'.*'". 1058 HadError = false; 1059 1060 Kind = kind; 1061 1062 const char *TokBegin = begin; 1063 1064 // Skip over wide character determinant. 1065 if (Kind != tok::char_constant) 1066 ++begin; 1067 if (Kind == tok::utf8_char_constant) 1068 ++begin; 1069 1070 // Skip over the entry quote. 1071 assert(begin[0] == '\'' && "Invalid token lexed"); 1072 ++begin; 1073 1074 // Remove an optional ud-suffix. 1075 if (end[-1] != '\'') { 1076 const char *UDSuffixEnd = end; 1077 do { 1078 --end; 1079 } while (end[-1] != '\''); 1080 // FIXME: Don't bother with this if !tok.hasUCN(). 1081 expandUCNs(UDSuffixBuf, StringRef(end, UDSuffixEnd - end)); 1082 UDSuffixOffset = end - TokBegin; 1083 } 1084 1085 // Trim the ending quote. 1086 assert(end != begin && "Invalid token lexed"); 1087 --end; 1088 1089 // FIXME: The "Value" is an uint64_t so we can handle char literals of 1090 // up to 64-bits. 1091 // FIXME: This extensively assumes that 'char' is 8-bits. 1092 assert(PP.getTargetInfo().getCharWidth() == 8 && 1093 "Assumes char is 8 bits"); 1094 assert(PP.getTargetInfo().getIntWidth() <= 64 && 1095 (PP.getTargetInfo().getIntWidth() & 7) == 0 && 1096 "Assumes sizeof(int) on target is <= 64 and a multiple of char"); 1097 assert(PP.getTargetInfo().getWCharWidth() <= 64 && 1098 "Assumes sizeof(wchar) on target is <= 64"); 1099 1100 SmallVector<uint32_t, 4> codepoint_buffer; 1101 codepoint_buffer.resize(end - begin); 1102 uint32_t *buffer_begin = &codepoint_buffer.front(); 1103 uint32_t *buffer_end = buffer_begin + codepoint_buffer.size(); 1104 1105 // Unicode escapes representing characters that cannot be correctly 1106 // represented in a single code unit are disallowed in character literals 1107 // by this implementation. 1108 uint32_t largest_character_for_kind; 1109 if (tok::wide_char_constant == Kind) { 1110 largest_character_for_kind = 1111 0xFFFFFFFFu >> (32-PP.getTargetInfo().getWCharWidth()); 1112 } else if (tok::utf8_char_constant == Kind) { 1113 largest_character_for_kind = 0x7F; 1114 } else if (tok::utf16_char_constant == Kind) { 1115 largest_character_for_kind = 0xFFFF; 1116 } else if (tok::utf32_char_constant == Kind) { 1117 largest_character_for_kind = 0x10FFFF; 1118 } else { 1119 largest_character_for_kind = 0x7Fu; 1120 } 1121 1122 while (begin != end) { 1123 // Is this a span of non-escape characters? 1124 if (begin[0] != '\\') { 1125 char const *start = begin; 1126 do { 1127 ++begin; 1128 } while (begin != end && *begin != '\\'); 1129 1130 char const *tmp_in_start = start; 1131 uint32_t *tmp_out_start = buffer_begin; 1132 llvm::ConversionResult res = 1133 llvm::ConvertUTF8toUTF32(reinterpret_cast<llvm::UTF8 const **>(&start), 1134 reinterpret_cast<llvm::UTF8 const *>(begin), 1135 &buffer_begin, buffer_end, llvm::strictConversion); 1136 if (res != llvm::conversionOK) { 1137 // If we see bad encoding for unprefixed character literals, warn and 1138 // simply copy the byte values, for compatibility with gcc and 1139 // older versions of clang. 1140 bool NoErrorOnBadEncoding = isAscii(); 1141 unsigned Msg = diag::err_bad_character_encoding; 1142 if (NoErrorOnBadEncoding) 1143 Msg = diag::warn_bad_character_encoding; 1144 PP.Diag(Loc, Msg); 1145 if (NoErrorOnBadEncoding) { 1146 start = tmp_in_start; 1147 buffer_begin = tmp_out_start; 1148 for (; start != begin; ++start, ++buffer_begin) 1149 *buffer_begin = static_cast<uint8_t>(*start); 1150 } else { 1151 HadError = true; 1152 } 1153 } else { 1154 for (; tmp_out_start < buffer_begin; ++tmp_out_start) { 1155 if (*tmp_out_start > largest_character_for_kind) { 1156 HadError = true; 1157 PP.Diag(Loc, diag::err_character_too_large); 1158 } 1159 } 1160 } 1161 1162 continue; 1163 } 1164 // Is this a Universal Character Name escape? 1165 if (begin[1] == 'u' || begin[1] == 'U') { 1166 unsigned short UcnLen = 0; 1167 if (!ProcessUCNEscape(TokBegin, begin, end, *buffer_begin, UcnLen, 1168 FullSourceLoc(Loc, PP.getSourceManager()), 1169 &PP.getDiagnostics(), PP.getLangOpts(), true)) { 1170 HadError = true; 1171 } else if (*buffer_begin > largest_character_for_kind) { 1172 HadError = true; 1173 PP.Diag(Loc, diag::err_character_too_large); 1174 } 1175 1176 ++buffer_begin; 1177 continue; 1178 } 1179 unsigned CharWidth = getCharWidth(Kind, PP.getTargetInfo()); 1180 uint64_t result = 1181 ProcessCharEscape(TokBegin, begin, end, HadError, 1182 FullSourceLoc(Loc,PP.getSourceManager()), 1183 CharWidth, &PP.getDiagnostics(), PP.getLangOpts()); 1184 *buffer_begin++ = result; 1185 } 1186 1187 unsigned NumCharsSoFar = buffer_begin - &codepoint_buffer.front(); 1188 1189 if (NumCharsSoFar > 1) { 1190 if (isWide()) 1191 PP.Diag(Loc, diag::warn_extraneous_char_constant); 1192 else if (isAscii() && NumCharsSoFar == 4) 1193 PP.Diag(Loc, diag::ext_four_char_character_literal); 1194 else if (isAscii()) 1195 PP.Diag(Loc, diag::ext_multichar_character_literal); 1196 else 1197 PP.Diag(Loc, diag::err_multichar_utf_character_literal); 1198 IsMultiChar = true; 1199 } else { 1200 IsMultiChar = false; 1201 } 1202 1203 llvm::APInt LitVal(PP.getTargetInfo().getIntWidth(), 0); 1204 1205 // Narrow character literals act as though their value is concatenated 1206 // in this implementation, but warn on overflow. 1207 bool multi_char_too_long = false; 1208 if (isAscii() && isMultiChar()) { 1209 LitVal = 0; 1210 for (size_t i = 0; i < NumCharsSoFar; ++i) { 1211 // check for enough leading zeros to shift into 1212 multi_char_too_long |= (LitVal.countLeadingZeros() < 8); 1213 LitVal <<= 8; 1214 LitVal = LitVal + (codepoint_buffer[i] & 0xFF); 1215 } 1216 } else if (NumCharsSoFar > 0) { 1217 // otherwise just take the last character 1218 LitVal = buffer_begin[-1]; 1219 } 1220 1221 if (!HadError && multi_char_too_long) { 1222 PP.Diag(Loc, diag::warn_char_constant_too_large); 1223 } 1224 1225 // Transfer the value from APInt to uint64_t 1226 Value = LitVal.getZExtValue(); 1227 1228 // If this is a single narrow character, sign extend it (e.g. '\xFF' is "-1") 1229 // if 'char' is signed for this target (C99 6.4.4.4p10). Note that multiple 1230 // character constants are not sign extended in the this implementation: 1231 // '\xFF\xFF' = 65536 and '\x0\xFF' = 255, which matches GCC. 1232 if (isAscii() && NumCharsSoFar == 1 && (Value & 128) && 1233 PP.getLangOpts().CharIsSigned) 1234 Value = (signed char)Value; 1235 } 1236 1237 /// \verbatim 1238 /// string-literal: [C++0x lex.string] 1239 /// encoding-prefix " [s-char-sequence] " 1240 /// encoding-prefix R raw-string 1241 /// encoding-prefix: 1242 /// u8 1243 /// u 1244 /// U 1245 /// L 1246 /// s-char-sequence: 1247 /// s-char 1248 /// s-char-sequence s-char 1249 /// s-char: 1250 /// any member of the source character set except the double-quote ", 1251 /// backslash \, or new-line character 1252 /// escape-sequence 1253 /// universal-character-name 1254 /// raw-string: 1255 /// " d-char-sequence ( r-char-sequence ) d-char-sequence " 1256 /// r-char-sequence: 1257 /// r-char 1258 /// r-char-sequence r-char 1259 /// r-char: 1260 /// any member of the source character set, except a right parenthesis ) 1261 /// followed by the initial d-char-sequence (which may be empty) 1262 /// followed by a double quote ". 1263 /// d-char-sequence: 1264 /// d-char 1265 /// d-char-sequence d-char 1266 /// d-char: 1267 /// any member of the basic source character set except: 1268 /// space, the left parenthesis (, the right parenthesis ), 1269 /// the backslash \, and the control characters representing horizontal 1270 /// tab, vertical tab, form feed, and newline. 1271 /// escape-sequence: [C++0x lex.ccon] 1272 /// simple-escape-sequence 1273 /// octal-escape-sequence 1274 /// hexadecimal-escape-sequence 1275 /// simple-escape-sequence: 1276 /// one of \' \" \? \\ \a \b \f \n \r \t \v 1277 /// octal-escape-sequence: 1278 /// \ octal-digit 1279 /// \ octal-digit octal-digit 1280 /// \ octal-digit octal-digit octal-digit 1281 /// hexadecimal-escape-sequence: 1282 /// \x hexadecimal-digit 1283 /// hexadecimal-escape-sequence hexadecimal-digit 1284 /// universal-character-name: 1285 /// \u hex-quad 1286 /// \U hex-quad hex-quad 1287 /// hex-quad: 1288 /// hex-digit hex-digit hex-digit hex-digit 1289 /// \endverbatim 1290 /// 1291 StringLiteralParser:: 1292 StringLiteralParser(ArrayRef<Token> StringToks, 1293 Preprocessor &PP, bool Complain) 1294 : SM(PP.getSourceManager()), Features(PP.getLangOpts()), 1295 Target(PP.getTargetInfo()), Diags(Complain ? &PP.getDiagnostics() :nullptr), 1296 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown), 1297 ResultPtr(ResultBuf.data()), hadError(false), Pascal(false) { 1298 init(StringToks); 1299 } 1300 1301 void StringLiteralParser::init(ArrayRef<Token> StringToks){ 1302 // The literal token may have come from an invalid source location (e.g. due 1303 // to a PCH error), in which case the token length will be 0. 1304 if (StringToks.empty() || StringToks[0].getLength() < 2) 1305 return DiagnoseLexingError(SourceLocation()); 1306 1307 // Scan all of the string portions, remember the max individual token length, 1308 // computing a bound on the concatenated string length, and see whether any 1309 // piece is a wide-string. If any of the string portions is a wide-string 1310 // literal, the result is a wide-string literal [C99 6.4.5p4]. 1311 assert(!StringToks.empty() && "expected at least one token"); 1312 MaxTokenLength = StringToks[0].getLength(); 1313 assert(StringToks[0].getLength() >= 2 && "literal token is invalid!"); 1314 SizeBound = StringToks[0].getLength()-2; // -2 for "". 1315 Kind = StringToks[0].getKind(); 1316 1317 hadError = false; 1318 1319 // Implement Translation Phase #6: concatenation of string literals 1320 /// (C99 5.1.1.2p1). The common case is only one string fragment. 1321 for (unsigned i = 1; i != StringToks.size(); ++i) { 1322 if (StringToks[i].getLength() < 2) 1323 return DiagnoseLexingError(StringToks[i].getLocation()); 1324 1325 // The string could be shorter than this if it needs cleaning, but this is a 1326 // reasonable bound, which is all we need. 1327 assert(StringToks[i].getLength() >= 2 && "literal token is invalid!"); 1328 SizeBound += StringToks[i].getLength()-2; // -2 for "". 1329 1330 // Remember maximum string piece length. 1331 if (StringToks[i].getLength() > MaxTokenLength) 1332 MaxTokenLength = StringToks[i].getLength(); 1333 1334 // Remember if we see any wide or utf-8/16/32 strings. 1335 // Also check for illegal concatenations. 1336 if (StringToks[i].isNot(Kind) && StringToks[i].isNot(tok::string_literal)) { 1337 if (isAscii()) { 1338 Kind = StringToks[i].getKind(); 1339 } else { 1340 if (Diags) 1341 Diags->Report(StringToks[i].getLocation(), 1342 diag::err_unsupported_string_concat); 1343 hadError = true; 1344 } 1345 } 1346 } 1347 1348 // Include space for the null terminator. 1349 ++SizeBound; 1350 1351 // TODO: K&R warning: "traditional C rejects string constant concatenation" 1352 1353 // Get the width in bytes of char/wchar_t/char16_t/char32_t 1354 CharByteWidth = getCharWidth(Kind, Target); 1355 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple"); 1356 CharByteWidth /= 8; 1357 1358 // The output buffer size needs to be large enough to hold wide characters. 1359 // This is a worst-case assumption which basically corresponds to L"" "long". 1360 SizeBound *= CharByteWidth; 1361 1362 // Size the temporary buffer to hold the result string data. 1363 ResultBuf.resize(SizeBound); 1364 1365 // Likewise, but for each string piece. 1366 SmallString<512> TokenBuf; 1367 TokenBuf.resize(MaxTokenLength); 1368 1369 // Loop over all the strings, getting their spelling, and expanding them to 1370 // wide strings as appropriate. 1371 ResultPtr = &ResultBuf[0]; // Next byte to fill in. 1372 1373 Pascal = false; 1374 1375 SourceLocation UDSuffixTokLoc; 1376 1377 for (unsigned i = 0, e = StringToks.size(); i != e; ++i) { 1378 const char *ThisTokBuf = &TokenBuf[0]; 1379 // Get the spelling of the token, which eliminates trigraphs, etc. We know 1380 // that ThisTokBuf points to a buffer that is big enough for the whole token 1381 // and 'spelled' tokens can only shrink. 1382 bool StringInvalid = false; 1383 unsigned ThisTokLen = 1384 Lexer::getSpelling(StringToks[i], ThisTokBuf, SM, Features, 1385 &StringInvalid); 1386 if (StringInvalid) 1387 return DiagnoseLexingError(StringToks[i].getLocation()); 1388 1389 const char *ThisTokBegin = ThisTokBuf; 1390 const char *ThisTokEnd = ThisTokBuf+ThisTokLen; 1391 1392 // Remove an optional ud-suffix. 1393 if (ThisTokEnd[-1] != '"') { 1394 const char *UDSuffixEnd = ThisTokEnd; 1395 do { 1396 --ThisTokEnd; 1397 } while (ThisTokEnd[-1] != '"'); 1398 1399 StringRef UDSuffix(ThisTokEnd, UDSuffixEnd - ThisTokEnd); 1400 1401 if (UDSuffixBuf.empty()) { 1402 if (StringToks[i].hasUCN()) 1403 expandUCNs(UDSuffixBuf, UDSuffix); 1404 else 1405 UDSuffixBuf.assign(UDSuffix); 1406 UDSuffixToken = i; 1407 UDSuffixOffset = ThisTokEnd - ThisTokBuf; 1408 UDSuffixTokLoc = StringToks[i].getLocation(); 1409 } else { 1410 SmallString<32> ExpandedUDSuffix; 1411 if (StringToks[i].hasUCN()) { 1412 expandUCNs(ExpandedUDSuffix, UDSuffix); 1413 UDSuffix = ExpandedUDSuffix; 1414 } 1415 1416 // C++11 [lex.ext]p8: At the end of phase 6, if a string literal is the 1417 // result of a concatenation involving at least one user-defined-string- 1418 // literal, all the participating user-defined-string-literals shall 1419 // have the same ud-suffix. 1420 if (UDSuffixBuf != UDSuffix) { 1421 if (Diags) { 1422 SourceLocation TokLoc = StringToks[i].getLocation(); 1423 Diags->Report(TokLoc, diag::err_string_concat_mixed_suffix) 1424 << UDSuffixBuf << UDSuffix 1425 << SourceRange(UDSuffixTokLoc, UDSuffixTokLoc) 1426 << SourceRange(TokLoc, TokLoc); 1427 } 1428 hadError = true; 1429 } 1430 } 1431 } 1432 1433 // Strip the end quote. 1434 --ThisTokEnd; 1435 1436 // TODO: Input character set mapping support. 1437 1438 // Skip marker for wide or unicode strings. 1439 if (ThisTokBuf[0] == 'L' || ThisTokBuf[0] == 'u' || ThisTokBuf[0] == 'U') { 1440 ++ThisTokBuf; 1441 // Skip 8 of u8 marker for utf8 strings. 1442 if (ThisTokBuf[0] == '8') 1443 ++ThisTokBuf; 1444 } 1445 1446 // Check for raw string 1447 if (ThisTokBuf[0] == 'R') { 1448 ThisTokBuf += 2; // skip R" 1449 1450 const char *Prefix = ThisTokBuf; 1451 while (ThisTokBuf[0] != '(') 1452 ++ThisTokBuf; 1453 ++ThisTokBuf; // skip '(' 1454 1455 // Remove same number of characters from the end 1456 ThisTokEnd -= ThisTokBuf - Prefix; 1457 assert(ThisTokEnd >= ThisTokBuf && "malformed raw string literal"); 1458 1459 // C++14 [lex.string]p4: A source-file new-line in a raw string literal 1460 // results in a new-line in the resulting execution string-literal. 1461 StringRef RemainingTokenSpan(ThisTokBuf, ThisTokEnd - ThisTokBuf); 1462 while (!RemainingTokenSpan.empty()) { 1463 // Split the string literal on \r\n boundaries. 1464 size_t CRLFPos = RemainingTokenSpan.find("\r\n"); 1465 StringRef BeforeCRLF = RemainingTokenSpan.substr(0, CRLFPos); 1466 StringRef AfterCRLF = RemainingTokenSpan.substr(CRLFPos); 1467 1468 // Copy everything before the \r\n sequence into the string literal. 1469 if (CopyStringFragment(StringToks[i], ThisTokBegin, BeforeCRLF)) 1470 hadError = true; 1471 1472 // Point into the \n inside the \r\n sequence and operate on the 1473 // remaining portion of the literal. 1474 RemainingTokenSpan = AfterCRLF.substr(1); 1475 } 1476 } else { 1477 if (ThisTokBuf[0] != '"') { 1478 // The file may have come from PCH and then changed after loading the 1479 // PCH; Fail gracefully. 1480 return DiagnoseLexingError(StringToks[i].getLocation()); 1481 } 1482 ++ThisTokBuf; // skip " 1483 1484 // Check if this is a pascal string 1485 if (Features.PascalStrings && ThisTokBuf + 1 != ThisTokEnd && 1486 ThisTokBuf[0] == '\\' && ThisTokBuf[1] == 'p') { 1487 1488 // If the \p sequence is found in the first token, we have a pascal string 1489 // Otherwise, if we already have a pascal string, ignore the first \p 1490 if (i == 0) { 1491 ++ThisTokBuf; 1492 Pascal = true; 1493 } else if (Pascal) 1494 ThisTokBuf += 2; 1495 } 1496 1497 while (ThisTokBuf != ThisTokEnd) { 1498 // Is this a span of non-escape characters? 1499 if (ThisTokBuf[0] != '\\') { 1500 const char *InStart = ThisTokBuf; 1501 do { 1502 ++ThisTokBuf; 1503 } while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] != '\\'); 1504 1505 // Copy the character span over. 1506 if (CopyStringFragment(StringToks[i], ThisTokBegin, 1507 StringRef(InStart, ThisTokBuf - InStart))) 1508 hadError = true; 1509 continue; 1510 } 1511 // Is this a Universal Character Name escape? 1512 if (ThisTokBuf[1] == 'u' || ThisTokBuf[1] == 'U') { 1513 EncodeUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, 1514 ResultPtr, hadError, 1515 FullSourceLoc(StringToks[i].getLocation(), SM), 1516 CharByteWidth, Diags, Features); 1517 continue; 1518 } 1519 // Otherwise, this is a non-UCN escape character. Process it. 1520 unsigned ResultChar = 1521 ProcessCharEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, hadError, 1522 FullSourceLoc(StringToks[i].getLocation(), SM), 1523 CharByteWidth*8, Diags, Features); 1524 1525 if (CharByteWidth == 4) { 1526 // FIXME: Make the type of the result buffer correct instead of 1527 // using reinterpret_cast. 1528 llvm::UTF32 *ResultWidePtr = reinterpret_cast<llvm::UTF32*>(ResultPtr); 1529 *ResultWidePtr = ResultChar; 1530 ResultPtr += 4; 1531 } else if (CharByteWidth == 2) { 1532 // FIXME: Make the type of the result buffer correct instead of 1533 // using reinterpret_cast. 1534 llvm::UTF16 *ResultWidePtr = reinterpret_cast<llvm::UTF16*>(ResultPtr); 1535 *ResultWidePtr = ResultChar & 0xFFFF; 1536 ResultPtr += 2; 1537 } else { 1538 assert(CharByteWidth == 1 && "Unexpected char width"); 1539 *ResultPtr++ = ResultChar & 0xFF; 1540 } 1541 } 1542 } 1543 } 1544 1545 if (Pascal) { 1546 if (CharByteWidth == 4) { 1547 // FIXME: Make the type of the result buffer correct instead of 1548 // using reinterpret_cast. 1549 llvm::UTF32 *ResultWidePtr = reinterpret_cast<llvm::UTF32*>(ResultBuf.data()); 1550 ResultWidePtr[0] = GetNumStringChars() - 1; 1551 } else if (CharByteWidth == 2) { 1552 // FIXME: Make the type of the result buffer correct instead of 1553 // using reinterpret_cast. 1554 llvm::UTF16 *ResultWidePtr = reinterpret_cast<llvm::UTF16*>(ResultBuf.data()); 1555 ResultWidePtr[0] = GetNumStringChars() - 1; 1556 } else { 1557 assert(CharByteWidth == 1 && "Unexpected char width"); 1558 ResultBuf[0] = GetNumStringChars() - 1; 1559 } 1560 1561 // Verify that pascal strings aren't too large. 1562 if (GetStringLength() > 256) { 1563 if (Diags) 1564 Diags->Report(StringToks.front().getLocation(), 1565 diag::err_pascal_string_too_long) 1566 << SourceRange(StringToks.front().getLocation(), 1567 StringToks.back().getLocation()); 1568 hadError = true; 1569 return; 1570 } 1571 } else if (Diags) { 1572 // Complain if this string literal has too many characters. 1573 unsigned MaxChars = Features.CPlusPlus? 65536 : Features.C99 ? 4095 : 509; 1574 1575 if (GetNumStringChars() > MaxChars) 1576 Diags->Report(StringToks.front().getLocation(), 1577 diag::ext_string_too_long) 1578 << GetNumStringChars() << MaxChars 1579 << (Features.CPlusPlus ? 2 : Features.C99 ? 1 : 0) 1580 << SourceRange(StringToks.front().getLocation(), 1581 StringToks.back().getLocation()); 1582 } 1583 } 1584 1585 static const char *resyncUTF8(const char *Err, const char *End) { 1586 if (Err == End) 1587 return End; 1588 End = Err + std::min<unsigned>(llvm::getNumBytesForUTF8(*Err), End-Err); 1589 while (++Err != End && (*Err & 0xC0) == 0x80) 1590 ; 1591 return Err; 1592 } 1593 1594 /// \brief This function copies from Fragment, which is a sequence of bytes 1595 /// within Tok's contents (which begin at TokBegin) into ResultPtr. 1596 /// Performs widening for multi-byte characters. 1597 bool StringLiteralParser::CopyStringFragment(const Token &Tok, 1598 const char *TokBegin, 1599 StringRef Fragment) { 1600 const llvm::UTF8 *ErrorPtrTmp; 1601 if (ConvertUTF8toWide(CharByteWidth, Fragment, ResultPtr, ErrorPtrTmp)) 1602 return false; 1603 1604 // If we see bad encoding for unprefixed string literals, warn and 1605 // simply copy the byte values, for compatibility with gcc and older 1606 // versions of clang. 1607 bool NoErrorOnBadEncoding = isAscii(); 1608 if (NoErrorOnBadEncoding) { 1609 memcpy(ResultPtr, Fragment.data(), Fragment.size()); 1610 ResultPtr += Fragment.size(); 1611 } 1612 1613 if (Diags) { 1614 const char *ErrorPtr = reinterpret_cast<const char *>(ErrorPtrTmp); 1615 1616 FullSourceLoc SourceLoc(Tok.getLocation(), SM); 1617 const DiagnosticBuilder &Builder = 1618 Diag(Diags, Features, SourceLoc, TokBegin, 1619 ErrorPtr, resyncUTF8(ErrorPtr, Fragment.end()), 1620 NoErrorOnBadEncoding ? diag::warn_bad_string_encoding 1621 : diag::err_bad_string_encoding); 1622 1623 const char *NextStart = resyncUTF8(ErrorPtr, Fragment.end()); 1624 StringRef NextFragment(NextStart, Fragment.end()-NextStart); 1625 1626 // Decode into a dummy buffer. 1627 SmallString<512> Dummy; 1628 Dummy.reserve(Fragment.size() * CharByteWidth); 1629 char *Ptr = Dummy.data(); 1630 1631 while (!ConvertUTF8toWide(CharByteWidth, NextFragment, Ptr, ErrorPtrTmp)) { 1632 const char *ErrorPtr = reinterpret_cast<const char *>(ErrorPtrTmp); 1633 NextStart = resyncUTF8(ErrorPtr, Fragment.end()); 1634 Builder << MakeCharSourceRange(Features, SourceLoc, TokBegin, 1635 ErrorPtr, NextStart); 1636 NextFragment = StringRef(NextStart, Fragment.end()-NextStart); 1637 } 1638 } 1639 return !NoErrorOnBadEncoding; 1640 } 1641 1642 void StringLiteralParser::DiagnoseLexingError(SourceLocation Loc) { 1643 hadError = true; 1644 if (Diags) 1645 Diags->Report(Loc, diag::err_lexing_string); 1646 } 1647 1648 /// getOffsetOfStringByte - This function returns the offset of the 1649 /// specified byte of the string data represented by Token. This handles 1650 /// advancing over escape sequences in the string. 1651 unsigned StringLiteralParser::getOffsetOfStringByte(const Token &Tok, 1652 unsigned ByteNo) const { 1653 // Get the spelling of the token. 1654 SmallString<32> SpellingBuffer; 1655 SpellingBuffer.resize(Tok.getLength()); 1656 1657 bool StringInvalid = false; 1658 const char *SpellingPtr = &SpellingBuffer[0]; 1659 unsigned TokLen = Lexer::getSpelling(Tok, SpellingPtr, SM, Features, 1660 &StringInvalid); 1661 if (StringInvalid) 1662 return 0; 1663 1664 const char *SpellingStart = SpellingPtr; 1665 const char *SpellingEnd = SpellingPtr+TokLen; 1666 1667 // Handle UTF-8 strings just like narrow strings. 1668 if (SpellingPtr[0] == 'u' && SpellingPtr[1] == '8') 1669 SpellingPtr += 2; 1670 1671 assert(SpellingPtr[0] != 'L' && SpellingPtr[0] != 'u' && 1672 SpellingPtr[0] != 'U' && "Doesn't handle wide or utf strings yet"); 1673 1674 // For raw string literals, this is easy. 1675 if (SpellingPtr[0] == 'R') { 1676 assert(SpellingPtr[1] == '"' && "Should be a raw string literal!"); 1677 // Skip 'R"'. 1678 SpellingPtr += 2; 1679 while (*SpellingPtr != '(') { 1680 ++SpellingPtr; 1681 assert(SpellingPtr < SpellingEnd && "Missing ( for raw string literal"); 1682 } 1683 // Skip '('. 1684 ++SpellingPtr; 1685 return SpellingPtr - SpellingStart + ByteNo; 1686 } 1687 1688 // Skip over the leading quote 1689 assert(SpellingPtr[0] == '"' && "Should be a string literal!"); 1690 ++SpellingPtr; 1691 1692 // Skip over bytes until we find the offset we're looking for. 1693 while (ByteNo) { 1694 assert(SpellingPtr < SpellingEnd && "Didn't find byte offset!"); 1695 1696 // Step over non-escapes simply. 1697 if (*SpellingPtr != '\\') { 1698 ++SpellingPtr; 1699 --ByteNo; 1700 continue; 1701 } 1702 1703 // Otherwise, this is an escape character. Advance over it. 1704 bool HadError = false; 1705 if (SpellingPtr[1] == 'u' || SpellingPtr[1] == 'U') { 1706 const char *EscapePtr = SpellingPtr; 1707 unsigned Len = MeasureUCNEscape(SpellingStart, SpellingPtr, SpellingEnd, 1708 1, Features, HadError); 1709 if (Len > ByteNo) { 1710 // ByteNo is somewhere within the escape sequence. 1711 SpellingPtr = EscapePtr; 1712 break; 1713 } 1714 ByteNo -= Len; 1715 } else { 1716 ProcessCharEscape(SpellingStart, SpellingPtr, SpellingEnd, HadError, 1717 FullSourceLoc(Tok.getLocation(), SM), 1718 CharByteWidth*8, Diags, Features); 1719 --ByteNo; 1720 } 1721 assert(!HadError && "This method isn't valid on erroneous strings"); 1722 } 1723 1724 return SpellingPtr-SpellingStart; 1725 } 1726 1727 /// Determine whether a suffix is a valid ud-suffix. We avoid treating reserved 1728 /// suffixes as ud-suffixes, because the diagnostic experience is better if we 1729 /// treat it as an invalid suffix. 1730 bool StringLiteralParser::isValidUDSuffix(const LangOptions &LangOpts, 1731 StringRef Suffix) { 1732 return NumericLiteralParser::isValidUDSuffix(LangOpts, Suffix) || 1733 Suffix == "sv"; 1734 } 1735