在 ARM 汇编中将立即值放入括号中的目的是什么?

发布于 2024-11-28 15:23:05 字数 129 浏览 0 评论 0原文

这两个指令之间有什么区别(如果有的话)?

subs    r2, r2, #(32)

subs    r2, r2, #32

括号 () 的作用是什么?

What, if anything, is the difference between these two instructions?

subs    r2, r2, #(32)

subs    r2, r2, #32

What are the parentheses () for?

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

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

发布评论

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

评论(1

满栀 2024-12-05 15:23:05

实际上,这些是括号,而不是方括号。

之间没有区别:

subs    r2, r2, #(32)

subs    r2, r2, #32

怀疑 (32) 曾经是类似 (32 - 8) 的东西或者当时有趣/有意义/必要的东西,然后“- 8”被删除,但括号被简单地保留,因为它们没有任何害处。


为了完整起见,即使这不是您所要求的&你可能已经知道了:

带“括号”(寄存器间接)的代码

LDR r0, [r1]

r0 加载到 r1 中,其地址存储在 r1 中——换句话说,如果r1为1000,r0将从MEM[1000]加载

Actually, those are parentheses, not brackets.

There is no difference between:

subs    r2, r2, #(32)

and

subs    r2, r2, #32

I suspect the (32) used to be something like (32 - 8) or something that was interesting / meaningful / necessary at the time, then the "- 8" was removed but the parentheses were simply kept since they do no harm.


For the sake of completeness, even though it's not what you asked & you probably already know it:

The code

LDR r0, [r1]

with "brackets" (register indirect) loads r0 with the value whose address is stored in r1 -- in other words, if r1 holds 1000, r0 will be loaded from MEM[1000]

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