气体:内存引用太多

发布于 2024-08-26 10:16:11 字数 116 浏览 4 评论 0原文

编译以下指令时:

movl 4(%ebp), 8(%ebp)

我得到:内存引用太多

有什么问题吗?

When compiling the following instruction:

movl 4(%ebp), 8(%ebp)

I got: too many memory reference.

What's wrong with it?

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

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

发布评论

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

评论(3

油焖大侠 2024-09-02 10:16:11

括号之前的数字是字节偏移量(这会导致发生内存引用),并且 movl 中不能有两个。您需要先将值暂时移至寄存器。

movl 4(%ebp), %ecx
movl %ecx, 8(%ebp)

The number before the parenthesis is a byte offset (which causes a memory reference to occur), and you cannot have two of them with movl. You need to move the value temporarily to a register first.

movl 4(%ebp), %ecx
movl %ecx, 8(%ebp)
放肆 2024-09-02 10:16:11

这不是法律指令。对于大多数引用内存的指令,您必须将其移入/移出寄存器。

It is not a legal instruction. For most instructions that reference memory you must move it to/from a register.

赢得她心 2024-09-02 10:16:11

movl 不会进行内存-内存移动,您必须通过寄存器(因此有两条 movl 指令)。

movl doesn't to memory-memory moves, you have to go by way of a register (thus with two movl instructions).

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