Compare commits

...
2 Commits
Author SHA1 Message Date
Lexzach 0f3beed6ee Merge pull request 'Complete line numbers' (#6) from number into master
Reviewed-on: #6
2026-09-15 15:31:15 +00:00
Lexzach f4ccd72b4a Complete line numbers 2026-09-15 11:28:07 -04:00
2 changed files with 43 additions and 21 deletions
+20 -20
View File
@@ -42,26 +42,6 @@ cat_file:
mv s2, a0 mv s2, a0
li s1, 1 li s1, 1
la t1, show_ends
lb t1, 0(t1)
beqz t1, .LNoEndings
mv a1, s2 # load mod buf size to a1
beqz s1, 1f
la a0, mod_buf_0 # load mod_buf_0 as read buf
la a2, mod_buf_1 # load mod_buf_1 as write buf
j 2f
1:
la a0, mod_buf_1 # load mod_buf_1 as read buf
la a2, mod_buf_0 # load mod_buf_0 as write buf
2:
call add_endings
xori s1, s1, 1 # flip the mod buf to write to
mv s2, a1 # update the current byte count
.LNoEndings:
la t1, number la t1, number
lb t1, 0(t1) lb t1, 0(t1)
beqz t1, .LNoNumbers beqz t1, .LNoNumbers
@@ -82,6 +62,26 @@ cat_file:
mv s2, a1 # update the current byte count mv s2, a1 # update the current byte count
.LNoNumbers: .LNoNumbers:
la t1, show_ends
lb t1, 0(t1)
beqz t1, .LNoEndings
mv a1, s2 # load mod buf size to a1
beqz s1, 1f
la a0, mod_buf_0 # load mod_buf_0 as read buf
la a2, mod_buf_1 # load mod_buf_1 as write buf
j 2f
1:
la a0, mod_buf_1 # load mod_buf_1 as read buf
la a2, mod_buf_0 # load mod_buf_0 as write buf
2:
call add_endings
xori s1, s1, 1 # flip the mod buf to write to
mv s2, a1 # update the current byte count
.LNoEndings:
beqz s1, 1f beqz s1, 1f
la a1, mod_buf_0 la a1, mod_buf_0
j 2f j 2f
+23 -1
View File
@@ -93,12 +93,34 @@ add_line_numbers:
li s2, 0 # set the str buf char offset to 0 li s2, 0 # set the str buf char offset to 0
li s3, 0 # set the mod buf char offset to 0 li s3, 0 # set the mod buf char offset to 0
mv s5, a2 # move mod buf addr into s5 mv s5, a2 # move mod buf addr into s5
# there is always one line number at the very start
call _inc_line_count
li t2, 0 # lc char buf offset
li t3, 6 # lc char buf max offset
la t1, line_count # load the line count buffer addr
add s6, s5, s3 # update mod buf + offset addr
4:
add t4, t1, t2
lb t5, 0(t4)
sb t5, 0(s6) # mod buf[s4] = t4
addi t2, t2, 1
addi s3, s3, 1
add s6, s5, s3 # update mod buf + offset addr
blt t2, t3, 4b
li t5, 0x9 # tab character
sb t5, 0(s6)
addi s3, s3, 1
.LLineNumbersProcessChunk: .LLineNumbersProcessChunk:
add s4, s0, s2 # Calculate the offset address add s4, s0, s2 # Calculate the offset address
lb t6, 0(s4) lb t6, 0(s4)
li t4, 0xA # newline li t4, 0xA # newline
bne t6, t4, 1f # if the current byte is not a newline, skip to writing bne t6, t4, 1f # if the current byte is not a newline, skip to writing
mv t0, s2
addi t0, t0, 1 # move ahead one char and see if EOF
bge t0, s1, 1f # if the newline is at the veyr end, we don't indicate a new line number
call _inc_line_count call _inc_line_count
@@ -121,7 +143,7 @@ add_line_numbers:
add s6, s5, s3 # update mod buf + offset addr add s6, s5, s3 # update mod buf + offset addr
blt t2, t3, 3b blt t2, t3, 3b
li t5, 0x7 # tab character li t5, 0x9 # tab character
sb t5, 0(s6) sb t5, 0(s6)
addi s3, s3, 1 addi s3, s3, 1