[PATCH] D129352: [CodeGen] Limit building time for CodeGenPrepare
Xiang Zhang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 13 00:11:05 PDT 2022
xiangzhangllvm added a comment.
I am implementing the refine job, but It's more complicated than we thought.
The most trouble is
The optimizeInst will affect other BBs even it do not change the Dominate Tree.
So, in addition to collected new created BBs and erase deleted BBs (for worklist).
we still need to track each optimization to check if they affect other BBs and collected the BBs (into worklist) to re-optimize them.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129352/new/
https://reviews.llvm.org/D129352
More information about the llvm-commits
mailing list