通过 llvm 的死代码消除过程删除指令
我在 LLVM 中的传递生成了一个像这样的 IR
:
%5 = icmp eq i32 %4, 0
%7 = or i1 %5, %5
...
由于实际上不需要 or
指令(死代码),我替换了所有出现的 %7
> 与 %5
。现在,or
指令应该被删除。我可以从我的传递中调用 LLVM 的死代码消除传递,或者是否有任何方法可以删除该或
指令?
My pass in LLVM generates an IR
like this:
%5 = icmp eq i32 %4, 0
%7 = or i1 %5, %5
...
Since the or
instruction is actually not needed(dead code), I replaced all occurrences of %7
with %5
. Now, the or
instruction should get deleted. Can I call Dead Code Elimination pass of LLVM from my pass, or is there any method to remove that or
instruction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更符合 LLVM 设计理念的解决方案是,不要在您的传递中进行替换,而是让 InstCombine 完成这项工作。那么您就不必担心运行 DCE 了。
例如:
A solution that is more aligned with LLVM's design philosophy is, instead of doing the substitution in your pass, let InstCombine do the job. Then you will not need to worry about running DCE.
For example:
为什么不在通行证管理器中安排 DCE 在您的通行证之后运行呢?让它进行分析并决定要扔掉什么。
Why don't you just schedule DCE to run after your pass in the pass manager. Let it do its analysis and decide what it wants to throw away.