[llvm] [AArch64][MachineCombiner] Reassociate long chains of accumulation instructions into a tree to increase ILP (PR #126060)

Jonathan Cohen via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 01:52:41 PDT 2025


================
@@ -6674,6 +6675,115 @@ static bool getMaddPatterns(MachineInstr &Root,
   }
   return Found;
 }
+
+bool AArch64InstrInfo::isAccumulationOpcode(unsigned Opcode) const {
+  switch (Opcode) {
+  default:
+    break;
+  case AArch64::UABALB_ZZZ_D:
----------------
jcohen-apple wrote:

Done

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


More information about the llvm-commits mailing list