0

我想尝试将 C 程序转换为 MIPS 汇编编码

这是C语言程序:

int x=2;

int index;

for(index = 0;index<4;index++){

     x=x+index;

}

这是我对 MIPS 汇编编码的尝试:

      li $8,4   # the limit
      li $9,2   #x = 2
      li $10,0  #index, starts at 0

forLoop:
      slt $11,$10,$8   #if index <4 then $11 = true =1
      beq $11,$0,Exit  #if $11 = 0 = false means reached 4, then exit
      add $9,$9,$10    #adding the index with the value in x
      addi $10,1       # add 1 to the index if didnt reach the limit
      j forLoop        # repeat the loop
Exit:
      nop              #end 

需要问大家这是否正确,因为我没有mips模拟器,不知道如何结束程序,nop是有效的退出计划吗?

4

2 回答 2

1

给你,一个简单的版本,将你的 C 代码翻译成 MIPS:

注意:我为此使用 SPIM。

main:
    li $t0, 2           # $t0 = x = 2
    li $t1, 0           # $t1 = index = 0
    li $t2, 4           # $t2 = indexLimit = 4
    jal forLoop         # jump and link the forLoop label
    move $a0, $t0       # move the result into $a0 for printing
    li $v0, 1           # load print integer code
    syscall             # tell system to do it
    li $v0, 10          # load exit code
    syscall             # clean exit

forLoop:
    bge $t1, $t2, exit  # if index >= 4 goto exit label
    add $t0, $t0, $t1   # x = x + index
    addi $t1, $t1, 1    # index++
    j forLoop           # continue loop by jumping back up

exit:
    jr $ra              # jump and return the return address

回答你的问题:nop什么都不做。您可以将它用于计时等目的。这是一个维基百科链接,供进一步阅读http://en.wikipedia.org/wiki/NOP。注意结束 MIPS 程序将 10 加载到 $v0 中,然后再进行系统调用。

编辑:

回应您的评论:您走在正确的轨道上,但不要忘记添加主标签,然后从主标签跳转到 forLoop,然后让您的 Exit 标签终止程序(如果需要,请先打印整数) .

这是在 MIPS 中编程的两个有用链接: http://www.mrc.uidaho.edu/mrc/people/jff/digital/MIPSir.html http://logos.cs.uic.edu/366/notes/mips %20quick%20tutorial.htm

于 2013-06-19T01:33:51.553 回答
0

也许您需要研究一下How do you get assembler output from C/C++ source in gcc? 并使用您的交叉编译器生成汇编文件。

于 2013-06-19T03:45:44.130 回答