如何在 powerpc 汇编器中操作程序计数器

发布于 2024-12-04 10:53:45 字数 813 浏览 0 评论 0原文

powerpc汇编器中这条指令的结果是什么?

. = 0x100

我认为这涉及程序计数器,但是反汇编使用该指令的可执行文件,输出中会出现奇怪的情况。 这是简单的代码:

int main()
{
   __asm__(". = 0x100");
   return 0;
}

这是反汇编的代码:

$ gcc -o prog main.c 
$ objdump -d prog

[...]
100003dc <main>:
100003dc:       94 21 ff f0     stwu    r1,-16(r1)
100003e0:       93 e1 00 0c     stw     r31,12(r1)
100003e4:       7c 3f 0b 78     mr      r31,r1
    ...
100004dc:       38 00 00 00     li      r0,0
100004e0:       7c 03 03 78     mr      r3,r0
100004e4:       81 61 00 00     lwz     r11,0(r1)
100004e8:       83 eb ff fc     lwz     r31,-4(r11)
100004ec:       7d 61 5b 78     mr      r1,r11
100004f0:       4e 80 00 20     blr
[...]

该指令出现了三个点。它们的意义是什么? GAS 是如何分析这一点的?

谢谢大家!

What is the result of this instruction in powerpc assembler?

. = 0x100

I think this involves program counter but disassembling an executable that uses this instruction something strange in output occurs.
This is the simple code:

int main()
{
   __asm__(". = 0x100");
   return 0;
}

and this is the disassembled code:

$ gcc -o prog main.c 
$ objdump -d prog

[...]
100003dc <main>:
100003dc:       94 21 ff f0     stwu    r1,-16(r1)
100003e0:       93 e1 00 0c     stw     r31,12(r1)
100003e4:       7c 3f 0b 78     mr      r31,r1
    ...
100004dc:       38 00 00 00     li      r0,0
100004e0:       7c 03 03 78     mr      r3,r0
100004e4:       81 61 00 00     lwz     r11,0(r1)
100004e8:       83 eb ff fc     lwz     r31,-4(r11)
100004ec:       7d 61 5b 78     mr      r1,r11
100004f0:       4e 80 00 20     blr
[...]

With that instruction there are appeared three dots. What is the meaning of them? How does the GAS traduce this?

Thank you all!

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

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

发布评论

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

评论(1

枕梦 2024-12-11 10:53:45

. 设置当前位置计数器,正如您所猜对的那样。在您的示例中,您已将位置计数器设置为 main()+0x100,即 0x100003dc+0x100 = 0x100004dc。然而,在 0x100003e4 处的指令之后到地址 0x100004dc 之间不会有任何有效指令(您通常会在此处分支)。

. sets the current location counter as you rightly guessed. In your example you have set the location counter to main()+0x100, i.e. 0x100003dc+0x100 = 0x100004dc. There will be no valid instructions after the instruction at 0x100003e4 up to address 0x100004dc however (you would normally be branching here).

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