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" 37 using namespace clang;
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:
47 case tok::wide_char_constant:
48 case tok::wide_string_literal:
50 case tok::utf16_char_constant:
51 case tok::utf16_string_literal:
53 case tok::utf32_char_constant:
54 case tok::utf32_string_literal:
62 const char *TokRangeBegin,
63 const char *TokRangeEnd) {
80 const char *TokBegin,
const char *TokRangeBegin,
81 const char *TokRangeEnd,
unsigned DiagID) {
85 return Diags->
Report(Begin, DiagID) <<
92 const char *&ThisTokBuf,
93 const char *ThisTokEnd,
bool &HadError,
97 const char *EscapeBegin = ThisTokBuf;
104 unsigned ResultChar = *ThisTokBuf++;
105 switch (ResultChar) {
107 case '\\':
case '\'':
case '"':
case '?':
break;
119 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
120 diag::ext_nonstandard_escape) <<
"e";
125 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
126 diag::ext_nonstandard_escape) <<
"E";
146 if (ThisTokBuf == ThisTokEnd || !
isHexDigit(*ThisTokBuf)) {
148 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
149 diag::err_hex_escape_no_digits) <<
"x";
155 bool Overflow =
false;
156 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
157 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]);
158 if (CharVal == -1)
break;
160 if (ResultChar & 0xF0000000)
163 ResultChar |= CharVal;
167 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
169 ResultChar &= ~0U >> (32-CharWidth);
173 if (Overflow && Diags)
174 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
175 diag::err_escape_too_large) << 0;
178 case '0':
case '1':
case '2':
case '3':
179 case '4':
case '5':
case '6':
case '7': {
186 unsigned NumDigits = 0;
189 ResultChar |= *ThisTokBuf++ -
'0';
191 }
while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
192 ThisTokBuf[0] >=
'0' && ThisTokBuf[0] <=
'7');
195 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
197 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
198 diag::err_escape_too_large) << 1;
199 ResultChar &= ~0U >> (32-CharWidth);
205 case '(':
case '{':
case '[':
case '%':
208 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
209 diag::ext_nonstandard_escape)
210 << std::string(1, ResultChar);
217 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
218 diag::ext_unknown_escape)
219 << std::string(1, ResultChar);
221 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
222 diag::ext_unknown_escape)
223 <<
"x" + llvm::utohexstr(ResultChar);
233 char *ResultPtr = ResultBuf;
234 bool Res = llvm::ConvertCodePointToUTF8(Codepoint, ResultPtr);
236 assert(Res &&
"Unexpected conversion failure");
237 Str.append(ResultBuf, ResultPtr);
241 for (StringRef::iterator I = Input.begin(), E = Input.end(); I != E; ++I) {
248 assert(*I ==
'u' || *I ==
'U');
250 unsigned NumHexDigits;
256 assert(I + NumHexDigits <= E);
258 uint32_t CodePoint = 0;
259 for (++I; NumHexDigits != 0; ++I, --NumHexDigits) {
260 unsigned Value = llvm::hexDigitValue(*I);
261 assert(Value != -1U);
275 const char *ThisTokEnd,
276 uint32_t &UcnVal,
unsigned short &UcnLen,
279 bool in_char_string_literal =
false) {
280 const char *UcnBegin = ThisTokBuf;
285 if (ThisTokBuf == ThisTokEnd || !
isHexDigit(*ThisTokBuf)) {
287 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf,
288 diag::err_hex_escape_no_digits) << StringRef(&ThisTokBuf[-1], 1);
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;
302 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf,
303 diag::err_ucn_escape_incomplete);
308 if ((0xD800 <= UcnVal && UcnVal <= 0xDFFF) ||
311 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf,
312 diag::err_ucn_escape_invalid);
319 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) {
320 bool IsError = (!Features.CPlusPlus11 || !in_char_string_literal);
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);
329 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf,
330 IsError ? diag::err_ucn_control_character :
331 diag::warn_cxx98_compat_literal_ucn_control_character);
337 if (!Features.CPlusPlus && !Features.C99 && Diags)
338 Diag(Diags, Features, Loc, ThisTokBegin, UcnBegin, ThisTokBuf,
339 diag::warn_ucn_not_valid_in_c89_literal);
347 const char *ThisTokEnd,
unsigned CharByteWidth,
350 if (CharByteWidth == 4)
354 unsigned short UcnLen = 0;
358 UcnLen, Loc,
nullptr, Features,
true)) {
364 if (CharByteWidth == 2)
365 return UcnVal <= 0xFFFF ? 2 : 4;
372 if (UcnVal < 0x10000)
382 const char *ThisTokEnd,
383 char *&ResultBuf,
bool &HadError,
387 typedef uint32_t UTF32;
389 unsigned short UcnLen = 0;
391 Loc, Diags, Features,
true)) {
396 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth == 4) &&
397 "only character widths of 1, 2, or 4 bytes supported");
400 assert((UcnLen== 4 || UcnLen== 8) &&
"only ucn length of 4 or 8 supported");
402 if (CharByteWidth == 4) {
405 llvm::UTF32 *ResultPtr =
reinterpret_cast<llvm::UTF32*
>(ResultBuf);
411 if (CharByteWidth == 2) {
414 llvm::UTF16 *ResultPtr =
reinterpret_cast<llvm::UTF16*
>(ResultBuf);
416 if (UcnVal <= (UTF32)0xFFFF) {
424 *ResultPtr = 0xD800 + (UcnVal >> 10);
425 *(ResultPtr+1) = 0xDC00 + (UcnVal & 0x3FF);
430 assert(CharByteWidth == 1 &&
"UTF-8 encoding is only for 1 byte characters");
436 typedef uint8_t UTF8;
438 unsigned short bytesToWrite = 0;
439 if (UcnVal < (UTF32)0x80)
441 else if (UcnVal < (UTF32)0x800)
443 else if (UcnVal < (UTF32)0x10000)
448 const unsigned byteMask = 0xBF;
449 const unsigned byteMark = 0x80;
453 static const UTF8 firstByteMark[5] = {
454 0x00, 0x00, 0xC0, 0xE0, 0xF0
457 ResultBuf += bytesToWrite;
458 switch (bytesToWrite) {
460 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
463 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
466 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
469 *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
472 ResultBuf += bytesToWrite;
529 : PP(PP), ThisTokBegin(TokSpelling.begin()), ThisTokEnd(TokSpelling.end()) {
537 s = DigitsBegin = ThisTokBegin;
538 saw_exponent =
false;
540 saw_ud_suffix =
false;
553 ParseNumberStartingWithZero(TokLoc);
559 if (s == ThisTokEnd) {
562 ParseDecimalOrOctalCommon(TokLoc);
569 checkSeparator(TokLoc, s, CSK_AfterDigits);
577 for (; s != ThisTokEnd; ++s) {
583 if (!isFPConstant)
break;
589 if (!isFPConstant)
break;
593 if (s + 2 < ThisTokEnd && s[1] ==
'1' && s[2] ==
'6') {
603 if (!isFPConstant)
break;
610 if (isFPConstant)
break;
621 assert(s + 1 < ThisTokEnd &&
"didn't maximally munch?");
622 if (isFPConstant)
break;
665 assert(s <= ThisTokEnd &&
"didn't maximally munch?");
683 expandUCNs(UDSuffixBuf, StringRef(SuffixBegin, ThisTokEnd - SuffixBegin));
698 saw_ud_suffix =
true;
702 if (s != ThisTokEnd) {
705 diag::err_invalid_suffix_constant)
706 << StringRef(SuffixBegin, ThisTokEnd - SuffixBegin) << isFPConstant;
715 void NumericLiteralParser::ParseDecimalOrOctalCommon(
SourceLocation TokLoc){
716 assert((radix == 8 || radix == 10) &&
"Unexpected radix");
720 if (
isHexDigit(*s) && *s !=
'e' && *s !=
'E') {
722 diag::err_invalid_digit) << StringRef(s, 1) << (radix == 8 ? 1 : 0);
728 checkSeparator(TokLoc, s, CSK_AfterDigits);
732 checkSeparator(TokLoc, s, CSK_BeforeDigits);
735 if (*s ==
'e' || *s ==
'E') {
736 checkSeparator(TokLoc, s, CSK_AfterDigits);
737 const char *Exponent = s;
741 if (*s ==
'+' || *s ==
'-') s++;
742 const char *first_non_digit = SkipDigits(s);
743 if (containsDigits(s, first_non_digit)) {
744 checkSeparator(TokLoc, s, CSK_BeforeDigits);
748 diag::err_exponent_has_no_digits);
760 if (!LangOpts.CPlusPlus11 || Suffix.empty())
764 if (Suffix[0] ==
'_')
768 if (!LangOpts.CPlusPlus14)
773 return llvm::StringSwitch<bool>(Suffix)
774 .Cases(
"h",
"min",
"s",
true)
775 .Cases(
"ms",
"us",
"ns",
true)
776 .Cases(
"il",
"i",
"if",
true)
782 CheckSeparatorKind IsAfterDigits) {
783 if (IsAfterDigits == CSK_AfterDigits) {
784 if (Pos == ThisTokBegin)
787 }
else if (Pos == ThisTokEnd)
790 if (isDigitSeparator(*Pos))
792 diag::err_digit_separator_not_between_digits)
801 void NumericLiteralParser::ParseNumberStartingWithZero(
SourceLocation TokLoc) {
802 assert(s[0] ==
'0' &&
"Invalid method call");
808 if ((c1 ==
'x' || c1 ==
'X') && (
isHexDigit(s[1]) || s[1] ==
'.')) {
810 assert(s < ThisTokEnd &&
"didn't maximally munch?");
813 s = SkipHexDigits(s);
814 bool HasSignificandDigits = containsDigits(DigitsBegin, s);
815 if (s == ThisTokEnd) {
817 }
else if (*s ==
'.') {
820 const char *floatDigitsBegin = s;
821 s = SkipHexDigits(s);
822 if (containsDigits(floatDigitsBegin, s))
823 HasSignificandDigits =
true;
824 if (HasSignificandDigits)
825 checkSeparator(TokLoc, floatDigitsBegin, CSK_BeforeDigits);
828 if (!HasSignificandDigits) {
830 diag::err_hex_constant_requires)
838 if (*s ==
'p' || *s ==
'P') {
839 checkSeparator(TokLoc, s, CSK_AfterDigits);
840 const char *Exponent = s;
843 if (*s ==
'+' || *s ==
'-') s++;
844 const char *first_non_digit = SkipDigits(s);
845 if (!containsDigits(s, first_non_digit)) {
847 diag::err_exponent_has_no_digits);
851 checkSeparator(TokLoc, s, CSK_BeforeDigits);
856 ? diag::ext_hex_literal_invalid
857 : diag::ext_hex_constant_invalid);
859 PP.
Diag(TokLoc, diag::warn_cxx17_hex_literal);
860 }
else if (saw_period) {
862 diag::err_hex_constant_requires)
870 if ((c1 ==
'b' || c1 ==
'B') && (s[1] ==
'0' || s[1] ==
'1')) {
874 ? diag::warn_cxx11_compat_binary_literal
876 ? diag::ext_binary_literal_cxx14
877 : diag::ext_binary_literal);
879 assert(s < ThisTokEnd &&
"didn't maximally munch?");
882 s = SkipBinaryDigits(s);
883 if (s == ThisTokEnd) {
887 diag::err_invalid_digit) << StringRef(s, 1) << 2;
899 s = SkipOctalDigits(s);
906 const char *EndDecimal = SkipDigits(s);
907 if (EndDecimal[0] ==
'.' || EndDecimal[0] ==
'e' || EndDecimal[0] ==
'E') {
913 ParseDecimalOrOctalCommon(TokLoc);
919 return NumDigits <= 64;
921 return NumDigits <= 64 / 3;
923 return NumDigits <= 19;
925 return NumDigits <= 64 / 4;
927 llvm_unreachable(
"impossible Radix");
941 const unsigned NumDigits = SuffixBegin - DigitsBegin;
944 for (
const char *Ptr = DigitsBegin; Ptr != SuffixBegin; ++Ptr)
945 if (!isDigitSeparator(*Ptr))
946 N = N * radix + llvm::hexDigitValue(*Ptr);
951 return Val.getZExtValue() != N;
955 const char *Ptr = DigitsBegin;
957 llvm::APInt RadixVal(Val.getBitWidth(), radix);
958 llvm::APInt CharVal(Val.getBitWidth(), 0);
959 llvm::APInt OldVal = Val;
961 bool OverflowOccurred =
false;
962 while (Ptr < SuffixBegin) {
963 if (isDigitSeparator(*Ptr)) {
968 unsigned C = llvm::hexDigitValue(*Ptr++);
971 assert(C < radix &&
"NumericLiteralParser ctor should have rejected this");
981 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
986 OverflowOccurred |= Val.ult(CharVal);
988 return OverflowOccurred;
991 llvm::APFloat::opStatus
995 unsigned n =
std::min(SuffixBegin - ThisTokBegin, ThisTokEnd - ThisTokBegin);
998 StringRef Str(ThisTokBegin, n);
999 if (Str.find(
'\'') != StringRef::npos) {
1001 std::remove_copy_if(Str.begin(), Str.end(), std::back_inserter(Buffer),
1006 return Result.convertFromString(Str, APFloat::rmNearestTiesToEven);
1056 const char *TokBegin = begin;
1059 if (
Kind != tok::char_constant)
1061 if (
Kind == tok::utf8_char_constant)
1065 assert(begin[0] ==
'\'' &&
"Invalid token lexed");
1069 if (end[-1] !=
'\'') {
1070 const char *UDSuffixEnd = end;
1073 }
while (end[-1] !=
'\'');
1075 expandUCNs(UDSuffixBuf, StringRef(end, UDSuffixEnd - end));
1076 UDSuffixOffset = end - TokBegin;
1080 assert(end != begin &&
"Invalid token lexed");
1087 "Assumes char is 8 bits");
1090 "Assumes sizeof(int) on target is <= 64 and a multiple of char");
1092 "Assumes sizeof(wchar) on target is <= 64");
1095 codepoint_buffer.resize(end - begin);
1096 uint32_t *buffer_begin = &codepoint_buffer.front();
1097 uint32_t *buffer_end = buffer_begin + codepoint_buffer.size();
1102 uint32_t largest_character_for_kind;
1103 if (tok::wide_char_constant ==
Kind) {
1104 largest_character_for_kind =
1106 }
else if (tok::utf8_char_constant ==
Kind) {
1107 largest_character_for_kind = 0x7F;
1108 }
else if (tok::utf16_char_constant ==
Kind) {
1109 largest_character_for_kind = 0xFFFF;
1110 }
else if (tok::utf32_char_constant ==
Kind) {
1111 largest_character_for_kind = 0x10FFFF;
1113 largest_character_for_kind = 0x7Fu;
1116 while (begin != end) {
1118 if (begin[0] !=
'\\') {
1119 char const *start = begin;
1122 }
while (begin != end && *begin !=
'\\');
1124 char const *tmp_in_start = start;
1125 uint32_t *tmp_out_start = buffer_begin;
1126 llvm::ConversionResult res =
1127 llvm::ConvertUTF8toUTF32(reinterpret_cast<llvm::UTF8 const **>(&start),
1128 reinterpret_cast<llvm::UTF8 const *>(begin),
1129 &buffer_begin, buffer_end, llvm::strictConversion);
1130 if (res != llvm::conversionOK) {
1134 bool NoErrorOnBadEncoding = isAscii();
1135 unsigned Msg = diag::err_bad_character_encoding;
1136 if (NoErrorOnBadEncoding)
1137 Msg = diag::warn_bad_character_encoding;
1139 if (NoErrorOnBadEncoding) {
1140 start = tmp_in_start;
1141 buffer_begin = tmp_out_start;
1142 for (; start != begin; ++start, ++buffer_begin)
1143 *buffer_begin = static_cast<uint8_t>(*start);
1148 for (; tmp_out_start < buffer_begin; ++tmp_out_start) {
1149 if (*tmp_out_start > largest_character_for_kind) {
1151 PP.
Diag(Loc, diag::err_character_too_large);
1159 if (begin[1] ==
'u' || begin[1] ==
'U') {
1160 unsigned short UcnLen = 0;
1165 }
else if (*buffer_begin > largest_character_for_kind) {
1167 PP.
Diag(Loc, diag::err_character_too_large);
1178 *buffer_begin++ = result;
1181 unsigned NumCharsSoFar = buffer_begin - &codepoint_buffer.front();
1183 if (NumCharsSoFar > 1) {
1185 PP.
Diag(Loc, diag::warn_extraneous_char_constant);
1186 else if (isAscii() && NumCharsSoFar == 4)
1187 PP.
Diag(Loc, diag::ext_four_char_character_literal);
1189 PP.
Diag(Loc, diag::ext_multichar_character_literal);
1191 PP.
Diag(Loc, diag::err_multichar_utf_character_literal);
1194 IsMultiChar =
false;
1201 bool multi_char_too_long =
false;
1202 if (isAscii() && isMultiChar()) {
1204 for (
size_t i = 0; i < NumCharsSoFar; ++i) {
1206 multi_char_too_long |= (LitVal.countLeadingZeros() < 8);
1208 LitVal = LitVal + (codepoint_buffer[i] & 0xFF);
1210 }
else if (NumCharsSoFar > 0) {
1212 LitVal = buffer_begin[-1];
1215 if (!HadError && multi_char_too_long) {
1216 PP.
Diag(Loc, diag::warn_char_constant_too_large);
1220 Value = LitVal.getZExtValue();
1226 if (isAscii() && NumCharsSoFar == 1 && (
Value & 128) &&
1288 :
SM(PP.getSourceManager()), Features(PP.getLangOpts()),
1289 Target(PP.getTargetInfo()), Diags(Complain ? &PP.getDiagnostics() :nullptr),
1290 MaxTokenLength(0), SizeBound(0), CharByteWidth(0),
Kind(tok::unknown),
1298 if (StringToks.empty() || StringToks[0].getLength() < 2)
1305 assert(!StringToks.empty() &&
"expected at least one token");
1306 MaxTokenLength = StringToks[0].getLength();
1307 assert(StringToks[0].getLength() >= 2 &&
"literal token is invalid!");
1308 SizeBound = StringToks[0].getLength()-2;
1309 Kind = StringToks[0].getKind();
1315 for (
unsigned i = 1; i != StringToks.size(); ++i) {
1316 if (StringToks[i].getLength() < 2)
1317 return DiagnoseLexingError(StringToks[i].getLocation());
1321 assert(StringToks[i].getLength() >= 2 &&
"literal token is invalid!");
1322 SizeBound += StringToks[i].getLength()-2;
1325 if (StringToks[i].getLength() > MaxTokenLength)
1326 MaxTokenLength = StringToks[i].getLength();
1330 if (StringToks[i].isNot(
Kind) && StringToks[i].isNot(tok::string_literal)) {
1332 Kind = StringToks[i].getKind();
1335 Diags->
Report(StringToks[i].getLocation(),
1336 diag::err_unsupported_string_concat);
1349 assert((CharByteWidth & 7) == 0 &&
"Assumes character size is byte multiple");
1354 SizeBound *= CharByteWidth;
1357 ResultBuf.resize(SizeBound);
1361 TokenBuf.resize(MaxTokenLength);
1365 ResultPtr = &ResultBuf[0];
1371 for (
unsigned i = 0, e = StringToks.size(); i != e; ++i) {
1372 const char *ThisTokBuf = &TokenBuf[0];
1376 bool StringInvalid =
false;
1377 unsigned ThisTokLen =
1381 return DiagnoseLexingError(StringToks[i].getLocation());
1383 const char *ThisTokBegin = ThisTokBuf;
1384 const char *ThisTokEnd = ThisTokBuf+ThisTokLen;
1387 if (ThisTokEnd[-1] !=
'"') {
1388 const char *UDSuffixEnd = ThisTokEnd;
1391 }
while (ThisTokEnd[-1] !=
'"');
1393 StringRef UDSuffix(ThisTokEnd, UDSuffixEnd - ThisTokEnd);
1395 if (UDSuffixBuf.empty()) {
1396 if (StringToks[i].hasUCN())
1399 UDSuffixBuf.assign(UDSuffix);
1401 UDSuffixOffset = ThisTokEnd - ThisTokBuf;
1402 UDSuffixTokLoc = StringToks[i].getLocation();
1405 if (StringToks[i].hasUCN()) {
1407 UDSuffix = ExpandedUDSuffix;
1414 if (UDSuffixBuf != UDSuffix) {
1417 Diags->
Report(TokLoc, diag::err_string_concat_mixed_suffix)
1418 << UDSuffixBuf << UDSuffix
1433 if (ThisTokBuf[0] ==
'L' || ThisTokBuf[0] ==
'u' || ThisTokBuf[0] ==
'U') {
1436 if (ThisTokBuf[0] ==
'8')
1441 if (ThisTokBuf[0] ==
'R') {
1444 const char *Prefix = ThisTokBuf;
1445 while (ThisTokBuf[0] !=
'(')
1450 ThisTokEnd -= ThisTokBuf - Prefix;
1451 assert(ThisTokEnd >= ThisTokBuf &&
"malformed raw string literal");
1455 StringRef RemainingTokenSpan(ThisTokBuf, ThisTokEnd - ThisTokBuf);
1456 while (!RemainingTokenSpan.empty()) {
1458 size_t CRLFPos = RemainingTokenSpan.find(
"\r\n");
1459 StringRef BeforeCRLF = RemainingTokenSpan.substr(0, CRLFPos);
1460 StringRef AfterCRLF = RemainingTokenSpan.substr(CRLFPos);
1463 if (CopyStringFragment(StringToks[i], ThisTokBegin, BeforeCRLF))
1468 RemainingTokenSpan = AfterCRLF.substr(1);
1471 if (ThisTokBuf[0] !=
'"') {
1474 return DiagnoseLexingError(StringToks[i].getLocation());
1479 if (Features.PascalStrings && ThisTokBuf + 1 != ThisTokEnd &&
1480 ThisTokBuf[0] ==
'\\' && ThisTokBuf[1] ==
'p') {
1491 while (ThisTokBuf != ThisTokEnd) {
1493 if (ThisTokBuf[0] !=
'\\') {
1494 const char *InStart = ThisTokBuf;
1497 }
while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] !=
'\\');
1500 if (CopyStringFragment(StringToks[i], ThisTokBegin,
1501 StringRef(InStart, ThisTokBuf - InStart)))
1506 if (ThisTokBuf[1] ==
'u' || ThisTokBuf[1] ==
'U') {
1510 CharByteWidth, Diags, Features);
1514 unsigned ResultChar =
1517 CharByteWidth*8, Diags, Features);
1519 if (CharByteWidth == 4) {
1522 llvm::UTF32 *ResultWidePtr =
reinterpret_cast<llvm::UTF32*
>(ResultPtr);
1523 *ResultWidePtr = ResultChar;
1525 }
else if (CharByteWidth == 2) {
1528 llvm::UTF16 *ResultWidePtr =
reinterpret_cast<llvm::UTF16*
>(ResultPtr);
1529 *ResultWidePtr = ResultChar & 0xFFFF;
1532 assert(CharByteWidth == 1 &&
"Unexpected char width");
1533 *ResultPtr++ = ResultChar & 0xFF;
1540 if (CharByteWidth == 4) {
1543 llvm::UTF32 *ResultWidePtr =
reinterpret_cast<llvm::UTF32*
>(ResultBuf.data());
1545 }
else if (CharByteWidth == 2) {
1548 llvm::UTF16 *ResultWidePtr =
reinterpret_cast<llvm::UTF16*
>(ResultBuf.data());
1551 assert(CharByteWidth == 1 &&
"Unexpected char width");
1558 Diags->
Report(StringToks.front().getLocation(),
1559 diag::err_pascal_string_too_long)
1561 StringToks.back().getLocation());
1567 unsigned MaxChars = Features.CPlusPlus? 65536 : Features.C99 ? 4095 : 509;
1570 Diags->
Report(StringToks.front().getLocation(),
1571 diag::ext_string_too_long)
1573 << (Features.CPlusPlus ? 2 : Features.C99 ? 1 : 0)
1575 StringToks.back().getLocation());
1582 End = Err + std::min<unsigned>(llvm::getNumBytesForUTF8(*Err), End-Err);
1583 while (++Err != End && (*Err & 0xC0) == 0x80)
1591 bool StringLiteralParser::CopyStringFragment(
const Token &
Tok,
1592 const char *TokBegin,
1593 StringRef Fragment) {
1594 const llvm::UTF8 *ErrorPtrTmp;
1595 if (ConvertUTF8toWide(CharByteWidth, Fragment, ResultPtr, ErrorPtrTmp))
1601 bool NoErrorOnBadEncoding =
isAscii();
1602 if (NoErrorOnBadEncoding) {
1603 memcpy(ResultPtr, Fragment.data(), Fragment.size());
1604 ResultPtr += Fragment.size();
1608 const char *ErrorPtr =
reinterpret_cast<const char *
>(ErrorPtrTmp);
1612 Diag(Diags, Features, SourceLoc, TokBegin,
1613 ErrorPtr,
resyncUTF8(ErrorPtr, Fragment.end()),
1614 NoErrorOnBadEncoding ? diag::warn_bad_string_encoding
1615 : diag::err_bad_string_encoding);
1617 const char *NextStart =
resyncUTF8(ErrorPtr, Fragment.end());
1618 StringRef NextFragment(NextStart, Fragment.end()-NextStart);
1622 Dummy.reserve(Fragment.size() * CharByteWidth);
1623 char *Ptr = Dummy.data();
1625 while (!ConvertUTF8toWide(CharByteWidth, NextFragment, Ptr, ErrorPtrTmp)) {
1626 const char *ErrorPtr =
reinterpret_cast<const char *
>(ErrorPtrTmp);
1627 NextStart =
resyncUTF8(ErrorPtr, Fragment.end());
1629 ErrorPtr, NextStart);
1630 NextFragment = StringRef(NextStart, Fragment.end()-NextStart);
1633 return !NoErrorOnBadEncoding;
1636 void StringLiteralParser::DiagnoseLexingError(
SourceLocation Loc) {
1639 Diags->
Report(Loc, diag::err_lexing_string);
1646 unsigned ByteNo)
const {
1651 bool StringInvalid =
false;
1652 const char *SpellingPtr = &SpellingBuffer[0];
1658 const char *SpellingStart = SpellingPtr;
1659 const char *SpellingEnd = SpellingPtr+TokLen;
1662 if (SpellingPtr[0] ==
'u' && SpellingPtr[1] ==
'8')
1665 assert(SpellingPtr[0] !=
'L' && SpellingPtr[0] !=
'u' &&
1666 SpellingPtr[0] !=
'U' &&
"Doesn't handle wide or utf strings yet");
1669 if (SpellingPtr[0] ==
'R') {
1670 assert(SpellingPtr[1] ==
'"' &&
"Should be a raw string literal!");
1673 while (*SpellingPtr !=
'(') {
1675 assert(SpellingPtr < SpellingEnd &&
"Missing ( for raw string literal");
1679 return SpellingPtr - SpellingStart + ByteNo;
1683 assert(SpellingPtr[0] ==
'"' &&
"Should be a string literal!");
1688 assert(SpellingPtr < SpellingEnd &&
"Didn't find byte offset!");
1691 if (*SpellingPtr !=
'\\') {
1698 bool HadError =
false;
1699 if (SpellingPtr[1] ==
'u' || SpellingPtr[1] ==
'U') {
1700 const char *EscapePtr = SpellingPtr;
1702 1, Features, HadError);
1705 SpellingPtr = EscapePtr;
1712 CharByteWidth*8, Diags, Features);
1715 assert(!HadError &&
"This method isn't valid on erroneous strings");
1718 return SpellingPtr-SpellingStart;
static unsigned getSpelling(const Token &Tok, const char *&Buffer, const SourceManager &SourceMgr, const LangOptions &LangOpts, bool *Invalid=nullptr)
getSpelling - This method is used to get the spelling of a token into a preallocated buffer...
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const
getOffsetOfStringByte - This function returns the offset of the specified byte of the string data rep...
StringLiteralParser(ArrayRef< Token > StringToks, Preprocessor &PP, bool Complain=true)
unsigned GetNumStringChars() const
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
unsigned getCharWidth() const
unsigned GetStringLength() const
static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits)
unsigned getChar32Width() const
getChar32Width/Align - Return the size of 'char32_t' for this target, in bits.
const TargetInfo & getTargetInfo() const
Token - This structure provides full information about a lexed token.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
const LangOptions & getLangOpts() const
static int MeasureUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, unsigned CharByteWidth, const LangOptions &Features, bool &HadError)
MeasureUCNEscape - Determine the number of bytes within the resulting string which this UCN will occu...
SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart, unsigned Char) const
Given a location that specifies the start of a token, return a new location that specifies a characte...
Concrete class used by the front-end to report problems and issues.
static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix)
Determine whether a suffix is a valid ud-suffix.
NumericLiteralParser(StringRef TokSpelling, SourceLocation TokLoc, Preprocessor &PP)
integer-constant: [C99 6.4.4.1] decimal-constant integer-suffix octal-constant integer-suffix hexadec...
static SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart, unsigned Character, const SourceManager &SM, const LangOptions &LangOpts)
AdvanceToTokenCharacter - If the current SourceLocation specifies a location at the start of a token...
static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix)
Determine whether a suffix is a valid ud-suffix.
A little helper class used to produce diagnostics.
Exposes information about the current target.
CharLiteralParser(const char *begin, const char *end, SourceLocation Loc, Preprocessor &PP, tok::TokenKind kind)
Defines the clang::LangOptions interface.
Represents a character-granular source range.
unsigned getIntWidth() const
getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for this target, in bits.
SourceLocation getLocation() const
Return a source location identifier for the specified offset in the current file. ...
Defines the clang::Preprocessor interface.
const SourceManager & getManager() const
static const char * resyncUTF8(const char *Err, const char *End)
char __ovld __cnfn min(char x, char y)
Returns y if y < x, otherwise it returns x.
static void appendCodePoint(unsigned Codepoint, llvm::SmallVectorImpl< char > &Str)
The result type of a method or function.
static CharSourceRange getCharRange(SourceRange R)
SourceManager & getSourceManager() const
unsigned getWCharWidth() const
getWCharWidth/Align - Return the size of 'wchar_t' for this target, in bits.
bool GetIntegerValue(llvm::APInt &Val)
GetIntegerValue - Convert this numeric literal value to an APInt that matches Val's input width...
Encodes a location in the source.
llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result)
GetFloatValue - Convert this numeric literal to a floating value, using the specified APFloat fltSema...
unsigned getChar16Width() const
getChar16Width/Align - Return the size of 'char16_t' for this target, in bits.
static unsigned ProcessCharEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, bool &HadError, FullSourceLoc Loc, unsigned CharWidth, DiagnosticsEngine *Diags, const LangOptions &Features)
ProcessCharEscape - Parse a standard C escape sequence, which can occur in either a character or a st...
TokenKind
Provides a simple uniform namespace for tokens from all C languages.
void expandUCNs(SmallVectorImpl< char > &Buf, StringRef Input)
Copy characters from Input to Buf, expanding any UCNs.
LLVM_READONLY bool isPrintable(unsigned char c)
Return true if this character is an ASCII printable character; that is, a character that should take ...
static void EncodeUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, char *&ResultBuf, bool &HadError, FullSourceLoc Loc, unsigned CharByteWidth, DiagnosticsEngine *Diags, const LangOptions &Features)
EncodeUCNEscape - Read the Universal Character Name, check constraints and convert the UTF32 to UTF8 ...
Dataflow Directional Tag Classes.
unsigned getLength() const
LLVM_READONLY bool isHexDigit(unsigned char c)
Return true if this character is an ASCII hex digit: [0-9a-fA-F].
LLVM_READONLY bool isDigit(unsigned char c)
Return true if this character is an ASCII digit: [0-9].
bool isFloatingLiteral() const
Defines the clang::SourceLocation class and associated facilities.
DiagnosticsEngine & getDiagnostics() const
static unsigned getCharWidth(tok::TokenKind kind, const TargetInfo &Target)
unsigned kind
All of the diagnostics that can be emitted by the frontend.
Defines the clang::TargetInfo interface.
A SourceLocation and its associated SourceManager.
A trivial tuple used to represent a source range.
static bool ProcessUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, uint32_t &UcnVal, unsigned short &UcnLen, FullSourceLoc Loc, DiagnosticsEngine *Diags, const LangOptions &Features, bool in_char_string_literal=false)
ProcessUCNEscape - Read the Universal Character Name, check constraints and return the UTF32...
LLVM_READONLY bool isPreprocessingNumberBody(unsigned char c)
Return true if this is the body character of a C preprocessing number, which is [a-zA-Z0-9_.
DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) const
Forwarding function for diagnostics.
static CharSourceRange MakeCharSourceRange(const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd)
Engages in a tight little dance with the lexer to efficiently preprocess tokens.