-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.s
547 lines (543 loc) · 16.8 KB
/
parser.s
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
.attribute arch, "rv64im"
.include "parser.h.s"
.include "object.h.s"
.text
# a0 = buffer
# a1 = length
# return:
# a0 = next buffer
# a1 = next length
# a2 = token type
# a3 = token slice ptr
# a4 = token slice length
.global get_token
get_token:
li a4, 0
# just ensure the length is not zero
bnez a1, 1f
li a2, TOKEN_ERROR
mv a3, zero
ret
1:
# token generally will start at a0
mv a3, a0
# detect the type based on the first character
lb t0, (a0)
# whitespace
jal t6, .Lget_token_check_whitespace
bnez t5, .Lget_token_whitespace
# list begin
li t1, '('
li a2, TOKEN_LIST_BEGIN
beq t0, t1, .Lget_token_single_char
# list end
li t1, ')'
li a2, TOKEN_LIST_END
beq t0, t1, .Lget_token_single_char
# list assoc
li t1, '.'
li a2, TOKEN_LIST_ASSOC
beq t0, t1, .Lget_token_single_char
# comment
li t1, ';'
beq t0, t1, .Lget_token_comment
# string
li t1, 0x22 # double quote (")
beq t0, t1, .Lget_token_string
# integer (but not sure which type)
li t1, '-'
beq t0, t1, .Lget_token_integer
li t1, '0'
bltu t0, t1, 1f # ch < '0'
li t1, '9'
bleu t0, t1, .Lget_token_integer # ch <= '9'
1:
# this can be an address but need to lookahead to check for a digit
li t1, '<'
li t2, 1
bleu a1, t2, 1f # skip if length <= 1
lb t2, 1(a0)
li t1, '0'
bltu t2, t1, 1f # ch < '0'
li t1, '9'
bleu t2, t1, .Lget_token_address
1:
.Lget_token_symbol:
# anything else gets parsed as a symbol
# consume until we reach parens or whitespace
li a2, TOKEN_SYMBOL
2:
beqz a1, 3f # eof
lb t0, (a0)
jal t6, .Lget_token_check_whitespace
bnez t5, 3f
li t1, '('
beq t0, t1, 3f
li t1, ')'
beq t0, t1, 3f
# increment token length and buffer ptr, decrement buffer length
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
j 2b
3:
ret
.Lget_token_single_char:
# any single character token - just return the type (already put in a2)
# token starts at a0, length 1
li a4, 1
# advance buffer by one char
addi a0, a0, 1
addi a1, a1, -1
ret
.Lget_token_whitespace:
# increment while whitespace
li a2, TOKEN_WHITESPACE
2:
beqz a1, 3f # eof
lb t0, (a0)
jal t6, .Lget_token_check_whitespace
beqz t5, 3f
# increment token length and buffer ptr, decrement buffer length
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
j 2b
3:
ret
.Lget_token_comment:
# increment until newline
li a2, TOKEN_COMMENT
li t1, '\n'
2:
beqz a1, 3f # eof
lb t0, (a0)
beq t0, t1, 3f
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
j 2b
3:
ret
.Lget_token_string:
# consume first character, increment until matching ".
# pairs of double quotes are escape
li a2, TOKEN_STRING
li a4, 1
addi a0, a0, 1
addi a1, a1, -1
li t1, 0x22 # double quote (")
2:
beqz a1, 3f # eof
lb t0, (a0)
# consume, even if this is the last quote
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
# if it's not a double quote, loop
bne t0, t1, 2b
# it's a double quote, so peek ahead to see if the next one is also
beqz a1, 4f # eof so can't peek ahead but we got the double quote so it's ok
lb t0, (a0)
bne t0, t1, 4f # it's not a quote so we can just end
# consume
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
# loop
j 2b
3:
# eof is an error
li a2, TOKEN_ERROR
mv a3, zero
mv a4, zero
4:
ret
.Lget_token_integer:
# check for negative sign
lb t0, (a0)
li t1, '-'
bne t0, t1, 1f
# if it's a negative sign then make sure we have some digits
# if we don't, valid symbols can start with a hyphen so do that
li t1, 2
bltu a1, t1, .Lget_token_symbol # EOF
lb t0, 1(a0)
li t1, '0'
bltu t0, t1, .Lget_token_symbol # < '0'
li t1, '9'
bgtu t0, t1, .Lget_token_symbol # > '9'
# consume negative sign
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
1:
# detect 0x = hex, otherwise decimal
li t0, 2
bltu a1, t0, .Lget_token_integer_decimal # can't lookahead = decimal for sure
lb t0, 0(a0)
li t1, '0'
bne t0, t1, .Lget_token_integer_decimal
lb t0, 1(a0)
li t1, 'x'
bne t0, t1, .Lget_token_integer_decimal
.Lget_token_integer_hex:
li a2, TOKEN_INTEGER_HEX
li t4, 1
# always keep two chars
addi a0, a0, 2
addi a4, a4, 2
addi a1, a1, -2
j .Lget_token_integer_loop
.Lget_token_integer_decimal:
li a2, TOKEN_INTEGER_DECIMAL
li t4, 0
.Lget_token_integer_loop:
beqz a1, .Lget_token_integer_end # eof
lb t0, (a0)
# '0' <= ch <= '9'
li t1, '0'
bltu t0, t1, 1f
li t1, '9'
bleu t0, t1, .Lget_token_integer_ok
1:
# only check hex digits if t4 = 1
beqz t4, .Lget_token_integer_end
# 'a' <= ch <= 'f'
li t1, 'a'
bltu t0, t1, 1f
li t1, 'f'
bleu t0, t1, .Lget_token_integer_ok
1:
# 'A' <= ch <= 'F'
li t1, 'A'
bltu t0, t1, .Lget_token_integer_end
li t1, 'F'
bgtu t0, t1, .Lget_token_integer_end
.Lget_token_integer_ok:
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
j .Lget_token_integer_loop
.Lget_token_integer_end:
ret
.Lget_token_address:
li a2, TOKEN_ADDRESS
# consume first char
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
# consume until and including matching angle bracket
2:
beqz a1, 3f # eof
lb t0, (a0)
li t1, '>'
addi a0, a0, 1
addi a4, a4, 1
addi a1, a1, -1
beq t0, t1, 3f
j 2b
3:
ret
.Lget_token_check_whitespace:
# microprocedure, return address t6, t5 = 1 if whitespace in t0
li t1, ' '
beq t0, t1, 1f
li t1, '\t'
beq t0, t1, 1f
li t1, '\r'
beq t0, t1, 1f
li t1, '\n'
beq t0, t1, 1f
li t5, 0
jalr zero, (t6)
1:
li t5, 1
jalr zero, (t6)
# Parse a single token. a2-a4 are the same as returned from get_token, so you just need to switch
# the a0-a1 registers out
#
# a0 = parser state array (starts with index dw, length dw, then array of flag dw, cell dw)
# a2 = token type
# a3 = token slice ptr
# a4 = token slice length
#
# return:
#
# a0 = status (PARSER_STATUS_)
# a1 = produced value if n = 1
.global parse_token
parse_token:
# free up some saved registers for our use
addi sp, sp, -8*8
sd ra, 0x00(sp)
sd s1, 0x08(sp) # a0 = parser state array
sd s2, 0x10(sp) # current state pointer
sd s3, 0x18(sp) # a2 = token type
sd s4, 0x20(sp) # a3 = token slice ptr
sd s5, 0x28(sp) # a4 = token slice length
sd s6, 0x30(sp) # produced object for placement
sd s7, 0x38(sp) # preserved temporary
# save all of the arguments so that we can call other procedures
mv s1, a0
mv s3, a2
mv s4, a3
mv s5, a4
mv s6, zero
.Lparse_token_check_type:
# these are in order of how common they probably are
li t1, TOKEN_SYMBOL
beq s3, t1, .Lparse_token_symbol
li t1, TOKEN_WHITESPACE
beq s3, t1, .Lparse_token_ignore
li t1, TOKEN_INTEGER_DECIMAL
beq s3, t1, .Lparse_token_decimal
li t1, TOKEN_INTEGER_HEX
beq s3, t1, .Lparse_token_hex
li t1, TOKEN_LIST_BEGIN
beq s3, t1, .Lparse_token_list_begin
li t1, TOKEN_LIST_END
beq s3, t1, .Lparse_token_list_end
li t1, TOKEN_LIST_ASSOC
beq s3, t1, .Lparse_token_list_assoc
li t1, TOKEN_STRING
beq s3, t1, .Lparse_token_string
li t1, TOKEN_ADDRESS
beq s3, t1, .Lparse_token_address
li t1, TOKEN_COMMENT
beq s3, t1, .Lparse_token_ignore
# unrecognized = error
j .Lparse_token_error
.Lparse_token_symbol:
# intern the token to a symbol
mv a0, s4
mv a1, s5
call symbol_intern
mv s6, a0
beqz s6, .Lparse_token_error # allocation failed, or intern symbol internal error
j .Lparse_token_place_object
.Lparse_token_decimal:
# convert the token to an integer
mv a0, s4
mv a1, s5
call dec_str_to_int
# box the integer
call box_integer
beqz a0, .Lparse_token_error # allocation failed
mv s6, a0
# place it
j .Lparse_token_place_object
.Lparse_token_hex:
# convert the token to an integer
mv a0, s4
mv a1, s5
# check for initial minus sign
beqz a1, .Lparse_token_error # zero length
lb t0, (a0)
li t1, '-'
li s7, 1 # positive sign
bne t0, t1, 1f
li s7, -1 # negative sign
# skip over minus sign
addi a0, a0, 1
addi a1, a1, -1
1:
li t1, 2
bleu a1, t1, .Lparse_token_error # token too small, should be at least 3 (0x?)
# skip the 0x
addi a0, a0, 2
addi a1, a1, -2
call hex_str_to_int
# multiply by sign
mul a0, a0, s7
# box the integer
call box_integer
beqz a0, .Lparse_token_error # allocation failed
mv s6, a0
# place it
j .Lparse_token_place_object
.Lparse_token_list_begin:
# push state
lwu t0, PARSER_STATE_LENGTH(s1)
lwu s2, PARSER_STATE_INDEX(s1)
addi s2, s2, 1
bge s2, t0, .Lparse_token_overflow # check to make sure new index is in bounds
# store the new index
sw s2, PARSER_STATE_INDEX(s1)
# calculate the pointer
jal t0, .Lparse_token_get_state_pointer_s2
# flag = PARSER_FLAG_LIST
li t0, PARSER_FLAG_LIST
sd t0, PARSER_STATE_E_FLAG(s2)
# begin, current = zero
sd zero, PARSER_STATE_E_BEGIN_NODE(s2)
sd zero, PARSER_STATE_E_CURRENT_NODE(s2)
j .Lparse_token_ret_ok
.Lparse_token_list_end:
# check current state entry
lwu s2, PARSER_STATE_INDEX(s1)
jal t0, .Lparse_token_get_state_pointer_s2
ld t0, PARSER_STATE_E_FLAG(s2)
beqz t0, .Lparse_token_error # no list to end
# take begin node into s6 as object to place
ld s6, PARSER_STATE_E_BEGIN_NODE(s2)
# clear the entry
sd zero, PARSER_STATE_E_FLAG(s2)
sd zero, PARSER_STATE_E_BEGIN_NODE(s2)
sd zero, PARSER_STATE_E_CURRENT_NODE(s2)
# decrement index if over zero
lwu t0, PARSER_STATE_INDEX(s1)
beqz t0, 1f
addi t0, t0, -1
sw t0, PARSER_STATE_INDEX(s1)
1:
# place the object in s6
j .Lparse_token_place_object
.Lparse_token_list_assoc:
# check current state entry
lwu s2, PARSER_STATE_INDEX(s1)
jal t0, .Lparse_token_get_state_pointer_s2
ld t0, PARSER_STATE_E_FLAG(s2)
beqz t0, .Lparse_token_error # no list to assoc to
li t1, PARSER_FLAG_ASSOC
or t1, t0, t1 # t1 = flags | PARSER_FLAG_ASSOC
beq t0, t1, .Lparse_token_error # assoc was already set
sd t1, PARSER_STATE_E_FLAG(s2) # set assoc
j .Lparse_token_ret_ok
.Lparse_token_string:
# determine true length of the string
li t1, 2
bltu s5, t1, .Lparse_token_error # string must have at least two chars: ""
addi t0, s4, 1 # current addr (skip first ")
addi t1, s5, -1 # remaining length counter (skip first ")
li t2, 0 # actual length
li t4, 0x22 # 0x22 = "
.Lparse_token_string_length_loop:
beqz t1, .Lparse_token_error # shouldn't run out of token
lb t3, (t0)
addi t0, t0, 1
addi t1, t1, -1
addi t2, t2, 1
bne t3, t4, .Lparse_token_string_length_loop # not a quote
# check if the quote is followed by a quote (escape)
beqz t1, .Lparse_token_string_length_end # end of string
lb t3, (t0)
# error condition: token contains non-escaped quote in non-terminal position
bne t3, t4, .Lparse_token_error
# skip the second quote
addi t0, t0, 1
addi t1, t1, -1
j .Lparse_token_string_length_loop
.Lparse_token_string_length_end:
# allocate string buffer, keep length in s7 for now
addi s7, t2, -1 # the last quote is always over-counted, remove it
mv a0, s7
li a1, 1 # byte alignment
call allocate
beqz a0, .Lparse_token_error # alloc failed
# turn the buffer into an object
mv a1, s7
call box_string
beqz a0, .Lparse_token_error # alloc failed
# save the object into s6
mv s6, a0
# set up the loop to copy the string contents, handling escapes
addi t0, s4, 1 # current src addr (skip first ")
ld t1, LISP_STRING_BUF(s6) # current dest addr
ld t2, LISP_STRING_LEN(s6) # remaining length counter
li t4, 0x22 # 0x22 = "
.Lparse_token_string_copy_loop:
beqz t2, .Lparse_token_place_object # end of string
lb t3, (t0)
sb t3, (t1)
addi t0, t0, 1
addi t1, t1, 1
addi t2, t2, -1
# skip a char from the src if this is a quote
# we already validated that every quote inside the string is doubled
bne t3, t4, .Lparse_token_string_copy_loop # not a quote
addi t0, t0, 1
j .Lparse_token_string_copy_loop
.Lparse_token_address:
j .Lparse_token_error # WIP
.Lparse_token_place_object:
# get the pointer to the current state into s2
lwu s2, PARSER_STATE_INDEX(s1)
jal t0, .Lparse_token_get_state_pointer_s2
# if flag = 0, we can just produce the object (we're not inside a list)
ld t0, PARSER_STATE_E_FLAG(s2)
beqz t0, .Lparse_token_produce_value
# otherwise we need to add it to the list. if assoc we set tail, otherwise make new node,
# set head, append.
# first check to ensure we are in a cons that does not have tail set, or no cons yet
# (empty list)
ld t3, PARSER_STATE_E_CURRENT_NODE(s2)
beqz t3, 1f # cons is not set yet
lw t4, LISP_OBJECT_TYPE(t3)
li t5, LISP_OBJECT_TYPE_CONS
bne t4, t5, .Lparse_token_error # must assoc to a list
ld t4, LISP_CONS_TAIL(t3)
bnez t4, .Lparse_token_error # tail must not already be set
1:
# determine whether this is assoc
li t1, PARSER_FLAG_ASSOC
and t1, t0, t1
bnez t1, .Lparse_token_place_assoc
.Lparse_token_place_append:
mv a0, s6 # new.head = s6
mv a1, zero
call cons
beqz a0, .Lparse_token_error # alloc error
mv s6, a0 # s6 = new
ld t3, PARSER_STATE_E_CURRENT_NODE(s2)
beqz t3, 1f # if current = nil, need to set current & begin
sd s6, LISP_CONS_TAIL(t3) # current.tail = new
sd s6, PARSER_STATE_E_CURRENT_NODE(s2) # current = new
j .Lparse_token_ret_ok
1:
# current = nil, so just put s6 in begin & current
sd s6, PARSER_STATE_E_BEGIN_NODE(s2)
sd s6, PARSER_STATE_E_CURRENT_NODE(s2)
j .Lparse_token_ret_ok
.Lparse_token_place_assoc:
# error if current = nil (must assoc to existing cons)
beqz t3, .Lparse_token_error
# just set the s6 as tail
sd s6, LISP_CONS_TAIL(t3) # current.tail = s6 object
j .Lparse_token_ret_ok
.Lparse_token_overflow:
li a0, PARSER_STATUS_OVERFLOW
j 1f
.Lparse_token_error:
li a0, PARSER_STATUS_ERR
1:
# Check if there's an object in s6 that must be cleaned up
beqz s6, .Lparse_token_ret
mv a0, s6
call release_object
li a0, PARSER_STATUS_ERR
j .Lparse_token_ret
.Lparse_token_produce_value:
li a0, PARSER_STATUS_VALUE
mv a1, s6
j .Lparse_token_ret
.Lparse_token_ignore: # same, just return ok and continue
.Lparse_token_ret_ok:
li a0, PARSER_STATUS_OK
.Lparse_token_ret:
ld ra, 0x00(sp)
ld s1, 0x08(sp)
ld s2, 0x10(sp)
ld s3, 0x18(sp)
ld s4, 0x20(sp)
ld s5, 0x28(sp)
ld s6, 0x30(sp)
addi sp, sp, 8*8
ret
# utility subprocs
.Lparse_token_get_state_pointer_s2: # clobbers t1, returns to t0
li t1, PARSER_STATE_ELEN
mul s2, s2, t1
addi s2, s2, PARSER_STATE_FIRST
add s2, s2, s1
jalr zero, (t0)