堆栈增长在 Windows 和 Linux 上如何工作?

发布于 2024-11-25 08:36:37 字数 212 浏览 2 评论 0原文

我刚刚读到 Windows 程序如果需要超过 4k 的堆栈,则在函数入口处调用 _alloca 来增加堆栈。我猜测每次访问保护页面时,Windows 都会为堆栈分配一个新页面,因此 _alloca 会以 4k 步访问堆栈来分配空间。

我还读到这仅适用于 Windows。如果linux(或其他操作系统)不需要_alloca,如何解决这个问题?

I just read that windows programs call _alloca on function entry to grow the stack if they need more than 4k on the stack. I guss that every time the guard page is hit windows allocates a new page for the stack, therefore _alloca accesses the stack in 4k steps to allocate the space.

I also read that this only applies to windows. How does linux (or other oses) solve this problem if they don't need _alloca?

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

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

发布评论

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

评论(1

忘东忘西忘不掉你 2024-12-02 08:36:37

Linux 依赖于高度优化的页面错误处理,因此程序只是将内容推送到堆栈上,页面错误处理程序将动态扩展堆栈。

Linux relies on a heavily optimized page fault handling, so what happens is that the program just pushes things on the stack and the page fault handler will extend the stack on the fly.

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