[PATCH] D42090: [DAGCombiner] Add a DAG combine to turn a splat build_vector where the splat elemnt is a bitcast from a vector type into a concat_vector
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 16 20:41:05 PST 2018
craig.topper updated this revision to Diff 130094.
craig.topper added a comment.
With context this time.
https://reviews.llvm.org/D42090
Files:
lib/CodeGen/SelectionDAG/DAGCombiner.cpp
test/CodeGen/X86/insertelement-shuffle.ll
Index: test/CodeGen/X86/insertelement-shuffle.ll
===================================================================
--- test/CodeGen/X86/insertelement-shuffle.ll
+++ test/CodeGen/X86/insertelement-shuffle.ll
@@ -97,17 +97,9 @@
define <8 x i64> @insert_subvector_into_undef(i32 %x0, i32 %x1) nounwind {
; X32_AVX256-LABEL: insert_subvector_into_undef:
; X32_AVX256: # %bb.0:
-; X32_AVX256-NEXT: pushl %ebp
-; X32_AVX256-NEXT: movl %esp, %ebp
-; X32_AVX256-NEXT: andl $-8, %esp
-; X32_AVX256-NEXT: subl $8, %esp
-; X32_AVX256-NEXT: vmovsd {{.*#+}} xmm0 = mem[0],zero
-; X32_AVX256-NEXT: vmovlps %xmm0, (%esp)
; X32_AVX256-NEXT: vmovsd {{.*#+}} xmm0 = mem[0],zero
; X32_AVX256-NEXT: vbroadcastsd %xmm0, %ymm0
; X32_AVX256-NEXT: vmovaps %ymm0, %ymm1
-; X32_AVX256-NEXT: movl %ebp, %esp
-; X32_AVX256-NEXT: popl %ebp
; X32_AVX256-NEXT: retl
;
; X64_AVX256-LABEL: insert_subvector_into_undef:
Index: lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -14947,6 +14947,22 @@
if (ISD::allOperandsUndef(N))
return DAG.getUNDEF(VT);
+ // If this is a splat of a bitcast from another vector, change to a
+ // concat_vector.
+ if (SDValue Splat = cast<BuildVectorSDNode>(N)->getSplatValue()) {
+ if (Splat.getOpcode() == ISD::BITCAST) {
+ EVT SrcVT = Splat.getOperand(0).getValueType();
+ if (SrcVT.isVector()) {
+ unsigned NumElts = N->getNumOperands() * SrcVT.getVectorNumElements();
+ EVT NewVT = EVT::getVectorVT(*DAG.getContext(),
+ SrcVT.getVectorElementType(), NumElts);
+ SmallVector<SDValue, 8> Ops(N->getNumOperands(), Splat.getOperand(0));
+ SDValue Concat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), NewVT, Ops);
+ return DAG.getBitcast(VT, Concat);
+ }
+ }
+ }
+
// Check if we can express BUILD VECTOR via subvector extract.
if (!LegalTypes && (N->getNumOperands() > 1)) {
SDValue Op0 = N->getOperand(0);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42090.130094.patch
Type: text/x-patch
Size: 2127 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180117/f8a5e728/attachment.bin>
More information about the llvm-commits
mailing list