gcc 堆栈边界

发布于 2024-10-12 13:32:43 字数 157 浏览 4 评论 0原文

我知道可以使用 gcc 的 mpreferred-stack-boundary 参数来设置堆栈边界。我想知道是否可以完成以下操作。

  1. 在特定机器上找到用作堆栈边界的默认值。
  2. 对于特定的编译二进制文件,有什么方法可以找出所使用的堆栈边界的值吗?

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.

  1. On a particular machine find the default value used as the stack boundary.
  2. For a particular compiled binary, is there any way I can figure out the value for stack boundary that was used?

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

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

发布评论

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

评论(1

灵芸 2024-10-19 13:32:43
  1. 困难。拥有一个查找表并在新架构出现时更新它可能是最简单的事情。

  2. 不是真的。首选堆栈边界显示在非叶函数的函数序言中为堆栈指针减量选择的值中,但不能保证该指令采用任何特定形式或根本会发出。

  1. Difficult. It is probably the easiest thing to have a lookup table and update it when new architectures pop up.

  2. 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.

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