| // Copyright 2012 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // |
| // This file was generated at 2014-10-08 15:25:47.940335 |
| |
| #include "src/unicode.h" |
| #include "src/unicode-inl.h" |
| #include <stdio.h> |
| #include <stdlib.h> |
| |
| #ifdef V8_INTL_SUPPORT |
| #include "unicode/uchar.h" |
| #endif |
| |
| namespace unibrow { |
| |
| static const int kStartBit = (1 << 30); |
| static const int kChunkBits = (1 << 13); |
| static const uchar kSentinel = static_cast<uchar>(-1); |
| |
| /** |
| * \file |
| * Implementations of functions for working with Unicode. |
| */ |
| |
| typedef signed short int16_t; // NOLINT |
| typedef unsigned short uint16_t; // NOLINT |
| typedef int int32_t; // NOLINT |
| |
| |
| // All access to the character table should go through this function. |
| template <int D> |
| static inline uchar TableGet(const int32_t* table, int index) { |
| return table[D * index]; |
| } |
| |
| |
| static inline uchar GetEntry(int32_t entry) { |
| return entry & (kStartBit - 1); |
| } |
| |
| static inline bool IsStart(int32_t entry) { |
| return (entry & kStartBit) != 0; |
| } |
| |
| #ifndef V8_INTL_SUPPORT |
| /** |
| * Look up a character in the Unicode table using a mix of binary and |
| * interpolation search. For a uniformly distributed array |
| * interpolation search beats binary search by a wide margin. However, |
| * in this case interpolation search degenerates because of some very |
| * high values in the lower end of the table so this function uses a |
| * combination. The average number of steps to look up the information |
| * about a character is around 10, slightly higher if there is no |
| * information available about the character. |
| */ |
| static bool LookupPredicate(const int32_t* table, uint16_t size, uchar chr) { |
| static const int kEntryDist = 1; |
| uint16_t value = chr & (kChunkBits - 1); |
| unsigned int low = 0; |
| unsigned int high = size - 1; |
| while (high != low) { |
| unsigned int mid = low + ((high - low) >> 1); |
| uchar current_value = GetEntry(TableGet<kEntryDist>(table, mid)); |
| // If we've found an entry less than or equal to this one, and the |
| // next one is not also less than this one, we've arrived. |
| if ((current_value <= value) && |
| (mid + 1 == size || |
| GetEntry(TableGet<kEntryDist>(table, mid + 1)) > value)) { |
| low = mid; |
| break; |
| } else if (current_value < value) { |
| low = mid + 1; |
| } else if (current_value > value) { |
| // If we've just checked the bottom-most value and it's not |
| // the one we're looking for, we're done. |
| if (mid == 0) break; |
| high = mid - 1; |
| } |
| } |
| int32_t field = TableGet<kEntryDist>(table, low); |
| uchar entry = GetEntry(field); |
| bool is_start = IsStart(field); |
| return (entry == value) || (entry < value && is_start); |
| } |
| #endif // !V8_INTL_SUPPORT |
| |
| template <int kW> |
| struct MultiCharacterSpecialCase { |
| static const uchar kEndOfEncoding = kSentinel; |
| uchar chars[kW]; |
| }; |
| |
| // Look up the mapping for the given character in the specified table, |
| // which is of the specified length and uses the specified special case |
| // mapping for multi-char mappings. The next parameter is the character |
| // following the one to map. The result will be written in to the result |
| // buffer and the number of characters written will be returned. Finally, |
| // if the allow_caching_ptr is non-null then false will be stored in |
| // it if the result contains multiple characters or depends on the |
| // context. |
| // If ranges are linear, a match between a start and end point is |
| // offset by the distance between the match and the start. Otherwise |
| // the result is the same as for the start point on the entire range. |
| template <bool ranges_are_linear, int kW> |
| static int LookupMapping(const int32_t* table, |
| uint16_t size, |
| const MultiCharacterSpecialCase<kW>* multi_chars, |
| uchar chr, |
| uchar next, |
| uchar* result, |
| bool* allow_caching_ptr) { |
| static const int kEntryDist = 2; |
| uint16_t key = chr & (kChunkBits - 1); |
| uint16_t chunk_start = chr - key; |
| unsigned int low = 0; |
| unsigned int high = size - 1; |
| while (high != low) { |
| unsigned int mid = low + ((high - low) >> 1); |
| uchar current_value = GetEntry(TableGet<kEntryDist>(table, mid)); |
| // If we've found an entry less than or equal to this one, and the next one |
| // is not also less than this one, we've arrived. |
| if ((current_value <= key) && |
| (mid + 1 == size || |
| GetEntry(TableGet<kEntryDist>(table, mid + 1)) > key)) { |
| low = mid; |
| break; |
| } else if (current_value < key) { |
| low = mid + 1; |
| } else if (current_value > key) { |
| // If we've just checked the bottom-most value and it's not |
| // the one we're looking for, we're done. |
| if (mid == 0) break; |
| high = mid - 1; |
| } |
| } |
| int32_t field = TableGet<kEntryDist>(table, low); |
| uchar entry = GetEntry(field); |
| bool is_start = IsStart(field); |
| bool found = (entry == key) || (entry < key && is_start); |
| if (found) { |
| int32_t value = table[2 * low + 1]; |
| if (value == 0) { |
| // 0 means not present |
| return 0; |
| } else if ((value & 3) == 0) { |
| // Low bits 0 means a constant offset from the given character. |
| if (ranges_are_linear) { |
| result[0] = chr + (value >> 2); |
| } else { |
| result[0] = entry + chunk_start + (value >> 2); |
| } |
| return 1; |
| } else if ((value & 3) == 1) { |
| // Low bits 1 means a special case mapping |
| if (allow_caching_ptr) *allow_caching_ptr = false; |
| const MultiCharacterSpecialCase<kW>& mapping = multi_chars[value >> 2]; |
| int length = 0; |
| for (length = 0; length < kW; length++) { |
| uchar mapped = mapping.chars[length]; |
| if (mapped == MultiCharacterSpecialCase<kW>::kEndOfEncoding) break; |
| if (ranges_are_linear) { |
| result[length] = mapped + (key - entry); |
| } else { |
| result[length] = mapped; |
| } |
| } |
| return length; |
| } else { |
| // Low bits 2 means a really really special case |
| if (allow_caching_ptr) *allow_caching_ptr = false; |
| // The cases of this switch are defined in unicode.py in the |
| // really_special_cases mapping. |
| switch (value >> 2) { |
| case 1: |
| // Really special case 1: upper case sigma. This letter |
| // converts to two different lower case sigmas depending on |
| // whether or not it occurs at the end of a word. |
| if (next != 0 && Letter::Is(next)) { |
| result[0] = 0x03C3; |
| } else { |
| result[0] = 0x03C2; |
| } |
| return 1; |
| default: |
| return 0; |
| } |
| return -1; |
| } |
| } else { |
| return 0; |
| } |
| } |
| |
| // This method decodes an UTF-8 value according to RFC 3629 and |
| // https://encoding.spec.whatwg.org/#utf-8-decoder . |
| uchar Utf8::CalculateValue(const byte* str, size_t max_length, size_t* cursor) { |
| DCHECK_GT(max_length, 0); |
| DCHECK_GT(str[0], kMaxOneByteChar); |
| |
| State state = State::kAccept; |
| Utf8IncrementalBuffer buffer = 0; |
| uchar t; |
| |
| size_t i = 0; |
| do { |
| t = ValueOfIncremental(str[i], &i, &state, &buffer); |
| } while (i < max_length && t == kIncomplete); |
| |
| *cursor += i; |
| return (state == State::kAccept) ? t : kBadChar; |
| } |
| |
| // Decodes UTF-8 bytes incrementally, allowing the decoding of bytes as they |
| // stream in. This **must** be followed by a call to ValueOfIncrementalFinish |
| // when the stream is complete, to ensure incomplete sequences are handled. |
| uchar Utf8::ValueOfIncremental(byte next, size_t* cursor, State* state, |
| Utf8IncrementalBuffer* buffer) { |
| DCHECK_NOT_NULL(buffer); |
| State old_state = *state; |
| *cursor += 1; |
| |
| if (V8_LIKELY(next <= kMaxOneByteChar && old_state == State::kAccept)) { |
| DCHECK_EQ(0u, *buffer); |
| return static_cast<uchar>(next); |
| } |
| |
| // So we're at the lead byte of a 2/3/4 sequence, or we're at a continuation |
| // char in that sequence. |
| Utf8DfaDecoder::Decode(next, state, buffer); |
| |
| switch (*state) { |
| case State::kAccept: { |
| uchar t = *buffer; |
| *buffer = 0; |
| return t; |
| } |
| |
| case State::kReject: |
| *state = State::kAccept; |
| *buffer = 0; |
| |
| // If we hit a bad byte, we need to determine if we were trying to start |
| // a sequence or continue one. If we were trying to start a sequence, |
| // that means it's just an invalid lead byte and we need to continue to |
| // the next (which we already did above). If we were already in a |
| // sequence, we need to reprocess this same byte after resetting to the |
| // initial state. |
| if (old_state != State::kAccept) { |
| // We were trying to continue a sequence, so let's reprocess this byte |
| // next time. |
| *cursor -= 1; |
| } |
| return kBadChar; |
| |
| default: |
| return kIncomplete; |
| } |
| } |
| |
| // Finishes the incremental decoding, ensuring that if an unfinished sequence |
| // is left that it is replaced by a replacement char. |
| uchar Utf8::ValueOfIncrementalFinish(State* state) { |
| if (*state == State::kAccept) { |
| return kBufferEmpty; |
| } else { |
| DCHECK_GT(*state, State::kAccept); |
| *state = State::kAccept; |
| return kBadChar; |
| } |
| } |
| |
| bool Utf8::ValidateEncoding(const byte* bytes, size_t length) { |
| State state = State::kAccept; |
| Utf8IncrementalBuffer throw_away = 0; |
| for (size_t i = 0; i < length && state != State::kReject; i++) { |
| Utf8DfaDecoder::Decode(bytes[i], &state, &throw_away); |
| } |
| return state == State::kAccept; |
| } |
| |
| // Uppercase: point.category == 'Lu' |
| // TODO(jshin): Check if it's ok to exclude Other_Uppercase characters. |
| #ifdef V8_INTL_SUPPORT |
| bool Uppercase::Is(uchar c) { return static_cast<bool>(u_isupper(c)); } |
| #else |
| static const uint16_t kUppercaseTable0Size = 455; |
| static const int32_t kUppercaseTable0[455] = { |
| 1073741889, 90, 1073742016, 214, |
| 1073742040, 222, 256, 258, // NOLINT |
| 260, 262, 264, 266, |
| 268, 270, 272, 274, // NOLINT |
| 276, 278, 280, 282, |
| 284, 286, 288, 290, // NOLINT |
| 292, 294, 296, 298, |
| 300, 302, 304, 306, // NOLINT |
| 308, 310, 313, 315, |
| 317, 319, 321, 323, // NOLINT |
| 325, 327, 330, 332, |
| 334, 336, 338, 340, // NOLINT |
| 342, 344, 346, 348, |
| 350, 352, 354, 356, // NOLINT |
| 358, 360, 362, 364, |
| 366, 368, 370, 372, // NOLINT |
| 374, 1073742200, 377, 379, |
| 381, 1073742209, 386, 388, // NOLINT |
| 1073742214, 391, 1073742217, 395, |
| 1073742222, 401, 1073742227, 404, // NOLINT |
| 1073742230, 408, 1073742236, 413, |
| 1073742239, 416, 418, 420, // NOLINT |
| 1073742246, 423, 425, 428, |
| 1073742254, 431, 1073742257, 435, // NOLINT |
| 437, 1073742263, 440, 444, |
| 452, 455, 458, 461, // NOLINT |
| 463, 465, 467, 469, |
| 471, 473, 475, 478, // NOLINT |
| 480, 482, 484, 486, |
| 488, 490, 492, 494, // NOLINT |
| 497, 500, 1073742326, 504, |
| 506, 508, 510, 512, // NOLINT |
| 514, 516, 518, 520, |
| 522, 524, 526, 528, // NOLINT |
| 530, 532, 534, 536, |
| 538, 540, 542, 544, // NOLINT |
| 546, 548, 550, 552, |
| 554, 556, 558, 560, // NOLINT |
| 562, 1073742394, 571, 1073742397, |
| 574, 577, 1073742403, 582, // NOLINT |
| 584, 586, 588, 590, |
| 880, 882, 886, 895, // NOLINT |
| 902, 1073742728, 906, 908, |
| 1073742734, 911, 1073742737, 929, // NOLINT |
| 1073742755, 939, 975, 1073742802, |
| 980, 984, 986, 988, // NOLINT |
| 990, 992, 994, 996, |
| 998, 1000, 1002, 1004, // NOLINT |
| 1006, 1012, 1015, 1073742841, |
| 1018, 1073742845, 1071, 1120, // NOLINT |
| 1122, 1124, 1126, 1128, |
| 1130, 1132, 1134, 1136, // NOLINT |
| 1138, 1140, 1142, 1144, |
| 1146, 1148, 1150, 1152, // NOLINT |
| 1162, 1164, 1166, 1168, |
| 1170, 1172, 1174, 1176, // NOLINT |
| 1178, 1180, 1182, 1184, |
| 1186, 1188, 1190, 1192, // NOLINT |
| 1194, 1196, 1198, 1200, |
| 1202, 1204, 1206, 1208, // NOLINT |
| 1210, 1212, 1214, 1073743040, |
| 1217, 1219, 1221, 1223, // NOLINT |
| 1225, 1227, 1229, 1232, |
| 1234, 1236, 1238, 1240, // NOLINT |
| 1242, 1244, 1246, 1248, |
| 1250, 1252, 1254, 1256, // NOLINT |
| 1258, 1260, 1262, 1264, |
| 1266, 1268, 1270, 1272, // NOLINT |
| 1274, 1276, 1278, 1280, |
| 1282, 1284, 1286, 1288, // NOLINT |
| 1290, 1292, 1294, 1296, |
| 1298, 1300, 1302, 1304, // NOLINT |
| 1306, 1308, 1310, 1312, |
| 1314, 1316, 1318, 1320, // NOLINT |
| 1322, 1324, 1326, 1073743153, |
| 1366, 1073746080, 4293, 4295, // NOLINT |
| 4301, 7680, 7682, 7684, |
| 7686, 7688, 7690, 7692, // NOLINT |
| 7694, 7696, 7698, 7700, |
| 7702, 7704, 7706, 7708, // NOLINT |
| 7710, 7712, 7714, 7716, |
| 7718, 7720, 7722, 7724, // NOLINT |
| 7726, 7728, 7730, 7732, |
| 7734, 7736, 7738, 7740, // NOLINT |
| 7742, 7744, 7746, 7748, |
| 7750, 7752, 7754, 7756, // NOLINT |
| 7758, 7760, 7762, 7764, |
| 7766, 7768, 7770, 7772, // NOLINT |
| 7774, 7776, 7778, 7780, |
| 7782, 7784, 7786, 7788, // NOLINT |
| 7790, 7792, 7794, 7796, |
| 7798, 7800, 7802, 7804, // NOLINT |
| 7806, 7808, 7810, 7812, |
| 7814, 7816, 7818, 7820, // NOLINT |
| 7822, 7824, 7826, 7828, |
| 7838, 7840, 7842, 7844, // NOLINT |
| 7846, 7848, 7850, 7852, |
| 7854, 7856, 7858, 7860, // NOLINT |
| 7862, 7864, 7866, 7868, |
| 7870, 7872, 7874, 7876, // NOLINT |
| 7878, 7880, 7882, 7884, |
| 7886, 7888, 7890, 7892, // NOLINT |
| 7894, 7896, 7898, 7900, |
| 7902, 7904, 7906, 7908, // NOLINT |
| 7910, 7912, 7914, 7916, |
| 7918, 7920, 7922, 7924, // NOLINT |
| 7926, 7928, 7930, 7932, |
| 7934, 1073749768, 7951, 1073749784, // NOLINT |
| 7965, 1073749800, 7983, 1073749816, |
| 7999, 1073749832, 8013, 8025, // NOLINT |
| 8027, 8029, 8031, 1073749864, |
| 8047, 1073749944, 8123, 1073749960, // NOLINT |
| 8139, 1073749976, 8155, 1073749992, |
| 8172, 1073750008, 8187}; // NOLINT |
| static const uint16_t kUppercaseTable1Size = 86; |
| static const int32_t kUppercaseTable1[86] = { |
| 258, 263, 1073742091, 269, 1073742096, 274, 277, 1073742105, // NOLINT |
| 285, 292, 294, 296, 1073742122, 301, 1073742128, 307, // NOLINT |
| 1073742142, 319, 325, 387, 1073744896, 3118, 3168, 1073744994, // NOLINT |
| 3172, 3175, 3177, 3179, 1073745005, 3184, 3186, 3189, // NOLINT |
| 1073745022, 3200, 3202, 3204, 3206, 3208, 3210, 3212, // NOLINT |
| 3214, 3216, 3218, 3220, 3222, 3224, 3226, 3228, // NOLINT |
| 3230, 3232, 3234, 3236, 3238, 3240, 3242, 3244, // NOLINT |
| 3246, 3248, 3250, 3252, 3254, 3256, 3258, 3260, // NOLINT |
| 3262, 3264, 3266, 3268, 3270, 3272, 3274, 3276, // NOLINT |
| 3278, 3280, 3282, 3284, 3286, 3288, 3290, 3292, // NOLINT |
| 3294, 3296, 3298, 3307, 3309, 3314 }; // NOLINT |
| static const uint16_t kUppercaseTable5Size = 101; |
| static const int32_t kUppercaseTable5[101] = { |
| 1600, 1602, 1604, 1606, 1608, 1610, 1612, 1614, // NOLINT |
| 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, // NOLINT |
| 1632, 1634, 1636, 1638, 1640, 1642, 1644, 1664, // NOLINT |
| 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, // NOLINT |
| 1682, 1684, 1686, 1688, 1690, 1826, 1828, 1830, // NOLINT |
| 1832, 1834, 1836, 1838, 1842, 1844, 1846, 1848, // NOLINT |
| 1850, 1852, 1854, 1856, 1858, 1860, 1862, 1864, // NOLINT |
| 1866, 1868, 1870, 1872, 1874, 1876, 1878, 1880, // NOLINT |
| 1882, 1884, 1886, 1888, 1890, 1892, 1894, 1896, // NOLINT |
| 1898, 1900, 1902, 1913, 1915, 1073743741, 1918, 1920, // NOLINT |
| 1922, 1924, 1926, 1931, 1933, 1936, 1938, 1942, // NOLINT |
| 1944, 1946, 1948, 1950, 1952, 1954, 1956, 1958, // NOLINT |
| 1960, 1073743786, 1965, 1073743792, 1969}; // NOLINT |
| static const uint16_t kUppercaseTable7Size = 2; |
| static const int32_t kUppercaseTable7[2] = { |
| 1073749793, 7994 }; // NOLINT |
| bool Uppercase::Is(uchar c) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: return LookupPredicate(kUppercaseTable0, |
| kUppercaseTable0Size, |
| c); |
| case 1: return LookupPredicate(kUppercaseTable1, |
| kUppercaseTable1Size, |
| c); |
| case 5: return LookupPredicate(kUppercaseTable5, |
| kUppercaseTable5Size, |
| c); |
| case 7: return LookupPredicate(kUppercaseTable7, |
| kUppercaseTable7Size, |
| c); |
| default: return false; |
| } |
| } |
| #endif // V8_INTL_SUPPORT |
| |
| // Letter: point.category in ['Lu', 'Ll', 'Lt', 'Lm', 'Lo', 'Nl'] |
| #ifdef V8_INTL_SUPPORT |
| bool Letter::Is(uchar c) { return static_cast<bool>(u_isalpha(c)); } |
| #else |
| static const uint16_t kLetterTable0Size = 431; |
| static const int32_t kLetterTable0[431] = { |
| 1073741889, 90, 1073741921, 122, |
| 170, 181, 186, 1073742016, // NOLINT |
| 214, 1073742040, 246, 1073742072, |
| 705, 1073742534, 721, 1073742560, // NOLINT |
| 740, 748, 750, 1073742704, |
| 884, 1073742710, 887, 1073742714, // NOLINT |
| 893, 895, 902, 1073742728, |
| 906, 908, 1073742734, 929, // NOLINT |
| 1073742755, 1013, 1073742839, 1153, |
| 1073742986, 1327, 1073743153, 1366, // NOLINT |
| 1369, 1073743201, 1415, 1073743312, |
| 1514, 1073743344, 1522, 1073743392, // NOLINT |
| 1610, 1073743470, 1647, 1073743473, |
| 1747, 1749, 1073743589, 1766, // NOLINT |
| 1073743598, 1775, 1073743610, 1788, |
| 1791, 1808, 1073743634, 1839, // NOLINT |
| 1073743693, 1957, 1969, 1073743818, |
| 2026, 1073743860, 2037, 2042, // NOLINT |
| 1073743872, 2069, 2074, 2084, |
| 2088, 1073743936, 2136, 1073744032, // NOLINT |
| 2226, 1073744132, 2361, 2365, |
| 2384, 1073744216, 2401, 1073744241, // NOLINT |
| 2432, 1073744261, 2444, 1073744271, |
| 2448, 1073744275, 2472, 1073744298, // NOLINT |
| 2480, 2482, 1073744310, 2489, |
| 2493, 2510, 1073744348, 2525, // NOLINT |
| 1073744351, 2529, 1073744368, 2545, |
| 1073744389, 2570, 1073744399, 2576, // NOLINT |
| 1073744403, 2600, 1073744426, 2608, |
| 1073744434, 2611, 1073744437, 2614, // NOLINT |
| 1073744440, 2617, 1073744473, 2652, |
| 2654, 1073744498, 2676, 1073744517, // NOLINT |
| 2701, 1073744527, 2705, 1073744531, |
| 2728, 1073744554, 2736, 1073744562, // NOLINT |
| 2739, 1073744565, 2745, 2749, |
| 2768, 1073744608, 2785, 1073744645, // NOLINT |
| 2828, 1073744655, 2832, 1073744659, |
| 2856, 1073744682, 2864, 1073744690, // NOLINT |
| 2867, 1073744693, 2873, 2877, |
| 1073744732, 2909, 1073744735, 2913, // NOLINT |
| 2929, 2947, 1073744773, 2954, |
| 1073744782, 2960, 1073744786, 2965, // NOLINT |
| 1073744793, 2970, 2972, 1073744798, |
| 2975, 1073744803, 2980, 1073744808, // NOLINT |
| 2986, 1073744814, 3001, 3024, |
| 1073744901, 3084, 1073744910, 3088, // NOLINT |
| 1073744914, 3112, 1073744938, 3129, |
| 3133, 1073744984, 3161, 1073744992, // NOLINT |
| 3169, 1073745029, 3212, 1073745038, |
| 3216, 1073745042, 3240, 1073745066, // NOLINT |
| 3251, 1073745077, 3257, 3261, |
| 3294, 1073745120, 3297, 1073745137, // NOLINT |
| 3314, 1073745157, 3340, 1073745166, |
| 3344, 1073745170, 3386, 3389, // NOLINT |
| 3406, 1073745248, 3425, 1073745274, |
| 3455, 1073745285, 3478, 1073745306, // NOLINT |
| 3505, 1073745331, 3515, 3517, |
| 1073745344, 3526, 1073745409, 3632, // NOLINT |
| 1073745458, 3635, 1073745472, 3654, |
| 1073745537, 3714, 3716, 1073745543, // NOLINT |
| 3720, 3722, 3725, 1073745556, |
| 3735, 1073745561, 3743, 1073745569, // NOLINT |
| 3747, 3749, 3751, 1073745578, |
| 3755, 1073745581, 3760, 1073745586, // NOLINT |
| 3763, 3773, 1073745600, 3780, |
| 3782, 1073745628, 3807, 3840, // NOLINT |
| 1073745728, 3911, 1073745737, 3948, |
| 1073745800, 3980, 1073745920, 4138, // NOLINT |
| 4159, 1073746000, 4181, 1073746010, |
| 4189, 4193, 1073746021, 4198, // NOLINT |
| 1073746030, 4208, 1073746037, 4225, |
| 4238, 1073746080, 4293, 4295, // NOLINT |
| 4301, 1073746128, 4346, 1073746172, |
| 4680, 1073746506, 4685, 1073746512, // NOLINT |
| 4694, 4696, 1073746522, 4701, |
| 1073746528, 4744, 1073746570, 4749, // NOLINT |
| 1073746576, 4784, 1073746610, 4789, |
| 1073746616, 4798, 4800, 1073746626, // NOLINT |
| 4805, 1073746632, 4822, 1073746648, |
| 4880, 1073746706, 4885, 1073746712, // NOLINT |
| 4954, 1073746816, 5007, 1073746848, |
| 5108, 1073746945, 5740, 1073747567, // NOLINT |
| 5759, 1073747585, 5786, 1073747616, |
| 5866, 1073747694, 5880, 1073747712, // NOLINT |
| 5900, 1073747726, 5905, 1073747744, |
| 5937, 1073747776, 5969, 1073747808, // NOLINT |
| 5996, 1073747822, 6000, 1073747840, |
| 6067, 6103, 6108, 1073748000, // NOLINT |
| 6263, 1073748096, 6312, 6314, |
| 1073748144, 6389, 1073748224, 6430, // NOLINT |
| 1073748304, 6509, 1073748336, 6516, |
| 1073748352, 6571, 1073748417, 6599, // NOLINT |
| 1073748480, 6678, 1073748512, 6740, |
| 6823, 1073748741, 6963, 1073748805, // NOLINT |
| 6987, 1073748867, 7072, 1073748910, |
| 7087, 1073748922, 7141, 1073748992, // NOLINT |
| 7203, 1073749069, 7247, 1073749082, |
| 7293, 1073749225, 7404, 1073749230, // NOLINT |
| 7409, 1073749237, 7414, 1073749248, |
| 7615, 1073749504, 7957, 1073749784, // NOLINT |
| 7965, 1073749792, 8005, 1073749832, |
| 8013, 1073749840, 8023, 8025, // NOLINT |
| 8027, 8029, 1073749855, 8061, |
| 1073749888, 8116, 1073749942, 8124, // NOLINT |
| 8126, 1073749954, 8132, 1073749958, |
| 8140, 1073749968, 8147, 1073749974, // NOLINT |
| 8155, 1073749984, 8172, 1073750002, |
| 8180, 1073750006, 8188}; // NOLINT |
| static const uint16_t kLetterTable1Size = 87; |
| static const int32_t kLetterTable1[87] = { |
| 113, 127, 1073741968, 156, 258, 263, 1073742090, 275, // NOLINT |
| 277, 1073742105, 285, 292, 294, 296, 1073742122, 301, // NOLINT |
| 1073742127, 313, 1073742140, 319, 1073742149, 329, 334, 1073742176, // NOLINT |
| 392, 1073744896, 3118, 1073744944, 3166, 1073744992, 3300, 1073745131, // NOLINT |
| 3310, 1073745138, 3315, 1073745152, 3365, 3367, 3373, 1073745200, // NOLINT |
| 3431, 3439, 1073745280, 3478, 1073745312, 3494, 1073745320, 3502, // NOLINT |
| 1073745328, 3510, 1073745336, 3518, 1073745344, 3526, 1073745352, 3534, // NOLINT |
| 1073745360, 3542, 1073745368, 3550, 3631, 1073745925, 4103, 1073745953, // NOLINT |
| 4137, 1073745969, 4149, 1073745976, 4156, 1073745985, 4246, 1073746077, // NOLINT |
| 4255, 1073746081, 4346, 1073746172, 4351, 1073746181, 4397, 1073746225, // NOLINT |
| 4494, 1073746336, 4538, 1073746416, 4607, 1073746944, 8191 }; // NOLINT |
| static const uint16_t kLetterTable2Size = 4; |
| static const int32_t kLetterTable2[4] = { |
| 1073741824, 3509, 1073745408, 8191 }; // NOLINT |
| static const uint16_t kLetterTable3Size = 2; |
| static const int32_t kLetterTable3[2] = { |
| 1073741824, 8191 }; // NOLINT |
| static const uint16_t kLetterTable4Size = 2; |
| static const int32_t kLetterTable4[2] = { |
| 1073741824, 8140 }; // NOLINT |
| static const uint16_t kLetterTable5Size = 100; |
| static const int32_t kLetterTable5[100] = { |
| 1073741824, 1164, 1073743056, 1277, |
| 1073743104, 1548, 1073743376, 1567, // NOLINT |
| 1073743402, 1579, 1073743424, 1646, |
| 1073743487, 1693, 1073743520, 1775, // NOLINT |
| 1073743639, 1823, 1073743650, 1928, |
| 1073743755, 1934, 1073743760, 1965, // NOLINT |
| 1073743792, 1969, 1073743863, 2049, |
| 1073743875, 2053, 1073743879, 2058, // NOLINT |
| 1073743884, 2082, 1073743936, 2163, |
| 1073744002, 2227, 1073744114, 2295, // NOLINT |
| 2299, 1073744138, 2341, 1073744176, |
| 2374, 1073744224, 2428, 1073744260, // NOLINT |
| 2482, 2511, 1073744352, 2532, |
| 1073744358, 2543, 1073744378, 2558, // NOLINT |
| 1073744384, 2600, 1073744448, 2626, |
| 1073744452, 2635, 1073744480, 2678, // NOLINT |
| 2682, 1073744510, 2735, 2737, |
| 1073744565, 2742, 1073744569, 2749, // NOLINT |
| 2752, 2754, 1073744603, 2781, |
| 1073744608, 2794, 1073744626, 2804, // NOLINT |
| 1073744641, 2822, 1073744649, 2830, |
| 1073744657, 2838, 1073744672, 2854, // NOLINT |
| 1073744680, 2862, 1073744688, 2906, |
| 1073744732, 2911, 1073744740, 2917, // NOLINT |
| 1073744832, 3042, 1073744896, 8191}; // NOLINT |
| static const uint16_t kLetterTable6Size = 6; |
| static const int32_t kLetterTable6[6] = { |
| 1073741824, 6051, 1073747888, 6086, 1073747915, 6139 }; // NOLINT |
| static const uint16_t kLetterTable7Size = 48; |
| static const int32_t kLetterTable7[48] = { |
| 1073748224, 6765, 1073748592, 6873, 1073748736, 6918, 1073748755, 6935, // NOLINT |
| 6941, 1073748767, 6952, 1073748778, 6966, 1073748792, 6972, 6974, // NOLINT |
| 1073748800, 6977, 1073748803, 6980, 1073748806, 7089, 1073748947, 7485, // NOLINT |
| 1073749328, 7567, 1073749394, 7623, 1073749488, 7675, 1073749616, 7796, // NOLINT |
| 1073749622, 7932, 1073749793, 7994, 1073749825, 8026, 1073749862, 8126, // NOLINT |
| 1073749954, 8135, 1073749962, 8143, 1073749970, 8151, 1073749978, 8156 }; // NOLINT |
| bool Letter::Is(uchar c) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: return LookupPredicate(kLetterTable0, |
| kLetterTable0Size, |
| c); |
| case 1: return LookupPredicate(kLetterTable1, |
| kLetterTable1Size, |
| c); |
| case 2: return LookupPredicate(kLetterTable2, |
| kLetterTable2Size, |
| c); |
| case 3: return LookupPredicate(kLetterTable3, |
| kLetterTable3Size, |
| c); |
| case 4: return LookupPredicate(kLetterTable4, |
| kLetterTable4Size, |
| c); |
| case 5: return LookupPredicate(kLetterTable5, |
| kLetterTable5Size, |
| c); |
| case 6: return LookupPredicate(kLetterTable6, |
| kLetterTable6Size, |
| c); |
| case 7: return LookupPredicate(kLetterTable7, |
| kLetterTable7Size, |
| c); |
| default: return false; |
| } |
| } |
| #endif |
| |
| #ifndef V8_INTL_SUPPORT |
| // ID_Start: ((point.category in ['Lu', 'Ll', 'Lt', 'Lm', 'Lo', |
| // 'Nl'] or 'Other_ID_Start' in point.properties) and ('Pattern_Syntax' not in |
| // point.properties) and ('Pattern_White_Space' not in point.properties)) or |
| // ('JS_ID_Start' in point.properties) |
| |
| static const uint16_t kID_StartTable0Size = 434; |
| static const int32_t kID_StartTable0[434] = { |
| 36, 1073741889, 90, 92, |
| 95, 1073741921, 122, 170, // NOLINT |
| 181, 186, 1073742016, 214, |
| 1073742040, 246, 1073742072, 705, // NOLINT |
| 1073742534, 721, 1073742560, 740, |
| 748, 750, 1073742704, 884, // NOLINT |
| 1073742710, 887, 1073742714, 893, |
| 895, 902, 1073742728, 906, // NOLINT |
| 908, 1073742734, 929, 1073742755, |
| 1013, 1073742839, 1153, 1073742986, // NOLINT |
| 1327, 1073743153, 1366, 1369, |
| 1073743201, 1415, 1073743312, 1514, // NOLINT |
| 1073743344, 1522, 1073743392, 1610, |
| 1073743470, 1647, 1073743473, 1747, // NOLINT |
| 1749, 1073743589, 1766, 1073743598, |
| 1775, 1073743610, 1788, 1791, // NOLINT |
| 1808, 1073743634, 1839, 1073743693, |
| 1957, 1969, 1073743818, 2026, // NOLINT |
| 1073743860, 2037, 2042, 1073743872, |
| 2069, 2074, 2084, 2088, // NOLINT |
| 1073743936, 2136, 1073744032, 2226, |
| 1073744132, 2361, 2365, 2384, // NOLINT |
| 1073744216, 2401, 1073744241, 2432, |
| 1073744261, 2444, 1073744271, 2448, // NOLINT |
| 1073744275, 2472, 1073744298, 2480, |
| 2482, 1073744310, 2489, 2493, // NOLINT |
| 2510, 1073744348, 2525, 1073744351, |
| 2529, 1073744368, 2545, 1073744389, // NOLINT |
| 2570, 1073744399, 2576, 1073744403, |
| 2600, 1073744426, 2608, 1073744434, // NOLINT |
| 2611, 1073744437, 2614, 1073744440, |
| 2617, 1073744473, 2652, 2654, // NOLINT |
| 1073744498, 2676, 1073744517, 2701, |
| 1073744527, 2705, 1073744531, 2728, // NOLINT |
| 1073744554, 2736, 1073744562, 2739, |
| 1073744565, 2745, 2749, 2768, // NOLINT |
| 1073744608, 2785, 1073744645, 2828, |
| 1073744655, 2832, 1073744659, 2856, // NOLINT |
| 1073744682, 2864, 1073744690, 2867, |
| 1073744693, 2873, 2877, 1073744732, // NOLINT |
| 2909, 1073744735, 2913, 2929, |
| 2947, 1073744773, 2954, 1073744782, // NOLINT |
| 2960, 1073744786, 2965, 1073744793, |
| 2970, 2972, 1073744798, 2975, // NOLINT |
| 1073744803, 2980, 1073744808, 2986, |
| 1073744814, 3001, 3024, 1073744901, // NOLINT |
| 3084, 1073744910, 3088, 1073744914, |
| 3112, 1073744938, 3129, 3133, // NOLINT |
| 1073744984, 3161, 1073744992, 3169, |
| 1073745029, 3212, 1073745038, 3216, // NOLINT |
| 1073745042, 3240, 1073745066, 3251, |
| 1073745077, 3257, 3261, 3294, // NOLINT |
| 1073745120, 3297, 1073745137, 3314, |
| 1073745157, 3340, 1073745166, 3344, // NOLINT |
| 1073745170, 3386, 3389, 3406, |
| 1073745248, 3425, 1073745274, 3455, // NOLINT |
| 1073745285, 3478, 1073745306, 3505, |
| 1073745331, 3515, 3517, 1073745344, // NOLINT |
| 3526, 1073745409, 3632, 1073745458, |
| 3635, 1073745472, 3654, 1073745537, // NOLINT |
| 3714, 3716, 1073745543, 3720, |
| 3722, 3725, 1073745556, 3735, // NOLINT |
| 1073745561, 3743, 1073745569, 3747, |
| 3749, 3751, 1073745578, 3755, // NOLINT |
| 1073745581, 3760, 1073745586, 3763, |
| 3773, 1073745600, 3780, 3782, // NOLINT |
| 1073745628, 3807, 3840, 1073745728, |
| 3911, 1073745737, 3948, 1073745800, // NOLINT |
| 3980, 1073745920, 4138, 4159, |
| 1073746000, 4181, 1073746010, 4189, // NOLINT |
| 4193, 1073746021, 4198, 1073746030, |
| 4208, 1073746037, 4225, 4238, // NOLINT |
| 1073746080, 4293, 4295, 4301, |
| 1073746128, 4346, 1073746172, 4680, // NOLINT |
| 1073746506, 4685, 1073746512, 4694, |
| 4696, 1073746522, 4701, 1073746528, // NOLINT |
| 4744, 1073746570, 4749, 1073746576, |
| 4784, 1073746610, 4789, 1073746616, // NOLINT |
| 4798, 4800, 1073746626, 4805, |
| 1073746632, 4822, 1073746648, 4880, // NOLINT |
| 1073746706, 4885, 1073746712, 4954, |
| 1073746816, 5007, 1073746848, 5108, // NOLINT |
| 1073746945, 5740, 1073747567, 5759, |
| 1073747585, 5786, 1073747616, 5866, // NOLINT |
| 1073747694, 5880, 1073747712, 5900, |
| 1073747726, 5905, 1073747744, 5937, // NOLINT |
| 1073747776, 5969, 1073747808, 5996, |
| 1073747822, 6000, 1073747840, 6067, // NOLINT |
| 6103, 6108, 1073748000, 6263, |
| 1073748096, 6312, 6314, 1073748144, // NOLINT |
| 6389, 1073748224, 6430, 1073748304, |
| 6509, 1073748336, 6516, 1073748352, // NOLINT |
| 6571, 1073748417, 6599, 1073748480, |
| 6678, 1073748512, 6740, 6823, // NOLINT |
| 1073748741, 6963, 1073748805, 6987, |
| 1073748867, 7072, 1073748910, 7087, // NOLINT |
| 1073748922, 7141, 1073748992, 7203, |
| 1073749069, 7247, 1073749082, 7293, // NOLINT |
| 1073749225, 7404, 1073749230, 7409, |
| 1073749237, 7414, 1073749248, 7615, // NOLINT |
| 1073749504, 7957, 1073749784, 7965, |
| 1073749792, 8005, 1073749832, 8013, // NOLINT |
| 1073749840, 8023, 8025, 8027, |
| 8029, 1073749855, 8061, 1073749888, // NOLINT |
| 8116, 1073749942, 8124, 8126, |
| 1073749954, 8132, 1073749958, 8140, // NOLINT |
| 1073749968, 8147, 1073749974, 8155, |
| 1073749984, 8172, 1073750002, 8180, // NOLINT |
| 1073750006, 8188}; // NOLINT |
| static const uint16_t kID_StartTable1Size = 84; |
| static const int32_t kID_StartTable1[84] = { |
| 113, 127, 1073741968, 156, |
| 258, 263, 1073742090, 275, // NOLINT |
| 277, 1073742104, 285, 292, |
| 294, 296, 1073742122, 313, // NOLINT |
| 1073742140, 319, 1073742149, 329, |
| 334, 1073742176, 392, 1073744896, // NOLINT |
| 3118, 1073744944, 3166, 1073744992, |
| 3300, 1073745131, 3310, 1073745138, // NOLINT |
| 3315, 1073745152, 3365, 3367, |
| 3373, 1073745200, 3431, 3439, // NOLINT |
| 1073745280, 3478, 1073745312, 3494, |
| 1073745320, 3502, 1073745328, 3510, // NOLINT |
| 1073745336, 3518, 1073745344, 3526, |
| 1073745352, 3534, 1073745360, 3542, // NOLINT |
| 1073745368, 3550, 1073745925, 4103, |
| 1073745953, 4137, 1073745969, 4149, // NOLINT |
| 1073745976, 4156, 1073745985, 4246, |
| 1073746075, 4255, 1073746081, 4346, // NOLINT |
| 1073746172, 4351, 1073746181, 4397, |
| 1073746225, 4494, 1073746336, 4538, // NOLINT |
| 1073746416, 4607, 1073746944, 8191}; // NOLINT |
| static const uint16_t kID_StartTable2Size = 4; |
| static const int32_t kID_StartTable2[4] = {1073741824, 3509, 1073745408, |
| 8191}; // NOLINT |
| static const uint16_t kID_StartTable3Size = 2; |
| static const int32_t kID_StartTable3[2] = {1073741824, 8191}; // NOLINT |
| static const uint16_t kID_StartTable4Size = 2; |
| static const int32_t kID_StartTable4[2] = {1073741824, 8140}; // NOLINT |
| static const uint16_t kID_StartTable5Size = 100; |
| static const int32_t kID_StartTable5[100] = { |
| 1073741824, 1164, 1073743056, 1277, |
| 1073743104, 1548, 1073743376, 1567, // NOLINT |
| 1073743402, 1579, 1073743424, 1646, |
| 1073743487, 1693, 1073743520, 1775, // NOLINT |
| 1073743639, 1823, 1073743650, 1928, |
| 1073743755, 1934, 1073743760, 1965, // NOLINT |
| 1073743792, 1969, 1073743863, 2049, |
| 1073743875, 2053, 1073743879, 2058, // NOLINT |
| 1073743884, 2082, 1073743936, 2163, |
| 1073744002, 2227, 1073744114, 2295, // NOLINT |
| 2299, 1073744138, 2341, 1073744176, |
| 2374, 1073744224, 2428, 1073744260, // NOLINT |
| 2482, 2511, 1073744352, 2532, |
| 1073744358, 2543, 1073744378, 2558, // NOLINT |
| 1073744384, 2600, 1073744448, 2626, |
| 1073744452, 2635, 1073744480, 2678, // NOLINT |
| 2682, 1073744510, 2735, 2737, |
| 1073744565, 2742, 1073744569, 2749, // NOLINT |
| 2752, 2754, 1073744603, 2781, |
| 1073744608, 2794, 1073744626, 2804, // NOLINT |
| 1073744641, 2822, 1073744649, 2830, |
| 1073744657, 2838, 1073744672, 2854, // NOLINT |
| 1073744680, 2862, 1073744688, 2906, |
| 1073744732, 2911, 1073744740, 2917, // NOLINT |
| 1073744832, 3042, 1073744896, 8191}; // NOLINT |
| static const uint16_t kID_StartTable6Size = 6; |
| static const int32_t kID_StartTable6[6] = {1073741824, 6051, 1073747888, 6086, |
| 1073747915, 6139}; // NOLINT |
| static const uint16_t kID_StartTable7Size = 48; |
| static const int32_t kID_StartTable7[48] = { |
| 1073748224, 6765, 1073748592, 6873, |
| 1073748736, 6918, 1073748755, 6935, // NOLINT |
| 6941, 1073748767, 6952, 1073748778, |
| 6966, 1073748792, 6972, 6974, // NOLINT |
| 1073748800, 6977, 1073748803, 6980, |
| 1073748806, 7089, 1073748947, 7485, // NOLINT |
| 1073749328, 7567, 1073749394, 7623, |
| 1073749488, 7675, 1073749616, 7796, // NOLINT |
| 1073749622, 7932, 1073749793, 7994, |
| 1073749825, 8026, 1073749862, 8126, // NOLINT |
| 1073749954, 8135, 1073749962, 8143, |
| 1073749970, 8151, 1073749978, 8156}; // NOLINT |
| bool ID_Start::Is(uchar c) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: |
| return LookupPredicate(kID_StartTable0, kID_StartTable0Size, c); |
| case 1: |
| return LookupPredicate(kID_StartTable1, kID_StartTable1Size, c); |
| case 2: |
| return LookupPredicate(kID_StartTable2, kID_StartTable2Size, c); |
| case 3: |
| return LookupPredicate(kID_StartTable3, kID_StartTable3Size, c); |
| case 4: |
| return LookupPredicate(kID_StartTable4, kID_StartTable4Size, c); |
| case 5: |
| return LookupPredicate(kID_StartTable5, kID_StartTable5Size, c); |
| case 6: |
| return LookupPredicate(kID_StartTable6, kID_StartTable6Size, c); |
| case 7: |
| return LookupPredicate(kID_StartTable7, kID_StartTable7Size, c); |
| default: |
| return false; |
| } |
| } |
| |
| |
| // ID_Continue: point.category in ['Nd', 'Mn', 'Mc', 'Pc'] or |
| // 'Other_ID_Continue' in point.properties or 'JS_ID_Continue' in |
| // point.properties |
| |
| static const uint16_t kID_ContinueTable0Size = 315; |
| static const int32_t kID_ContinueTable0[315] = { |
| 1073741872, 57, 95, 183, |
| 1073742592, 879, 903, 1073742979, // NOLINT |
| 1159, 1073743249, 1469, 1471, |
| 1073743297, 1474, 1073743300, 1477, // NOLINT |
| 1479, 1073743376, 1562, 1073743435, |
| 1641, 1648, 1073743574, 1756, // NOLINT |
| 1073743583, 1764, 1073743591, 1768, |
| 1073743594, 1773, 1073743600, 1785, // NOLINT |
| 1809, 1073743664, 1866, 1073743782, |
| 1968, 1073743808, 1993, 1073743851, // NOLINT |
| 2035, 1073743894, 2073, 1073743899, |
| 2083, 1073743909, 2087, 1073743913, // NOLINT |
| 2093, 1073743961, 2139, 1073744100, |
| 2307, 1073744186, 2364, 1073744190, // NOLINT |
| 2383, 1073744209, 2391, 1073744226, |
| 2403, 1073744230, 2415, 1073744257, // NOLINT |
| 2435, 2492, 1073744318, 2500, |
| 1073744327, 2504, 1073744331, 2509, // NOLINT |
| 2519, 1073744354, 2531, 1073744358, |
| 2543, 1073744385, 2563, 2620, // NOLINT |
| 1073744446, 2626, 1073744455, 2632, |
| 1073744459, 2637, 2641, 1073744486, // NOLINT |
| 2673, 2677, 1073744513, 2691, |
| 2748, 1073744574, 2757, 1073744583, // NOLINT |
| 2761, 1073744587, 2765, 1073744610, |
| 2787, 1073744614, 2799, 1073744641, // NOLINT |
| 2819, 2876, 1073744702, 2884, |
| 1073744711, 2888, 1073744715, 2893, // NOLINT |
| 1073744726, 2903, 1073744738, 2915, |
| 1073744742, 2927, 2946, 1073744830, // NOLINT |
| 3010, 1073744838, 3016, 1073744842, |
| 3021, 3031, 1073744870, 3055, // NOLINT |
| 1073744896, 3075, 1073744958, 3140, |
| 1073744966, 3144, 1073744970, 3149, // NOLINT |
| 1073744981, 3158, 1073744994, 3171, |
| 1073744998, 3183, 1073745025, 3203, // NOLINT |
| 3260, 1073745086, 3268, 1073745094, |
| 3272, 1073745098, 3277, 1073745109, // NOLINT |
| 3286, 1073745122, 3299, 1073745126, |
| 3311, 1073745153, 3331, 1073745214, // NOLINT |
| 3396, 1073745222, 3400, 1073745226, |
| 3405, 3415, 1073745250, 3427, // NOLINT |
| 1073745254, 3439, 1073745282, 3459, |
| 3530, 1073745359, 3540, 3542, // NOLINT |
| 1073745368, 3551, 1073745382, 3567, |
| 1073745394, 3571, 3633, 1073745460, // NOLINT |
| 3642, 1073745479, 3662, 1073745488, |
| 3673, 3761, 1073745588, 3769, // NOLINT |
| 1073745595, 3772, 1073745608, 3789, |
| 1073745616, 3801, 1073745688, 3865, // NOLINT |
| 1073745696, 3881, 3893, 3895, |
| 3897, 1073745726, 3903, 1073745777, // NOLINT |
| 3972, 1073745798, 3975, 1073745805, |
| 3991, 1073745817, 4028, 4038, // NOLINT |
| 1073745963, 4158, 1073745984, 4169, |
| 1073746006, 4185, 1073746014, 4192, // NOLINT |
| 1073746018, 4196, 1073746023, 4205, |
| 1073746033, 4212, 1073746050, 4237, // NOLINT |
| 1073746063, 4253, 1073746781, 4959, |
| 1073746793, 4977, 1073747730, 5908, // NOLINT |
| 1073747762, 5940, 1073747794, 5971, |
| 1073747826, 6003, 1073747892, 6099, // NOLINT |
| 6109, 1073747936, 6121, 1073747979, |
| 6157, 1073747984, 6169, 6313, // NOLINT |
| 1073748256, 6443, 1073748272, 6459, |
| 1073748294, 6479, 1073748400, 6592, // NOLINT |
| 1073748424, 6601, 1073748432, 6618, |
| 1073748503, 6683, 1073748565, 6750, // NOLINT |
| 1073748576, 6780, 1073748607, 6793, |
| 1073748624, 6809, 1073748656, 6845, // NOLINT |
| 1073748736, 6916, 1073748788, 6980, |
| 1073748816, 7001, 1073748843, 7027, // NOLINT |
| 1073748864, 7042, 1073748897, 7085, |
| 1073748912, 7097, 1073748966, 7155, // NOLINT |
| 1073749028, 7223, 1073749056, 7241, |
| 1073749072, 7257, 1073749200, 7378, // NOLINT |
| 1073749204, 7400, 7405, 1073749234, |
| 7412, 1073749240, 7417, 1073749440, // NOLINT |
| 7669, 1073749500, 7679}; // NOLINT |
| static const uint16_t kID_ContinueTable1Size = 19; |
| static const int32_t kID_ContinueTable1[19] = { |
| 1073741836, 13, 1073741887, 64, |
| 84, 1073742032, 220, 225, // NOLINT |
| 1073742053, 240, 1073745135, 3313, |
| 3455, 1073745376, 3583, 1073745962, // NOLINT |
| 4143, 1073746073, 4250}; // NOLINT |
| static const uint16_t kID_ContinueTable5Size = 63; |
| static const int32_t kID_ContinueTable5[63] = { |
| 1073743392, 1577, 1647, 1073743476, |
| 1661, 1695, 1073743600, 1777, // NOLINT |
| 2050, 2054, 2059, 1073743907, |
| 2087, 1073744000, 2177, 1073744052, // NOLINT |
| 2244, 1073744080, 2265, 1073744096, |
| 2289, 1073744128, 2313, 1073744166, // NOLINT |
| 2349, 1073744199, 2387, 1073744256, |
| 2435, 1073744307, 2496, 1073744336, // NOLINT |
| 2521, 2533, 1073744368, 2553, |
| 1073744425, 2614, 2627, 1073744460, // NOLINT |
| 2637, 1073744464, 2649, 1073744507, |
| 2685, 2736, 1073744562, 2740, // NOLINT |
| 1073744567, 2744, 1073744574, 2751, |
| 2753, 1073744619, 2799, 1073744629, // NOLINT |
| 2806, 1073744867, 3050, 1073744876, |
| 3053, 1073744880, 3065}; // NOLINT |
| static const uint16_t kID_ContinueTable7Size = 12; |
| static const int32_t kID_ContinueTable7[12] = { |
| 6942, 1073749504, 7695, 1073749536, |
| 7725, 1073749555, 7732, 1073749581, // NOLINT |
| 7759, 1073749776, 7961, 7999}; // NOLINT |
| bool ID_Continue::Is(uchar c) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: |
| return LookupPredicate(kID_ContinueTable0, kID_ContinueTable0Size, c); |
| case 1: |
| return LookupPredicate(kID_ContinueTable1, kID_ContinueTable1Size, c); |
| case 5: |
| return LookupPredicate(kID_ContinueTable5, kID_ContinueTable5Size, c); |
| case 7: |
| return LookupPredicate(kID_ContinueTable7, kID_ContinueTable7Size, c); |
| default: return false; |
| } |
| } |
| |
| // WhiteSpace: (point.category == 'Zs') or ('JS_White_Space' in |
| // point.properties) |
| |
| static const uint16_t kWhiteSpaceTable0Size = 6; |
| static const int32_t kWhiteSpaceTable0[6] = {9, 1073741835, 12, |
| 32, 160, 5760}; // NOLINT |
| static const uint16_t kWhiteSpaceTable1Size = 5; |
| static const int32_t kWhiteSpaceTable1[5] = { |
| 1073741824, 10, 47, 95, 4096 }; // NOLINT |
| static const uint16_t kWhiteSpaceTable7Size = 1; |
| static const int32_t kWhiteSpaceTable7[1] = {7935}; // NOLINT |
| bool WhiteSpace::Is(uchar c) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: return LookupPredicate(kWhiteSpaceTable0, |
| kWhiteSpaceTable0Size, |
| c); |
| case 1: return LookupPredicate(kWhiteSpaceTable1, |
| kWhiteSpaceTable1Size, |
| c); |
| case 7: |
| return LookupPredicate(kWhiteSpaceTable7, kWhiteSpaceTable7Size, c); |
| default: return false; |
| } |
| } |
| #endif // !V8_INTL_SUPPORT |
| |
| #ifndef V8_INTL_SUPPORT |
| static const MultiCharacterSpecialCase<2> kToLowercaseMultiStrings0[2] = { // NOLINT |
| {{105, 775}}, {{kSentinel}} }; // NOLINT |
| static const uint16_t kToLowercaseTable0Size = 488; // NOLINT |
| static const int32_t kToLowercaseTable0[976] = { |
| 1073741889, 128, 90, 128, 1073742016, 128, |
| 214, 128, 1073742040, 128, 222, 128, |
| 256, 4, 258, 4, // NOLINT |
| 260, 4, 262, 4, 264, 4, |
| 266, 4, 268, 4, 270, 4, |
| 272, 4, 274, 4, // NOLINT |
| 276, 4, 278, 4, 280, 4, |
| 282, 4, 284, 4, 286, 4, |
| 288, 4, 290, 4, // NOLINT |
| 292, 4, 294, 4, 296, 4, |
| 298, 4, 300, 4, 302, 4, |
| 304, 1, 306, 4, // NOLINT |
| 308, 4, 310, 4, 313, 4, |
| 315, 4, 317, 4, 319, 4, |
| 321, 4, 323, 4, // NOLINT |
| 325, 4, 327, 4, 330, 4, |
| 332, 4, 334, 4, 336, 4, |
| 338, 4, 340, 4, // NOLINT |
| 342, 4, 344, 4, 346, 4, |
| 348, 4, 350, 4, 352, 4, |
| 354, 4, 356, 4, // NOLINT |
| 358, 4, 360, 4, 362, 4, |
| 364, 4, 366, 4, 368, 4, |
| 370, 4, 372, 4, // NOLINT |
| 374, 4, 376, -484, 377, 4, |
| 379, 4, 381, 4, 385, 840, |
| 386, 4, 388, 4, // NOLINT |
| 390, 824, 391, 4, 1073742217, 820, |
| 394, 820, 395, 4, 398, 316, |
| 399, 808, 400, 812, // NOLINT |
| 401, 4, 403, 820, 404, 828, |
| 406, 844, 407, 836, 408, 4, |
| 412, 844, 413, 852, // NOLINT |
| 415, 856, 416, 4, 418, 4, |
| 420, 4, 422, 872, 423, 4, |
| 425, 872, 428, 4, // NOLINT |
| 430, 872, 431, 4, 1073742257, 868, |
| 434, 868, 435, 4, 437, 4, |
| 439, 876, 440, 4, // NOLINT |
| 444, 4, 452, 8, 453, 4, |
| 455, 8, 456, 4, 458, 8, |
| 459, 4, 461, 4, // NOLINT |
| 463, 4, 465, 4, 467, 4, |
| 469, 4, 471, 4, 473, 4, |
| 475, 4, 478, 4, // NOLINT |
| 480, 4, 482, 4, 484, 4, |
| 486, 4, 488, 4, 490, 4, |
| 492, 4, 494, 4, // NOLINT |
| 497, 8, 498, 4, 500, 4, |
| 502, -388, 503, -224, 504, 4, |
| 506, 4, 508, 4, // NOLINT |
| 510, 4, 512, 4, 514, 4, |
| 516, 4, 518, 4, 520, 4, |
| 522, 4, 524, 4, // NOLINT |
| 526, 4, 528, 4, 530, 4, |
| 532, 4, 534, 4, 536, 4, |
| 538, 4, 540, 4, // NOLINT |
| 542, 4, 544, -520, 546, 4, |
| 548, 4, 550, 4, 552, 4, |
| 554, 4, 556, 4, // NOLINT |
| 558, 4, 560, 4, 562, 4, |
| 570, 43180, 571, 4, 573, -652, |
| 574, 43168, 577, 4, // NOLINT |
| 579, -780, 580, 276, 581, 284, |
| 582, 4, 584, 4, 586, 4, |
| 588, 4, 590, 4, // NOLINT |
| 880, 4, 882, 4, 886, 4, |
| 895, 464, 902, 152, 1073742728, 148, |
| 906, 148, 908, 256, // NOLINT |
| 1073742734, 252, 911, 252, 1073742737, 128, |
| 929, 128, 931, 6, 1073742756, 128, |
| 939, 128, 975, 32, // NOLINT |
| 984, 4, 986, 4, 988, 4, |
| 990, 4, 992, 4, 994, 4, |
| 996, 4, 998, 4, // NOLINT |
| 1000, 4, 1002, 4, 1004, 4, |
| 1006, 4, 1012, -240, 1015, 4, |
| 1017, -28, 1018, 4, // NOLINT |
| 1073742845, -520, 1023, -520, 1073742848, 320, |
| 1039, 320, 1073742864, 128, 1071, 128, |
| 1120, 4, 1122, 4, // NOLINT |
| 1124, 4, 1126, 4, 1128, 4, |
| 1130, 4, 1132, 4, 1134, 4, |
| 1136, 4, 1138, 4, // NOLINT |
| 1140, 4, 1142, 4, 1144, 4, |
| 1146, 4, 1148, 4, 1150, 4, |
| 1152, 4, 1162, 4, // NOLINT |
| 1164, 4, 1166, 4, 1168, 4, |
| 1170, 4, 1172, 4, 1174, 4, |
| 1176, 4, 1178, 4, // NOLINT |
| 1180, 4, 1182, 4, 1184, 4, |
| 1186, 4, 1188, 4, 1190, 4, |
| 1192, 4, 1194, 4, // NOLINT |
| 1196, 4, 1198, 4, 1200, 4, |
| 1202, 4, 1204, 4, 1206, 4, |
| 1208, 4, 1210, 4, // NOLINT |
| 1212, 4, 1214, 4, 1216, 60, |
| 1217, 4, 1219, 4, 1221, 4, |
| 1223, 4, 1225, 4, // NOLINT |
| 1227, 4, 1229, 4, 1232, 4, |
| 1234, 4, 1236, 4, 1238, 4, |
| 1240, 4, 1242, 4, // NOLINT |
| 1244, 4, 1246, 4, 1248, 4, |
| 1250, 4, 1252, 4, 1254, 4, |
| 1256, 4, 1258, 4, // NOLINT |
| 1260, 4, 1262, 4, 1264, 4, |
| 1266, 4, 1268, 4, 1270, 4, |
| 1272, 4, 1274, 4, // NOLINT |
| 1276, 4, 1278, 4, 1280, 4, |
| 1282, 4, 1284, 4, 1286, 4, |
| 1288, 4, 1290, 4, // NOLINT |
| 1292, 4, 1294, 4, 1296, 4, |
| 1298, 4, 1300, 4, 1302, 4, |
| 1304, 4, 1306, 4, // NOLINT |
| 1308, 4, 1310, 4, 1312, 4, |
| 1314, 4, 1316, 4, 1318, 4, |
| 1320, 4, 1322, 4, // NOLINT |
| 1324, 4, 1326, 4, 1073743153, 192, |
| 1366, 192, 1073746080, 29056, 4293, 29056, |
| 4295, 29056, 4301, 29056, // NOLINT |
| 7680, 4, 7682, 4, 7684, 4, |
| 7686, 4, 7688, 4, 7690, 4, |
| 7692, 4, 7694, 4, // NOLINT |
| 7696, 4, 7698, 4, 7700, 4, |
| 7702, 4, 7704, 4, 7706, 4, |
| 7708, 4, 7710, 4, // NOLINT |
| 7712, 4, 7714, 4, 7716, 4, |
| 7718, 4, 7720, 4, 7722, 4, |
| 7724, 4, 7726, 4, // NOLINT |
| 7728, 4, 7730, 4, 7732, 4, |
| 7734, 4, 7736, 4, 7738, 4, |
| 7740, 4, 7742, 4, // NOLINT |
| 7744, 4, 7746, 4, 7748, 4, |
| 7750, 4, 7752, 4, 7754, 4, |
| 7756, 4, 7758, 4, // NOLINT |
| 7760, 4, 7762, 4, 7764, 4, |
| 7766, 4, 7768, 4, 7770, 4, |
| 7772, 4, 7774, 4, // NOLINT |
| 7776, 4, 7778, 4, 7780, 4, |
| 7782, 4, 7784, 4, 7786, 4, |
| 7788, 4, 7790, 4, // NOLINT |
| 7792, 4, 7794, 4, 7796, 4, |
| 7798, 4, 7800, 4, 7802, 4, |
| 7804, 4, 7806, 4, // NOLINT |
| 7808, 4, 7810, 4, 7812, 4, |
| 7814, 4, 7816, 4, 7818, 4, |
| 7820, 4, 7822, 4, // NOLINT |
| 7824, 4, 7826, 4, 7828, 4, |
| 7838, -30460, 7840, 4, 7842, 4, |
| 7844, 4, 7846, 4, // NOLINT |
| 7848, 4, 7850, 4, 7852, 4, |
| 7854, 4, 7856, 4, 7858, 4, |
| 7860, 4, 7862, 4, // NOLINT |
| 7864, 4, 7866, 4, 7868, 4, |
| 7870, 4, 7872, 4, 7874, 4, |
| 7876, 4, 7878, 4, // NOLINT |
| 7880, 4, 7882, 4, 7884, 4, |
| 7886, 4, 7888, 4, 7890, 4, |
| 7892, 4, 7894, 4, // NOLINT |
| 7896, 4, 7898, 4, 7900, 4, |
| 7902, 4, 7904, 4, 7906, 4, |
| 7908, 4, 7910, 4, // NOLINT |
| 7912, 4, 7914, 4, 7916, 4, |
| 7918, 4, 7920, 4, 7922, 4, |
| 7924, 4, 7926, 4, // NOLINT |
| 7928, 4, 7930, 4, 7932, 4, |
| 7934, 4, 1073749768, -32, 7951, -32, |
| 1073749784, -32, 7965, -32, // NOLINT |
| 1073749800, -32, 7983, -32, 1073749816, -32, |
| 7999, -32, 1073749832, -32, 8013, -32, |
| 8025, -32, 8027, -32, // NOLINT |
| 8029, -32, 8031, -32, 1073749864, -32, |
| 8047, -32, 1073749896, -32, 8079, -32, |
| 1073749912, -32, 8095, -32, // NOLINT |
| 1073749928, -32, 8111, -32, 1073749944, -32, |
| 8121, -32, 1073749946, -296, 8123, -296, |
| 8124, -36, 1073749960, -344, // NOLINT |
| 8139, -344, 8140, -36, 1073749976, -32, |
| 8153, -32, 1073749978, -400, 8155, -400, |
| 1073749992, -32, 8169, -32, // NOLINT |
| 1073749994, -448, 8171, -448, 8172, -28, |
| 1073750008, -512, 8185, -512, 1073750010, -504, |
| 8187, -504, 8188, -36}; // NOLINT |
| static const uint16_t kToLowercaseMultiStrings0Size = 2; // NOLINT |
| static const MultiCharacterSpecialCase<1> kToLowercaseMultiStrings1[1] = { // NOLINT |
| {{kSentinel}} }; // NOLINT |
| static const uint16_t kToLowercaseTable1Size = 79; // NOLINT |
| static const int32_t kToLowercaseTable1[158] = { |
| 294, -30068, 298, -33532, 299, -33048, 306, 112, 1073742176, 64, 367, 64, 387, 4, 1073743030, 104, // NOLINT |
| 1231, 104, 1073744896, 192, 3118, 192, 3168, 4, 3170, -42972, 3171, -15256, 3172, -42908, 3175, 4, // NOLINT |
| 3177, 4, 3179, 4, 3181, -43120, 3182, -42996, 3183, -43132, 3184, -43128, 3186, 4, 3189, 4, // NOLINT |
| 1073745022, -43260, 3199, -43260, 3200, 4, 3202, 4, 3204, 4, 3206, 4, 3208, 4, 3210, 4, // NOLINT |
| 3212, 4, 3214, 4, 3216, 4, 3218, 4, 3220, 4, 3222, 4, 3224, 4, 3226, 4, // NOLINT |
| 3228, 4, 3230, 4, 3232, 4, 3234, 4, 3236, 4, 3238, 4, 3240, 4, 3242, 4, // NOLINT |
| 3244, 4, 3246, 4, 3248, 4, 3250, 4, 3252, 4, 3254, 4, 3256, 4, 3258, 4, // NOLINT |
| 3260, 4, 3262, 4, 3264, 4, 3266, 4, 3268, 4, 3270, 4, 3272, 4, 3274, 4, // NOLINT |
| 3276, 4, 3278, 4, 3280, 4, 3282, 4, 3284, 4, 3286, 4, 3288, 4, 3290, 4, // NOLINT |
| 3292, 4, 3294, 4, 3296, 4, 3298, 4, 3307, 4, 3309, 4, 3314, 4 }; // NOLINT |
| static const uint16_t kToLowercaseMultiStrings1Size = 1; // NOLINT |
| static const MultiCharacterSpecialCase<1> kToLowercaseMultiStrings5[1] = { // NOLINT |
| {{kSentinel}} }; // NOLINT |
| static const uint16_t kToLowercaseTable5Size = 103; // NOLINT |
| static const int32_t kToLowercaseTable5[206] = { |
| 1600, 4, 1602, 4, 1604, 4, 1606, 4, |
| 1608, 4, 1610, 4, 1612, 4, 1614, 4, // NOLINT |
| 1616, 4, 1618, 4, 1620, 4, 1622, 4, |
| 1624, 4, 1626, 4, 1628, 4, 1630, 4, // NOLINT |
| 1632, 4, 1634, 4, 1636, 4, 1638, 4, |
| 1640, 4, 1642, 4, 1644, 4, 1664, 4, // NOLINT |
| 1666, 4, 1668, 4, 1670, 4, 1672, 4, |
| 1674, 4, 1676, 4, 1678, 4, 1680, 4, // NOLINT |
| 1682, 4, 1684, 4, 1686, 4, 1688, 4, |
| 1690, 4, 1826, 4, 1828, 4, 1830, 4, // NOLINT |
| 1832, 4, 1834, 4, 1836, 4, 1838, 4, |
| 1842, 4, 1844, 4, 1846, 4, 1848, 4, // NOLINT |
| 1850, 4, 1852, 4, 1854, 4, 1856, 4, |
| 1858, 4, 1860, 4, 1862, 4, 1864, 4, // NOLINT |
| 1866, 4, 1868, 4, 1870, 4, 1872, 4, |
| 1874, 4, 1876, 4, 1878, 4, 1880, 4, // NOLINT |
| 1882, 4, 1884, 4, 1886, 4, 1888, 4, |
| 1890, 4, 1892, 4, 1894, 4, 1896, 4, // NOLINT |
| 1898, 4, 1900, 4, 1902, 4, 1913, 4, |
| 1915, 4, 1917, -141328, 1918, 4, 1920, 4, // NOLINT |
| 1922, 4, 1924, 4, 1926, 4, 1931, 4, |
| 1933, -169120, 1936, 4, 1938, 4, 1942, 4, // NOLINT |
| 1944, 4, 1946, 4, 1948, 4, 1950, 4, |
| 1952, 4, 1954, 4, 1956, 4, 1958, 4, // NOLINT |
| 1960, 4, 1962, -169232, 1963, -169276, 1964, -169260, |
| 1965, -169220, 1968, -169032, 1969, -169128}; // NOLINT |
| static const uint16_t kToLowercaseMultiStrings5Size = 1; // NOLINT |
| static const MultiCharacterSpecialCase<1> kToLowercaseMultiStrings7[1] = { // NOLINT |
| {{kSentinel}} }; // NOLINT |
| static const uint16_t kToLowercaseTable7Size = 2; // NOLINT |
| static const int32_t kToLowercaseTable7[4] = { |
| 1073749793, 128, 7994, 128 }; // NOLINT |
| static const uint16_t kToLowercaseMultiStrings7Size = 1; // NOLINT |
| int ToLowercase::Convert(uchar c, |
| uchar n, |
| uchar* result, |
| bool* allow_caching_ptr) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: return LookupMapping<true>(kToLowercaseTable0, |
| kToLowercaseTable0Size, |
| kToLowercaseMultiStrings0, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| case 1: return LookupMapping<true>(kToLowercaseTable1, |
| kToLowercaseTable1Size, |
| kToLowercaseMultiStrings1, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| case 5: return LookupMapping<true>(kToLowercaseTable5, |
| kToLowercaseTable5Size, |
| kToLowercaseMultiStrings5, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| case 7: return LookupMapping<true>(kToLowercaseTable7, |
| kToLowercaseTable7Size, |
| kToLowercaseMultiStrings7, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| default: return 0; |
| } |
| } |
| |
| static const MultiCharacterSpecialCase<3> kToUppercaseMultiStrings0[62] = { // NOLINT |
| {{83, 83, kSentinel}}, {{700, 78, kSentinel}}, {{74, 780, kSentinel}}, {{921, 776, 769}}, // NOLINT |
| {{933, 776, 769}}, {{1333, 1362, kSentinel}}, {{72, 817, kSentinel}}, {{84, 776, kSentinel}}, // NOLINT |
| {{87, 778, kSentinel}}, {{89, 778, kSentinel}}, {{65, 702, kSentinel}}, {{933, 787, kSentinel}}, // NOLINT |
| {{933, 787, 768}}, {{933, 787, 769}}, {{933, 787, 834}}, {{7944, 921, kSentinel}}, // NOLINT |
| {{7945, 921, kSentinel}}, {{7946, 921, kSentinel}}, {{7947, 921, kSentinel}}, {{7948, 921, kSentinel}}, // NOLINT |
| {{7949, 921, kSentinel}}, {{7950, 921, kSentinel}}, {{7951, 921, kSentinel}}, {{7976, 921, kSentinel}}, // NOLINT |
| {{7977, 921, kSentinel}}, {{7978, 921, kSentinel}}, {{7979, 921, kSentinel}}, {{7980, 921, kSentinel}}, // NOLINT |
| {{7981, 921, kSentinel}}, {{7982, 921, kSentinel}}, {{7983, 921, kSentinel}}, {{8040, 921, kSentinel}}, // NOLINT |
| {{8041, 921, kSentinel}}, {{8042, 921, kSentinel}}, {{8043, 921, kSentinel}}, {{8044, 921, kSentinel}}, // NOLINT |
| {{8045, 921, kSentinel}}, {{8046, 921, kSentinel}}, {{8047, 921, kSentinel}}, {{8122, 921, kSentinel}}, // NOLINT |
| {{913, 921, kSentinel}}, {{902, 921, kSentinel}}, {{913, 834, kSentinel}}, {{913, 834, 921}}, // NOLINT |
| {{8138, 921, kSentinel}}, {{919, 921, kSentinel}}, {{905, 921, kSentinel}}, {{919, 834, kSentinel}}, // NOLINT |
| {{919, 834, 921}}, {{921, 776, 768}}, {{921, 834, kSentinel}}, {{921, 776, 834}}, // NOLINT |
| {{933, 776, 768}}, {{929, 787, kSentinel}}, {{933, 834, kSentinel}}, {{933, 776, 834}}, // NOLINT |
| {{8186, 921, kSentinel}}, {{937, 921, kSentinel}}, {{911, 921, kSentinel}}, {{937, 834, kSentinel}}, // NOLINT |
| {{937, 834, 921}}, {{kSentinel}} }; // NOLINT |
| static const uint16_t kToUppercaseTable0Size = 590; // NOLINT |
| static const int32_t kToUppercaseTable0[1180] = { |
| 1073741921, -128, 122, -128, 181, 2972, |
| 223, 1, 1073742048, -128, 246, -128, |
| 1073742072, -128, 254, -128, // NOLINT |
| 255, 484, 257, -4, 259, -4, |
| 261, -4, 263, -4, 265, -4, |
| 267, -4, 269, -4, // NOLINT |
| 271, -4, 273, -4, 275, -4, |
| 277, -4, 279, -4, 281, -4, |
| 283, -4, 285, -4, // NOLINT |
| 287, -4, 289, -4, 291, -4, |
| 293, -4, 295, -4, 297, -4, |
| 299, -4, 301, -4, // NOLINT |
| 303, -4, 305, -928, 307, -4, |
| 309, -4, 311, -4, 314, -4, |
| 316, -4, 318, -4, // NOLINT |
| 320, -4, 322, -4, 324, -4, |
| 326, -4, 328, -4, 329, 5, |
| 331, -4, 333, -4, // NOLINT |
| 335, -4, 337, -4, 339, -4, |
| 341, -4, 343, -4, 345, -4, |
| 347, -4, 349, -4, // NOLINT |
| 351, -4, 353, -4, 355, -4, |
| 357, -4, 359, -4, 361, -4, |
| 363, -4, 365, -4, // NOLINT |
| 367, -4, 369, -4, 371, -4, |
| 373, -4, 375, -4, 378, -4, |
| 380, -4, 382, -4, // NOLINT |
| 383, -1200, 384, 780, 387, -4, |
| 389, -4, 392, -4, 396, -4, |
| 402, -4, 405, 388, // NOLINT |
| 409, -4, 410, 652, 414, 520, |
| 417, -4, 419, -4, 421, -4, |
| 424, -4, 429, -4, // NOLINT |
| 432, -4, 436, -4, 438, -4, |
| 441, -4, 445, -4, 447, 224, |
| 453, -4, 454, -8, // NOLINT |
| 456, -4, 457, -8, 459, -4, |
| 460, -8, 462, -4, 464, -4, |
| 466, -4, 468, -4, // NOLINT |
| 470, -4, 472, -4, 474, -4, |
| 476, -4, 477, -316, 479, -4, |
| 481, -4, 483, -4, // NOLINT |
| 485, -4, 487, -4, 489, -4, |
| 491, -4, 493, -4, 495, -4, |
| 496, 9, 498, -4, // NOLINT |
| 499, -8, 501, -4, 505, -4, |
| 507, -4, 509, -4, 511, -4, |
| 513, -4, 515, -4, // NOLINT |
| 517, -4, 519, -4, 521, -4, |
| 523, -4, 525, -4, 527, -4, |
| 529, -4, 531, -4, // NOLINT |
| 533, -4, 535, -4, 537, -4, |
| 539, -4, 541, -4, 543, -4, |
| 547, -4, 549, -4, // NOLINT |
| 551, -4, 553, -4, 555, -4, |
| 557, -4, 559, -4, 561, -4, |
| 563, -4, 572, -4, // NOLINT |
| 1073742399, 43260, 576, 43260, 578, -4, |
| 583, -4, 585, -4, 587, -4, |
| 589, -4, 591, -4, // NOLINT |
| 592, 43132, 593, 43120, 594, 43128, |
| 595, -840, 596, -824, 1073742422, -820, |
| 599, -820, 601, -808, // NOLINT |
| 603, -812, 604, 169276, 608, -820, |
| 609, 169260, 611, -828, 613, 169120, |
| 614, 169232, 616, -836, // NOLINT |
| 617, -844, 619, 42972, 620, 169220, |
| 623, -844, 625, 42996, 626, -852, |
| 629, -856, 637, 42908, // NOLINT |
| 640, -872, 643, -872, 647, 169128, |
| 648, -872, 649, -276, 1073742474, -868, |
| 651, -868, 652, -284, // NOLINT |
| 658, -876, 670, 169032, 837, 336, |
| 881, -4, 883, -4, 887, -4, |
| 1073742715, 520, 893, 520, // NOLINT |
| 912, 13, 940, -152, 1073742765, -148, |
| 943, -148, 944, 17, 1073742769, -128, |
| 961, -128, 962, -124, // NOLINT |
| 1073742787, -128, 971, -128, 972, -256, |
| 1073742797, -252, 974, -252, 976, -248, |
| 977, -228, 981, -188, // NOLINT |
| 982, -216, 983, -32, 985, -4, |
| 987, -4, 989, -4, 991, -4, |
| 993, -4, 995, -4, // NOLINT |
| 997, -4, 999, -4, 1001, -4, |
| 1003, -4, 1005, -4, 1007, -4, |
| 1008, -344, 1009, -320, // NOLINT |
| 1010, 28, 1011, -464, 1013, -384, |
| 1016, -4, 1019, -4, 1073742896, -128, |
| 1103, -128, 1073742928, -320, // NOLINT |
| 1119, -320, 1121, -4, 1123, -4, |
| 1125, -4, 1127, -4, 1129, -4, |
| 1131, -4, 1133, -4, // NOLINT |
| 1135, -4, 1137, -4, 1139, -4, |
| 1141, -4, 1143, -4, 1145, -4, |
| 1147, -4, 1149, -4, // NOLINT |
| 1151, -4, 1153, -4, 1163, -4, |
| 1165, -4, 1167, -4, 1169, -4, |
| 1171, -4, 1173, -4, // NOLINT |
| 1175, -4, 1177, -4, 1179, -4, |
| 1181, -4, 1183, -4, 1185, -4, |
| 1187, -4, 1189, -4, // NOLINT |
| 1191, -4, 1193, -4, 1195, -4, |
| 1197, -4, 1199, -4, 1201, -4, |
| 1203, -4, 1205, -4, // NOLINT |
| 1207, -4, 1209, -4, 1211, -4, |
| 1213, -4, 1215, -4, 1218, -4, |
| 1220, -4, 1222, -4, // NOLINT |
| 1224, -4, 1226, -4, 1228, -4, |
| 1230, -4, 1231, -60, 1233, -4, |
| 1235, -4, 1237, -4, // NOLINT |
| 1239, -4, 1241, -4, 1243, -4, |
| 1245, -4, 1247, -4, 1249, -4, |
| 1251, -4, 1253, -4, // NOLINT |
| 1255, -4, 1257, -4, 1259, -4, |
| 1261, -4, 1263, -4, 1265, -4, |
| 1267, -4, 1269, -4, // NOLINT |
| 1271, -4, 1273, -4, 1275, -4, |
| 1277, -4, 1279, -4, 1281, -4, |
| 1283, -4, 1285, -4, // NOLINT |
| 1287, -4, 1289, -4, 1291, -4, |
| 1293, -4, 1295, -4, 1297, -4, |
| 1299, -4, 1301, -4, // NOLINT |
| 1303, -4, 1305, -4, 1307, -4, |
| 1309, -4, 1311, -4, 1313, -4, |
| 1315, -4, 1317, -4, // NOLINT |
| 1319, -4, 1321, -4, 1323, -4, |
| 1325, -4, 1327, -4, 1073743201, -192, |
| 1414, -192, 1415, 21, // NOLINT |
| 7545, 141328, 7549, 15256, 7681, -4, |
| 7683, -4, 7685, -4, 7687, -4, |
| 7689, -4, 7691, -4, // NOLINT |
| 7693, -4, 7695, -4, 7697, -4, |
| 7699, -4, 7701, -4, 7703, -4, |
| 7705, -4, 7707, -4, // NOLINT |
| 7709, -4, 7711, -4, 7713, -4, |
| 7715, -4, 7717, -4, 7719, -4, |
| 7721, -4, 7723, -4, // NOLINT |
| 7725, -4, 7727, -4, 7729, -4, |
| 7731, -4, 7733, -4, 7735, -4, |
| 7737, -4, 7739, -4, // NOLINT |
| 7741, -4, 7743, -4, 7745, -4, |
| 7747, -4, 7749, -4, 7751, -4, |
| 7753, -4, 7755, -4, // NOLINT |
| 7757, -4, 7759, -4, 7761, -4, |
| 7763, -4, 7765, -4, 7767, -4, |
| 7769, -4, 7771, -4, // NOLINT |
| 7773, -4, 7775, -4, 7777, -4, |
| 7779, -4, 7781, -4, 7783, -4, |
| 7785, -4, 7787, -4, // NOLINT |
| 7789, -4, 7791, -4, 7793, -4, |
| 7795, -4, 7797, -4, 7799, -4, |
| 7801, -4, 7803, -4, // NOLINT |
| 7805, -4, 7807, -4, 7809, -4, |
| 7811, -4, 7813, -4, 7815, -4, |
| 7817, -4, 7819, -4, // NOLINT |
| 7821, -4, 7823, -4, 7825, -4, |
| 7827, -4, 7829, -4, 7830, 25, |
| 7831, 29, 7832, 33, // NOLINT |
| 7833, 37, 7834, 41, 7835, -236, |
| 7841, -4, 7843, -4, 7845, -4, |
| 7847, -4, 7849, -4, // NOLINT |
| 7851, -4, 7853, -4, 7855, -4, |
| 7857, -4, 7859, -4, 7861, -4, |
| 7863, -4, 7865, -4, // NOLINT |
| 7867, -4, 7869, -4, 7871, -4, |
| 7873, -4, 7875, -4, 7877, -4, |
| 7879, -4, 7881, -4, // NOLINT |
| 7883, -4, 7885, -4, 7887, -4, |
| 7889, -4, 7891, -4, 7893, -4, |
| 7895, -4, 7897, -4, // NOLINT |
| 7899, -4, 7901, -4, 7903, -4, |
| 7905, -4, 7907, -4, 7909, -4, |
| 7911, -4, 7913, -4, // NOLINT |
| 7915, -4, 7917, -4, 7919, -4, |
| 7921, -4, 7923, -4, 7925, -4, |
| 7927, -4, 7929, -4, // NOLINT |
| 7931, -4, 7933, -4, 7935, -4, |
| 1073749760, 32, 7943, 32, 1073749776, 32, |
| 7957, 32, 1073749792, 32, // NOLINT |
| 7975, 32, 1073749808, 32, 7991, 32, |
| 1073749824, 32, 8005, 32, 8016, 45, |
| 8017, 32, 8018, 49, // NOLINT |
| 8019, 32, 8020, 53, 8021, 32, |
| 8022, 57, 8023, 32, 1073749856, 32, |
| 8039, 32, 1073749872, 296, // NOLINT |
| 8049, 296, 1073749874, 344, 8053, 344, |
| 1073749878, 400, 8055, 400, 1073749880, 512, |
| 8057, 512, 1073749882, 448, // NOLINT |
| 8059, 448, 1073749884, 504, 8061, 504, |
| 8064, 61, 8065, 65, 8066, 69, |
| 8067, 73, 8068, 77, // NOLINT |
| 8069, 81, 8070, 85, 8071, 89, |
| 8072, 61, 8073, 65, 8074, 69, |
| 8075, 73, 8076, 77, // NOLINT |
| 8077, 81, 8078, 85, 8079, 89, |
| 8080, 93, 8081, 97, 8082, 101, |
| 8083, 105, 8084, 109, // NOLINT |
| 8085, 113, 8086, 117, 8087, 121, |
| 8088, 93, 8089, 97, 8090, 101, |
| 8091, 105, 8092, 109, // NOLINT |
| 8093, 113, 8094, 117, 8095, 121, |
| 8096, 125, 8097, 129, 8098, 133, |
| 8099, 137, 8100, 141, // NOLINT |
| 8101, 145, 8102, 149, 8103, 153, |
| 8104, 125, 8105, 129, 8106, 133, |
| 8107, 137, 8108, 141, // NOLINT |
| 8109, 145, 8110, 149, 8111, 153, |
| 1073749936, 32, 8113, 32, 8114, 157, |
| 8115, 161, 8116, 165, // NOLINT |
| 8118, 169, 8119, 173, 8124, 161, |
| 8126, -28820, 8130, 177, 8131, 181, |
| 8132, 185, 8134, 189, // NOLINT |
| 8135, 193, 8140, 181, 1073749968, 32, |
| 8145, 32, 8146, 197, 8147, 13, |
| 8150, 201, 8151, 205, // NOLINT |
| 1073749984, 32, 8161, 32, 8162, 209, |
| 8163, 17, 8164, 213, 8165, 28, |
| 8166, 217, 8167, 221, // NOLINT |
| 8178, 225, 8179, 229, 8180, 233, |
| 8182, 237, 8183, 241, 8188, 229}; // NOLINT |
| static const uint16_t kToUppercaseMultiStrings0Size = 62; // NOLINT |
| static const MultiCharacterSpecialCase<1> kToUppercaseMultiStrings1[1] = { // NOLINT |
| {{kSentinel}} }; // NOLINT |
| static const uint16_t kToUppercaseTable1Size = 73; // NOLINT |
| static const int32_t kToUppercaseTable1[146] = { |
| 334, -112, 1073742192, -64, 383, -64, 388, -4, 1073743056, -104, 1257, -104, 1073744944, -192, 3166, -192, // NOLINT |
| 3169, -4, 3173, -43180, 3174, -43168, 3176, -4, 3178, -4, 3180, -4, 3187, -4, 3190, -4, // NOLINT |
| 3201, -4, 3203, -4, 3205, -4, 3207, -4, 3209, -4, 3211, -4, 3213, -4, 3215, -4, // NOLINT |
| 3217, -4, 3219, -4, 3221, -4, 3223, -4, 3225, -4, 3227, -4, 3229, -4, 3231, -4, // NOLINT |
| 3233, -4, 3235, -4, 3237, -4, 3239, -4, 3241, -4, 3243, -4, 3245, -4, 3247, -4, // NOLINT |
| 3249, -4, 3251, -4, 3253, -4, 3255, -4, 3257, -4, 3259, -4, 3261, -4, 3263, -4, // NOLINT |
| 3265, -4, 3267, -4, 3269, -4, 3271, -4, 3273, -4, 3275, -4, 3277, -4, 3279, -4, // NOLINT |
| 3281, -4, 3283, -4, 3285, -4, 3287, -4, 3289, -4, 3291, -4, 3293, -4, 3295, -4, // NOLINT |
| 3297, -4, 3299, -4, 3308, -4, 3310, -4, 3315, -4, 1073745152, -29056, 3365, -29056, 3367, -29056, // NOLINT |
| 3373, -29056 }; // NOLINT |
| static const uint16_t kToUppercaseMultiStrings1Size = 1; // NOLINT |
| static const MultiCharacterSpecialCase<1> kToUppercaseMultiStrings5[1] = { // NOLINT |
| {{kSentinel}} }; // NOLINT |
| static const uint16_t kToUppercaseTable5Size = 95; // NOLINT |
| static const int32_t |
| kToUppercaseTable5[190] = {1601, -4, 1603, -4, 1605, -4, 1607, -4, 1609, -4, |
| 1611, -4, 1613, -4, 1615, -4, // NOLINT |
| 1617, -4, 1619, -4, 1621, -4, 1623, -4, 1625, -4, |
| 1627, -4, 1629, -4, 1631, -4, // NOLINT |
| 1633, -4, 1635, -4, 1637, -4, 1639, -4, 1641, -4, |
| 1643, -4, 1645, -4, 1665, -4, // NOLINT |
| 1667, -4, 1669, -4, 1671, -4, 1673, -4, 1675, -4, |
| 1677, -4, 1679, -4, 1681, -4, // NOLINT |
| 1683, -4, 1685, -4, 1687, -4, 1689, -4, 1691, -4, |
| 1827, -4, 1829, -4, 1831, -4, // NOLINT |
| 1833, -4, 1835, -4, 1837, -4, 1839, -4, 1843, -4, |
| 1845, -4, 1847, -4, 1849, -4, // NOLINT |
| 1851, -4, 1853, -4, 1855, -4, 1857, -4, 1859, -4, |
| 1861, -4, 1863, -4, 1865, -4, // NOLINT |
| 1867, -4, 1869, -4, 1871, -4, 1873, -4, 1875, -4, |
| 1877, -4, 1879, -4, 1881, -4, // NOLINT |
| 1883, -4, 1885, -4, 1887, -4, 1889, -4, 1891, -4, |
| 1893, -4, 1895, -4, 1897, -4, // NOLINT |
| 1899, -4, 1901, -4, 1903, -4, 1914, -4, 1916, -4, |
| 1919, -4, 1921, -4, 1923, -4, // NOLINT |
| 1925, -4, 1927, -4, 1932, -4, 1937, -4, 1939, -4, |
| 1943, -4, 1945, -4, 1947, -4, // NOLINT |
| 1949, -4, 1951, -4, 1953, -4, 1955, -4, 1957, -4, |
| 1959, -4, 1961, -4}; // NOLINT |
| static const uint16_t kToUppercaseMultiStrings5Size = 1; // NOLINT |
| static const MultiCharacterSpecialCase<3> kToUppercaseMultiStrings7[12] = { // NOLINT |
| {{70, 70, kSentinel}}, {{70, 73, kSentinel}}, {{70, 76, kSentinel}}, {{70, 70, 73}}, // NOLINT |
| {{70, 70, 76}}, {{83, 84, kSentinel}}, {{1348, 1350, kSentinel}}, {{1348, 1333, kSentinel}}, // NOLINT |
| {{1348, 1339, kSentinel}}, {{1358, 1350, kSentinel}}, {{1348, 1341, kSentinel}}, {{kSentinel}} }; // NOLINT |
| static const uint16_t kToUppercaseTable7Size = 14; // NOLINT |
| static const int32_t kToUppercaseTable7[28] = { |
| 6912, 1, 6913, 5, 6914, 9, 6915, 13, 6916, 17, 6917, 21, 6918, 21, 6931, 25, // NOLINT |
| 6932, 29, 6933, 33, 6934, 37, 6935, 41, 1073749825, -128, 8026, -128 }; // NOLINT |
| static const uint16_t kToUppercaseMultiStrings7Size = 12; // NOLINT |
| int ToUppercase::Convert(uchar c, |
| uchar n, |
| uchar* result, |
| bool* allow_caching_ptr) { |
| int chunk_index = c >> 13; |
| switch (chunk_index) { |
| case 0: return LookupMapping<true>(kToUppercaseTable0, |
| kToUppercaseTable0Size, |
| kToUppercaseMultiStrings0, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| case 1: return LookupMapping<true>(kToUppercaseTable1, |
| kToUppercaseTable1Size, |
| kToUppercaseMultiStrings1, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| case 5: return LookupMapping<true>(kToUppercaseTable5, |
| kToUppercaseTable5Size, |
| kToUppercaseMultiStrings5, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| case 7: return LookupMapping<true>(kToUppercaseTable7, |
| kToUppercaseTable7Size, |
| kToUppercaseMultiStrings7, |
| c, |
| n, |
| result, |
| allow_caching_ptr); |
| default: return 0; |
| } |
| } |
| #endif // !V8_INTL_SUPPORT |
| |
| static const MultiCharacterSpecialCase<1> kEcma262CanonicalizeMultiStrings0[1] = { // NOLINT |
| {{kSentinel}} }; // NOLINT |
| static const uint16_t kEcma262CanonicalizeTable0Size = 498; // NOLINT |
| static const int32_t kEcma262CanonicalizeTable0[996] = { |
| 1073741921, -128, 122, -128, 181, 2972, |
| 1073742048, -128, 246, -128, 1073742072, -128, |
| 254, -128, 255, 484, // NOLINT |
| 257, -4, 259, -4, 261, -4, |
| 263, -4, 265, -4, 267, -4, |
| 269, -4, 271, -4, // NOLINT |
| 273, -4, 275, -4, 277, -4, |
| 279, -4, 281, -4, 283, -4, |
| 285, -4, 287, -4, // NOLINT |
| 289, -4, 291, -4, 293, -4, |
| 295, -4, 297, -4, 299, -4, |
| 301, -4, 303, -4, // NOLINT |
| 307, -4, 309, -4, 311, -4, |
| 314, -4, 316, -4, 318, -4, |
| 320, -4, 322, -4, // NOLINT |
| 324, -4, 326, -4, 328, -4, |
| 331, -4, 333, -4, 335, -4, |
| 337, -4, 339, -4, // NOLINT |
| 341, -4, 343, -4, 345, -4, |
| 347, -4, 349, -4, 351, -4, |
| 353, -4, 355, -4, // NOLINT |
| 357, -4, 359, -4, 361, -4, |
| 363, -4, 365, -4, 367, -4, |
| 369, -4, 371, -4, // NOLINT |
| 373, -4, 375, -4, 378, -4, |
| 380, -4, 382, -4, 384, 780, |
| 387, -4, 389, -4, // NOLINT |
| 392, -4, 396, -4, 402, -4, |
| 405, 388, 409, -4, 410, 652, |
| 414, 520, 417, -4, // NOLINT |
| 419, -4, 421, -4, 424, -4, |
| 429, -4, 432, -4, 436, -4, |
| 438, -4, 441, -4, // NOLINT |
| 445, -4, 447, 224, 453, -4, |
| 454, -8, 456, -4, 457, -8, |
| 459, -4, 460, -8, // NOLINT |
| 462, -4, 464, -4, 466, -4, |
| 468, -4, 470, -4, 472, -4, |
| 474, -4, 476, -4, // NOLINT |
| 477, -316, 479, -4, 481, -4, |
| 483, -4, 485, -4, 487, -4, |
| 489, -4, 491, -4, // NOLINT |
| 493, -4, 495, -4, 498, -4, |
| 499, -8, 501, -4, 505, -4, |
| 507, -4, 509, -4, // NOLINT |
| 511, -4, 513, -4, 515, -4, |
| 517, -4, 519, -4, 521, -4, |
| 523, -4, 525, -4, // NOLINT |
| 527, -4, 529, -4, 531, -4, |
| 533, -4, 535, -4, 537, -4, |
| 539, -4, 541, -4, // NOLINT |
| 543, -4, 547, -4, 549, -4, |
| 551, -4, 553, -4, 555, -4, |
| 557, -4, 559, -4, // NOLINT |
| 561, -4, 563, -4, 572, -4, |
| 1073742399, 43260, 576, 43260, 578, -4, |
| 583, -4, 585, -4, // NOLINT |
| 587, -4, 589, -4, 591, -4, |
| 592, 43132, 593, 43120, 594, 43128, |
| 595, -840, 596, -824, // NOLINT |
| 1073742422, -820, 599, -820, 601, -808, |
| 603, -812, 604, 169276, 608, -820, |
| 609, 169260, 611, -828, // NOLINT |
| 613, 169120, 614, 169232, 616, -836, |
| 617, -844, 619, 42972, 620, 169220, |
| 623, -844, 625, 42996, // NOLINT |
| 626, -852, 629, -856, 637, 42908, |
| 640, -872, 643, -872, 647, 169128, |
| 648, -872, 649, -276, // NOLINT |
| 1073742474, -868, 651, -868, 652, -284, |
| 658, -876, 670, 169032, 837, 336, |
| 881, -4, 883, -4, // NOLINT |
| 887, -4, 1073742715, 520, 893, 520, |
| 940, -152, 1073742765, -148, 943, -148, |
| 1073742769, -128, 961, -128, // NOLINT |
| 962, -124, 1073742787, -128, 971, -128, |
| 972, -256, 1073742797, -252, 974, -252, |
| 976, -248, 977, -228, // NOLINT |
| 981, -188, 982, -216, 983, -32, |
| 985, -4, 987, -4, 989, -4, |
| 991, -4, 993, -4, // NOLINT |
| 995, -4, 997, -4, 999, -4, |
| 1001, -4, 1003, -4, 1005, -4, |
| 1007, -4, 1008, -344, // NOLINT |
| 1009, -320, 1010, 28, 1011, -464, |
| 1013, -384, 1016, -4, 1019, -4, |
| 1073742896, -128, 1103, -128, // NOLINT |
| 1073742928, -320, 1119, -320, 1121, -4, |
| 1123, -4, 1125, -4, 1127, -4, |
| 1129, -4, 1131, -4, // NOLINT |
| 1133, -4, 1135, -4, 1137, -4, |
| 1139, -4, 1141, -4, 1143, -4, |
| 1145, -4, 1147, -4, // NOLINT |
| 1149, -4, 1151, -4, 1153, -4, |
| 1163, -4, 1165, -4, 1167, -4, |
| 1169, -4, 1171, -4, // NOLINT |
| 1173, -4, 1175, -4, 1177, -4, |
| 1179, -4, 1181, -4, 1183, -4, |
| 1185, -4, 1187, -4, // NOLINT |
| 1189, -4, 1191, -4, 1193, -4, |
| 1195, -4, 1197, -4, 1199, -4, |
| 1201, -4, 1203, -4, // NOLINT |
| 1205, -4, 1207, -4, 1209, -4, |
| 1211, -4, 1213, -4, 1215, -4, |
| 1218, -4, 1220, -4, // NOLINT |
| 1222, -4, 1224, -4, 1226, -4, |
| 1228, -4, 1230, -4, 1231, -60, |
| 1233, -4, 1235, -4, // NOLINT |
| 1237, -4, 1239, -4, 1241, -4, |
| 1243, -4, 1245, -4, 1247, -4, |
| 1249, -4, 1251, -4, // NOLINT |
| 1253, -4, 1255, -4, 1257, -4, |
| 1259, -4, 1261, -4, 1263, -4, |
| 1265, -4, 1267, -4, // NOLINT |
| 1269, -4, 1271, -4, 1273, -4, |
| 1275, -4, 1277, -4, 1279, -4, |
| 1281, -4, 1283, -4, // NOLINT |
| 1285, -4, 1287, -4, 1289, -4, |
| 1291, -4, 1293, -4, 1295, -4, |
| 1297, -4, 1299, -4, // NOLINT |
| 1301, -4, 1303, -4, 1305, -4, |
| 1307, -4, 1309, -4, 1311, -4, |
| 1313, -4, 1315, -4, // NOLINT |
| 1317, -4, 1319, -4, 1321, -4, |
| 1323, -4, 1325, -4, 1327, -4, |
| 1073743201, -192, 1414, -192, // NOLINT |
| 7545, 141328, 7549, 15256, 7681, -4, |
| 7683, -4, 7685, -4, 7687, -4, |
| 7689, -4, 7691, -4, // NOLINT |
| 7693, -4, 7695, -4, 7697, -4, |
| 7699, -4, 7701, -4, 7703, -4, |
| 7705, -4, 7707, -4, // NOLINT |
| 7709, -4, 7711, -4, 7713, -4, |
| 7715, -4, 7717, -4, 7719, -4, |
| 7721, -4, 7723, -4, // NOLINT |
| 7725, -4, 7727, -4, 7729, -4, |
|