lex.cpp 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/lex/lex.h"
  5. #include <array>
  6. #include "common/check.h"
  7. #include "llvm/ADT/StringRef.h"
  8. #include "llvm/ADT/StringSwitch.h"
  9. #include "llvm/Support/Compiler.h"
  10. #include "toolchain/base/value_store.h"
  11. #include "toolchain/lex/character_set.h"
  12. #include "toolchain/lex/helpers.h"
  13. #include "toolchain/lex/numeric_literal.h"
  14. #include "toolchain/lex/string_literal.h"
  15. #include "toolchain/lex/tokenized_buffer.h"
  16. #if __ARM_NEON
  17. #include <arm_neon.h>
  18. #define CARBON_USE_SIMD 1
  19. #elif __x86_64__
  20. #include <x86intrin.h>
  21. #define CARBON_USE_SIMD 1
  22. #else
  23. #define CARBON_USE_SIMD 0
  24. #endif
  25. namespace Carbon::Lex {
  26. // Implementation of the lexer logic itself.
  27. //
  28. // The design is that lexing can loop over the source buffer, consuming it into
  29. // tokens by calling into this API. This class handles the state and breaks down
  30. // the different lexing steps that may be used. It directly updates the provided
  31. // tokenized buffer with the lexed tokens.
  32. //
  33. // We'd typically put this in an anonymous namespace, but it is `friend`-ed by
  34. // the `TokenizedBuffer`. One of the important benefits of being in an anonymous
  35. // namespace is having internal linkage. That allows the optimizer to much more
  36. // aggressively inline away functions that are called in only one place. We keep
  37. // that benefit for now by using the `internal_linkage` attribute.
  38. //
  39. // TODO: Investigate ways to refactor the code that allow moving this into an
  40. // anonymous namespace without overly exposing implementation details of the
  41. // `TokenizedBuffer` or undermining the performance constraints of the lexer.
  42. class [[clang::internal_linkage]] Lexer {
  43. public:
  44. // Symbolic result of a lexing action. This indicates whether we successfully
  45. // lexed a token, or whether other lexing actions should be attempted.
  46. //
  47. // While it wraps a simple boolean state, its API both helps make the failures
  48. // more self documenting, and by consuming the actual token constructively
  49. // when one is produced, it helps ensure the correct result is returned.
  50. class LexResult {
  51. public:
  52. // Consumes (and discard) a valid token to construct a result
  53. // indicating a token has been produced. Relies on implicit conversions.
  54. // NOLINTNEXTLINE(google-explicit-constructor)
  55. LexResult(Token /*discarded_token*/) : LexResult(true) {}
  56. // Returns a result indicating no token was produced.
  57. static auto NoMatch() -> LexResult { return LexResult(false); }
  58. // Tests whether a token was produced by the lexing routine, and
  59. // the lexer can continue forming tokens.
  60. explicit operator bool() const { return formed_token_; }
  61. private:
  62. explicit LexResult(bool formed_token) : formed_token_(formed_token) {}
  63. bool formed_token_;
  64. };
  65. Lexer(SharedValueStores& value_stores, SourceBuffer& source,
  66. DiagnosticConsumer& consumer)
  67. : buffer_(value_stores, source),
  68. consumer_(consumer),
  69. translator_(&buffer_),
  70. emitter_(translator_, consumer_),
  71. token_translator_(&buffer_),
  72. token_emitter_(token_translator_, consumer_) {}
  73. // Find all line endings and create the line data structures.
  74. //
  75. // Explicitly kept out-of-line because this is a significant loop that is
  76. // useful to have in the profile and it doesn't simplify by inlining at all.
  77. // But because it can, the compiler will flatten this otherwise.
  78. [[gnu::noinline]] auto CreateLines(llvm::StringRef source_text) -> void;
  79. auto current_line() -> Line { return Line(line_index_); }
  80. auto current_line_info() -> TokenizedBuffer::LineInfo* {
  81. return &buffer_.line_infos_[line_index_];
  82. }
  83. auto ComputeColumn(ssize_t position) -> int {
  84. CARBON_DCHECK(position >= current_line_info()->start);
  85. return position - current_line_info()->start;
  86. }
  87. auto NoteWhitespace() -> void {
  88. buffer_.token_infos_.back().has_trailing_space = true;
  89. }
  90. auto SkipHorizontalWhitespace(llvm::StringRef source_text, ssize_t& position)
  91. -> void;
  92. auto LexHorizontalWhitespace(llvm::StringRef source_text, ssize_t& position)
  93. -> void;
  94. auto LexVerticalWhitespace(llvm::StringRef source_text, ssize_t& position)
  95. -> void;
  96. auto LexCommentOrSlash(llvm::StringRef source_text, ssize_t& position)
  97. -> void;
  98. auto LexComment(llvm::StringRef source_text, ssize_t& position) -> void;
  99. auto LexNumericLiteral(llvm::StringRef source_text, ssize_t& position)
  100. -> LexResult;
  101. auto LexStringLiteral(llvm::StringRef source_text, ssize_t& position)
  102. -> LexResult;
  103. auto LexOneCharSymbolToken(llvm::StringRef source_text, TokenKind kind,
  104. ssize_t& position) -> Token;
  105. auto LexOpeningSymbolToken(llvm::StringRef source_text, TokenKind kind,
  106. ssize_t& position) -> LexResult;
  107. auto LexClosingSymbolToken(llvm::StringRef source_text, TokenKind kind,
  108. ssize_t& position) -> LexResult;
  109. auto LexSymbolToken(llvm::StringRef source_text, ssize_t& position)
  110. -> LexResult;
  111. // Given a word that has already been lexed, determine whether it is a type
  112. // literal and if so form the corresponding token.
  113. auto LexWordAsTypeLiteralToken(llvm::StringRef word, int column) -> LexResult;
  114. // Closes all open groups that cannot remain open across a closing symbol.
  115. // Users may pass `Error` to close all open groups.
  116. //
  117. // Explicitly kept out-of-line because it's on an error path, and so inlining
  118. // would be performance neutral. Keeping it out-of-line makes the generated
  119. // code easier to understand when profiling.
  120. [[gnu::noinline]] auto CloseInvalidOpenGroups(TokenKind kind,
  121. ssize_t position) -> void;
  122. auto LexKeywordOrIdentifier(llvm::StringRef source_text, ssize_t& position)
  123. -> LexResult;
  124. auto LexKeywordOrIdentifierMaybeRaw(llvm::StringRef source_text,
  125. ssize_t& position) -> LexResult;
  126. auto LexError(llvm::StringRef source_text, ssize_t& position) -> LexResult;
  127. auto LexStartOfFile(llvm::StringRef source_text, ssize_t& position) -> void;
  128. auto LexEndOfFile(llvm::StringRef source_text, ssize_t position) -> void;
  129. // The main entry point for dispatching through the lexer's table. This method
  130. // should always fully consume the source text.
  131. auto Lex() && -> TokenizedBuffer;
  132. private:
  133. TokenizedBuffer buffer_;
  134. ssize_t line_index_;
  135. llvm::SmallVector<Token> open_groups_;
  136. ErrorTrackingDiagnosticConsumer consumer_;
  137. TokenizedBuffer::SourceBufferLocationTranslator translator_;
  138. LexerDiagnosticEmitter emitter_;
  139. TokenLocationTranslator token_translator_;
  140. TokenDiagnosticEmitter token_emitter_;
  141. };
  142. // TODO: Move Overload and VariantMatch somewhere more central.
  143. // Form an overload set from a list of functions. For example:
  144. //
  145. // ```
  146. // auto overloaded = Overload{[] (int) {}, [] (float) {}};
  147. // ```
  148. template <typename... Fs>
  149. struct Overload : Fs... {
  150. using Fs::operator()...;
  151. };
  152. template <typename... Fs>
  153. Overload(Fs...) -> Overload<Fs...>;
  154. // Pattern-match against the type of the value stored in the variant `V`. Each
  155. // element of `fs` should be a function that takes one or more of the variant
  156. // values in `V`.
  157. template <typename V, typename... Fs>
  158. auto VariantMatch(V&& v, Fs&&... fs) -> decltype(auto) {
  159. return std::visit(Overload{std::forward<Fs&&>(fs)...}, std::forward<V&&>(v));
  160. }
  161. #if CARBON_USE_SIMD
  162. namespace {
  163. #if __ARM_NEON
  164. using SIMDMaskT = uint8x16_t;
  165. #elif __x86_64__
  166. using SIMDMaskT = __m128i;
  167. #else
  168. #error "Unsupported SIMD architecture!"
  169. #endif
  170. using SIMDMaskArrayT = std::array<SIMDMaskT, sizeof(SIMDMaskT) + 1>;
  171. } // namespace
  172. // A table of masks to include 0-16 bytes of an SSE register.
  173. static constexpr SIMDMaskArrayT PrefixMasks = []() constexpr {
  174. SIMDMaskArrayT masks = {};
  175. for (int i = 1; i < static_cast<int>(masks.size()); ++i) {
  176. masks[i] =
  177. // The SIMD types and constexpr require a C-style cast.
  178. // NOLINTNEXTLINE(google-readability-casting)
  179. (SIMDMaskT)(std::numeric_limits<unsigned __int128>::max() >>
  180. ((sizeof(SIMDMaskT) - i) * 8));
  181. }
  182. return masks;
  183. }();
  184. #endif // CARBON_USE_SIMD
  185. // A table of booleans that we can use to classify bytes as being valid
  186. // identifier start. This is used by raw identifier detection.
  187. static constexpr std::array<bool, 256> IsIdStartByteTable = [] {
  188. std::array<bool, 256> table = {};
  189. for (char c = 'A'; c <= 'Z'; ++c) {
  190. table[c] = true;
  191. }
  192. for (char c = 'a'; c <= 'z'; ++c) {
  193. table[c] = true;
  194. }
  195. table['_'] = true;
  196. return table;
  197. }();
  198. // A table of booleans that we can use to classify bytes as being valid
  199. // identifier (or keyword) characters. This is used in the generic,
  200. // non-vectorized fallback code to scan for length of an identifier.
  201. static constexpr std::array<bool, 256> IsIdByteTable = [] {
  202. std::array<bool, 256> table = IsIdStartByteTable;
  203. for (char c = '0'; c <= '9'; ++c) {
  204. table[c] = true;
  205. }
  206. return table;
  207. }();
  208. // Baseline scalar version, also available for scalar-fallback in SIMD code.
  209. // Uses `ssize_t` for performance when indexing in the loop.
  210. //
  211. // TODO: This assumes all Unicode characters are non-identifiers.
  212. static auto ScanForIdentifierPrefixScalar(llvm::StringRef text, ssize_t i)
  213. -> llvm::StringRef {
  214. const ssize_t size = text.size();
  215. while (i < size && IsIdByteTable[static_cast<unsigned char>(text[i])]) {
  216. ++i;
  217. }
  218. return text.substr(0, i);
  219. }
  220. #if CARBON_USE_SIMD && __x86_64__
  221. // The SIMD code paths uses a scheme derived from the techniques in Geoff
  222. // Langdale and Daniel Lemire's work on parsing JSON[1]. Specifically, that
  223. // paper outlines a technique of using two 4-bit indexed in-register look-up
  224. // tables (LUTs) to classify bytes in a branchless SIMD code sequence.
  225. //
  226. // [1]: https://arxiv.org/pdf/1902.08318.pdf
  227. //
  228. // The goal is to get a bit mask classifying different sets of bytes. For each
  229. // input byte, we first test for a high bit indicating a UTF-8 encoded Unicode
  230. // character. Otherwise, we want the mask bits to be set with the following
  231. // logic derived by inspecting the high nibble and low nibble of the input:
  232. // bit0 = 1 for `_`: high `0x5` and low `0xF`
  233. // bit1 = 1 for `0-9`: high `0x3` and low `0x0` - `0x9`
  234. // bit2 = 1 for `A-O` and `a-o`: high `0x4` or `0x6` and low `0x1` - `0xF`
  235. // bit3 = 1 for `P-Z` and 'p-z': high `0x5` or `0x7` and low `0x0` - `0xA`
  236. // bit4 = unused
  237. // bit5 = unused
  238. // bit6 = unused
  239. // bit7 = unused
  240. //
  241. // No bits set means definitively non-ID ASCII character.
  242. //
  243. // Bits 4-7 remain unused if we need to classify more characters.
  244. namespace {
  245. // Struct used to implement the nibble LUT for SIMD implementations.
  246. //
  247. // Forced to 16-byte alignment to ensure we can load it easily in SIMD code.
  248. struct alignas(16) NibbleLUT {
  249. auto Load() const -> __m128i {
  250. return _mm_load_si128(reinterpret_cast<const __m128i*>(this));
  251. }
  252. uint8_t nibble_0;
  253. uint8_t nibble_1;
  254. uint8_t nibble_2;
  255. uint8_t nibble_3;
  256. uint8_t nibble_4;
  257. uint8_t nibble_5;
  258. uint8_t nibble_6;
  259. uint8_t nibble_7;
  260. uint8_t nibble_8;
  261. uint8_t nibble_9;
  262. uint8_t nibble_a;
  263. uint8_t nibble_b;
  264. uint8_t nibble_c;
  265. uint8_t nibble_d;
  266. uint8_t nibble_e;
  267. uint8_t nibble_f;
  268. };
  269. } // namespace
  270. static constexpr NibbleLUT HighLUT = {
  271. .nibble_0 = 0b0000'0000,
  272. .nibble_1 = 0b0000'0000,
  273. .nibble_2 = 0b0000'0000,
  274. .nibble_3 = 0b0000'0010,
  275. .nibble_4 = 0b0000'0100,
  276. .nibble_5 = 0b0000'1001,
  277. .nibble_6 = 0b0000'0100,
  278. .nibble_7 = 0b0000'1000,
  279. .nibble_8 = 0b1000'0000,
  280. .nibble_9 = 0b1000'0000,
  281. .nibble_a = 0b1000'0000,
  282. .nibble_b = 0b1000'0000,
  283. .nibble_c = 0b1000'0000,
  284. .nibble_d = 0b1000'0000,
  285. .nibble_e = 0b1000'0000,
  286. .nibble_f = 0b1000'0000,
  287. };
  288. static constexpr NibbleLUT LowLUT = {
  289. .nibble_0 = 0b1000'1010,
  290. .nibble_1 = 0b1000'1110,
  291. .nibble_2 = 0b1000'1110,
  292. .nibble_3 = 0b1000'1110,
  293. .nibble_4 = 0b1000'1110,
  294. .nibble_5 = 0b1000'1110,
  295. .nibble_6 = 0b1000'1110,
  296. .nibble_7 = 0b1000'1110,
  297. .nibble_8 = 0b1000'1110,
  298. .nibble_9 = 0b1000'1110,
  299. .nibble_a = 0b1000'1100,
  300. .nibble_b = 0b1000'0100,
  301. .nibble_c = 0b1000'0100,
  302. .nibble_d = 0b1000'0100,
  303. .nibble_e = 0b1000'0100,
  304. .nibble_f = 0b1000'0101,
  305. };
  306. static auto ScanForIdentifierPrefixX86(llvm::StringRef text)
  307. -> llvm::StringRef {
  308. const auto high_lut = HighLUT.Load();
  309. const auto low_lut = LowLUT.Load();
  310. // Use `ssize_t` for performance here as we index memory in a tight loop.
  311. ssize_t i = 0;
  312. const ssize_t size = text.size();
  313. while ((i + 16) <= size) {
  314. __m128i input =
  315. _mm_loadu_si128(reinterpret_cast<const __m128i*>(text.data() + i));
  316. // The high bits of each byte indicate a non-ASCII character encoded using
  317. // UTF-8. Test those and fall back to the scalar code if present. These
  318. // bytes will also cause spurious zeros in the LUT results, but we can
  319. // ignore that because we track them independently here.
  320. #if __SSE4_1__
  321. if (!_mm_test_all_zeros(_mm_set1_epi8(0x80), input)) {
  322. break;
  323. }
  324. #else
  325. if (_mm_movemask_epi8(input) != 0) {
  326. break;
  327. }
  328. #endif
  329. // Do two LUT lookups and mask the results together to get the results for
  330. // both low and high nibbles. Note that we don't need to mask out the high
  331. // bit of input here because we track that above for UTF-8 handling.
  332. __m128i low_mask = _mm_shuffle_epi8(low_lut, input);
  333. // Note that the input needs to be masked to only include the high nibble or
  334. // we could end up with bit7 set forcing the result to a zero byte.
  335. __m128i input_high =
  336. _mm_and_si128(_mm_srli_epi32(input, 4), _mm_set1_epi8(0x0f));
  337. __m128i high_mask = _mm_shuffle_epi8(high_lut, input_high);
  338. __m128i mask = _mm_and_si128(low_mask, high_mask);
  339. // Now compare to find the completely zero bytes.
  340. __m128i id_byte_mask_vec = _mm_cmpeq_epi8(mask, _mm_setzero_si128());
  341. int tail_ascii_mask = _mm_movemask_epi8(id_byte_mask_vec);
  342. // Check if there are bits in the tail mask, which means zero bytes and the
  343. // end of the identifier. We could do this without materializing the scalar
  344. // mask on more recent CPUs, but we generally expect the median length we
  345. // encounter to be <16 characters and so we avoid the extra instruction in
  346. // that case and predict this branch to succeed so it is laid out in a
  347. // reasonable way.
  348. if (LLVM_LIKELY(tail_ascii_mask != 0)) {
  349. // Move past the definitively classified bytes that are part of the
  350. // identifier, and return the complete identifier text.
  351. i += __builtin_ctz(tail_ascii_mask);
  352. return text.substr(0, i);
  353. }
  354. i += 16;
  355. }
  356. return ScanForIdentifierPrefixScalar(text, i);
  357. }
  358. #endif // CARBON_USE_SIMD && __x86_64__
  359. // Scans the provided text and returns the prefix `StringRef` of contiguous
  360. // identifier characters.
  361. //
  362. // This is a performance sensitive function and where profitable uses vectorized
  363. // code sequences to optimize its scanning. When modifying, the identifier
  364. // lexing benchmarks should be checked for regressions.
  365. //
  366. // Identifier characters here are currently the ASCII characters `[0-9A-Za-z_]`.
  367. //
  368. // TODO: Currently, this code does not implement Carbon's design for Unicode
  369. // characters in identifiers. It does work on UTF-8 code unit sequences, but
  370. // currently considers non-ASCII characters to be non-identifier characters.
  371. // Some work has been done to ensure the hot loop, while optimized, retains
  372. // enough information to add Unicode handling without completely destroying the
  373. // relevant optimizations.
  374. static auto ScanForIdentifierPrefix(llvm::StringRef text) -> llvm::StringRef {
  375. // Dispatch to an optimized architecture optimized routine.
  376. #if CARBON_USE_SIMD && __x86_64__
  377. return ScanForIdentifierPrefixX86(text);
  378. #elif CARBON_USE_SIMD && __ARM_NEON
  379. // Somewhat surprisingly, there is basically nothing worth doing in SIMD on
  380. // Arm to optimize this scan. The Neon SIMD operations end up requiring you to
  381. // move from the SIMD unit to the scalar unit in the critical path of finding
  382. // the offset of the end of an identifier. Current ARM cores make the code
  383. // sequences here (quite) unpleasant. For example, on Apple M1 and similar
  384. // cores, the latency is as much as 10 cycles just to extract from the vector.
  385. // SIMD might be more interesting on Neoverse cores, but it'd be nice to avoid
  386. // core-specific tunings at this point.
  387. //
  388. // If this proves problematic and critical to optimize, the current leading
  389. // theory is to have the newline searching code also create a bitmask for the
  390. // entire source file of identifier and non-identifier bytes, and then use the
  391. // bit-counting instructions here to do a fast scan of that bitmask. However,
  392. // crossing that bridge will add substantial complexity to the newline
  393. // scanner, and so currently we just use a boring scalar loop that pipelines
  394. // well.
  395. #endif
  396. return ScanForIdentifierPrefixScalar(text, 0);
  397. }
  398. using DispatchFunctionT = auto(Lexer& lexer, llvm::StringRef source_text,
  399. ssize_t position) -> void;
  400. using DispatchTableT = std::array<DispatchFunctionT*, 256>;
  401. static constexpr std::array<TokenKind, 256> OneCharTokenKindTable = [] {
  402. std::array<TokenKind, 256> table = {};
  403. #define CARBON_ONE_CHAR_SYMBOL_TOKEN(TokenName, Spelling) \
  404. table[(Spelling)[0]] = TokenKind::TokenName;
  405. #define CARBON_OPENING_GROUP_SYMBOL_TOKEN(TokenName, Spelling, ClosingName) \
  406. table[(Spelling)[0]] = TokenKind::TokenName;
  407. #define CARBON_CLOSING_GROUP_SYMBOL_TOKEN(TokenName, Spelling, OpeningName) \
  408. table[(Spelling)[0]] = TokenKind::TokenName;
  409. #include "toolchain/lex/token_kind.def"
  410. return table;
  411. }();
  412. // We use a collection of static member functions for table-based dispatch to
  413. // lexer methods. These are named static member functions so that they show up
  414. // helpfully in profiles and backtraces, but they tend to not contain the
  415. // interesting logic and simply delegate to the relevant methods. All of their
  416. // signatures need to be exactly the same however in order to ensure we can
  417. // build efficient dispatch tables out of them. All of them end by doing a
  418. // must-tail return call to this routine. It handles continuing the dispatch
  419. // chain.
  420. static auto DispatchNext(Lexer& lexer, llvm::StringRef source_text,
  421. ssize_t position) -> void;
  422. // Define a set of dispatch functions that simply forward to a method that
  423. // lexes a token. This includes validating that an actual token was produced,
  424. // and continuing the dispatch.
  425. #define CARBON_DISPATCH_LEX_TOKEN(LexMethod) \
  426. static auto Dispatch##LexMethod(Lexer& lexer, llvm::StringRef source_text, \
  427. ssize_t position) \
  428. ->void { \
  429. Lexer::LexResult result = lexer.LexMethod(source_text, position); \
  430. CARBON_CHECK(result) << "Failed to form a token!"; \
  431. [[clang::musttail]] return DispatchNext(lexer, source_text, position); \
  432. }
  433. CARBON_DISPATCH_LEX_TOKEN(LexError)
  434. CARBON_DISPATCH_LEX_TOKEN(LexSymbolToken)
  435. CARBON_DISPATCH_LEX_TOKEN(LexKeywordOrIdentifier)
  436. CARBON_DISPATCH_LEX_TOKEN(LexKeywordOrIdentifierMaybeRaw)
  437. CARBON_DISPATCH_LEX_TOKEN(LexNumericLiteral)
  438. CARBON_DISPATCH_LEX_TOKEN(LexStringLiteral)
  439. // A custom dispatch functions that pre-select the symbol token to lex.
  440. #define CARBON_DISPATCH_LEX_SYMBOL_TOKEN(LexMethod) \
  441. static auto Dispatch##LexMethod##SymbolToken( \
  442. Lexer& lexer, llvm::StringRef source_text, ssize_t position) \
  443. ->void { \
  444. Lexer::LexResult result = lexer.LexMethod##SymbolToken( \
  445. source_text, OneCharTokenKindTable[source_text[position]], position); \
  446. CARBON_CHECK(result) << "Failed to form a token!"; \
  447. [[clang::musttail]] return DispatchNext(lexer, source_text, position); \
  448. }
  449. CARBON_DISPATCH_LEX_SYMBOL_TOKEN(LexOneChar)
  450. CARBON_DISPATCH_LEX_SYMBOL_TOKEN(LexOpening)
  451. CARBON_DISPATCH_LEX_SYMBOL_TOKEN(LexClosing)
  452. // Define a set of non-token dispatch functions that handle things like
  453. // whitespace and comments.
  454. #define CARBON_DISPATCH_LEX_NON_TOKEN(LexMethod) \
  455. static auto Dispatch##LexMethod(Lexer& lexer, llvm::StringRef source_text, \
  456. ssize_t position) \
  457. ->void { \
  458. lexer.LexMethod(source_text, position); \
  459. [[clang::musttail]] return DispatchNext(lexer, source_text, position); \
  460. }
  461. CARBON_DISPATCH_LEX_NON_TOKEN(LexHorizontalWhitespace)
  462. CARBON_DISPATCH_LEX_NON_TOKEN(LexVerticalWhitespace)
  463. CARBON_DISPATCH_LEX_NON_TOKEN(LexCommentOrSlash)
  464. // Build a table of function pointers that we can use to dispatch to the
  465. // correct lexer routine based on the first byte of source text.
  466. //
  467. // While it is tempting to simply use a `switch` on the first byte and
  468. // dispatch with cases into this, in practice that doesn't produce great code.
  469. // There seem to be two issues that are the root cause.
  470. //
  471. // First, there are lots of different values of bytes that dispatch to a
  472. // fairly small set of routines, and then some byte values that dispatch
  473. // differently for each byte. This pattern isn't one that the compiler-based
  474. // lowering of switches works well with -- it tries to balance all the cases,
  475. // and in doing so emits several compares and other control flow rather than a
  476. // simple jump table.
  477. //
  478. // Second, with a `case`, it isn't as obvious how to create a single, uniform
  479. // interface that is effective for *every* byte value, and thus makes for a
  480. // single consistent table-based dispatch. By forcing these to be function
  481. // pointers, we also coerce the code to use a strictly homogeneous structure
  482. // that can form a single dispatch table.
  483. //
  484. // These two actually interact -- the second issue is part of what makes the
  485. // non-table lowering in the first one desirable for many switches and cases.
  486. //
  487. // Ultimately, when table-based dispatch is such an important technique, we
  488. // get better results by taking full control and manually creating the
  489. // dispatch structures.
  490. //
  491. // The functions in this table also use tail-recursion to implement the loop
  492. // of the lexer. This is based on the technique described more fully for any
  493. // kind of byte-stream loop structure here:
  494. // https://blog.reverberate.org/2021/04/21/musttail-efficient-interpreters.html
  495. static constexpr auto MakeDispatchTable() -> DispatchTableT {
  496. DispatchTableT table = {};
  497. // First set the table entries to dispatch to our error token handler as the
  498. // base case. Everything valid comes from an override below.
  499. for (int i = 0; i < 256; ++i) {
  500. table[i] = &DispatchLexError;
  501. }
  502. // Symbols have some special dispatching. First, set the first character of
  503. // each symbol token spelling to dispatch to the symbol lexer. We don't
  504. // provide a pre-computed token here, so the symbol lexer will compute the
  505. // exact symbol token kind. We'll override this with more specific dispatch
  506. // below.
  507. #define CARBON_SYMBOL_TOKEN(TokenName, Spelling) \
  508. table[(Spelling)[0]] = &DispatchLexSymbolToken;
  509. #include "toolchain/lex/token_kind.def"
  510. // Now special cased single-character symbols that are guaranteed to not
  511. // join with another symbol. These are grouping symbols, terminators,
  512. // or separators in the grammar and have a good reason to be
  513. // orthogonal to any other punctuation. We do this separately because this
  514. // needs to override some of the generic handling above, and provide a
  515. // custom token.
  516. #define CARBON_ONE_CHAR_SYMBOL_TOKEN(TokenName, Spelling) \
  517. table[(Spelling)[0]] = &DispatchLexOneCharSymbolToken;
  518. #define CARBON_OPENING_GROUP_SYMBOL_TOKEN(TokenName, Spelling, ClosingName) \
  519. table[(Spelling)[0]] = &DispatchLexOpeningSymbolToken;
  520. #define CARBON_CLOSING_GROUP_SYMBOL_TOKEN(TokenName, Spelling, OpeningName) \
  521. table[(Spelling)[0]] = &DispatchLexClosingSymbolToken;
  522. #include "toolchain/lex/token_kind.def"
  523. // Override the handling for `/` to consider comments as well as a `/`
  524. // symbol.
  525. table['/'] = &DispatchLexCommentOrSlash;
  526. table['_'] = &DispatchLexKeywordOrIdentifier;
  527. // Note that we don't use `llvm::seq` because this needs to be `constexpr`
  528. // evaluated.
  529. for (unsigned char c = 'a'; c <= 'z'; ++c) {
  530. table[c] = &DispatchLexKeywordOrIdentifier;
  531. }
  532. table['r'] = &DispatchLexKeywordOrIdentifierMaybeRaw;
  533. for (unsigned char c = 'A'; c <= 'Z'; ++c) {
  534. table[c] = &DispatchLexKeywordOrIdentifier;
  535. }
  536. // We dispatch all non-ASCII UTF-8 characters to the identifier lexing
  537. // as whitespace characters should already have been skipped and the
  538. // only remaining valid Unicode characters would be part of an
  539. // identifier. That code can either accept or reject.
  540. for (int i = 0x80; i < 0x100; ++i) {
  541. table[i] = &DispatchLexKeywordOrIdentifier;
  542. }
  543. for (unsigned char c = '0'; c <= '9'; ++c) {
  544. table[c] = &DispatchLexNumericLiteral;
  545. }
  546. table['\''] = &DispatchLexStringLiteral;
  547. table['"'] = &DispatchLexStringLiteral;
  548. table['#'] = &DispatchLexStringLiteral;
  549. table[' '] = &DispatchLexHorizontalWhitespace;
  550. table['\t'] = &DispatchLexHorizontalWhitespace;
  551. table['\n'] = &DispatchLexVerticalWhitespace;
  552. return table;
  553. };
  554. static constexpr DispatchTableT DispatchTable = MakeDispatchTable();
  555. static auto DispatchNext(Lexer& lexer, llvm::StringRef source_text,
  556. ssize_t position) -> void {
  557. if (LLVM_LIKELY(position < static_cast<ssize_t>(source_text.size()))) {
  558. // The common case is to tail recurse based on the next character. Note
  559. // that because this is a must-tail return, this cannot fail to tail-call
  560. // and will not grow the stack. This is in essence a loop with dynamic
  561. // tail dispatch to the next stage of the loop.
  562. [[clang::musttail]] return DispatchTable[static_cast<unsigned char>(
  563. source_text[position])](lexer, source_text, position);
  564. }
  565. // When we finish the source text, stop recursing. We also hint this so that
  566. // the tail-dispatch is optimized as that's essentially the loop back-edge
  567. // and this is the loop exit.
  568. lexer.LexEndOfFile(source_text, position);
  569. }
  570. auto Lexer::Lex() && -> TokenizedBuffer {
  571. llvm::StringRef source_text = buffer_.source_->text();
  572. // First build up our line data structures.
  573. CreateLines(source_text);
  574. ssize_t position = 0;
  575. LexStartOfFile(source_text, position);
  576. // Manually enter the dispatch loop. This call will tail-recurse through the
  577. // dispatch table until everything from source_text is consumed.
  578. DispatchNext(*this, source_text, position);
  579. if (consumer_.seen_error()) {
  580. buffer_.has_errors_ = true;
  581. }
  582. return std::move(buffer_);
  583. }
  584. auto Lexer::CreateLines(llvm::StringRef source_text) -> void {
  585. // We currently use `memchr` here which typically is well optimized to use
  586. // SIMD or other significantly faster than byte-wise scanning. We also use
  587. // carefully selected variables and the `ssize_t` type for performance and
  588. // code size of this hot loop.
  589. //
  590. // TODO: Eventually, we'll likely need to roll our own SIMD-optimized
  591. // routine here in order to handle CR+LF line endings, as we'll want those
  592. // to stay on the fast path. We'll also need to detect and diagnose Unicode
  593. // vertical whitespace. Starting with `memchr` should give us a strong
  594. // baseline performance target when adding those features.
  595. const char* const text = source_text.data();
  596. const ssize_t size = source_text.size();
  597. ssize_t start = 0;
  598. while (const char* nl = reinterpret_cast<const char*>(
  599. memchr(&text[start], '\n', size - start))) {
  600. ssize_t nl_index = nl - text;
  601. buffer_.AddLine(TokenizedBuffer::LineInfo(start, nl_index - start));
  602. start = nl_index + 1;
  603. }
  604. // The last line ends at the end of the file.
  605. buffer_.AddLine(TokenizedBuffer::LineInfo(start, size - start));
  606. // If the last line wasn't empty, the file ends with an unterminated line.
  607. // Add an extra blank line so that we never need to handle the special case
  608. // of being on the last line inside the lexer and needing to not increment
  609. // to the next line.
  610. if (start != size) {
  611. buffer_.AddLine(TokenizedBuffer::LineInfo(size, 0));
  612. }
  613. // Now that all the infos are allocated, get a fresh pointer to the first
  614. // info for use while lexing.
  615. line_index_ = 0;
  616. }
  617. auto Lexer::SkipHorizontalWhitespace(llvm::StringRef source_text,
  618. ssize_t& position) -> void {
  619. // Handle adjacent whitespace quickly. This comes up frequently for example
  620. // due to indentation. We don't expect *huge* runs, so just use a scalar
  621. // loop. While still scalar, this avoids repeated table dispatch and marking
  622. // whitespace.
  623. while (position < static_cast<ssize_t>(source_text.size()) &&
  624. (source_text[position] == ' ' || source_text[position] == '\t')) {
  625. ++position;
  626. }
  627. }
  628. auto Lexer::LexHorizontalWhitespace(llvm::StringRef source_text,
  629. ssize_t& position) -> void {
  630. CARBON_DCHECK(source_text[position] == ' ' || source_text[position] == '\t');
  631. NoteWhitespace();
  632. // Skip runs using an optimized code path.
  633. SkipHorizontalWhitespace(source_text, position);
  634. }
  635. auto Lexer::LexVerticalWhitespace(llvm::StringRef source_text,
  636. ssize_t& position) -> void {
  637. NoteWhitespace();
  638. ++line_index_;
  639. auto* line_info = current_line_info();
  640. ssize_t line_start = line_info->start;
  641. position = line_start;
  642. SkipHorizontalWhitespace(source_text, position);
  643. line_info->indent = position - line_start;
  644. }
  645. auto Lexer::LexCommentOrSlash(llvm::StringRef source_text, ssize_t& position)
  646. -> void {
  647. CARBON_DCHECK(source_text[position] == '/');
  648. // Both comments and slash symbols start with a `/`. We disambiguate with a
  649. // max-munch rule -- if the next character is another `/` then we lex it as
  650. // a comment start. If it isn't, then we lex as a slash. We also optimize
  651. // for the comment case as we expect that to be much more important for
  652. // overall lexer performance.
  653. if (LLVM_LIKELY(position + 1 < static_cast<ssize_t>(source_text.size()) &&
  654. source_text[position + 1] == '/')) {
  655. LexComment(source_text, position);
  656. return;
  657. }
  658. // This code path should produce a token, make sure that happens.
  659. LexResult result = LexSymbolToken(source_text, position);
  660. CARBON_CHECK(result) << "Failed to form a token!";
  661. }
  662. auto Lexer::LexComment(llvm::StringRef source_text, ssize_t& position) -> void {
  663. CARBON_DCHECK(source_text.substr(position).startswith("//"));
  664. // Any comment must be the only non-whitespace on the line.
  665. const auto* line_info = current_line_info();
  666. if (LLVM_UNLIKELY(position != line_info->start + line_info->indent)) {
  667. CARBON_DIAGNOSTIC(TrailingComment, Error,
  668. "Trailing comments are not permitted.");
  669. emitter_.Emit(source_text.begin() + position, TrailingComment);
  670. // Note that we cannot fall-through here as the logic below doesn't handle
  671. // trailing comments. For simplicity, we just consume the trailing comment
  672. // itself and let the normal lexer handle the newline as if there weren't
  673. // a comment at all.
  674. position = line_info->start + line_info->length;
  675. return;
  676. }
  677. // The introducer '//' must be followed by whitespace or EOF.
  678. bool is_valid_after_slashes = true;
  679. if (position + 2 < static_cast<ssize_t>(source_text.size()) &&
  680. LLVM_UNLIKELY(!IsSpace(source_text[position + 2]))) {
  681. CARBON_DIAGNOSTIC(NoWhitespaceAfterCommentIntroducer, Error,
  682. "Whitespace is required after '//'.");
  683. emitter_.Emit(source_text.begin() + position + 2,
  684. NoWhitespaceAfterCommentIntroducer);
  685. // We use this to tweak the lexing of blocks below.
  686. is_valid_after_slashes = false;
  687. }
  688. // Skip over this line.
  689. ssize_t line_index = line_index_;
  690. ++line_index;
  691. position = buffer_.line_infos_[line_index].start;
  692. // A very common pattern is a long block of comment lines all with the same
  693. // indent and comment start. We skip these comment blocks in bulk both for
  694. // speed and to reduce redundant diagnostics if each line has the same
  695. // erroneous comment start like `//!`.
  696. //
  697. // When we have SIMD support this is even more important for speed, as short
  698. // indents can be scanned extremely quickly with SIMD and we expect these to
  699. // be the dominant cases.
  700. //
  701. // TODO: We should extend this to 32-byte SIMD on platforms with support.
  702. constexpr int MaxIndent = 13;
  703. const int indent = line_info->indent;
  704. const ssize_t first_line_start = line_info->start;
  705. ssize_t prefix_size = indent + (is_valid_after_slashes ? 3 : 2);
  706. auto skip_to_next_line = [this, indent, &line_index, &position] {
  707. // We're guaranteed to have a line here even on a comment on the last line
  708. // as we ensure there is an empty line structure at the end of every file.
  709. ++line_index;
  710. auto* next_line_info = &buffer_.line_infos_[line_index];
  711. next_line_info->indent = indent;
  712. position = next_line_info->start;
  713. };
  714. if (CARBON_USE_SIMD &&
  715. position + 16 < static_cast<ssize_t>(source_text.size()) &&
  716. indent <= MaxIndent) {
  717. // Load a mask based on the amount of text we want to compare.
  718. auto mask = PrefixMasks[prefix_size];
  719. #if __ARM_NEON
  720. // Load and mask the prefix of the current line.
  721. auto prefix = vld1q_u8(reinterpret_cast<const uint8_t*>(source_text.data() +
  722. first_line_start));
  723. prefix = vandq_u8(mask, prefix);
  724. do {
  725. // Load and mask the next line to consider's prefix.
  726. auto next_prefix = vld1q_u8(
  727. reinterpret_cast<const uint8_t*>(source_text.data() + position));
  728. next_prefix = vandq_u8(mask, next_prefix);
  729. // Compare the two prefixes and if any lanes differ, break.
  730. auto compare = vceqq_u8(prefix, next_prefix);
  731. if (vminvq_u8(compare) == 0) {
  732. break;
  733. }
  734. skip_to_next_line();
  735. } while (position + 16 < static_cast<ssize_t>(source_text.size()));
  736. #elif __x86_64__
  737. // Use the current line's prefix as the exemplar to compare against.
  738. // We don't mask here as we will mask when doing the comparison.
  739. auto prefix = _mm_loadu_si128(reinterpret_cast<const __m128i*>(
  740. source_text.data() + first_line_start));
  741. do {
  742. // Load the next line to consider's prefix.
  743. auto next_prefix = _mm_loadu_si128(
  744. reinterpret_cast<const __m128i*>(source_text.data() + position));
  745. // Compute the difference between the next line and our exemplar. Again,
  746. // we don't mask the difference because the comparison below will be
  747. // masked.
  748. auto prefix_diff = _mm_xor_si128(prefix, next_prefix);
  749. // If we have any differences (non-zero bits) within the mask, we can't
  750. // skip the next line too.
  751. if (!_mm_test_all_zeros(mask, prefix_diff)) {
  752. break;
  753. }
  754. skip_to_next_line();
  755. } while (position + 16 < static_cast<ssize_t>(source_text.size()));
  756. #else
  757. #error "Unsupported SIMD architecture!"
  758. #endif
  759. // TODO: If we finish the loop due to the position approaching the end of
  760. // the buffer we may fail to skip the last line in a comment block that
  761. // has an invalid initial sequence and thus emit extra diagnostics. We
  762. // should really fall through to the generic skipping logic, but the code
  763. // organization will need to change significantly to allow that.
  764. } else {
  765. while (position + prefix_size < static_cast<ssize_t>(source_text.size()) &&
  766. memcmp(source_text.data() + first_line_start,
  767. source_text.data() + position, prefix_size) == 0) {
  768. skip_to_next_line();
  769. }
  770. }
  771. // Now compute the indent of this next line before we finish.
  772. ssize_t line_start = position;
  773. SkipHorizontalWhitespace(source_text, position);
  774. // Now that we're done scanning, update to the latest line index and indent.
  775. line_index_ = line_index;
  776. current_line_info()->indent = position - line_start;
  777. }
  778. auto Lexer::LexNumericLiteral(llvm::StringRef source_text, ssize_t& position)
  779. -> LexResult {
  780. std::optional<NumericLiteral> literal =
  781. NumericLiteral::Lex(source_text.substr(position));
  782. if (!literal) {
  783. return LexError(source_text, position);
  784. }
  785. int int_column = ComputeColumn(position);
  786. int token_size = literal->text().size();
  787. position += token_size;
  788. return VariantMatch(
  789. literal->ComputeValue(emitter_),
  790. [&](NumericLiteral::IntegerValue&& value) {
  791. auto token = buffer_.AddToken({.kind = TokenKind::IntegerLiteral,
  792. .token_line = current_line(),
  793. .column = int_column});
  794. buffer_.GetTokenInfo(token).integer_id =
  795. buffer_.value_stores_->integers().Add(std::move(value.value));
  796. return token;
  797. },
  798. [&](NumericLiteral::RealValue&& value) {
  799. auto token = buffer_.AddToken({.kind = TokenKind::RealLiteral,
  800. .token_line = current_line(),
  801. .column = int_column});
  802. buffer_.GetTokenInfo(token).real_id =
  803. buffer_.value_stores_->reals().Add(Real{
  804. .mantissa = value.mantissa,
  805. .exponent = value.exponent,
  806. .is_decimal = (value.radix == NumericLiteral::Radix::Decimal)});
  807. return token;
  808. },
  809. [&](NumericLiteral::UnrecoverableError) {
  810. auto token = buffer_.AddToken({
  811. .kind = TokenKind::Error,
  812. .token_line = current_line(),
  813. .column = int_column,
  814. .error_length = token_size,
  815. });
  816. return token;
  817. });
  818. }
  819. auto Lexer::LexStringLiteral(llvm::StringRef source_text, ssize_t& position)
  820. -> LexResult {
  821. std::optional<StringLiteral> literal =
  822. StringLiteral::Lex(source_text.substr(position));
  823. if (!literal) {
  824. return LexError(source_text, position);
  825. }
  826. Line string_line = current_line();
  827. int string_column = ComputeColumn(position);
  828. ssize_t literal_size = literal->text().size();
  829. position += literal_size;
  830. // Update line and column information.
  831. if (literal->is_multi_line()) {
  832. while (current_line_info()->start + current_line_info()->length <
  833. position) {
  834. ++line_index_;
  835. current_line_info()->indent = string_column;
  836. }
  837. // Note that we've updated the current line at this point, but
  838. // `set_indent_` is already true from above. That remains correct as the
  839. // last line of the multi-line literal *also* has its indent set.
  840. }
  841. if (literal->is_terminated()) {
  842. auto string_id = buffer_.value_stores_->string_literals().Add(
  843. literal->ComputeValue(buffer_.allocator_, emitter_));
  844. auto token = buffer_.AddToken({.kind = TokenKind::StringLiteral,
  845. .token_line = string_line,
  846. .column = string_column,
  847. .string_literal_id = string_id});
  848. return token;
  849. } else {
  850. CARBON_DIAGNOSTIC(UnterminatedString, Error,
  851. "String is missing a terminator.");
  852. emitter_.Emit(literal->text().begin(), UnterminatedString);
  853. return buffer_.AddToken(
  854. {.kind = TokenKind::Error,
  855. .token_line = string_line,
  856. .column = string_column,
  857. .error_length = static_cast<int32_t>(literal_size)});
  858. }
  859. }
  860. auto Lexer::LexOneCharSymbolToken(llvm::StringRef source_text, TokenKind kind,
  861. ssize_t& position) -> Token {
  862. // Verify in a debug build that the incoming token kind is correct.
  863. CARBON_DCHECK(kind != TokenKind::Error);
  864. CARBON_DCHECK(kind.fixed_spelling().size() == 1);
  865. CARBON_DCHECK(source_text[position] == kind.fixed_spelling().front())
  866. << "Source text starts with '" << source_text[position]
  867. << "' instead of the spelling '" << kind.fixed_spelling()
  868. << "' of the incoming token kind '" << kind << "'";
  869. Token token = buffer_.AddToken({.kind = kind,
  870. .token_line = current_line(),
  871. .column = ComputeColumn(position)});
  872. ++position;
  873. return token;
  874. }
  875. auto Lexer::LexOpeningSymbolToken(llvm::StringRef source_text, TokenKind kind,
  876. ssize_t& position) -> LexResult {
  877. Token token = LexOneCharSymbolToken(source_text, kind, position);
  878. open_groups_.push_back(token);
  879. return token;
  880. }
  881. auto Lexer::LexClosingSymbolToken(llvm::StringRef source_text, TokenKind kind,
  882. ssize_t& position) -> LexResult {
  883. auto unmatched_error = [&] {
  884. CARBON_DIAGNOSTIC(UnmatchedClosing, Error,
  885. "Closing symbol without a corresponding opening symbol.");
  886. emitter_.Emit(source_text.begin() + position, UnmatchedClosing);
  887. Token token = buffer_.AddToken({.kind = TokenKind::Error,
  888. .token_line = current_line(),
  889. .column = ComputeColumn(position),
  890. .error_length = 1});
  891. ++position;
  892. return token;
  893. };
  894. // If we have no open groups, this is an error.
  895. if (LLVM_UNLIKELY(open_groups_.empty())) {
  896. return unmatched_error();
  897. }
  898. Token opening_token = open_groups_.back();
  899. // Close any invalid open groups first.
  900. if (LLVM_UNLIKELY(buffer_.GetTokenInfo(opening_token).kind !=
  901. kind.opening_symbol())) {
  902. CloseInvalidOpenGroups(kind, position);
  903. // This may exhaust the open groups so re-check and re-error if needed.
  904. if (open_groups_.empty()) {
  905. return unmatched_error();
  906. }
  907. opening_token = open_groups_.back();
  908. CARBON_DCHECK(buffer_.GetTokenInfo(opening_token).kind ==
  909. kind.opening_symbol());
  910. }
  911. open_groups_.pop_back();
  912. // Now that the groups are all matched up, lex the actual token.
  913. Token token = LexOneCharSymbolToken(source_text, kind, position);
  914. // Note that it is important to get fresh token infos here as lexing the
  915. // open token would invalidate any pointers.
  916. buffer_.GetTokenInfo(opening_token).closing_token = token;
  917. buffer_.GetTokenInfo(token).opening_token = opening_token;
  918. return token;
  919. }
  920. auto Lexer::LexSymbolToken(llvm::StringRef source_text, ssize_t& position)
  921. -> LexResult {
  922. // One character symbols and grouping symbols are handled with dedicated
  923. // dispatch. We only lex the multi-character tokens here.
  924. TokenKind kind = llvm::StringSwitch<TokenKind>(source_text.substr(position))
  925. #define CARBON_SYMBOL_TOKEN(Name, Spelling) \
  926. .StartsWith(Spelling, TokenKind::Name)
  927. #define CARBON_ONE_CHAR_SYMBOL_TOKEN(TokenName, Spelling)
  928. #define CARBON_OPENING_GROUP_SYMBOL_TOKEN(TokenName, Spelling, ClosingName)
  929. #define CARBON_CLOSING_GROUP_SYMBOL_TOKEN(TokenName, Spelling, OpeningName)
  930. #include "toolchain/lex/token_kind.def"
  931. .Default(TokenKind::Error);
  932. if (kind == TokenKind::Error) {
  933. return LexError(source_text, position);
  934. }
  935. Token token = buffer_.AddToken({.kind = kind,
  936. .token_line = current_line(),
  937. .column = ComputeColumn(position)});
  938. position += kind.fixed_spelling().size();
  939. return token;
  940. }
  941. auto Lexer::LexWordAsTypeLiteralToken(llvm::StringRef word, int column)
  942. -> LexResult {
  943. if (word.size() < 2) {
  944. // Too short to form one of these tokens.
  945. return LexResult::NoMatch();
  946. }
  947. if (word[1] < '1' || word[1] > '9') {
  948. // Doesn't start with a valid initial digit.
  949. return LexResult::NoMatch();
  950. }
  951. std::optional<TokenKind> kind;
  952. switch (word.front()) {
  953. case 'i':
  954. kind = TokenKind::IntegerTypeLiteral;
  955. break;
  956. case 'u':
  957. kind = TokenKind::UnsignedIntegerTypeLiteral;
  958. break;
  959. case 'f':
  960. kind = TokenKind::FloatingPointTypeLiteral;
  961. break;
  962. default:
  963. return LexResult::NoMatch();
  964. };
  965. llvm::StringRef suffix = word.substr(1);
  966. if (!CanLexInteger(emitter_, suffix)) {
  967. return buffer_.AddToken(
  968. {.kind = TokenKind::Error,
  969. .token_line = current_line(),
  970. .column = column,
  971. .error_length = static_cast<int32_t>(word.size())});
  972. }
  973. llvm::APInt suffix_value;
  974. if (suffix.getAsInteger(10, suffix_value)) {
  975. return LexResult::NoMatch();
  976. }
  977. auto token = buffer_.AddToken(
  978. {.kind = *kind, .token_line = current_line(), .column = column});
  979. buffer_.GetTokenInfo(token).integer_id =
  980. buffer_.value_stores_->integers().Add(std::move(suffix_value));
  981. return token;
  982. }
  983. auto Lexer::CloseInvalidOpenGroups(TokenKind kind, ssize_t position) -> void {
  984. CARBON_CHECK(kind.is_closing_symbol() || kind == TokenKind::Error);
  985. CARBON_CHECK(!open_groups_.empty());
  986. int column = ComputeColumn(position);
  987. do {
  988. Token opening_token = open_groups_.back();
  989. TokenKind opening_kind = buffer_.GetTokenInfo(opening_token).kind;
  990. if (kind == opening_kind.closing_symbol()) {
  991. return;
  992. }
  993. open_groups_.pop_back();
  994. CARBON_DIAGNOSTIC(
  995. MismatchedClosing, Error,
  996. "Closing symbol does not match most recent opening symbol.");
  997. token_emitter_.Emit(opening_token, MismatchedClosing);
  998. CARBON_CHECK(!buffer_.tokens().empty())
  999. << "Must have a prior opening token!";
  1000. Token prev_token = buffer_.tokens().end()[-1];
  1001. // TODO: do a smarter backwards scan for where to put the closing
  1002. // token.
  1003. Token closing_token = buffer_.AddToken(
  1004. {.kind = opening_kind.closing_symbol(),
  1005. .has_trailing_space = buffer_.HasTrailingWhitespace(prev_token),
  1006. .is_recovery = true,
  1007. .token_line = current_line(),
  1008. .column = column});
  1009. buffer_.GetTokenInfo(opening_token).closing_token = closing_token;
  1010. buffer_.GetTokenInfo(closing_token).opening_token = opening_token;
  1011. } while (!open_groups_.empty());
  1012. }
  1013. auto Lexer::LexKeywordOrIdentifier(llvm::StringRef source_text,
  1014. ssize_t& position) -> LexResult {
  1015. if (static_cast<unsigned char>(source_text[position]) > 0x7F) {
  1016. // TODO: Need to add support for Unicode lexing.
  1017. return LexError(source_text, position);
  1018. }
  1019. CARBON_CHECK(IsIdStartByteTable[source_text[position]]);
  1020. int column = ComputeColumn(position);
  1021. // Take the valid characters off the front of the source buffer.
  1022. llvm::StringRef identifier_text =
  1023. ScanForIdentifierPrefix(source_text.substr(position));
  1024. CARBON_CHECK(!identifier_text.empty()) << "Must have at least one character!";
  1025. position += identifier_text.size();
  1026. // Check if the text is a type literal, and if so form such a literal.
  1027. if (LexResult result = LexWordAsTypeLiteralToken(identifier_text, column)) {
  1028. return result;
  1029. }
  1030. // Check if the text matches a keyword token, and if so use that.
  1031. TokenKind kind = llvm::StringSwitch<TokenKind>(identifier_text)
  1032. #define CARBON_KEYWORD_TOKEN(Name, Spelling) .Case(Spelling, TokenKind::Name)
  1033. #include "toolchain/lex/token_kind.def"
  1034. .Default(TokenKind::Error);
  1035. if (kind != TokenKind::Error) {
  1036. return buffer_.AddToken(
  1037. {.kind = kind, .token_line = current_line(), .column = column});
  1038. }
  1039. // Otherwise we have a generic identifier.
  1040. return buffer_.AddToken(
  1041. {.kind = TokenKind::Identifier,
  1042. .token_line = current_line(),
  1043. .column = column,
  1044. .ident_id = buffer_.value_stores_->identifiers().Add(identifier_text)});
  1045. }
  1046. auto Lexer::LexKeywordOrIdentifierMaybeRaw(llvm::StringRef source_text,
  1047. ssize_t& position) -> LexResult {
  1048. CARBON_CHECK(source_text[position] == 'r');
  1049. // Raw identifiers must look like `r#<valid identifier>`, otherwise it's an
  1050. // identifier starting with the 'r'.
  1051. // TODO: Need to add support for Unicode lexing.
  1052. if (LLVM_LIKELY(position + 2 >= static_cast<ssize_t>(source_text.size()) ||
  1053. source_text[position + 1] != '#' ||
  1054. !IsIdStartByteTable[source_text[position + 2]])) {
  1055. // TODO: Should this print a different error when there is `r#`, but it
  1056. // isn't followed by identifier text? Or is it right to put it back so
  1057. // that the `#` could be parsed as part of a raw string literal?
  1058. return LexKeywordOrIdentifier(source_text, position);
  1059. }
  1060. int column = ComputeColumn(position);
  1061. // Take the valid characters off the front of the source buffer.
  1062. llvm::StringRef identifier_text =
  1063. ScanForIdentifierPrefix(source_text.substr(position + 2));
  1064. CARBON_CHECK(!identifier_text.empty()) << "Must have at least one character!";
  1065. position += identifier_text.size() + 2;
  1066. // Versus LexKeywordOrIdentifier, raw identifiers do not do keyword checks.
  1067. // Otherwise we have a raw identifier.
  1068. // TODO: This token doesn't carry any indicator that it's raw, so
  1069. // diagnostics are unclear.
  1070. return buffer_.AddToken(
  1071. {.kind = TokenKind::Identifier,
  1072. .token_line = current_line(),
  1073. .column = column,
  1074. .ident_id = buffer_.value_stores_->identifiers().Add(identifier_text)});
  1075. }
  1076. auto Lexer::LexError(llvm::StringRef source_text, ssize_t& position)
  1077. -> LexResult {
  1078. llvm::StringRef error_text =
  1079. source_text.substr(position).take_while([](char c) {
  1080. if (IsAlnum(c)) {
  1081. return false;
  1082. }
  1083. switch (c) {
  1084. case '_':
  1085. case '\t':
  1086. case '\n':
  1087. return false;
  1088. default:
  1089. break;
  1090. }
  1091. return llvm::StringSwitch<bool>(llvm::StringRef(&c, 1))
  1092. #define CARBON_SYMBOL_TOKEN(Name, Spelling) .StartsWith(Spelling, false)
  1093. #include "toolchain/lex/token_kind.def"
  1094. .Default(true);
  1095. });
  1096. if (error_text.empty()) {
  1097. // TODO: Reimplement this to use the lexer properly. In the meantime,
  1098. // guarantee that we eat at least one byte.
  1099. error_text = source_text.substr(position, 1);
  1100. }
  1101. auto token = buffer_.AddToken(
  1102. {.kind = TokenKind::Error,
  1103. .token_line = current_line(),
  1104. .column = ComputeColumn(position),
  1105. .error_length = static_cast<int32_t>(error_text.size())});
  1106. CARBON_DIAGNOSTIC(UnrecognizedCharacters, Error,
  1107. "Encountered unrecognized characters while parsing.");
  1108. emitter_.Emit(error_text.begin(), UnrecognizedCharacters);
  1109. position += error_text.size();
  1110. return token;
  1111. }
  1112. auto Lexer::LexStartOfFile(llvm::StringRef source_text, ssize_t& position)
  1113. -> void {
  1114. // Before lexing any source text, add the start-of-file token so that code
  1115. // can assume a non-empty token buffer for the rest of lexing. Note that the
  1116. // start-of-file always has trailing space because it *is* whitespace.
  1117. buffer_.AddToken({.kind = TokenKind::StartOfFile,
  1118. .has_trailing_space = true,
  1119. .token_line = current_line(),
  1120. .column = 0});
  1121. // Also skip any horizontal whitespace and record the indentation of the
  1122. // first line.
  1123. SkipHorizontalWhitespace(source_text, position);
  1124. auto* line_info = current_line_info();
  1125. CARBON_CHECK(line_info->start == 0);
  1126. line_info->indent = position;
  1127. }
  1128. auto Lexer::LexEndOfFile(llvm::StringRef source_text, ssize_t position)
  1129. -> void {
  1130. CARBON_CHECK(position == static_cast<ssize_t>(source_text.size()));
  1131. // Check if the last line is empty and not the first line (and only). If so,
  1132. // re-pin the last line to be the prior one so that diagnostics and editors
  1133. // can treat newlines as terminators even though we internally handle them
  1134. // as separators in case of a missing newline on the last line. We do this
  1135. // here instead of detecting this when we see the newline to avoid more
  1136. // conditions along that fast path.
  1137. if (position == current_line_info()->start && line_index_ != 0) {
  1138. --line_index_;
  1139. --position;
  1140. } else {
  1141. // Update the line length as this is also the end of a line.
  1142. current_line_info()->length = ComputeColumn(position);
  1143. }
  1144. // The end-of-file token is always considered to be whitespace.
  1145. NoteWhitespace();
  1146. // Close any open groups. We do this after marking whitespace, it will
  1147. // preserve that.
  1148. if (!open_groups_.empty()) {
  1149. CloseInvalidOpenGroups(TokenKind::Error, position);
  1150. }
  1151. buffer_.AddToken({.kind = TokenKind::EndOfFile,
  1152. .token_line = current_line(),
  1153. .column = ComputeColumn(position)});
  1154. }
  1155. auto Lex(SharedValueStores& value_stores, SourceBuffer& source,
  1156. DiagnosticConsumer& consumer) -> TokenizedBuffer {
  1157. return Lexer(value_stores, source, consumer).Lex();
  1158. }
  1159. } // namespace Carbon::Lex