[llvm] [Analysis] Avoid running transform passes that have just been run (PR #112092)

via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 13 20:50:04 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:

Just a thought, but could we instead bake this into the passmanager itself?

https://github.com/llvm/llvm-project/pull/112092


More information about the llvm-commits mailing list