气体:内存引用太多
编译以下指令时:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
括号之前的数字是字节偏移量(这会导致发生内存引用),并且
movl
中不能有两个。您需要先将值暂时移至寄存器。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.这不是法律指令。对于大多数引用内存的指令,您必须将其移入/移出寄存器。
It is not a legal instruction. For most instructions that reference memory you must move it to/from a register.
movl 不会进行内存-内存移动,您必须通过寄存器(因此有两条 movl 指令)。
movl
doesn't to memory-memory moves, you have to go by way of a register (thus with twomovl
instructions).