1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

Revert "[X86] Fix lowering to illegal type in LowerINSERT_VECTOR_ELT"

This reverts commit 6ff73efea94621e74642e4d7a15cc86a5fb6d411.
This commit is contained in:
Xiang1 Zhang 2021-07-28 08:09:20 +08:00
parent 115164b68b
commit 5d447ad589
2 changed files with 14 additions and 576 deletions

View File

@ -18970,9 +18970,6 @@ SDValue X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
MVT IdxSVT = MVT::getIntegerVT(EltSizeInBits);
MVT IdxVT = MVT::getVectorVT(IdxSVT, NumElts);
if (!isTypeLegal(IdxSVT) || !isTypeLegal(IdxVT))
return SDValue();
SDValue IdxExt = DAG.getZExtOrTrunc(N2, dl, IdxSVT);
SDValue IdxSplat = DAG.getSplatBuildVector(IdxVT, dl, IdxExt);
SDValue EltSplat = DAG.getSplatBuildVector(VT, dl, N1);

View File

@ -5,12 +5,11 @@
; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx2 | FileCheck %s --check-prefixes=ALL,AVX,AVX1OR2,AVX2
; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx512f,+avx512vl | FileCheck %s --check-prefixes=ALL,AVX,AVX512,AVX512F
; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx512bw,+avx512vl | FileCheck %s --check-prefixes=ALL,AVX,AVX512,AVX512BW
; RUN: llc < %s -mtriple=i686-- -mattr=+avx2 | FileCheck %s --check-prefixes=ALL,X86AVX2
define <16 x i8> @undef_index(i8 %x) nounwind {
; ALL-LABEL: undef_index:
; ALL: # %bb.0:
; ALL-NEXT: ret{{[l|q]}}
; ALL-NEXT: retq
%ins = insertelement <16 x i8> undef, i8 %x, i64 undef
ret <16 x i8> %ins
}
@ -18,7 +17,7 @@ define <16 x i8> @undef_index(i8 %x) nounwind {
define <16 x i8> @undef_scalar(<16 x i8> %x, i32 %index) nounwind {
; ALL-LABEL: undef_scalar:
; ALL: # %bb.0:
; ALL-NEXT: ret{{[l|q]}}
; ALL-NEXT: retq
%ins = insertelement <16 x i8> %x, i8 undef, i32 %index
ret <16 x i8> %ins
}
@ -66,11 +65,6 @@ define <16 x i8> @arg_i8_v16i8_undef(i8 %x, i32 %y) nounwind {
; AVX512BW: # %bb.0:
; AVX512BW-NEXT: vpbroadcastb %edi, %xmm0
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i8_v16i8_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vpbroadcastb {{[0-9]+}}(%esp), %xmm0
; X86AVX2-NEXT: retl
%ins = insertelement <16 x i8> undef, i8 %x, i32 %y
ret <16 x i8> %ins
}
@ -106,11 +100,6 @@ define <8 x i16> @arg_i16_v8i16_undef(i16 %x, i32 %y) nounwind {
; AVX512BW: # %bb.0:
; AVX512BW-NEXT: vpbroadcastw %edi, %xmm0
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i16_v8i16_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vpbroadcastw {{[0-9]+}}(%esp), %xmm0
; X86AVX2-NEXT: retl
%ins = insertelement <8 x i16> undef, i16 %x, i32 %y
ret <8 x i16> %ins
}
@ -138,11 +127,6 @@ define <4 x i32> @arg_i32_v4i32_undef(i32 %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastd %edi, %xmm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i32_v4i32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vbroadcastss {{[0-9]+}}(%esp), %xmm0
; X86AVX2-NEXT: retl
%ins = insertelement <4 x i32> undef, i32 %x, i32 %y
ret <4 x i32> %ins
}
@ -170,11 +154,6 @@ define <2 x i64> @arg_i64_v2i64_undef(i64 %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastq %rdi, %xmm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i64_v2i64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vmovddup {{.*#+}} xmm0 = mem[0,0]
; X86AVX2-NEXT: retl
%ins = insertelement <2 x i64> undef, i64 %x, i32 %y
ret <2 x i64> %ins
}
@ -199,11 +178,6 @@ define <4 x float> @arg_f32_v4f32_undef(float %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vbroadcastss %xmm0, %xmm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f32_v4f32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vbroadcastss {{[0-9]+}}(%esp), %xmm0
; X86AVX2-NEXT: retl
%ins = insertelement <4 x float> undef, float %x, i32 %y
ret <4 x float> %ins
}
@ -223,11 +197,6 @@ define <2 x double> @arg_f64_v2f64_undef(double %x, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vmovddup {{.*#+}} xmm0 = xmm0[0,0]
; AVX-NEXT: retq
;
; X86AVX2-LABEL: arg_f64_v2f64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vmovddup {{.*#+}} xmm0 = mem[0,0]
; X86AVX2-NEXT: retl
%ins = insertelement <2 x double> undef, double %x, i32 %y
ret <2 x double> %ins
}
@ -267,12 +236,6 @@ define <16 x i8> @load_i8_v16i8_undef(i8* %p, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastb (%rdi), %xmm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i8_v16i8_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vpbroadcastb (%eax), %xmm0
; X86AVX2-NEXT: retl
%x = load i8, i8* %p
%ins = insertelement <16 x i8> undef, i8 %x, i32 %y
ret <16 x i8> %ins
@ -304,12 +267,6 @@ define <8 x i16> @load_i16_v8i16_undef(i16* %p, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastw (%rdi), %xmm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i16_v8i16_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vpbroadcastw (%eax), %xmm0
; X86AVX2-NEXT: retl
%x = load i16, i16* %p
%ins = insertelement <8 x i16> undef, i16 %x, i32 %y
ret <8 x i16> %ins
@ -326,12 +283,6 @@ define <4 x i32> @load_i32_v4i32_undef(i32* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vbroadcastss (%rdi), %xmm0
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_i32_v4i32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vbroadcastss (%eax), %xmm0
; X86AVX2-NEXT: retl
%x = load i32, i32* %p
%ins = insertelement <4 x i32> undef, i32 %x, i32 %y
ret <4 x i32> %ins
@ -348,12 +299,6 @@ define <2 x i64> @load_i64_v2i64_undef(i64* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vmovddup {{.*#+}} xmm0 = mem[0,0]
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_i64_v2i64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vmovddup {{.*#+}} xmm0 = mem[0,0]
; X86AVX2-NEXT: retl
%x = load i64, i64* %p
%ins = insertelement <2 x i64> undef, i64 %x, i32 %y
ret <2 x i64> %ins
@ -370,12 +315,6 @@ define <4 x float> @load_f32_v4f32_undef(float* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vbroadcastss (%rdi), %xmm0
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_f32_v4f32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vbroadcastss (%eax), %xmm0
; X86AVX2-NEXT: retl
%x = load float, float* %p
%ins = insertelement <4 x float> undef, float %x, i32 %y
ret <4 x float> %ins
@ -397,12 +336,6 @@ define <2 x double> @load_f64_v2f64_undef(double* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vmovddup {{.*#+}} xmm0 = mem[0,0]
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_f64_v2f64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vmovddup {{.*#+}} xmm0 = mem[0,0]
; X86AVX2-NEXT: retl
%x = load double, double* %p
%ins = insertelement <2 x double> undef, double %x, i32 %y
ret <2 x double> %ins
@ -442,11 +375,6 @@ define <32 x i8> @arg_i8_v32i8_undef(i8 %x, i32 %y) nounwind {
; AVX512BW: # %bb.0:
; AVX512BW-NEXT: vpbroadcastb %edi, %ymm0
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i8_v32i8_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vpbroadcastb {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <32 x i8> undef, i8 %x, i32 %y
ret <32 x i8> %ins
}
@ -485,11 +413,6 @@ define <16 x i16> @arg_i16_v16i16_undef(i16 %x, i32 %y) nounwind {
; AVX512BW: # %bb.0:
; AVX512BW-NEXT: vpbroadcastw %edi, %ymm0
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i16_v16i16_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vpbroadcastw {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <16 x i16> undef, i16 %x, i32 %y
ret <16 x i16> %ins
}
@ -521,11 +444,6 @@ define <8 x i32> @arg_i32_v8i32_undef(i32 %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastd %edi, %ymm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i32_v8i32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vbroadcastss {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <8 x i32> undef, i32 %x, i32 %y
ret <8 x i32> %ins
}
@ -557,11 +475,6 @@ define <4 x i64> @arg_i64_v4i64_undef(i64 %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastq %rdi, %ymm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i64_v4i64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vbroadcastsd {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <4 x i64> undef, i64 %x, i32 %y
ret <4 x i64> %ins
}
@ -591,11 +504,6 @@ define <8 x float> @arg_f32_v8f32_undef(float %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vbroadcastss %xmm0, %ymm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f32_v8f32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vbroadcastss {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <8 x float> undef, float %x, i32 %y
ret <8 x float> %ins
}
@ -625,11 +533,6 @@ define <4 x double> @arg_f64_v4f64_undef(double %x, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vbroadcastsd %xmm0, %ymm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f64_v4f64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vbroadcastsd {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <4 x double> undef, double %x, i32 %y
ret <4 x double> %ins
}
@ -663,12 +566,6 @@ define <32 x i8> @load_i8_v32i8_undef(i8* %p, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastb (%rdi), %ymm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i8_v32i8_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vpbroadcastb (%eax), %ymm0
; X86AVX2-NEXT: retl
%x = load i8, i8* %p
%ins = insertelement <32 x i8> undef, i8 %x, i32 %y
ret <32 x i8> %ins
@ -703,12 +600,6 @@ define <16 x i16> @load_i16_v16i16_undef(i16* %p, i32 %y) nounwind {
; AVX512: # %bb.0:
; AVX512-NEXT: vpbroadcastw (%rdi), %ymm0
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i16_v16i16_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vpbroadcastw (%eax), %ymm0
; X86AVX2-NEXT: retl
%x = load i16, i16* %p
%ins = insertelement <16 x i16> undef, i16 %x, i32 %y
ret <16 x i16> %ins
@ -729,12 +620,6 @@ define <8 x i32> @load_i32_v8i32_undef(i32* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vbroadcastss (%rdi), %ymm0
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_i32_v8i32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vbroadcastss (%eax), %ymm0
; X86AVX2-NEXT: retl
%x = load i32, i32* %p
%ins = insertelement <8 x i32> undef, i32 %x, i32 %y
ret <8 x i32> %ins
@ -755,12 +640,6 @@ define <4 x i64> @load_i64_v4i64_undef(i64* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vbroadcastsd (%rdi), %ymm0
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_i64_v4i64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vbroadcastsd (%eax), %ymm0
; X86AVX2-NEXT: retl
%x = load i64, i64* %p
%ins = insertelement <4 x i64> undef, i64 %x, i32 %y
ret <4 x i64> %ins
@ -781,12 +660,6 @@ define <8 x float> @load_f32_v8f32_undef(float* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vbroadcastss (%rdi), %ymm0
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_f32_v8f32_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vbroadcastss (%eax), %ymm0
; X86AVX2-NEXT: retl
%x = load float, float* %p
%ins = insertelement <8 x float> undef, float %x, i32 %y
ret <8 x float> %ins
@ -807,12 +680,6 @@ define <4 x double> @load_f64_v4f64_undef(double* %p, i32 %y) nounwind {
; AVX: # %bb.0:
; AVX-NEXT: vbroadcastsd (%rdi), %ymm0
; AVX-NEXT: retq
;
; X86AVX2-LABEL: load_f64_v4f64_undef:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vbroadcastsd (%eax), %ymm0
; X86AVX2-NEXT: retl
%x = load double, double* %p
%ins = insertelement <4 x double> undef, double %x, i32 %y
ret <4 x double> %ins
@ -856,22 +723,6 @@ define <16 x i8> @arg_i8_v16i8(<16 x i8> %v, i8 %x, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqb {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512BW-NEXT: vpbroadcastb %edi, %xmm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i8_v16i8:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $15, %eax
; X86AVX2-NEXT: movb 8(%ebp), %cl
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: movb %cl, (%esp,%eax)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <16 x i8> %v, i8 %x, i32 %y
ret <16 x i8> %ins
}
@ -910,22 +761,6 @@ define <8 x i16> @arg_i16_v8i16(<8 x i16> %v, i16 %x, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqw {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512BW-NEXT: vpbroadcastw %edi, %xmm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i16_v8i16:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $7, %eax
; X86AVX2-NEXT: movzwl 8(%ebp), %ecx
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: movw %cx, (%esp,%eax,2)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <8 x i16> %v, i16 %x, i32 %y
ret <8 x i16> %ins
}
@ -955,22 +790,6 @@ define <4 x i32> @arg_i32_v4i32(<4 x i32> %v, i32 %x, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512-NEXT: vpbroadcastd %edi, %xmm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i32_v4i32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $3, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: movl %ecx, (%esp,%eax,4)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <4 x i32> %v, i32 %x, i32 %y
ret <4 x i32> %ins
}
@ -1001,31 +820,6 @@ define <2 x i64> @arg_i64_v2i64(<2 x i64> %v, i64 %x, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512-NEXT: vpbroadcastq %rdi, %xmm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i64_v2i64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: pushl %esi
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $48, %esp
; X86AVX2-NEXT: movl 8(%ebp), %eax
; X86AVX2-NEXT: movl 12(%ebp), %ecx
; X86AVX2-NEXT: movl 16(%ebp), %edx
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: leal (%edx,%edx), %esi
; X86AVX2-NEXT: andl $3, %esi
; X86AVX2-NEXT: movl %eax, (%esp,%esi,4)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: vmovaps %xmm0, {{[0-9]+}}(%esp)
; X86AVX2-NEXT: leal 1(%edx,%edx), %eax
; X86AVX2-NEXT: andl $3, %eax
; X86AVX2-NEXT: movl %ecx, 16(%esp,%eax,4)
; X86AVX2-NEXT: vmovaps {{[0-9]+}}(%esp), %xmm0
; X86AVX2-NEXT: leal -4(%ebp), %esp
; X86AVX2-NEXT: popl %esi
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <2 x i64> %v, i64 %x, i32 %y
ret <2 x i64> %ins
}
@ -1075,14 +869,6 @@ define <4 x float> @arg_f32_v4f32(<4 x float> %v, float %x, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm2, %k1
; AVX512-NEXT: vbroadcastss %xmm1, %xmm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f32_v4f32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vpbroadcastd {{[0-9]+}}(%esp), %xmm1
; X86AVX2-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}, %xmm1, %xmm1
; X86AVX2-NEXT: vbroadcastss {{[0-9]+}}(%esp), %xmm2
; X86AVX2-NEXT: vblendvps %xmm1, %xmm2, %xmm0, %xmm0
; X86AVX2-NEXT: retl
%ins = insertelement <4 x float> %v, float %x, i32 %y
ret <4 x float> %ins
}
@ -1136,22 +922,6 @@ define <2 x double> @arg_f64_v2f64(<2 x double> %v, double %x, i32 %y) nounwind
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm2, %k1
; AVX512-NEXT: vmovddup {{.*#+}} xmm0 {%k1} = xmm1[0,0]
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f64_v2f64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 16(%ebp), %eax
; X86AVX2-NEXT: andl $1, %eax
; X86AVX2-NEXT: vmovsd {{.*#+}} xmm1 = mem[0],zero
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: vmovsd %xmm1, (%esp,%eax,8)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <2 x double> %v, double %x, i32 %y
ret <2 x double> %ins
}
@ -1193,23 +963,6 @@ define <16 x i8> @load_i8_v16i8(<16 x i8> %v, i8* %p, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqb {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512BW-NEXT: vpbroadcastb (%rdi), %xmm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: load_i8_v16i8:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $15, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movb (%ecx), %cl
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: movb %cl, (%esp,%eax)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i8, i8* %p
%ins = insertelement <16 x i8> %v, i8 %x, i32 %y
ret <16 x i8> %ins
@ -1252,23 +1005,6 @@ define <8 x i16> @load_i16_v8i16(<8 x i16> %v, i16* %p, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqw {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512BW-NEXT: vpbroadcastw (%rdi), %xmm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: load_i16_v8i16:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $7, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movzwl (%ecx), %ecx
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: movw %cx, (%esp,%eax,2)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i16, i16* %p
%ins = insertelement <8 x i16> %v, i16 %x, i32 %y
ret <8 x i16> %ins
@ -1301,23 +1037,6 @@ define <4 x i32> @load_i32_v4i32(<4 x i32> %v, i32* %p, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512-NEXT: vpbroadcastd (%rdi), %xmm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i32_v4i32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $3, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movl (%ecx), %ecx
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: movl %ecx, (%esp,%eax,4)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i32, i32* %p
%ins = insertelement <4 x i32> %v, i32 %x, i32 %y
ret <4 x i32> %ins
@ -1351,32 +1070,6 @@ define <2 x i64> @load_i64_v2i64(<2 x i64> %v, i64* %p, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512-NEXT: vpbroadcastq (%rdi), %xmm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i64_v2i64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: pushl %esi
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $48, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movl (%ecx), %edx
; X86AVX2-NEXT: movl 4(%ecx), %ecx
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: leal (%eax,%eax), %esi
; X86AVX2-NEXT: andl $3, %esi
; X86AVX2-NEXT: movl %edx, (%esp,%esi,4)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: vmovaps %xmm0, {{[0-9]+}}(%esp)
; X86AVX2-NEXT: leal 1(%eax,%eax), %eax
; X86AVX2-NEXT: andl $3, %eax
; X86AVX2-NEXT: movl %ecx, 16(%esp,%eax,4)
; X86AVX2-NEXT: vmovaps {{[0-9]+}}(%esp), %xmm0
; X86AVX2-NEXT: leal -4(%ebp), %esp
; X86AVX2-NEXT: popl %esi
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i64, i64* %p
%ins = insertelement <2 x i64> %v, i64 %x, i32 %y
ret <2 x i64> %ins
@ -1429,15 +1122,6 @@ define <4 x float> @load_f32_v4f32(<4 x float> %v, float* %p, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512-NEXT: vbroadcastss (%rdi), %xmm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_f32_v4f32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vpbroadcastd {{[0-9]+}}(%esp), %xmm1
; X86AVX2-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}, %xmm1, %xmm1
; X86AVX2-NEXT: vbroadcastss (%eax), %xmm2
; X86AVX2-NEXT: vblendvps %xmm1, %xmm2, %xmm0, %xmm0
; X86AVX2-NEXT: retl
%x = load float, float* %p
%ins = insertelement <4 x float> %v, float %x, i32 %y
ret <4 x float> %ins
@ -1493,23 +1177,6 @@ define <2 x double> @load_f64_v2f64(<2 x double> %v, double* %p, i32 %y) nounwin
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1, %k1
; AVX512-NEXT: vmovddup {{.*#+}} xmm0 {%k1} = mem[0,0]
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_f64_v2f64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-16, %esp
; X86AVX2-NEXT: subl $32, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $1, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: vmovsd {{.*#+}} xmm1 = mem[0],zero
; X86AVX2-NEXT: vmovaps %xmm0, (%esp)
; X86AVX2-NEXT: vmovsd %xmm1, (%esp,%eax,8)
; X86AVX2-NEXT: vmovaps (%esp), %xmm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load double, double* %p
%ins = insertelement <2 x double> %v, double %x, i32 %y
ret <2 x double> %ins
@ -1563,22 +1230,6 @@ define <32 x i8> @arg_i8_v32i8(<32 x i8> %v, i8 %x, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqb {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512BW-NEXT: vpbroadcastb %edi, %ymm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i8_v32i8:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $31, %eax
; X86AVX2-NEXT: movb 8(%ebp), %cl
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: movb %cl, (%esp,%eax)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <32 x i8> %v, i8 %x, i32 %y
ret <32 x i8> %ins
}
@ -1631,22 +1282,6 @@ define <16 x i16> @arg_i16_v16i16(<16 x i16> %v, i16 %x, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqw {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512BW-NEXT: vpbroadcastw %edi, %ymm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: arg_i16_v16i16:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $15, %eax
; X86AVX2-NEXT: movzwl 8(%ebp), %ecx
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: movw %cx, (%esp,%eax,2)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <16 x i16> %v, i16 %x, i32 %y
ret <16 x i16> %ins
}
@ -1684,22 +1319,6 @@ define <8 x i32> @arg_i32_v8i32(<8 x i32> %v, i32 %x, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512-NEXT: vpbroadcastd %edi, %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i32_v8i32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $7, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: movl %ecx, (%esp,%eax,4)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <8 x i32> %v, i32 %x, i32 %y
ret <8 x i32> %ins
}
@ -1738,31 +1357,6 @@ define <4 x i64> @arg_i64_v4i64(<4 x i64> %v, i64 %x, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512-NEXT: vpbroadcastq %rdi, %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_i64_v4i64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: pushl %esi
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $96, %esp
; X86AVX2-NEXT: movl 8(%ebp), %eax
; X86AVX2-NEXT: movl 12(%ebp), %ecx
; X86AVX2-NEXT: movl 16(%ebp), %edx
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: leal (%edx,%edx), %esi
; X86AVX2-NEXT: andl $7, %esi
; X86AVX2-NEXT: movl %eax, (%esp,%esi,4)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: vmovaps %ymm0, {{[0-9]+}}(%esp)
; X86AVX2-NEXT: leal 1(%edx,%edx), %eax
; X86AVX2-NEXT: andl $7, %eax
; X86AVX2-NEXT: movl %ecx, 32(%esp,%eax,4)
; X86AVX2-NEXT: vmovaps {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: leal -4(%ebp), %esp
; X86AVX2-NEXT: popl %esi
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <4 x i64> %v, i64 %x, i32 %y
ret <4 x i64> %ins
}
@ -1806,14 +1400,6 @@ define <8 x float> @arg_f32_v8f32(<8 x float> %v, float %x, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm2, %k1
; AVX512-NEXT: vbroadcastss %xmm1, %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f32_v8f32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: vpbroadcastd {{[0-9]+}}(%esp), %ymm1
; X86AVX2-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}, %ymm1, %ymm1
; X86AVX2-NEXT: vbroadcastss {{[0-9]+}}(%esp), %ymm2
; X86AVX2-NEXT: vblendvps %ymm1, %ymm2, %ymm0, %ymm0
; X86AVX2-NEXT: retl
%ins = insertelement <8 x float> %v, float %x, i32 %y
ret <8 x float> %ins
}
@ -1860,22 +1446,6 @@ define <4 x double> @arg_f64_v4f64(<4 x double> %v, double %x, i32 %y) nounwind
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm2, %k1
; AVX512-NEXT: vbroadcastsd %xmm1, %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: arg_f64_v4f64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 16(%ebp), %eax
; X86AVX2-NEXT: andl $3, %eax
; X86AVX2-NEXT: vmovsd {{.*#+}} xmm1 = mem[0],zero
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: vmovsd %xmm1, (%esp,%eax,8)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%ins = insertelement <4 x double> %v, double %x, i32 %y
ret <4 x double> %ins
}
@ -1931,23 +1501,6 @@ define <32 x i8> @load_i8_v32i8(<32 x i8> %v, i8* %p, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqb {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512BW-NEXT: vpbroadcastb (%rdi), %ymm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: load_i8_v32i8:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $31, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movb (%ecx), %cl
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: movb %cl, (%esp,%eax)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i8, i8* %p
%ins = insertelement <32 x i8> %v, i8 %x, i32 %y
ret <32 x i8> %ins
@ -2004,23 +1557,6 @@ define <16 x i16> @load_i16_v16i16(<16 x i16> %v, i16* %p, i32 %y) nounwind {
; AVX512BW-NEXT: vpcmpeqw {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512BW-NEXT: vpbroadcastw (%rdi), %ymm0 {%k1}
; AVX512BW-NEXT: retq
;
; X86AVX2-LABEL: load_i16_v16i16:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $15, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movzwl (%ecx), %ecx
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: movw %cx, (%esp,%eax,2)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i16, i16* %p
%ins = insertelement <16 x i16> %v, i16 %x, i32 %y
ret <16 x i16> %ins
@ -2061,23 +1597,6 @@ define <8 x i32> @load_i32_v8i32(<8 x i32> %v, i32* %p, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512-NEXT: vpbroadcastd (%rdi), %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i32_v8i32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $7, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movl (%ecx), %ecx
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: movl %ecx, (%esp,%eax,4)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i32, i32* %p
%ins = insertelement <8 x i32> %v, i32 %x, i32 %y
ret <8 x i32> %ins
@ -2119,32 +1638,6 @@ define <4 x i64> @load_i64_v4i64(<4 x i64> %v, i64* %p, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512-NEXT: vpbroadcastq (%rdi), %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_i64_v4i64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: pushl %esi
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $96, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: movl (%ecx), %edx
; X86AVX2-NEXT: movl 4(%ecx), %ecx
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: leal (%eax,%eax), %esi
; X86AVX2-NEXT: andl $7, %esi
; X86AVX2-NEXT: movl %edx, (%esp,%esi,4)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: vmovaps %ymm0, {{[0-9]+}}(%esp)
; X86AVX2-NEXT: leal 1(%eax,%eax), %eax
; X86AVX2-NEXT: andl $7, %eax
; X86AVX2-NEXT: movl %ecx, 32(%esp,%eax,4)
; X86AVX2-NEXT: vmovaps {{[0-9]+}}(%esp), %ymm0
; X86AVX2-NEXT: leal -4(%ebp), %esp
; X86AVX2-NEXT: popl %esi
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load i64, i64* %p
%ins = insertelement <4 x i64> %v, i64 %x, i32 %y
ret <4 x i64> %ins
@ -2189,15 +1682,6 @@ define <8 x float> @load_f32_v8f32(<8 x float> %v, float* %p, i32 %y) nounwind {
; AVX512-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512-NEXT: vbroadcastss (%rdi), %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_f32_v8f32:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: vpbroadcastd {{[0-9]+}}(%esp), %ymm1
; X86AVX2-NEXT: vpcmpeqd {{\.?LCPI[0-9]+_[0-9]+}}, %ymm1, %ymm1
; X86AVX2-NEXT: vbroadcastss (%eax), %ymm2
; X86AVX2-NEXT: vblendvps %ymm1, %ymm2, %ymm0, %ymm0
; X86AVX2-NEXT: retl
%x = load float, float* %p
%ins = insertelement <8 x float> %v, float %x, i32 %y
ret <8 x float> %ins
@ -2245,23 +1729,6 @@ define <4 x double> @load_f64_v4f64(<4 x double> %v, double* %p, i32 %y) nounwin
; AVX512-NEXT: vpcmpeqq {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm1, %k1
; AVX512-NEXT: vbroadcastsd (%rdi), %ymm0 {%k1}
; AVX512-NEXT: retq
;
; X86AVX2-LABEL: load_f64_v4f64:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: pushl %ebp
; X86AVX2-NEXT: movl %esp, %ebp
; X86AVX2-NEXT: andl $-32, %esp
; X86AVX2-NEXT: subl $64, %esp
; X86AVX2-NEXT: movl 12(%ebp), %eax
; X86AVX2-NEXT: andl $3, %eax
; X86AVX2-NEXT: movl 8(%ebp), %ecx
; X86AVX2-NEXT: vmovsd {{.*#+}} xmm1 = mem[0],zero
; X86AVX2-NEXT: vmovaps %ymm0, (%esp)
; X86AVX2-NEXT: vmovsd %xmm1, (%esp,%eax,8)
; X86AVX2-NEXT: vmovaps (%esp), %ymm0
; X86AVX2-NEXT: movl %ebp, %esp
; X86AVX2-NEXT: popl %ebp
; X86AVX2-NEXT: retl
%x = load double, double* %p
%ins = insertelement <4 x double> %v, double %x, i32 %y
ret <4 x double> %ins
@ -2270,44 +1737,18 @@ define <4 x double> @load_f64_v4f64(<4 x double> %v, double* %p, i32 %y) nounwin
; Don't die trying to insert to an invalid index.
define i32 @PR44139(<16 x i64>* %p) {
; SSE-LABEL: PR44139:
; SSE: # %bb.0:
; SSE-NEXT: movl (%rdi), %eax
; SSE-NEXT: leal 2147483647(%rax), %ecx
; SSE-NEXT: testl %eax, %eax
; SSE-NEXT: cmovnsl %eax, %ecx
; SSE-NEXT: andl $-2147483648, %ecx # imm = 0x80000000
; SSE-NEXT: addl %eax, %ecx
; SSE-NEXT: # kill: def $eax killed $eax killed $rax
; SSE-NEXT: xorl %edx, %edx
; SSE-NEXT: divl %ecx
; SSE-NEXT: retq
;
; AVX-LABEL: PR44139:
; AVX: # %bb.0:
; AVX-NEXT: movl (%rdi), %eax
; AVX-NEXT: leal 2147483647(%rax), %ecx
; AVX-NEXT: testl %eax, %eax
; AVX-NEXT: cmovnsl %eax, %ecx
; AVX-NEXT: andl $-2147483648, %ecx # imm = 0x80000000
; AVX-NEXT: addl %eax, %ecx
; AVX-NEXT: # kill: def $eax killed $eax killed $rax
; AVX-NEXT: xorl %edx, %edx
; AVX-NEXT: divl %ecx
; AVX-NEXT: retq
;
; X86AVX2-LABEL: PR44139:
; X86AVX2: # %bb.0:
; X86AVX2-NEXT: movl {{[0-9]+}}(%esp), %eax
; X86AVX2-NEXT: movl (%eax), %eax
; X86AVX2-NEXT: leal 2147483647(%eax), %ecx
; X86AVX2-NEXT: testl %eax, %eax
; X86AVX2-NEXT: cmovnsl %eax, %ecx
; X86AVX2-NEXT: andl $-2147483648, %ecx # imm = 0x80000000
; X86AVX2-NEXT: addl %eax, %ecx
; X86AVX2-NEXT: xorl %edx, %edx
; X86AVX2-NEXT: divl %ecx
; X86AVX2-NEXT: retl
; ALL-LABEL: PR44139:
; ALL: # %bb.0:
; ALL-NEXT: movl (%rdi), %eax
; ALL-NEXT: leal 2147483647(%rax), %ecx
; ALL-NEXT: testl %eax, %eax
; ALL-NEXT: cmovnsl %eax, %ecx
; ALL-NEXT: andl $-2147483648, %ecx # imm = 0x80000000
; ALL-NEXT: addl %eax, %ecx
; ALL-NEXT: # kill: def $eax killed $eax killed $rax
; ALL-NEXT: xorl %edx, %edx
; ALL-NEXT: divl %ecx
; ALL-NEXT: retq
%L = load <16 x i64>, <16 x i64>* %p
%E1 = extractelement <16 x i64> %L, i64 0
%tempvector = insertelement <16 x i64> undef, i64 %E1, i32 0