gcc 堆栈边界
我知道可以使用 gcc 的 mpreferred-stack-boundary 参数来设置堆栈边界。我想知道是否可以完成以下操作。
- 在特定机器上找到用作堆栈边界的默认值。
- 对于特定的编译二进制文件,有什么方法可以找出所使用的堆栈边界的值吗?
I am aware that the stack boundary can be set using the mpreferred-stack-boundary
argument to gcc. I was wondering if the following could be done.
- On a particular machine find the default value used as the stack boundary.
- For a particular compiled binary, is there any way I can figure out the value for stack boundary that was used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
困难。拥有一个查找表并在新架构出现时更新它可能是最简单的事情。
不是真的。首选堆栈边界显示在非叶函数的函数序言中为堆栈指针减量选择的值中,但不能保证该指令采用任何特定形式或根本会发出。
Difficult. It is probably the easiest thing to have a lookup table and update it when new architectures pop up.
Not really. The preferred stack boundary shows up in the values chosen for the stack pointer decrement in the function prologue of non-leaf functions, but there is no guarantee that this instruction takes any particular form or is emitted at all.