可以优化 C# 尾部调用的架构
阅读 博客条目Eric Lippert,我看到了这个片段:
...你将永远循环(如果你在一个架构上 可以优化尾部调用)或耗尽堆栈并崩溃 流程。
我知道编译器可以优化尾递归,但是可以优化尾部调用的架构是什么意思?
Reading a blog entry by Eric Lippert, I came across this snippet:
...you're going to either loop forever (if you're on an architecture
that can optimize tail calls) or run out of stack and crash the
process.
I'm aware that a compiler can optimize tail recursion, but what does an architecture that can optimize tail calls mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着 x64 上的 .NET JIT 的行为与 x86 上的 JIT 不同 - x64 更积极地应用尾部调用优化。
请参阅这篇 2007 年的博客文章< /a> 和 这一来自2009 了解一些遵循的规则的实施细节(不依赖)。
It means that the .NET JIT on x64 behaves differently to the JIT on x86 - the x64 one applies tail call optimizations much more aggressively.
See this blog post from 2007 and this one from 2009 for some implementation details (not to be depended upon) for some of the rules that are followed.