[llvm] [X86] Support peephole optimization with CCMP instruction (PR #129994)

Phoebe Wang via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 01:24:12 PDT 2025


================
@@ -4951,6 +4955,20 @@ bool X86InstrInfo::isRedundantFlagInstr(const MachineInstr &FlagI,
     }
     return false;
   }
+  case X86::CCMP64ri32:
+  case X86::CCMP32ri:
+  case X86::CCMP16ri:
+  case X86::CCMP8ri: {
+    // The CCMP instruction should not be optimized if the scc/dfv in it is not
+    // same as the one in previous CCMP instruction.
+    unsigned Opcode = FlagI.getOpcode();
+    if (Opcode == X86::CCMP64ri32 || Opcode == X86::CCMP32ri ||
+        Opcode == X86::CCMP16ri || Opcode == X86::CCMP8ri)
----------------
phoebewang wrote:

Do we need `FlagI.getOpcode() == OI.getOpcode()`?

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


More information about the llvm-commits mailing list