[llvm] MachineScheduler: Improve instruction clustering (PR #137784)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 29 05:30:43 PDT 2025
================
@@ -2093,6 +2090,21 @@ void BaseMemOpClusterMutation::clusterNeighboringMemOps(
<< ", Curr cluster bytes: " << CurrentClusterBytes
<< "\n");
}
+
+ // Add cluster group information.
+ // Iterate over all of the equivalence sets.
+ auto &AllClusters = DAG->getClusters();
+ for (auto &I : Clusters) {
----------------
arsenm wrote:
No auto, I have no idea what these types are
https://github.com/llvm/llvm-project/pull/137784
More information about the llvm-commits
mailing list