可以优化 C# 尾部调用的架构

发布于 2024-11-30 06:10:05 字数 412 浏览 1 评论 0原文

阅读 博客条目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 技术交流群。

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

发布评论

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

评论(1

活雷疯 2024-12-07 06:10:05

这意味着 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.

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