[llvm] [Analysis] Avoid running transform passes that have just been run (PR #112092)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 17 07:53:07 PDT 2024
================
@@ -5538,8 +5539,15 @@ void InstCombinePass::printPipeline(
OS << '>';
}
+char InstCombinePass::ID = 0;
+
PreservedAnalyses InstCombinePass::run(Function &F,
FunctionAnalysisManager &AM) {
+ auto &LRT = AM.getResult<LastRunTrackingAnalysis>(F);
+ // No changes since last InstCombine pass, exit early.
+ if (LRT.shouldSkip(&ID, Options))
+ return PreservedAnalyses::all();
----------------
goldsteinn wrote:
Is there no way to get the parameters going into a pass from the new manager?
https://github.com/llvm/llvm-project/pull/112092
More information about the llvm-commits
mailing list