我有一个函数,它将内存地址设为$a0
,并使用x($a0)
访问(可变)字数,其中x
是8的倍数。我需要将它们存储在$sp
寄存器中,这样我就可以使用$a0
寄存器将参数传递给其他函数。完全是MIPS组装的新手,所以这里的任何指针都会有所帮助!
答案 0 :(得分:0)
8的倍数我假设您正在使用mips-64
首先你做一个循环并每次将a0增加8:
loop: lw $t0, 0($a0) ;fetch data and store in t0
addi $sp,$sp,-8 ;increase stack
sw $t0, 0($sp) ;store data fetched
addi $a0,$a0,8 ;increment a0 to go to next entry
;here you check that you haven't reached x yet
;let's say 8*x+$a0(initial) is stored in $t1 (this is easy to do just use sll by 3 to multiply by 8 then add a0 before loop)
bne $a0,$t1,loop
;now you can use $a0