LLVM 中 passmanager 中的传递顺序
如果通过 PassManager 添加通行证,则应用于 IR 的通行证的顺序是什么?添加的顺序是否相同?
What is the order of the passes to be applied to IR if they are added by PassManager? Is it the same order as they were added?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。但是,如果存在一些相关的通道,它们也会被添加,然后一切(=通道的调度)将取决于给定的通道是否使其他通道或注释的结果无效。
Yes. However, if there are some dependent passes they are added as well and then everything (=scheduling of passes) will depend on whether the given pass invalidates the result of some other or note.