MIPS汇编的问题

发布于 2022-09-29 17:23:08 字数 2440 浏览 19 评论 0

  1. .text_rom:90015290                 addiu   $sp, -0x10
  2. .text_rom:90015294                 sw      $fp, 0x10+var_8($sp)
  3. .text_rom:90015298                 move    $fp, $sp
  4. .text_rom:9001529C                 sw      $a0, 0x10+arg_0($fp)
  5. .text_rom:900152A0                 sw      $a1, 0x10+arg_4($fp)
  6. .text_rom:900152A4                 lw      $v0, 0x10+arg_0($fp)
  7. .text_rom:900152A8                 bnez    $v0, loc_900152BC

复制代码

生成上面的汇编是不是编译器的bug?load delay slot里面怎么能立即使用$v0寄存器?

我用
-march=mips32 -mtune=r4600 -mabi=32 -G 0 -ansi -fno-builtin -fdelayed-branch -fthread-jumps -fno-pic -mno-abicalls -O0 -g -fschedule-insns2 -msoft-float

[]# mipsel-linux-uclibc-gcc -v
Using built-in specs.
Target: mipsel-linux-uclibc
Configured with: xxxx/gcc-4.1.2/configure --prefix xxxxx --build=i386-redhat-linux --host=i386-redhat-linux --target=mipsel-linux-uclibc --enable-languages=c,c++ --enable-shared --disable-__cxa_atexit --enable-target-optspace --with-gnu-ld --disable-nls
Thread model: posix
gcc version 4.1.2

汇编回应的源码是

  1. int strcmp(const char *cs, const char *ct)
  2. {
  3.         if(!cs) return -1;
  4.         if(!ct) return  1;
  5.         while (*cs || *ct)
  6.             if (*cs++ != *ct++)
  7.                 return (*--cs - *--ct);
  8.         return 0;
  9. }

复制代码
[ 本帖最后由 mjdcl 于 2007-7-10 14:47 编辑 ]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故笙诉离歌 2022-10-06 17:23:08

-mtune=r4600
R4K有互锁机制,不用填充nop。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文