堆栈增长在 Windows 和 Linux 上如何工作?
我刚刚读到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.