[PATCH] D129352: [CodeGen] Limit building time for CodeGenPrepare

Xiang Zhang via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 26 18:09:07 PDT 2022


xiangzhangllvm added inline comments.


================
Comment at: llvm/lib/CodeGen/CodeGenPrepare.cpp:1006
+      Instruction *User = cast<Instruction>(*UI);
+      FreshBBs.insert(User->getParent());
+    }
----------------
Here hurt the performance, because It can't make sure the BBs optimization order.
Let me update here.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D129352/new/

https://reviews.llvm.org/D129352



More information about the llvm-commits mailing list