什么是免费的优质 SSA/SCCP 资源?

发布于 2024-07-19 08:37:48 字数 911 浏览 9 评论 0原文

到目前为止,这是我能想到的:

gcc 相关:

其他:

我已将其设为社区 wiki,因此请随意添加您自己的资源 - 谢谢!

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

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

发布评论

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

评论(1

弃爱 2024-07-26 08:37:48

您应该知道,GCC 不再使用这些论文中描述的 SSA(Chow 的 HSSA)。 相反,它使用“别名预言机”来消除内存地址之间的歧义。 它仍然使用 SSA 来处理标量变量。

资源:

  • 我很惊讶你错过了:“GCC 的传播引擎” ,它描述了 SCCP 和 GCC 中使用的其他稀疏条件分析的总体框架。
  • Lenart 和 Sadler 将 SCCP 扩展到类型推断。
  • Patterson 将 SCCP 扩展到值范围传播(并且也允许复制传播)。 我很确定这是 GCC 使用的算法。
  • 最后,如果我可以大胆地建议我自己的短论文,其中讨论了算法,并尝试将符号执行(SCCP 的核心)扩展到构建 SSA。

You should be aware that GCC no longer uses the SSA described in those papers (Chow's HSSA). Rather it uses an "alias oracle" to disambiguate between memory addresses. It still uses SSA for scalar variables.

Resources:

  • I'm surprised you missed: "A propagation engine for GCC", which described the general framework for SCCP and other sparse conditional analyses used in GCC.
  • Lenart and Sadler extend SCCP to type inference.
  • Patterson extends SCCP to value-range propagation (and also allows copy propagation). I'm pretty sure this is the algorithm GCC uses.
  • Finally, if I may be so bold as to suggest my own short paper, which discusses the algorithm, and tries to extend symbolic execution (the core of SCCP) to building SSA as well.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文