为什么指向堆栈中地址的 ESP 每次跳转 4h?
为什么扩展堆栈指针 (ESP) 在每次 PUSH 或 POP 操作中不跳转 1h?
Why doesn't the Extended Stack Pointer (ESP) jump 1h in each PUSH or POP operation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为
PUSH
将整个寄存器压入堆栈。在 32 位机器上,这相当于 4 个字节的数据。PUSHQ
会将 x86_64 中的 RSP 更改为 8,因为它推送 64 位。That's because
PUSH
pushes one whole register to the stack. On 32bit machines, that's four byte's worth of data.PUSHQ
would change RSP by 8 in x86_64 because it pushes 64 bits.