[llvm] [LoopInterchange] Prevent from undoing its own transformation (PR #127473)
Ryotaro Kasuga via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 15:47:54 PST 2025
================
@@ -388,6 +387,11 @@ class LoopInterchangeProfitability {
/// Interface to emit optimization remarks.
OptimizationRemarkEmitter *ORE;
+
+ /// Map each loop to a pair of (index, cost). The index is the best position
+ /// of this loop, according to CacheCostAnalysis. The cost is the actual cost
+ /// as calculated by CacheCostAnalysis.
+ const std::optional<CostMapTy> &CostMap;
----------------
kasuga-fj wrote:
Undid this change. I believe `LoopInterchangeProfitability` can own the `CostMap`, but if so, I'll do it in another patch.
https://github.com/llvm/llvm-project/pull/127473
More information about the llvm-commits
mailing list