[PATCH] D113948: [DAGCombiner][X86] Prevent unfoldMaskedMerge from creating an AND with two inverted inputs.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 15 16:52:41 PST 2021
craig.topper updated this revision to Diff 387443.
craig.topper added a comment.
Handle the case where M is a not and X is a constant.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113948/new/
https://reviews.llvm.org/D113948
Files:
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
llvm/test/CodeGen/X86/unfold-masked-merge-scalar-variablemask.ll
Index: llvm/test/CodeGen/X86/unfold-masked-merge-scalar-variablemask.ll
===================================================================
--- llvm/test/CodeGen/X86/unfold-masked-merge-scalar-variablemask.ll
+++ llvm/test/CodeGen/X86/unfold-masked-merge-scalar-variablemask.ll
@@ -705,10 +705,9 @@
;
; CHECK-BMI-LABEL: in_constant_varx_42_invmask:
; CHECK-BMI: # %bb.0:
-; CHECK-BMI-NEXT: notl %edx
-; CHECK-BMI-NEXT: andnl %edx, %edi, %eax
-; CHECK-BMI-NEXT: orl $42, %edx
-; CHECK-BMI-NEXT: andnl %edx, %eax, %eax
+; CHECK-BMI-NEXT: andnl %edi, %edx, %eax
+; CHECK-BMI-NEXT: andl $42, %edx
+; CHECK-BMI-NEXT: orl %edx, %eax
; CHECK-BMI-NEXT: retq
%notmask = xor i32 %mask, -1
%n0 = xor i32 %x, 42 ; %x
@@ -879,11 +878,9 @@
;
; CHECK-BMI-LABEL: in_constant_42_vary_invmask:
; CHECK-BMI: # %bb.0:
-; CHECK-BMI-NEXT: movl %edx, %eax
-; CHECK-BMI-NEXT: andl %edx, %esi
-; CHECK-BMI-NEXT: notl %eax
-; CHECK-BMI-NEXT: andl $42, %eax
-; CHECK-BMI-NEXT: orl %esi, %eax
+; CHECK-BMI-NEXT: andnl %edx, %esi, %eax
+; CHECK-BMI-NEXT: orl $42, %edx
+; CHECK-BMI-NEXT: andnl %edx, %eax, %eax
; CHECK-BMI-NEXT: retq
%notmask = xor i32 %mask, -1
%n0 = xor i32 42, %y ; %x
Index: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -7778,8 +7778,9 @@
SDLoc DL(N);
- // If Y is a constant, check that 'andn' works with immediates.
- if (!TLI.hasAndNot(Y)) {
+ // If Y is a constant, check that 'andn' works with immediates. Unless M is
+ // a bitwise not that would already allow ANDN to be used.
+ if (!TLI.hasAndNot(Y) && !isBitwiseNot(M)) {
assert(TLI.hasAndNot(X) && "Only mask is a variable? Unreachable.");
// If not, we need to do a bit more work to make sure andn is still used.
SDValue NotX = DAG.getNOT(DL, X, VT);
@@ -7789,6 +7790,19 @@
return DAG.getNode(ISD::AND, DL, VT, NotLHS, RHS);
}
+ // If X is a constant and M is a bitwise not, check that 'andn' works with
+ // immediates.
+ if (!TLI.hasAndNot(X) && isBitwiseNot(M)) {
+ assert(TLI.hasAndNot(Y) && "Only mask is a variable? Unreachable.");
+ // If not, we need to do a bit more work to make sure andn is still used.
+ SDValue NotM = M.getOperand(0);
+ SDValue LHS = DAG.getNode(ISD::OR, DL, VT, X, NotM);
+ SDValue NotY = DAG.getNOT(DL, Y, VT);
+ SDValue RHS = DAG.getNode(ISD::AND, DL, VT, NotM, NotY);
+ SDValue NotRHS = DAG.getNOT(DL, RHS, VT);
+ return DAG.getNode(ISD::AND, DL, VT, LHS, NotRHS);
+ }
+
SDValue LHS = DAG.getNode(ISD::AND, DL, VT, X, M);
SDValue NotM = DAG.getNOT(DL, M, VT);
SDValue RHS = DAG.getNode(ISD::AND, DL, VT, Y, NotM);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113948.387443.patch
Type: text/x-patch
Size: 2830 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211116/e9f47ee7/attachment.bin>
More information about the llvm-commits
mailing list