什么是免费的优质 SSA/SCCP 资源?
到目前为止,这是我能想到的:
gcc 相关:
- SSA for Trees
- Tree SSA – GCC 的新优化框架
- < a href="http://gcc.fyxm.net/summit/2003/Tree%20SSA%20-%20A%20New%20optimization%20infrastruct.pdf" rel="nofollow noreferrer">Tree SSA GCC 的新优化基础架构
- 设计与实现树 SSA
其他:
我已将其设为社区 wiki,因此请随意添加您自己的资源 - 谢谢!
This is what I could come up with so far:
gcc related:
- SSA for Trees
- Tree SSA – A New Optimization Framework for GCC
- Tree SSA A New Optimization Infrastructure for GCC
- Design and Implementation of Tree SSA
Other:
- An Implementation of Sparse Conditional Constant Propagation for Machine SUIF
- Concurrent Static Single Assignment Form and Constant Propagation for Explicitly Parallel Programs
I've made this a community wiki, so please feel free to add your own resources - thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该知道,GCC 不再使用这些论文中描述的 SSA(Chow 的 HSSA)。 相反,它使用“别名预言机”来消除内存地址之间的歧义。 它仍然使用 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: