[llvm] [X86] Implement canceling out of XOR with sub nodes (PR #155106)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 23 09:03:30 PDT 2025
https://github.com/AZero13 updated https://github.com/llvm/llvm-project/pull/155106
>From 404276127e3bef88d0dd7d380f88a6a5c19a8201 Mon Sep 17 00:00:00 2001
From: AZero13 <gfunni234 at gmail.com>
Date: Sat, 23 Aug 2025 10:41:02 -0400
Subject: [PATCH 1/2] Pre-commit test (NFC)
---
llvm/test/CodeGen/X86/ctlz.ll | 65 +++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/llvm/test/CodeGen/X86/ctlz.ll b/llvm/test/CodeGen/X86/ctlz.ll
index 1267fe9033454..41fd73d9df656 100644
--- a/llvm/test/CodeGen/X86/ctlz.ll
+++ b/llvm/test/CodeGen/X86/ctlz.ll
@@ -1334,3 +1334,68 @@ define i64 @ctlz_i32_zext(i32 %x) {
%ext = zext i32 %xor to i64
ret i64 %ext
}
+
+define i32 @bsr_eq(i32 %a, i32 %b) {
+; X86-LABEL: bsr_eq:
+; X86: # %bb.0:
+; X86-NEXT: bsrl {{[0-9]+}}(%esp), %ecx
+; X86-NEXT: xorl $31, %ecx
+; X86-NEXT: bsrl {{[0-9]+}}(%esp), %edx
+; X86-NEXT: xorl $31, %edx
+; X86-NEXT: xorl %eax, %eax
+; X86-NEXT: cmpl %edx, %ecx
+; X86-NEXT: sete %al
+; X86-NEXT: retl
+;
+; X64-LABEL: bsr_eq:
+; X64: # %bb.0:
+; X64-NEXT: bsrl %edi, %ecx
+; X64-NEXT: xorl $31, %ecx
+; X64-NEXT: bsrl %esi, %edx
+; X64-NEXT: xorl $31, %edx
+; X64-NEXT: xorl %eax, %eax
+; X64-NEXT: cmpl %edx, %ecx
+; X64-NEXT: sete %al
+; X64-NEXT: retq
+;
+; X86-CLZ-LABEL: bsr_eq:
+; X86-CLZ: # %bb.0:
+; X86-CLZ-NEXT: lzcntl {{[0-9]+}}(%esp), %ecx
+; X86-CLZ-NEXT: lzcntl {{[0-9]+}}(%esp), %edx
+; X86-CLZ-NEXT: xorl %eax, %eax
+; X86-CLZ-NEXT: cmpl %edx, %ecx
+; X86-CLZ-NEXT: sete %al
+; X86-CLZ-NEXT: retl
+;
+; X64-CLZ-LABEL: bsr_eq:
+; X64-CLZ: # %bb.0:
+; X64-CLZ-NEXT: lzcntl %edi, %ecx
+; X64-CLZ-NEXT: lzcntl %esi, %edx
+; X64-CLZ-NEXT: xorl %eax, %eax
+; X64-CLZ-NEXT: cmpl %edx, %ecx
+; X64-CLZ-NEXT: sete %al
+; X64-CLZ-NEXT: retq
+;
+; X64-FASTLZCNT-LABEL: bsr_eq:
+; X64-FASTLZCNT: # %bb.0:
+; X64-FASTLZCNT-NEXT: lzcntl %edi, %ecx
+; X64-FASTLZCNT-NEXT: lzcntl %esi, %edx
+; X64-FASTLZCNT-NEXT: xorl %eax, %eax
+; X64-FASTLZCNT-NEXT: cmpl %edx, %ecx
+; X64-FASTLZCNT-NEXT: sete %al
+; X64-FASTLZCNT-NEXT: retq
+;
+; X86-FASTLZCNT-LABEL: bsr_eq:
+; X86-FASTLZCNT: # %bb.0:
+; X86-FASTLZCNT-NEXT: lzcntl {{[0-9]+}}(%esp), %ecx
+; X86-FASTLZCNT-NEXT: lzcntl {{[0-9]+}}(%esp), %edx
+; X86-FASTLZCNT-NEXT: xorl %eax, %eax
+; X86-FASTLZCNT-NEXT: cmpl %edx, %ecx
+; X86-FASTLZCNT-NEXT: sete %al
+; X86-FASTLZCNT-NEXT: retl
+ %1 = tail call range(i32 0, 33) i32 @llvm.ctlz.i32(i32 %a, i1 true)
+ %2 = tail call range(i32 0, 33) i32 @llvm.ctlz.i32(i32 %b, i1 true)
+ %cmp = icmp eq i32 %1, %2
+ %conv = zext i1 %cmp to i32
+ ret i32 %conv
+}
>From 64761c488cdf51cfde61559c4c1215cad3382480 Mon Sep 17 00:00:00 2001
From: AZero13 <gfunni234 at gmail.com>
Date: Sat, 23 Aug 2025 11:33:17 -0400
Subject: [PATCH 2/2] [X86] Implement canceling out of XOR with sub nodes
This can happen when comparing the two bit positions.
---
llvm/lib/Target/X86/X86ISelLowering.cpp | 22 ++++++++++++++++++++++
llvm/test/CodeGen/X86/ctlz.ll | 4 ----
2 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 19131fbd4102b..c83597ac21c33 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -49009,6 +49009,28 @@ static SDValue combineSetCCMOVMSK(SDValue EFLAGS, X86::CondCode &CC,
static SDValue combineSetCCEFLAGS(SDValue EFLAGS, X86::CondCode &CC,
SelectionDAG &DAG,
const X86Subtarget &Subtarget) {
+ // For EQ/NE, rewrite SUB(xor A,B, xor C,B) -> SUB(A,C) and
+ // SUB(add A,K, add C,K) -> SUB(A,C)
+ // Only safe if the arithmetic result is unused, since we only
+ // care about flags for EQ/NE.
+
+ // TODO: Can we do this for other comparions like 31 ^ A > 31 ^ B ?
+ if ((CC == X86::COND_E || CC == X86::COND_NE) &&
+ EFLAGS.getOpcode() == X86ISD::SUB &&
+ !EFLAGS.getNode()->hasAnyUseOfValue(0)) {
+ using namespace llvm::SDPatternMatch;
+ SDValue LHS = EFLAGS.getOperand(0);
+ SDValue RHS = EFLAGS.getOperand(1);
+ SDValue A, B, C;
+
+ // (xor A, B) - (xor C, B) -> A - C
+ if (sd_match(LHS, m_Xor(m_Value(A), m_Value(B))) &&
+ sd_match(RHS, m_Xor(m_Value(C), m_Specific(B)))) {
+ DAG.UpdateNodeOperands(EFLAGS.getNode(), A, C);
+ return SDValue(EFLAGS.getNode(), 1);
+ }
+ }
+
if (CC == X86::COND_B)
if (SDValue Flags = combineCarryThroughADD(EFLAGS, DAG))
return Flags;
diff --git a/llvm/test/CodeGen/X86/ctlz.ll b/llvm/test/CodeGen/X86/ctlz.ll
index 41fd73d9df656..43b654caee9f9 100644
--- a/llvm/test/CodeGen/X86/ctlz.ll
+++ b/llvm/test/CodeGen/X86/ctlz.ll
@@ -1339,9 +1339,7 @@ define i32 @bsr_eq(i32 %a, i32 %b) {
; X86-LABEL: bsr_eq:
; X86: # %bb.0:
; X86-NEXT: bsrl {{[0-9]+}}(%esp), %ecx
-; X86-NEXT: xorl $31, %ecx
; X86-NEXT: bsrl {{[0-9]+}}(%esp), %edx
-; X86-NEXT: xorl $31, %edx
; X86-NEXT: xorl %eax, %eax
; X86-NEXT: cmpl %edx, %ecx
; X86-NEXT: sete %al
@@ -1350,9 +1348,7 @@ define i32 @bsr_eq(i32 %a, i32 %b) {
; X64-LABEL: bsr_eq:
; X64: # %bb.0:
; X64-NEXT: bsrl %edi, %ecx
-; X64-NEXT: xorl $31, %ecx
; X64-NEXT: bsrl %esi, %edx
-; X64-NEXT: xorl $31, %edx
; X64-NEXT: xorl %eax, %eax
; X64-NEXT: cmpl %edx, %ecx
; X64-NEXT: sete %al
More information about the llvm-commits
mailing list