[llvm] [X86] Support peephole optimization with CCMP instruction (PR #129994)
Feng Zou via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 16:01:33 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)
----------------
fzou1 wrote:
Yes. Updated. It can prevent incorrect optimization (see CCMP + CMP combination in opt_redundant_flags_adjusted_imm_noopt_5 MIR sub-test). Thanks.
https://github.com/llvm/llvm-project/pull/129994
More information about the llvm-commits
mailing list