forked from shader-slang/slang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslang-lexer.cpp
1845 lines (1603 loc) · 43.3 KB
/
slang-lexer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// slang-lexer.cpp
#include "slang-lexer.h"
// This file implements the lexer/scanner, which is responsible for taking a raw stream of
// input bytes and turning it into semantically useful tokens.
//
#include "core/slang-char-encode.h"
#include "slang-core-diagnostics.h"
#include "slang-name.h"
#include "slang-source-loc.h"
namespace Slang
{
Token TokenReader::getEndOfFileToken()
{
return Token(TokenType::EndOfFile, UnownedStringSlice::fromLiteral(""), SourceLoc());
}
const Token* TokenList::begin() const
{
SLANG_ASSERT(m_tokens.getCount());
return &m_tokens[0];
}
const Token* TokenList::end() const
{
SLANG_ASSERT(m_tokens.getCount());
SLANG_ASSERT(m_tokens[m_tokens.getCount() - 1].type == TokenType::EndOfFile);
return &m_tokens[m_tokens.getCount() - 1];
}
TokenSpan::TokenSpan()
: m_begin(nullptr), m_end(nullptr)
{
}
TokenReader::TokenReader()
: m_cursor(nullptr), m_end(nullptr)
{
_updateLookaheadToken();
}
Token& TokenReader::peekToken()
{
return m_nextToken;
}
TokenType TokenReader::peekTokenType() const
{
return m_nextToken.type;
}
SourceLoc TokenReader::peekLoc() const
{
return m_nextToken.loc;
}
Token TokenReader::advanceToken()
{
Token result = m_nextToken;
if (m_cursor != m_end)
m_cursor++;
_updateLookaheadToken();
return result;
}
void TokenReader::_updateLookaheadToken()
{
// We assume here that we can read a token from a non-null `m_cursor`
// *even* in the case where `m_cursor == m_end`, because the invariant
// for lists of tokens is that they should be terminated with and
// end-of-file token, so that there is always a token "one past the end."
//
m_nextToken = m_cursor ? *m_cursor : getEndOfFileToken();
// If the token we read came from the end of the sub-sequence we are
// reading, then we will change the token type to an end-of-file token
// so that code that reads from the sequence and expects a terminating
// EOF will find it.
//
// TODO: We might eventually want a way to look at the actual token type
// and not just use EOF in all cases: e.g., when emitting diagnostic
// messages that include the token that is seen.
//
if (m_cursor == m_end)
m_nextToken.type = TokenType::EndOfFile;
}
// Lexer
void Lexer::initialize(
SourceView* sourceView,
DiagnosticSink* sink,
NamePool* namePool,
MemoryArena* memoryArena)
{
m_sourceView = sourceView;
m_sink = sink;
m_namePool = namePool;
m_memoryArena = memoryArena;
auto content = sourceView->getContent();
m_begin = content.begin();
m_cursor = content.begin();
m_end = content.end();
// Set the start location
m_startLoc = sourceView->getRange().begin;
// The first token read from a translation unit should be considered to be at
// the start of a line, and *also* as coming after whitespace (conceptually
// both the end-of-file and beginning-of-file pseudo-tokens are whitespace).
//
m_tokenFlags = TokenFlag::AtStartOfLine | TokenFlag::AfterWhitespace;
m_lexerFlags = 0;
}
Lexer::~Lexer() {}
enum
{
kEOF = -1
};
// Get the next input byte, without any handling of
// escaped newlines, non-ASCII code points, source locations, etc.
static int _peekRaw(Lexer* lexer)
{
// If we are at the end of the input, return a designated end-of-file value
if (lexer->m_cursor == lexer->m_end)
return kEOF;
// Otherwise, just look at the next byte
return *lexer->m_cursor;
}
// Read one input byte without any special handling (similar to `peekRaw`)
static int _advanceRaw(Lexer* lexer)
{
// The logic here is basically the same as for `peekRaw()`,
// escape we advance `cursor` if we aren't at the end.
if (lexer->m_cursor == lexer->m_end)
return kEOF;
return *lexer->m_cursor++;
}
// When the cursor is already at the first byte of an end-of-line sequence,
// consume one or two bytes that compose the sequence.
//
// Basically, a newline is one of:
//
// "\n"
// "\r"
// "\r\n"
// "\n\r"
//
// We always look for the longest match possible.
//
static void _handleNewLineInner(Lexer* lexer, int c)
{
SLANG_ASSERT(c == '\n' || c == '\r');
int d = _peekRaw(lexer);
if ((c ^ d) == ('\n' ^ '\r'))
{
_advanceRaw(lexer);
}
}
// Look ahead one code point, dealing with complications like
// escaped newlines.
static int _peek(Lexer* lexer, int offset = 0)
{
int pos = 0;
int c = kEOF;
do
{
if (lexer->m_cursor + pos == lexer->m_end)
return kEOF;
c = lexer->m_cursor[pos++];
while (c == '\\')
{
// We might have a backslash-escaped newline.
// Look at the next byte (if any) to see.
//
// Note(tfoley): We are assuming a null-terminated input here,
// so that we can safely look at the next byte without issue.
int d = lexer->m_cursor[pos++];
switch (d)
{
case '\r':
case '\n':
{
// The newline was escaped, so return the code point after *that*
int e = lexer->m_cursor[pos++];
if ((d ^ e) == ('\r' ^ '\n'))
c = lexer->m_cursor[pos++];
else
c = e;
continue;
}
default:
break;
}
// Only continue this while loop in the case where we consumed
// some newlines
break;
}
if (isUtf8LeadingByte((Byte)c))
{
// Consume all unicode characters.
pos--;
c = getUnicodePointFromUTF8([&]() { return lexer->m_cursor[pos++]; });
}
// Default case is to just hand along the byte we read as an ASCII code point.
} while (offset--);
return c;
}
// Get the next code point from the input, and advance the cursor.
static int _advance(Lexer* lexer)
{
// We are going to loop, but only as a way of handling
// escaped line endings.
for (;;)
{
// If we are at the end of the input, then the task is easy.
if (lexer->m_cursor == lexer->m_end)
return kEOF;
// Look at the next raw byte, and decide what to do
int c = *lexer->m_cursor++;
if (c == '\\')
{
// We might have a backslash-escaped newline.
// Look at the next byte (if any) to see.
//
// Note(tfoley): We are assuming a null-terminated input here,
// so that we can safely look at the next byte without issue.
int d = *lexer->m_cursor;
switch (d)
{
case '\r':
case '\n':
// handle the end-of-line for our source location tracking
lexer->m_cursor++;
_handleNewLineInner(lexer, d);
lexer->m_tokenFlags |= TokenFlag::ScrubbingNeeded;
// Now try again, looking at the character after the
// escaped newline.
continue;
default:
break;
}
}
// Consume all unicode characters.
if (isUtf8LeadingByte((Byte)c))
{
lexer->m_cursor--;
c = getUnicodePointFromUTF8([&]() { return *lexer->m_cursor++; });
}
// Default case is to return the raw byte we saw.
return c;
}
}
static void _handleNewLine(Lexer* lexer)
{
int c = _advance(lexer);
_handleNewLineInner(lexer, c);
}
static void _lexLineComment(Lexer* lexer)
{
for (;;)
{
switch (_peek(lexer))
{
case '\n':
case '\r':
case kEOF:
return;
default:
_advance(lexer);
continue;
}
}
}
static void _lexBlockComment(Lexer* lexer)
{
for (;;)
{
switch (_peek(lexer))
{
case kEOF:
// TODO(tfoley) diagnostic!
return;
case '\n':
case '\r':
_handleNewLine(lexer);
continue;
case '*':
_advance(lexer);
switch (_peek(lexer))
{
case '/':
_advance(lexer);
return;
default:
continue;
}
default:
_advance(lexer);
continue;
}
}
}
static void _lexHorizontalSpace(Lexer* lexer)
{
for (;;)
{
switch (_peek(lexer))
{
case ' ':
case '\t':
_advance(lexer);
continue;
default:
return;
}
}
}
static bool isNonAsciiCodePoint(unsigned int codePoint)
{
return codePoint != 0xFFFFFFFF && codePoint >= 0x80;
}
static void _lexIdentifier(Lexer* lexer)
{
for (;;)
{
int c = _peek(lexer);
if (('a' <= c) && (c <= 'z') || ('A' <= c) && (c <= 'Z') || ('0' <= c) && (c <= '9') ||
(c == '_') || isNonAsciiCodePoint((unsigned int)c))
{
_advance(lexer);
continue;
}
return;
}
}
static SourceLoc _getSourceLoc(Lexer* lexer)
{
return lexer->m_startLoc + (lexer->m_cursor - lexer->m_begin);
}
static void _lexDigits(Lexer* lexer, int base)
{
for (;;)
{
int c = _peek(lexer);
int digitVal = 0;
switch (c)
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
digitVal = c - '0';
break;
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
if (base <= 10)
return;
digitVal = 10 + c - 'a';
break;
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
if (base <= 10)
return;
digitVal = 10 + c - 'A';
break;
default:
// Not more digits!
return;
}
if (digitVal >= base)
{
if (auto sink = lexer->getDiagnosticSink())
{
char buffer[] = {(char)c, 0};
sink->diagnose(
_getSourceLoc(lexer),
LexerDiagnostics::invalidDigitForBase,
buffer,
base);
}
}
_advance(lexer);
}
}
static TokenType _maybeLexNumberSuffix(Lexer* lexer, TokenType tokenType)
{
// Be liberal in what we accept here, so that figuring out
// the semantics of a numeric suffix is left up to the parser
// and semantic checking logic.
//
for (;;)
{
int c = _peek(lexer);
// Accept any alphanumeric character, plus underscores.
if (('a' <= c) && (c <= 'z') || ('A' <= c) && (c <= 'Z') || ('0' <= c) && (c <= '9') ||
(c == '_'))
{
_advance(lexer);
continue;
}
// Stop at the first character that isn't
// alphanumeric.
return tokenType;
}
}
static bool _isNumberExponent(int c, int base)
{
switch (c)
{
default:
return false;
case 'e':
case 'E':
if (base != 10)
return false;
break;
case 'p':
case 'P':
if (base != 16)
return false;
break;
}
return true;
}
static bool _maybeLexNumberExponent(Lexer* lexer, int base)
{
if (_peek(lexer) == '#')
{
// Special case #INF
const auto inf = toSlice("#INF");
for (auto c : inf)
{
if (_peek(lexer) != c)
{
return false;
}
_advance(lexer);
}
return true;
}
if (!_isNumberExponent(_peek(lexer), base))
return false;
// we saw an exponent marker
_advance(lexer);
// Now start to read the exponent
switch (_peek(lexer))
{
case '+':
case '-':
_advance(lexer);
break;
}
// TODO(tfoley): it would be an error to not see digits here...
_lexDigits(lexer, 10);
return true;
}
static TokenType _lexNumberAfterDecimalPoint(Lexer* lexer, int base)
{
_lexDigits(lexer, base);
_maybeLexNumberExponent(lexer, base);
return _maybeLexNumberSuffix(lexer, TokenType::FloatingPointLiteral);
}
static TokenType _lexNumber(Lexer* lexer, int base)
{
// TODO(tfoley): Need to consider whether to allow any kind of digit separator character.
TokenType tokenType = TokenType::IntegerLiteral;
// At the start of things, we just concern ourselves with digits
_lexDigits(lexer, base);
if (_peek(lexer) == '.')
{
switch (_peek(lexer, 1))
{
// 123.xxxx or 123.rrrr
case 'x':
case 'r':
break;
default:
tokenType = TokenType::FloatingPointLiteral;
_advance(lexer);
_lexDigits(lexer, base);
}
}
if (_maybeLexNumberExponent(lexer, base))
{
tokenType = TokenType::FloatingPointLiteral;
}
_maybeLexNumberSuffix(lexer, tokenType);
return tokenType;
}
static int _maybeReadDigit(char const** ioCursor, int base)
{
auto& cursor = *ioCursor;
for (;;)
{
int c = *cursor;
switch (c)
{
default:
return -1;
// TODO: need to decide on digit separator characters
case '_':
cursor++;
continue;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
cursor++;
return c - '0';
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
if (base > 10)
{
cursor++;
return 10 + c - 'a';
}
return -1;
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
if (base > 10)
{
cursor++;
return 10 + c - 'A';
}
return -1;
}
}
}
static int _readOptionalBase(char const** ioCursor)
{
auto& cursor = *ioCursor;
if (*cursor == '0')
{
cursor++;
switch (*cursor)
{
case 'x':
case 'X':
cursor++;
return 16;
case 'b':
case 'B':
cursor++;
return 2;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
return 8;
default:
return 10;
}
}
return 10;
}
IntegerLiteralValue getIntegerLiteralValue(Token const& token, UnownedStringSlice* outSuffix, bool* outIsDecimalBase)
{
IntegerLiteralValue value = 0;
const UnownedStringSlice content = token.getContent();
char const* cursor = content.begin();
char const* end = content.end();
int base = _readOptionalBase(&cursor);
for (;;)
{
int digit = _maybeReadDigit(&cursor, base);
if (digit < 0)
break;
value = value * base + digit;
}
if (outSuffix)
{
*outSuffix = UnownedStringSlice(cursor, end);
}
if(outIsDecimalBase)
{
*outIsDecimalBase = (base == 10);
}
return value;
}
FloatingPointLiteralValue getFloatingPointLiteralValue(
Token const& token,
UnownedStringSlice* outSuffix)
{
FloatingPointLiteralValue value = 0;
const UnownedStringSlice content = token.getContent();
char const* cursor = content.begin();
char const* end = content.end();
int radix = _readOptionalBase(&cursor);
bool seenDot = false;
FloatingPointLiteralValue divisor = 1;
for (;;)
{
if (*cursor == '.')
{
cursor++;
seenDot = true;
continue;
}
int digit = _maybeReadDigit(&cursor, radix);
if (digit < 0)
break;
value = value * radix + digit;
if (seenDot)
{
divisor *= radix;
}
}
if (*cursor == '#')
{
// It must be INF
const auto inf = toSlice("#INF");
if (UnownedStringSlice(cursor, end).startsWith(inf))
{
if (outSuffix)
{
*outSuffix = UnownedStringSlice(cursor + inf.getLength(), end);
}
value = INFINITY;
return value;
}
}
// Now read optional exponent
if (_isNumberExponent(*cursor, radix))
{
cursor++;
bool exponentIsNegative = false;
switch (*cursor)
{
default:
break;
case '-':
exponentIsNegative = true;
cursor++;
break;
case '+':
cursor++;
break;
}
int exponentRadix = 10;
int exponent = 0;
for (;;)
{
int digit = _maybeReadDigit(&cursor, exponentRadix);
if (digit < 0)
break;
exponent = exponent * exponentRadix + digit;
}
FloatingPointLiteralValue exponentBase = 10;
if (radix == 16)
{
exponentBase = 2;
}
FloatingPointLiteralValue exponentValue = pow(exponentBase, exponent);
if (exponentIsNegative)
{
divisor *= exponentValue;
}
else
{
value *= exponentValue;
}
}
value /= divisor;
if (outSuffix)
{
*outSuffix = UnownedStringSlice(cursor, end);
}
return value;
}
static void _lexStringLiteralBody(Lexer* lexer, char quote)
{
for (;;)
{
int c = _peek(lexer);
if (c == quote)
{
_advance(lexer);
return;
}
switch (c)
{
case kEOF:
if (auto sink = lexer->getDiagnosticSink())
{
sink->diagnose(_getSourceLoc(lexer), LexerDiagnostics::endOfFileInLiteral);
}
return;
case '\n':
case '\r':
if (auto sink = lexer->getDiagnosticSink())
{
sink->diagnose(_getSourceLoc(lexer), LexerDiagnostics::newlineInLiteral);
}
return;
case '\\':
// Need to handle various escape sequence cases
_advance(lexer);
switch (_peek(lexer))
{
case '\'':
case '\"':
case '\\':
case '?':
case 'a':
case 'b':
case 'f':
case 'n':
case 'r':
case 't':
case 'v':
_advance(lexer);
break;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
// octal escape: up to 3 characters
_advance(lexer);
for (int ii = 0; ii < 3; ++ii)
{
int d = _peek(lexer);
if (('0' <= d) && (d <= '7'))
{
_advance(lexer);
continue;
}
else
{
break;
}
}
break;
case 'x':
// hexadecimal escape: any number of characters
_advance(lexer);
for (;;)
{
int d = _peek(lexer);
if (('0' <= d) && (d <= '9') || ('a' <= d) && (d <= 'f') ||
('A' <= d) && (d <= 'F'))
{
_advance(lexer);
continue;
}
else
{
break;
}
}
break;
// TODO: Unicode escape sequences
}
break;
default:
_advance(lexer);
continue;
}
}
}
static void _lexRawStringLiteralBody(Lexer* lexer)
{
const char* start = lexer->m_cursor;
const char* endOfDelimiter = nullptr;
for (;;)
{
int c = _peek(lexer);
if (c == '(' && endOfDelimiter == nullptr)
endOfDelimiter = lexer->m_cursor;
if (c == '\"')
{
if (!endOfDelimiter)
{
if (auto sink = lexer->getDiagnosticSink())
{
sink->diagnose(_getSourceLoc(lexer), LexerDiagnostics::quoteCannotBeDelimiter);
}
}
else
{
auto testStart = lexer->m_cursor - (endOfDelimiter - start);
if (testStart > endOfDelimiter)
{
auto testDelimiter = UnownedStringSlice(testStart, lexer->m_cursor);
auto delimiter = UnownedStringSlice(start, endOfDelimiter);
if (*(testStart - 1) == ')' && testDelimiter == delimiter)
{
_advance(lexer);
return;
}
}
}
}
switch (c)
{
case kEOF:
if (auto sink = lexer->getDiagnosticSink())
{
sink->diagnose(_getSourceLoc(lexer), LexerDiagnostics::endOfFileInLiteral);
}
return;
default:
_advance(lexer);
continue;
}
}
}
UnownedStringSlice getRawStringLiteralTokenValue(Token const& token)
{
auto content = token.getContent();
if (content.getLength() <= 5)
return UnownedStringSlice();
auto start = content.begin() + 2;
auto delimEnd = start;
while (delimEnd < content.end() && *delimEnd != '(')
delimEnd++;
auto delimLength = delimEnd - start;
auto contentEnd = content.end() - delimLength - 2;
auto contentBegin = start + delimLength + 1;
if (contentEnd <= contentBegin)
return UnownedStringSlice();
return UnownedStringSlice(contentBegin, contentEnd);
}
String getStringLiteralTokenValue(Token const& token)
{
SLANG_ASSERT(token.type == TokenType::StringLiteral || token.type == TokenType::CharLiteral);
if (token.getContent().startsWith("R"))
return getRawStringLiteralTokenValue(token);
const UnownedStringSlice content = token.getContent();