Fix strings search looping
This commit is contained in:
484
boot/stage1.s
484
boot/stage1.s
@@ -53,10 +53,12 @@ asm_type_object: .ascii ", @object\n"
|
||||
asm_restore_parameters:
|
||||
.ascii "lw a0, 60(sp)\nlw a1, 56(sp)\nlw a2, 52(sp)\nlw a3, 48(sp)\nlw a4, 44(sp)\nlw a5, 40(sp)\n"
|
||||
.equ ASM_RESTORE_PARAMETERS_SIZE, . - asm_restore_parameters
|
||||
asm_preserve_parameters:
|
||||
.ascii "sw a0, 84(sp)\nsw a1, 80(sp)\nsw a2, 76(sp)\nsw a2, 76(sp)\nsw a3, 72(sp)\nsw a4, 68(sp)\nsw a5, 64(sp)\n"
|
||||
.equ ASM_PRESERVE_PARAMETERS_SIZE, . - asm_preserve_parameters
|
||||
|
||||
.section .bss
|
||||
.type source_code, @object
|
||||
.size source_code, SOURCE_BUFFER_SIZE
|
||||
source_code: .zero SOURCE_BUFFER_SIZE
|
||||
|
||||
.section .text
|
||||
@@ -65,10 +67,10 @@ source_code: .zero SOURCE_BUFFER_SIZE
|
||||
.type _compile_import, @function
|
||||
_compile_import:
|
||||
# Prologue.
|
||||
addi sp, sp, -16
|
||||
sw ra, 12(sp)
|
||||
sw s0, 8(sp)
|
||||
addi s0, sp, 16
|
||||
addi sp, sp, -24
|
||||
sw ra, 20(sp)
|
||||
sw s0, 16(sp)
|
||||
addi s0, sp, 24
|
||||
|
||||
.Lcompile_import_loop:
|
||||
call _skip_comment
|
||||
@@ -89,9 +91,9 @@ _compile_import:
|
||||
|
||||
.Lcompile_import_end:
|
||||
# Epilogue.
|
||||
lw ra, 12(sp)
|
||||
lw s0, 8(sp)
|
||||
addi sp, sp, 16
|
||||
lw ra, 20(sp)
|
||||
lw s0, 16(sp)
|
||||
addi sp, sp, 24
|
||||
ret
|
||||
|
||||
.type _build_binary_expression, @function
|
||||
@@ -107,9 +109,9 @@ _build_binary_expression:
|
||||
call _skip_spaces
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 16
|
||||
addi a1, sp, 12
|
||||
call _tokenize_next
|
||||
lw t0, 16(sp)
|
||||
lw t0, 12(sp)
|
||||
|
||||
li t1, TOKEN_AND
|
||||
beq t0, t1, .L_build_binary_expression_and
|
||||
@@ -146,11 +148,6 @@ _build_binary_expression:
|
||||
j .Lbuild_binary_expression_end
|
||||
|
||||
.L_build_binary_expression_and:
|
||||
/* DEBUG
|
||||
addi a0, s1, 0
|
||||
li a1, 4
|
||||
call _write_error */
|
||||
|
||||
mv s1, a0 # Skip &.
|
||||
li a0, 1
|
||||
call _build_expression
|
||||
@@ -385,25 +382,29 @@ _compile_identifier_expression:
|
||||
.type _build_expression, @function
|
||||
_build_expression:
|
||||
# Prologue.
|
||||
addi sp, sp, -40
|
||||
sw ra, 36(sp)
|
||||
sw s0, 32(sp)
|
||||
addi s0, sp, 40
|
||||
addi sp, sp, -48
|
||||
sw ra, 44(sp)
|
||||
sw s0, 40(sp)
|
||||
addi s0, sp, 48
|
||||
|
||||
addi a0, a0, '0' # Make the register number to a character.
|
||||
sw a0, 28(sp) # And save it.
|
||||
sw a0, 36(sp) # And save it.
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 24
|
||||
call _tokenize_next
|
||||
|
||||
call _skip_spaces
|
||||
call _read_token
|
||||
sw s1, 24(sp)
|
||||
sw a0, 20(sp)
|
||||
sw s1, 32(sp)
|
||||
sw a0, 28(sp)
|
||||
|
||||
lbu a0, (s1)
|
||||
li t0, '-'
|
||||
lw a0, 24(sp)
|
||||
|
||||
li t0, TOKEN_MINUS
|
||||
beq a0, t0, .Lbuild_expression_negate
|
||||
|
||||
lbu a0, (s1)
|
||||
li t0, '@'
|
||||
li t0, TOKEN_AT
|
||||
beq a0, t0, .Lbuild_expression_address
|
||||
|
||||
lbu a0, (s1)
|
||||
@@ -414,8 +415,8 @@ _build_expression:
|
||||
li t0, '_'
|
||||
beq a0, t0, .Lbuild_expression_call
|
||||
|
||||
lw a0, 20(sp)
|
||||
lw a1, 28(sp)
|
||||
lw a0, 28(sp)
|
||||
lw a1, 36(sp)
|
||||
call _compile_identifier_expression
|
||||
|
||||
j .Lbuild_expression_advance
|
||||
@@ -432,7 +433,7 @@ _build_expression:
|
||||
j .Lbuild_expression_advance
|
||||
|
||||
.Lbuild_expression_address:
|
||||
lw t1, 28(sp)
|
||||
lw t1, 36(sp)
|
||||
li t0, 0x20 # _
|
||||
sw t0, 16(sp)
|
||||
li t0, 0x2c707320 # _sp,
|
||||
@@ -449,11 +450,11 @@ _build_expression:
|
||||
addi s1, s1, 1 # Skip @.
|
||||
call _skip_spaces
|
||||
call _read_token
|
||||
sw s1, 24(sp)
|
||||
sw a0, 20(sp)
|
||||
sw s1, 32(sp)
|
||||
sw a0, 28(sp)
|
||||
|
||||
lw a0, 24(sp)
|
||||
lw a1, 20(sp)
|
||||
lw a0, 32(sp)
|
||||
lw a1, 28(sp)
|
||||
addi a0, a0, 4 # Skip the "loca" variable prefix.
|
||||
addi a1, a1, -4 # Skip the "loca" variable prefix.
|
||||
call _write_out
|
||||
@@ -464,8 +465,8 @@ _build_expression:
|
||||
j .Lbuild_expression_advance
|
||||
|
||||
.Lbuild_expression_call:
|
||||
lw a0, 24(sp)
|
||||
lw a1, 20(sp)
|
||||
lw a0, 32(sp)
|
||||
lw a1, 28(sp)
|
||||
add s1, s1, a1
|
||||
addi s1, s1, 1
|
||||
call _compile_call
|
||||
@@ -473,7 +474,7 @@ _build_expression:
|
||||
j .Lbuild_expression_end
|
||||
|
||||
.Lbuild_expression_literal:
|
||||
lw t1, 28(sp)
|
||||
lw t1, 36(sp)
|
||||
li t0, 0x00202c00 # \0,_
|
||||
or t0, t0, t1
|
||||
sw t0, 16(sp)
|
||||
@@ -483,8 +484,8 @@ _build_expression:
|
||||
li a1, 7
|
||||
call _write_out
|
||||
|
||||
lw a0, 24(sp)
|
||||
lw a1, 20(sp)
|
||||
lw a0, 32(sp)
|
||||
lw a1, 28(sp)
|
||||
call _write_out
|
||||
|
||||
li a0, '\n'
|
||||
@@ -493,14 +494,14 @@ _build_expression:
|
||||
j .Lbuild_expression_advance
|
||||
|
||||
.Lbuild_expression_advance:
|
||||
lw a0, 20(sp)
|
||||
lw a0, 28(sp)
|
||||
add s1, s1, a0
|
||||
|
||||
.Lbuild_expression_end:
|
||||
# Epilogue.
|
||||
lw ra, 36(sp)
|
||||
lw s0, 32(sp)
|
||||
addi sp, sp, 40
|
||||
lw ra, 44(sp)
|
||||
lw s0, 40(sp)
|
||||
addi sp, sp, 48
|
||||
ret
|
||||
|
||||
# Compiles an lvalue.
|
||||
@@ -595,34 +596,20 @@ _compile_identifier:
|
||||
sw s0, 24(sp)
|
||||
addi s0, sp, 32
|
||||
|
||||
call _read_token
|
||||
|
||||
# Save the pointer to the identifier and its length on the stack.
|
||||
sw s1, 20(sp)
|
||||
sw a0, 16(sp)
|
||||
mv a0, s1
|
||||
addi a1, sp, 12
|
||||
call _tokenize_next
|
||||
addi a1, sp, 0
|
||||
call _tokenize_next
|
||||
mv s1, a0
|
||||
|
||||
add s1, s1, a0
|
||||
call _skip_spaces
|
||||
call _read_token
|
||||
lw t0, 0(sp)
|
||||
|
||||
# Save the pointer and the length of the token following the identifier.
|
||||
sw s1, 12(sp)
|
||||
sw a0, 8(sp)
|
||||
li t1, TOKEN_ASSIGN
|
||||
beq t0, t1, .Lcompile_identifier_assign
|
||||
|
||||
add s1, s1, a0 # Skip that token.
|
||||
call _skip_spaces
|
||||
|
||||
li t0, 0x3d3a # :=
|
||||
sw t0, 4(sp)
|
||||
lw a0, 12(sp)
|
||||
lw a1, 8(sp)
|
||||
addi a2, sp, 4
|
||||
call _token_compare
|
||||
beqz a0, .Lcompile_identifier_assign
|
||||
|
||||
lw t0, 12(sp)
|
||||
lbu t0, (t0)
|
||||
li t1, 0x28 # (
|
||||
li t1, TOKEN_LEFT_PAREN
|
||||
beq t0, t1, .Lcompile_identifier_call
|
||||
|
||||
j .Lcompile_identifier_end
|
||||
@@ -917,10 +904,10 @@ _skip_comment:
|
||||
.type _compile_procedure_section, @function
|
||||
_compile_procedure_section:
|
||||
# Prologue.
|
||||
addi sp, sp, -16
|
||||
sw ra, 12(sp)
|
||||
sw s0, 8(sp)
|
||||
addi s0, sp, 16
|
||||
addi sp, sp, -24
|
||||
sw ra, 20(sp)
|
||||
sw s0, 16(sp)
|
||||
addi s0, sp, 24
|
||||
|
||||
.Lcompile_procedure_section_loop:
|
||||
call _skip_spaces
|
||||
@@ -928,10 +915,10 @@ _compile_procedure_section:
|
||||
call _skip_spaces
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
li t0, TOKEN_PROC
|
||||
lw t1, 0(sp)
|
||||
lw t1, 4(sp)
|
||||
bne t0, t1, .Lcompile_procedure_section_end
|
||||
|
||||
call _compile_procedure
|
||||
@@ -940,18 +927,18 @@ _compile_procedure_section:
|
||||
|
||||
.Lcompile_procedure_section_end:
|
||||
# Epilogue.
|
||||
lw ra, 12(sp)
|
||||
lw s0, 8(sp)
|
||||
addi sp, sp, 16
|
||||
lw ra, 20(sp)
|
||||
lw s0, 16(sp)
|
||||
addi sp, sp, 24
|
||||
ret
|
||||
|
||||
.type _compile_module_declaration, @function
|
||||
_compile_module_declaration:
|
||||
# Prologue.
|
||||
addi sp, sp, -16
|
||||
sw ra, 12(sp)
|
||||
sw s0, 8(sp)
|
||||
addi s0, sp, 16
|
||||
addi sp, sp, -24
|
||||
sw ra, 20(sp)
|
||||
sw s0, 16(sp)
|
||||
addi s0, sp, 24
|
||||
|
||||
la a0, global_start
|
||||
li a1, GLOBAL_START_SIZE
|
||||
@@ -960,32 +947,32 @@ _compile_module_declaration:
|
||||
# Skip "program".
|
||||
call _skip_comment
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
mv s1, a0
|
||||
|
||||
# Epilogue.
|
||||
lw ra, 12(sp)
|
||||
lw s0, 8(sp)
|
||||
addi sp, sp, 16
|
||||
lw ra, 20(sp)
|
||||
lw s0, 16(sp)
|
||||
addi sp, sp, 24
|
||||
ret
|
||||
|
||||
.type _compile_constant_section, @function
|
||||
_compile_constant_section:
|
||||
# Prologue.
|
||||
addi sp, sp, -16
|
||||
sw ra, 12(sp)
|
||||
sw s0, 8(sp)
|
||||
addi s0, sp, 16
|
||||
addi sp, sp, -24
|
||||
sw ra, 20(sp)
|
||||
sw s0, 16(sp)
|
||||
addi s0, sp, 24
|
||||
|
||||
call _skip_comment
|
||||
call _skip_spaces
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
li t0, TOKEN_CONST
|
||||
lw t1, 0(sp)
|
||||
lw t1, 4(sp)
|
||||
bne t0, t1, .Lcompile_constant_section_end
|
||||
mv s1, a0
|
||||
|
||||
@@ -1004,21 +991,21 @@ _compile_constant_section:
|
||||
|
||||
.Lcompile_constant_section_end:
|
||||
# Epilogue.
|
||||
lw ra, 12(sp)
|
||||
lw s0, 8(sp)
|
||||
addi sp, sp, 16
|
||||
lw ra, 20(sp)
|
||||
lw s0, 16(sp)
|
||||
addi sp, sp, 24
|
||||
ret
|
||||
|
||||
.type _compile_constant, @function
|
||||
_compile_constant:
|
||||
# Prologue.
|
||||
addi sp, sp, -16
|
||||
sw ra, 12(sp)
|
||||
sw s0, 8(sp)
|
||||
addi s0, sp, 16
|
||||
addi sp, sp, -24
|
||||
sw ra, 20(sp)
|
||||
sw s0, 16(sp)
|
||||
addi s0, sp, 24
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
|
||||
sub a1, a0, s1 # The identifier end from _tokenize_next should be in a0.
|
||||
@@ -1027,7 +1014,7 @@ _compile_constant:
|
||||
call _write_out
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
mv s1, a0 # Skip the assignment sign.
|
||||
|
||||
@@ -1052,24 +1039,24 @@ _compile_constant:
|
||||
call _put_char
|
||||
|
||||
# Epilogue.
|
||||
lw ra, 12(sp)
|
||||
lw s0, 8(sp)
|
||||
addi sp, sp, 16
|
||||
lw ra, 20(sp)
|
||||
lw s0, 16(sp)
|
||||
addi sp, sp, 24
|
||||
ret
|
||||
|
||||
.type _compile_variable_section, @function
|
||||
_compile_variable_section:
|
||||
# Prologue.
|
||||
addi sp, sp, -16
|
||||
sw ra, 12(sp)
|
||||
sw s0, 8(sp)
|
||||
addi s0, sp, 16
|
||||
addi sp, sp, -24
|
||||
sw ra, 20(sp)
|
||||
sw s0, 16(sp)
|
||||
addi s0, sp, 24
|
||||
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
li t0, TOKEN_VAR
|
||||
lw t1, 0(sp)
|
||||
lw t1, 4(sp)
|
||||
bne t0, t1, .Lcompile_variable_section_end
|
||||
mv s1, a0
|
||||
|
||||
@@ -1088,24 +1075,24 @@ _compile_variable_section:
|
||||
|
||||
.Lcompile_variable_section_end:
|
||||
# Epilogue.
|
||||
lw ra, 12(sp)
|
||||
lw s0, 8(sp)
|
||||
addi sp, sp, 16
|
||||
lw ra, 20(sp)
|
||||
lw s0, 16(sp)
|
||||
addi sp, sp, 24
|
||||
ret
|
||||
|
||||
.type _compile_variable, @function
|
||||
_compile_variable:
|
||||
# Prologue.
|
||||
addi sp, sp, -40
|
||||
sw ra, 36(sp)
|
||||
sw s0, 32(sp)
|
||||
addi s0, sp, 40
|
||||
addi sp, sp, -48
|
||||
sw ra, 44(sp)
|
||||
sw s0, 40(sp)
|
||||
addi s0, sp, 48
|
||||
|
||||
call _read_token
|
||||
|
||||
# Save the identifier on the stack since it should emitted multiple times.
|
||||
sw s1, 28(sp)
|
||||
sw a0, 24(sp)
|
||||
sw s1, 36(sp)
|
||||
sw a0, 32(sp)
|
||||
add s1, s1, a0
|
||||
|
||||
call _skip_spaces
|
||||
@@ -1117,8 +1104,8 @@ _compile_variable:
|
||||
call _read_token
|
||||
|
||||
# Save the array size on the stack since it has to be emitted multiple times.
|
||||
sw s1, 20(sp)
|
||||
sw a0, 16(sp)
|
||||
sw s1, 28(sp)
|
||||
sw a0, 24(sp)
|
||||
add s1, s1, a0
|
||||
|
||||
call _skip_spaces
|
||||
@@ -1133,8 +1120,8 @@ _compile_variable:
|
||||
li a1, ASM_TYPE_SIZE
|
||||
call _write_out
|
||||
|
||||
lw a0, 28(sp)
|
||||
lw a1, 24(sp)
|
||||
lw a0, 36(sp)
|
||||
lw a1, 32(sp)
|
||||
call _write_out
|
||||
|
||||
la a0, asm_type_object
|
||||
@@ -1142,29 +1129,29 @@ _compile_variable:
|
||||
call _write_out
|
||||
|
||||
# identifier: .zero size
|
||||
lw a0, 28(sp)
|
||||
lw a1, 24(sp)
|
||||
lw a0, 36(sp)
|
||||
lw a1, 32(sp)
|
||||
call _write_out
|
||||
|
||||
li t0, 0x206f7265 # ero_
|
||||
sw t0, 12(sp)
|
||||
sw t0, 20(sp)
|
||||
li t0, 0x7a2e203a # : .z
|
||||
sw t0, 8(sp)
|
||||
addi a0, sp, 8
|
||||
sw t0, 16(sp)
|
||||
addi a0, sp, 16
|
||||
li a1, 8
|
||||
call _write_out
|
||||
|
||||
lw a0, 20(sp)
|
||||
lw a1, 16(sp)
|
||||
lw a0, 28(sp)
|
||||
lw a1, 24(sp)
|
||||
call _write_out
|
||||
|
||||
li a0, '\n'
|
||||
call _put_char
|
||||
|
||||
# Epilogue.
|
||||
lw ra, 36(sp)
|
||||
lw s0, 32(sp)
|
||||
addi sp, sp, 40
|
||||
lw ra, 44(sp)
|
||||
lw s0, 40(sp)
|
||||
addi sp, sp, 48
|
||||
ret
|
||||
|
||||
.type _compile_procedure, @function
|
||||
@@ -1175,11 +1162,12 @@ _compile_procedure:
|
||||
sw s0, 24(sp)
|
||||
addi s0, sp, 32
|
||||
|
||||
addi s1, s1, 5 # Skip proc_
|
||||
call _read_token
|
||||
sw s1, 20(sp)
|
||||
sw a0, 16(sp)
|
||||
add s1, s1, a0
|
||||
mv a0, s1
|
||||
addi a1, sp, 12
|
||||
call _tokenize_next # Skip proc.
|
||||
addi a1, sp, 12
|
||||
call _tokenize_next
|
||||
mv s1, a0
|
||||
|
||||
# .type identifier, @function
|
||||
la a0, asm_type
|
||||
@@ -1204,29 +1192,16 @@ _compile_procedure:
|
||||
li a1, 2
|
||||
call _write_out
|
||||
|
||||
call _skip_spaces
|
||||
addi s1, s1, 1 # Skip opening argument paren.
|
||||
call _skip_spaces
|
||||
addi s1, s1, 1 # Skip closing argument paren.
|
||||
|
||||
li t0, 0x6e # n
|
||||
sw t0, 12(sp)
|
||||
li t0, 0x69676562 # begi
|
||||
sw t0, 8(sp)
|
||||
|
||||
# Skip all declarations until we find the "begin" keyword, denoting the
|
||||
# beginning of the procedure body.
|
||||
.Lcompile_procedure_begin:
|
||||
call _skip_spaces
|
||||
call _read_token
|
||||
|
||||
mv a1, a0
|
||||
mv a0, s1
|
||||
addi a2, sp, 8
|
||||
add s1, s1, a1
|
||||
call _token_compare
|
||||
|
||||
bnez a0, .Lcompile_procedure_begin
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
mv s1, a0
|
||||
lw t0, 4(sp)
|
||||
li t1, TOKEN_BEGIN
|
||||
bne t0, t1, .Lcompile_procedure_begin
|
||||
|
||||
# Generate the procedure prologue with a predefined stack size.
|
||||
la a0, prologue
|
||||
@@ -1234,56 +1209,8 @@ _compile_procedure:
|
||||
call _write_out
|
||||
|
||||
# Save passed arguments on the stack.
|
||||
li t0, 0x0a29 # )\n
|
||||
sw t0, 12(sp)
|
||||
li t0, 0x70732834 # 4(sp
|
||||
sw t0, 8(sp)
|
||||
li t0, 0x38202c30 # 0, 8
|
||||
sw t0, 4(sp)
|
||||
li t0, 0x61207773 # sw a
|
||||
sw t0, 0(sp)
|
||||
addi a0, sp, 0
|
||||
li a1, 14
|
||||
call _write_out
|
||||
|
||||
li t0, '0'
|
||||
sb t0, 8(sp)
|
||||
li t0, 0x38202c31 # 1, 8
|
||||
sw t0, 4(sp)
|
||||
addi a0, sp, 0
|
||||
li a1, 14
|
||||
call _write_out
|
||||
|
||||
li t0, '6'
|
||||
sb t0, 8(sp)
|
||||
li t0, 0x37202c32 # 2, 7
|
||||
sw t0, 4(sp)
|
||||
addi a0, sp, 0
|
||||
li a1, 14
|
||||
call _write_out
|
||||
|
||||
li t0, '2'
|
||||
sb t0, 8(sp)
|
||||
li t0, 0x37202c33 # 3, 7
|
||||
sw t0, 4(sp)
|
||||
addi a0, sp, 0
|
||||
li a1, 14
|
||||
call _write_out
|
||||
|
||||
li t0, '8'
|
||||
sb t0, 8(sp)
|
||||
li t0, 0x36202c34 # 4, 6
|
||||
sw t0, 4(sp)
|
||||
addi a0, sp, 0
|
||||
li a1, 14
|
||||
call _write_out
|
||||
|
||||
li t0, '4'
|
||||
sb t0, 8(sp)
|
||||
li t0, 0x36202c35 # 5, 6
|
||||
sw t0, 4(sp)
|
||||
addi a0, sp, 0
|
||||
li a1, 14
|
||||
la a0, asm_preserve_parameters
|
||||
li a1, ASM_PRESERVE_PARAMETERS_SIZE
|
||||
call _write_out
|
||||
|
||||
# Generate the body of the procedure.
|
||||
@@ -1318,48 +1245,6 @@ _compile_procedure:
|
||||
addi sp, sp, 32
|
||||
ret
|
||||
|
||||
# Compares two string, which of one has a length, the other one is null-terminated.
|
||||
#
|
||||
# a0 - The address of the token string.
|
||||
# a1 - The length of the string in a0.
|
||||
# a2 - The address of the null-terminated string.
|
||||
#
|
||||
# If the strings match sets a0 to 0, otherwise sets it to 1.
|
||||
.type _token_compare, @function
|
||||
_token_compare:
|
||||
addi t0, a0, 0
|
||||
addi t1, a1, 0
|
||||
addi t2, a2, 0
|
||||
|
||||
.Ltoken_compare_loop:
|
||||
lbu t3, (t2)
|
||||
|
||||
# Will only be 0 if the current character in the null terminated string is \0 and the remaining length of the
|
||||
# another string is 0.
|
||||
or t4, t3, t1
|
||||
beqz t4, .Ltoken_compare_equal
|
||||
|
||||
beqz t1, .Ltoken_compare_not_equal
|
||||
beqz t3, .Ltoken_compare_not_equal
|
||||
|
||||
lbu t4, (t0)
|
||||
bne t3, t4, .Ltoken_compare_not_equal
|
||||
|
||||
addi t0, t0, 1
|
||||
addi t1, t1, -1
|
||||
addi t2, t2, 1
|
||||
j .Ltoken_compare_loop
|
||||
|
||||
.Ltoken_compare_not_equal:
|
||||
li a0, 1
|
||||
j .Ltoken_compare_end
|
||||
|
||||
.Ltoken_compare_equal:
|
||||
li a0, 0
|
||||
|
||||
.Ltoken_compare_end:
|
||||
ret
|
||||
|
||||
.type _compile_goto, @function
|
||||
_compile_goto:
|
||||
# Prologue.
|
||||
@@ -1475,30 +1360,30 @@ _compile_if:
|
||||
sw s0, 24(sp)
|
||||
addi s0, sp, 32
|
||||
|
||||
addi s1, s1, 2 # Skip the if.
|
||||
call _skip_spaces
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
call _tokenize_next
|
||||
mv s1, a0 # Skip the if.
|
||||
|
||||
call _build_binary_expression
|
||||
|
||||
call _skip_spaces
|
||||
addi s1, s1, 4 # Skip the then.
|
||||
|
||||
# if end marker.
|
||||
li t0, 0x00646e65 # end\0
|
||||
sw t0, 20(sp)
|
||||
mv a0, s1
|
||||
addi a1, sp, 0
|
||||
call _tokenize_next
|
||||
mv s1, a0 # Skip the then.
|
||||
|
||||
# Label prefix.
|
||||
li t0, 0x66694c2e # .Lif
|
||||
sw t0, 16(sp)
|
||||
sw t0, 20(sp)
|
||||
|
||||
li t0, 0x202c3061 # a0,_
|
||||
sw t0, 12(sp)
|
||||
sw t0, 16(sp)
|
||||
li t0, 0x207a7165 # eqz_
|
||||
sw t0, 8(sp)
|
||||
sw t0, 12(sp)
|
||||
li t0, 0x62626262 # bbbb
|
||||
sb t0, 7(sp)
|
||||
sb t0, 11(sp)
|
||||
|
||||
addi a0, sp, 7
|
||||
addi a0, sp, 11
|
||||
li a1, 13
|
||||
call _write_out
|
||||
|
||||
@@ -1510,15 +1395,13 @@ _compile_if:
|
||||
call _put_char
|
||||
|
||||
.Lcompile_if_loop:
|
||||
call _skip_spaces
|
||||
call _read_token
|
||||
|
||||
mv a1, a0
|
||||
mv a0, s1
|
||||
addi a2, sp, 20
|
||||
call _token_compare
|
||||
addi a1, sp, 0
|
||||
call _tokenize_next
|
||||
|
||||
beqz a0, .Lcompile_if_end
|
||||
lw t0, 0(sp)
|
||||
li t1, TOKEN_END
|
||||
beq t0, t1, .Lcompile_if_end
|
||||
|
||||
call _read_line
|
||||
li a1, 1
|
||||
@@ -1527,8 +1410,10 @@ _compile_if:
|
||||
j .Lcompile_if_loop
|
||||
|
||||
.Lcompile_if_end:
|
||||
mv s1, a0 # Skip the end with newline. a0 is set by the last call to _tokenize_next.
|
||||
|
||||
# Write the label prefix.
|
||||
addi a0, sp, 16
|
||||
addi a0, sp, 20
|
||||
li a1, 4
|
||||
call _write_out
|
||||
|
||||
@@ -1537,14 +1422,13 @@ _compile_if:
|
||||
call _printi
|
||||
|
||||
# Finalize the label.
|
||||
li t0, 0x0a3a0a3a # :\n:\n
|
||||
sh t0, 12(sp)
|
||||
addi a0, sp, 12
|
||||
li t0, 0x0a3a # :\n:\n
|
||||
sh t0, 16(sp)
|
||||
addi a0, sp, 16
|
||||
li a1, 2
|
||||
call _write_out
|
||||
|
||||
addi s2, s2, 1 # Increment the label counter.
|
||||
addi s1, s1, 4 # Skip the end with newline.
|
||||
|
||||
# Epilogue.
|
||||
lw ra, 28(sp)
|
||||
@@ -1554,8 +1438,6 @@ _compile_if:
|
||||
|
||||
# Parameters:
|
||||
# a0 - Line length.
|
||||
# a1 - Whether the section header was already emitted. If not it should be
|
||||
# emitted before any code is written.
|
||||
#
|
||||
# Returns 1 in a0 if the parsed line contained a text section element such a
|
||||
# procedure or the program entry point. Otherwise sets a0 to 0.
|
||||
@@ -1569,9 +1451,6 @@ _compile_statement:
|
||||
|
||||
# Preserve passed arguments.
|
||||
sw a0, 20(sp)
|
||||
sw a1, 16(sp)
|
||||
|
||||
call _skip_comment
|
||||
|
||||
mv a0, s1
|
||||
lw a1, 20(sp)
|
||||
@@ -1591,25 +1470,31 @@ _compile_statement:
|
||||
call _memcmp
|
||||
beqz a0, .Lcompile_statement_goto
|
||||
|
||||
li t0, 0x75746572 # retu
|
||||
sw t0, 12(sp)
|
||||
call _skip_comment
|
||||
/* DEBUG
|
||||
mv a0, s1
|
||||
addi a1, sp, 12
|
||||
li a2, 4
|
||||
call _memcmp
|
||||
beqz a0, .Lcompile_statement_return
|
||||
li a1, 4
|
||||
call _write_error
|
||||
mv a0, s1
|
||||
li a1, 4
|
||||
call _write_error
|
||||
*/
|
||||
|
||||
li t0, 0x6669 # if
|
||||
sw t0, 12(sp)
|
||||
mv a0, s1
|
||||
addi a1, sp, 12
|
||||
li a2, 2
|
||||
call _memcmp
|
||||
beqz a0, .Lcompile_statement_if
|
||||
addi a1, sp, 0
|
||||
call _tokenize_next
|
||||
lw t0, 0(sp)
|
||||
|
||||
li t1, TOKEN_RETURN
|
||||
beq t0, t1, .Lcompile_statement_return
|
||||
|
||||
li t1, TOKEN_IF
|
||||
beq t0, t1, .Lcompile_statement_if
|
||||
|
||||
li t1, TOKEN_DOT
|
||||
beq t0, t1, .Lcompile_statement_label
|
||||
|
||||
lbu t0, (s1)
|
||||
li t1, '.'
|
||||
beq t0, t1, .Lcompile_statement_label
|
||||
li t1, '_'
|
||||
beq t0, t1, .Lcompile_statement_identifier
|
||||
|
||||
@@ -1688,30 +1573,25 @@ _compile_entry_point:
|
||||
|
||||
# Generate the body of the procedure.
|
||||
.Lcompile_entry_point_body:
|
||||
call _skip_spaces
|
||||
call _read_line
|
||||
sw a0, 12(sp)
|
||||
li t0, 0x2e646e65 # end
|
||||
sw t0, 8(sp)
|
||||
mv a0, s1
|
||||
addi a1, sp, 8
|
||||
li a2, 4
|
||||
call _memcmp
|
||||
addi a1, sp, 4
|
||||
call _tokenize_next
|
||||
|
||||
beqz a0, .Lcompile_entry_point_end
|
||||
lw t0, 4(sp)
|
||||
li t1, TOKEN_END
|
||||
beq t0, t1, .Lcompile_entry_point_end
|
||||
|
||||
lw a0, 12(sp)
|
||||
call _compile_statement
|
||||
j .Lcompile_entry_point_body
|
||||
|
||||
.Lcompile_entry_point_end:
|
||||
mv s1, a0 # Skip end. a0 is set by the last _tokenize_next call.
|
||||
|
||||
la a0, asm_exit
|
||||
li a1, ASM_EXIT_SIZE
|
||||
call _write_out
|
||||
|
||||
addi s1, s1, 4 # Skip end.
|
||||
call _skip_spaces # Read the possible new line at the end of the file.
|
||||
|
||||
# Epilogue.
|
||||
lw ra, 4(sp)
|
||||
lw s0, 0(sp)
|
||||
|
Reference in New Issue
Block a user