[llvm] [LoopInterchange] Stop performing unprofitable interchange (PR #127473)

Sjoerd Meijer via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 02:37:10 PST 2025


================
@@ -388,6 +387,8 @@ class LoopInterchangeProfitability {
 
   /// Interface to emit optimization remarks.
   OptimizationRemarkEmitter *ORE;
+
+  const std::optional<CostMapTy> &CostMap;
----------------
sjoerdmeijer wrote:

Nit: a comment explaining what this is exactly capturing would be good. I.e., it's a map of:

   `Loop` -> `[index, cost]`?

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


More information about the llvm-commits mailing list