给定文件
#include <stdio.h>
int main() {
printf("hello world\n");
return 0;
}
我可以使用命令
clang -emit-llvm hello.c -c -o hello.bc
llc hello.bc -march=mipsel -relocation-model=static -o hello.s
不幸的是,当我尝试在我可信赖的 MIPS SPIM 模拟器中运行它时,我发现 SPIM 几乎与它的每一行都对应,以生成一些看起来像 MIPS 代码的漂亮代码(放置在下面,以避免破坏文本)。不仅是 '.Section .mdebug.abi32' 行,还有任何形式为 '.cfi*' 的行 - 甚至更令人困惑(因为它看起来像 MIPS 对我来说......)行 'lui $2, %hi( __gnu_local_gp)" 被反对。
我正在寻找一些关于 SPIM 和 LLVM 处理的不同风格的 MIPS 的信息,或者有人提供一个我可以运行的 MIPS 模拟器的示例,该模拟器接受 LLVM 生成的 MIPS 代码。
.Section .mdebug.abi32
.previous
.file "hello.bc"
.text
.globl main
.align 2
.type main,@function
.set nomips16 # @main
.ent main
main:
.cfi_startproc
.frame $sp,32,$ra
.mask 0x80000000,-4
.fmask 0x00000000,0
.set noreorder
.set nomacro
# BB#0: # %entry
addiu $sp, $sp, -32
$tmp2:
.cfi_def_cfa_offset 32
sw $ra, 28($sp) # 4-byte Folded Spill
$tmp3:
.cfi_offset 31, -4
lui $2, %hi(__gnu_local_gp)
addiu $2, $2, %lo(__gnu_local_gp)
sw $2, 16($sp)
sw $zero, 24($sp)
lui $2, %hi($.str)
addiu $4, $2, %lo($.str)
jal printf
nop
addiu $2, $zero, 0
lw $ra, 28($sp) # 4-byte Folded Reload
addiu $sp, $sp, 32
jr $ra
nop
.set macro
.set reorder
.end main
$tmp4:
.size main, ($tmp4)-main
.cfi_endproc
.type $.str,@object # @.str
.section .rodata.str1.1,"aMS",@progbits,1
$.str:
.asciz "hello world\n"
.size $.str, 13