Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 26 additions & 10 deletions llvm/lib/Target/X86/X86ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58336,7 +58336,8 @@ static SDValue matchPMADDWD(SelectionDAG &DAG, SDNode *N,
// (extract_elt Mul, 3),
// (extract_elt Mul, 5),
// ...
// and identify Mul.
// and identify Mul. Mul must be either ISD::MUL, or can be ISD::SIGN_EXTEND
// in which case we add a trivial multiplication by 1.
SDValue Mul;
for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; i += 2) {
SDValue Op0L = Op0->getOperand(i), Op1L = Op1->getOperand(i),
Expand Down Expand Up @@ -58367,7 +58368,8 @@ static SDValue matchPMADDWD(SelectionDAG &DAG, SDNode *N,
// with 2X number of vector elements than the BUILD_VECTOR.
// Both extracts must be from same MUL.
Mul = Vec0L;
if (Mul.getOpcode() != ISD::MUL ||
if ((Mul.getOpcode() != ISD::MUL &&
Mul.getOpcode() != ISD::SIGN_EXTEND) ||
Mul.getValueType().getVectorNumElements() != 2 * e)
return SDValue();
}
Expand All @@ -58376,16 +58378,30 @@ static SDValue matchPMADDWD(SelectionDAG &DAG, SDNode *N,
return SDValue();
}

// Check if the Mul source can be safely shrunk.
ShrinkMode Mode;
if (!canReduceVMulWidth(Mul.getNode(), DAG, Mode) ||
Mode == ShrinkMode::MULU16)
return SDValue();

EVT TruncVT = EVT::getVectorVT(*DAG.getContext(), MVT::i16,
VT.getVectorNumElements() * 2);
SDValue N0 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, Mul.getOperand(0));
SDValue N1 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, Mul.getOperand(1));

SDValue N0, N1;
if (Mul.getOpcode() == ISD::MUL) {
// Check if the Mul source can be safely shrunk.
ShrinkMode Mode;
if (!canReduceVMulWidth(Mul.getNode(), DAG, Mode) ||
Mode == ShrinkMode::MULU16)
return SDValue();

N0 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, Mul.getOperand(0));
N1 = DAG.getNode(ISD::TRUNCATE, DL, TruncVT, Mul.getOperand(1));
} else {
assert(Mul.getOpcode() == ISD::SIGN_EXTEND);

// Add a trivial multiplication with 1 so that we can make use of VPMADDWD.
N0 = Mul.getOperand(0);

if (N0.getValueType() != TruncVT)
return SDValue();

N1 = DAG.getConstant(1, DL, TruncVT);
}

auto PMADDBuilder = [](SelectionDAG &DAG, const SDLoc &DL,
ArrayRef<SDValue> Ops) {
Expand Down
29 changes: 29 additions & 0 deletions llvm/test/CodeGen/X86/combine-pmadd.ll
Original file line number Diff line number Diff line change
Expand Up @@ -331,3 +331,32 @@ define i1 @pmaddwd_pcmpgt_infinite_loop() {
%8 = icmp eq i4 %7, 0
ret i1 %8
}

; If the shuffle matches, but there is no multiply, introduce a trivial multiply by 1.
define <8 x i32> @sext_pairwise_add(<16 x i16> %x) {
; SSE-LABEL: sext_pairwise_add:
; SSE: # %bb.0:
; SSE-NEXT: pmovsxbw {{.*#+}} xmm2 = [1,1,1,1,1,1,1,1]
; SSE-NEXT: pmaddwd %xmm2, %xmm0
; SSE-NEXT: pmaddwd %xmm2, %xmm1
; SSE-NEXT: retq
;
; AVX1-LABEL: sext_pairwise_add:
; AVX1: # %bb.0:
; AVX1-NEXT: vextractf128 $1, %ymm0, %xmm1
; AVX1-NEXT: vbroadcastss {{.*#+}} xmm2 = [1,1,1,1,1,1,1,1]
; AVX1-NEXT: vpmaddwd %xmm2, %xmm1, %xmm1
; AVX1-NEXT: vpmaddwd %xmm2, %xmm0, %xmm0
; AVX1-NEXT: vinsertf128 $1, %xmm1, %ymm0, %ymm0
; AVX1-NEXT: retq
;
; AVX2-LABEL: sext_pairwise_add:
; AVX2: # %bb.0:
; AVX2-NEXT: vpmaddwd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm0, %ymm0 # [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
; AVX2-NEXT: retq
%1 = sext <16 x i16> %x to <16 x i32>
%2 = shufflevector <16 x i32> %1, <16 x i32> poison, <8 x i32> <i32 0, i32 2, i32 4, i32 6, i32 8, i32 10, i32 12, i32 14>
%3 = shufflevector <16 x i32> %1, <16 x i32> poison, <8 x i32> <i32 1, i32 3, i32 5, i32 7, i32 9, i32 11, i32 13, i32 15>
%4 = add nsw <8 x i32> %2, %3
ret <8 x i32> %4
}
Loading