Mips地址超出范围运行时异常

问题描述 投票:0回答:1

我正在尝试2D Array in MIPS的答案,它提供了行主矩阵作为用户输入的完整编码解决方案。

    .data
read_row_matrix_prompt_p:   .asciiz "Enter an integer: "
###########################################################

.text
read_row_matrix:
        li $t3, 0               # initialize outer-loop counter to 0
    li $t2, 3
    li $t1, 3
read_row_matrix_loop_outer:
        bge $t3, $t1, read_row_matrix_loop_outer_end
        li $t4, 0               # initialize inner-loop counter to 0

read_row_matrix_loop_inner:
        bge $t4, $t2, read_row_matrix_loop_inner_end
        mul $t5, $t3, $t2       # $t5 <-- width * i
        add $t5, $t5, $t4       # $t5 <-- width * i + j
    sll $t5, $t5, 2         # $t5 <-- 2^2 * (width * i + j)
        add $t5, $t0, $t5       # $t5 <-- base address + (2^2 * (width * i + j))

        li $v0, 4               # prompt for number
        la $a0, read_row_matrix_prompt_p
        syscall

        li $v0, 5               # read a integer number
        syscall

        sw $v0, 0($t5)          # store input number into array <--- ""Error""
        addiu $t4, $t4, 1       # increment inner-loop counter
        b read_row_matrix_loop_inner    # branch unconditionally back to beginning of the inner loop

read_row_matrix_loop_inner_end:
        addiu $t3, $t3, 1       # increment outer-loop counter
        b read_row_matrix_loop_outer    # branch unconditionally back to beginning of the outer loop

read_row_matrix_loop_outer_end:

而且我遇到了以下错误:

 line 28: Runtime exception at 0x00400048: address out of range 0x00000000

类似的错误已发布在许多问题中,但是每种情况似乎都是局部的。

我意识到#t5实际上将从$ t0开始,因为所有初始化都将其设为零。对于计数器,我也尝试从1开始,但仍然遇到相同的错误。

这里可能是什么问题?

assembly mips memory-address mars
1个回答
0
投票

在执行过程之前添加这部分代码可以帮助我初始化数组,并且可以正常工作

    mul $a0, $t1, $t2 #multiply to get the 2d array size and store in a0 register
    sll $a0, $a0, 2 #multiply the resulting output with 2^2 = 4 for integers address size location

    li  $v0, 9 #allocate address with memory size as in a0
    syscall
    move $t0,$v0 #resulting memory stored in t0 register    
© www.soinside.com 2019 - 2024. All rights reserved.