[llvm] [InlineCost] Cache collectEphemeralValues() to save compile time (PR #130210)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 08:33:02 PDT 2025
================
@@ -388,6 +389,8 @@ PreservedAnalyses InlinerPass::run(LazyCallGraph::SCC &InitialC,
Advice->recordUnsuccessfulInlining(IR);
continue;
}
+ // The caller was modified, so invalidate Ephemeral Values.
+ FAM.getResult<EphemeralValuesAnalysis>(F).clear();
----------------
nikic wrote:
Hm, shouldn't we be invalidating all analyses on the function here, rather than just EphemeralValues?
https://github.com/llvm/llvm-project/pull/130210
More information about the llvm-commits
mailing list