[llvm] [X86][APX] Try to replace non-NF with NF instructions when optimizeCompareInstr (PR #130488)

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


================
@@ -5441,6 +5443,16 @@ bool X86InstrInfo::optimizeCompareInstr(MachineInstr &CmpInstr, Register SrcReg,
           continue;
         }
 
+        // Try to replace non-NF with NF instructions.
+        if (HasNF && Inst.registerDefIsDead(X86::EFLAGS, TRI)) {
+          unsigned NewOp = X86::getNFVariant(Inst.getOpcode());
----------------
phoebewang wrote:

I think the table lookup is more expensive than a little memory space.

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


More information about the llvm-commits mailing list