[llvm] [InstCombine] Remove unnecessary one-use-check (PR #66419)
Marc Auberer via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 14 12:26:42 PDT 2023
https://github.com/marcauberer updated https://github.com/llvm/llvm-project/pull/66419:
>From 52bb23bb80390b644045ccd9ccad318544f3a2e5 Mon Sep 17 00:00:00 2001
From: Marc Auberer <marc.auberer at chillibits.com>
Date: Thu, 14 Sep 2023 21:06:07 +0200
Subject: [PATCH] [InstCombine] Remove unnecessary one-use-check
Alive2: https://alive2.llvm.org/ce/z/qEkUEf
Original patch: https://reviews.llvm.org/D159380
---
.../Transforms/InstCombine/InstCombineAndOrXor.cpp | 6 ++----
llvm/test/Transforms/InstCombine/or-xor-xor.ll | 14 ++++++--------
2 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
index d8c2827d25831d3..858df7bb6b12f2c 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
@@ -3646,10 +3646,8 @@ Instruction *InstCombinerImpl::visitOr(BinaryOperator &I) {
// ((A & B) ^ B) | ((A & B) ^ A) -> A ^ B
// (B ^ (A & B)) | (A ^ (A & B)) -> A ^ B
const auto TryXorOpt = [&](Value *Lhs, Value *Rhs) -> Instruction * {
- if (match(Lhs, m_OneUse(m_c_Xor(m_And(m_Value(A), m_Value(B)),
- m_Deferred(A)))) &&
- match(Rhs, m_OneUse(m_c_Xor(m_And(m_Specific(A), m_Specific(B)),
- m_Deferred(B))))) {
+ if (match(Lhs, m_c_Xor(m_And(m_Value(A), m_Value(B)), m_Deferred(A))) &&
+ match(Rhs, m_c_Xor(m_And(m_Specific(A), m_Specific(B)), m_Deferred(B)))) {
return BinaryOperator::CreateXor(A, B);
}
return nullptr;
diff --git a/llvm/test/Transforms/InstCombine/or-xor-xor.ll b/llvm/test/Transforms/InstCombine/or-xor-xor.ll
index 3f0066d7f00b1dc..327d5f8d6220a5d 100644
--- a/llvm/test/Transforms/InstCombine/or-xor-xor.ll
+++ b/llvm/test/Transforms/InstCombine/or-xor-xor.ll
@@ -97,11 +97,10 @@ define i3 @or_xor_xor_normal_multiple_uses_and(i3 %a, i3 %b) {
define i32 @or_xor_xor_negative_multiple_uses_xor1(i32 %a, i32 %b) {
; CHECK-LABEL: @or_xor_xor_negative_multiple_uses_xor1(
-; CHECK-NEXT: [[AND:%.*]] = and i32 [[A:%.*]], [[B:%.*]]
-; CHECK-NEXT: [[XOR1:%.*]] = xor i32 [[AND]], [[B]]
+; CHECK-NEXT: [[AND1:%.*]] = xor i32 [[A:%.*]], -1
+; CHECK-NEXT: [[XOR1:%.*]] = and i32 [[AND1]], [[B:%.*]]
; CHECK-NEXT: call void @use.i32(i32 [[XOR1]])
-; CHECK-NEXT: [[XOR2:%.*]] = xor i32 [[AND]], [[A]]
-; CHECK-NEXT: [[OR:%.*]] = or i32 [[XOR1]], [[XOR2]]
+; CHECK-NEXT: [[OR:%.*]] = xor i32 [[A]], [[B]]
; CHECK-NEXT: ret i32 [[OR]]
;
%and = and i32 %a, %b
@@ -114,11 +113,10 @@ define i32 @or_xor_xor_negative_multiple_uses_xor1(i32 %a, i32 %b) {
define i5 @or_xor_xor_negative_multiple_uses_xor2(i5 %a, i5 %b) {
; CHECK-LABEL: @or_xor_xor_negative_multiple_uses_xor2(
-; CHECK-NEXT: [[AND:%.*]] = and i5 [[A:%.*]], [[B:%.*]]
-; CHECK-NEXT: [[XOR1:%.*]] = xor i5 [[AND]], [[B]]
-; CHECK-NEXT: [[XOR2:%.*]] = xor i5 [[AND]], [[A]]
+; CHECK-NEXT: [[A1:%.*]] = xor i5 [[B:%.*]], -1
+; CHECK-NEXT: [[XOR2:%.*]] = and i5 [[A1]], [[A:%.*]]
; CHECK-NEXT: call void @use.i5(i5 [[XOR2]])
-; CHECK-NEXT: [[OR:%.*]] = or i5 [[XOR1]], [[XOR2]]
+; CHECK-NEXT: [[OR:%.*]] = xor i5 [[A]], [[B]]
; CHECK-NEXT: ret i5 [[OR]]
;
%and = and i5 %a, %b
More information about the llvm-commits
mailing list