2018-04-06 05:01:21 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
2019-04-29 04:04:08 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse2 | FileCheck %s --check-prefixes=SSE,SSE2
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse4.1 | FileCheck %s --check-prefixes=SSE,SSE41
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck %s --check-prefixes=AVX,AVX1,AVX1-SLOW
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx,+fast-hops | FileCheck %s --check-prefixes=AVX,AVX1,AVX1-FAST
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx2 | FileCheck %s --check-prefixes=AVX,AVX2
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx512f,+avx512bw | FileCheck %s --check-prefixes=AVX512,AVX512BW
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx512f,+avx512bw,+avx512vl | FileCheck %s --check-prefixes=AVX512,AVX512VL
|
2018-04-06 05:01:21 +08:00
|
|
|
|
|
|
|
;
|
|
|
|
; vXf32 (accum)
|
|
|
|
;
|
|
|
|
|
|
|
|
define float @test_v2f32(float %a0, <2 x float> %a1) {
|
|
|
|
; SSE2-LABEL: test_v2f32:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v2f32:
|
|
|
|
; SSE41: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v2f32:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v2f32:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm1, %xmm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v2f32:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v2f32:
|
|
|
|
; AVX512: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm0, %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v2f32(float %a0, <2 x float> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v4f32(float %a0, <4 x float> %a1) {
|
|
|
|
; SSE2-LABEL: test_v4f32:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm2
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm2 = xmm2[1],xmm1[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm2
|
|
|
|
; SSE2-NEXT: movaps %xmm2, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm2[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm2, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v4f32:
|
|
|
|
; SSE41: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm2
|
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm2 = xmm2[1],xmm1[1]
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm2
|
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm2[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm2, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v4f32:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v4f32:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v4f32:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v4f32:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
|
|
|
; AVX512-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v4f32(float %a0, <4 x float> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v8f32(float %a0, <8 x float> %a1) {
|
|
|
|
; SSE2-LABEL: test_v8f32:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: addps %xmm2, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm2
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm2 = xmm2[1],xmm1[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm2
|
|
|
|
; SSE2-NEXT: movaps %xmm2, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm2[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm2, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v8f32:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: addps %xmm2, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm2
|
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm2 = xmm2[1],xmm1[1]
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm2
|
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm2[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm2, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v8f32:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v8f32:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v8f32:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm1, %xmm0
|
|
|
|
; AVX2-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v8f32:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm1, %xmm0
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm0, %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v8f32(float %a0, <8 x float> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v16f32(float %a0, <16 x float> %a1) {
|
|
|
|
; SSE2-LABEL: test_v16f32:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: addps %xmm4, %xmm2
|
|
|
|
; SSE2-NEXT: addps %xmm3, %xmm1
|
|
|
|
; SSE2-NEXT: addps %xmm2, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm2
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm2 = xmm2[1],xmm1[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm2
|
|
|
|
; SSE2-NEXT: movaps %xmm2, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm2[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm2, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v16f32:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: addps %xmm4, %xmm2
|
|
|
|
; SSE41-NEXT: addps %xmm3, %xmm1
|
|
|
|
; SSE41-NEXT: addps %xmm2, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm2
|
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm2 = xmm2[1],xmm1[1]
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm2
|
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm2[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm2, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v16f32:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %ymm2, %ymm1, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v16f32:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddps %ymm2, %ymm1, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v16f32:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddps %ymm2, %ymm1, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v16f32:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm1, %ymm0
|
|
|
|
; AVX512-NEXT: vaddps %zmm0, %zmm1, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v16f32(float %a0, <16 x float> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
; vXf32 (zero)
|
|
|
|
;
|
|
|
|
|
|
|
|
define float @test_v2f32_zero(<2 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v2f32_zero:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm1 = xmm1[1,1],xmm0[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v2f32_zero:
|
|
|
|
; SSE41: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v2f32_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v2f32_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v2f32_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v2f32_zero:
|
|
|
|
; AVX512: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v2f32(float 0.0, <2 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v4f32_zero(<4 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v4f32_zero:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v4f32_zero:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: addps %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v4f32_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v4f32_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v4f32_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v4f32_zero:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v4f32(float 0.0, <4 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v8f32_zero(<8 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v8f32_zero:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v8f32_zero:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: addps %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v8f32_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v8f32_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v8f32_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v8f32_zero:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v8f32(float 0.0, <8 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v16f32_zero(<16 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v16f32_zero:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: addps %xmm3, %xmm1
|
|
|
|
; SSE2-NEXT: addps %xmm2, %xmm0
|
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v16f32_zero:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: addps %xmm3, %xmm1
|
|
|
|
; SSE41-NEXT: addps %xmm2, %xmm0
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: addps %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v16f32_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v16f32_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v16f32_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v16f32_zero:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddps %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v16f32(float 0.0, <16 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
; vXf32 (undef)
|
|
|
|
;
|
|
|
|
|
|
|
|
define float @test_v2f32_undef(<2 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v2f32_undef:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm1 = xmm1[1,1],xmm0[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v2f32_undef:
|
|
|
|
; SSE41: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v2f32_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v2f32_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v2f32_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v2f32_undef:
|
|
|
|
; AVX512: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v2f32(float undef, <2 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v4f32_undef(<4 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v4f32_undef:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v4f32_undef:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: addps %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v4f32_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v4f32_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v4f32_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v4f32_undef:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v4f32(float undef, <4 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v8f32_undef(<8 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v8f32_undef:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v8f32_undef:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: addps %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v8f32_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v8f32_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v8f32_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v8f32_undef:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v8f32(float undef, <8 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @test_v16f32_undef(<16 x float> %a0) {
|
|
|
|
; SSE2-LABEL: test_v16f32_undef:
|
|
|
|
; SSE2: # %bb.0:
|
|
|
|
; SSE2-NEXT: addps %xmm3, %xmm1
|
|
|
|
; SSE2-NEXT: addps %xmm2, %xmm0
|
|
|
|
; SSE2-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE2-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: addps %xmm0, %xmm1
|
|
|
|
; SSE2-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE2-NEXT: shufps {{.*#+}} xmm0 = xmm0[1,1],xmm1[2,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE2-NEXT: addss %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE2-NEXT: retq
|
|
|
|
;
|
|
|
|
; SSE41-LABEL: test_v16f32_undef:
|
|
|
|
; SSE41: # %bb.0:
|
|
|
|
; SSE41-NEXT: addps %xmm3, %xmm1
|
|
|
|
; SSE41-NEXT: addps %xmm2, %xmm0
|
|
|
|
; SSE41-NEXT: addps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: movaps %xmm0, %xmm1
|
2018-09-12 01:57:27 +08:00
|
|
|
; SSE41-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: addps %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE41-NEXT: movshdup {{.*#+}} xmm0 = xmm1[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE41-NEXT: addss %xmm0, %xmm1
|
2018-04-06 05:01:21 +08:00
|
|
|
; SSE41-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE41-NEXT: retq
|
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v16f32_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX1-SLOW-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v16f32_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-FAST-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v16f32_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
|
|
|
; AVX2-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v16f32_undef:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddps %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddps %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddss %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast float @llvm.experimental.vector.reduce.fadd.f32.v16f32(float undef, <16 x float> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret float %1
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
; vXf64 (accum)
|
|
|
|
;
|
|
|
|
|
|
|
|
define double @test_v2f64(double %a0, <2 x double> %a1) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v2f64:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm0 = xmm0[1],xmm1[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v2f64:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v2f64:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm1, %xmm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v2f64:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v2f64:
|
|
|
|
; AVX512: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm0 = xmm1[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm0, %xmm1, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v2f64(double %a0, <2 x double> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v4f64(double %a0, <4 x double> %a1) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v4f64:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm0 = xmm0[1],xmm1[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v4f64:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v4f64:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v4f64:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm1, %xmm0
|
|
|
|
; AVX2-NEXT: vaddpd %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v4f64:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm1, %xmm0
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm0, %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v4f64(double %a0, <4 x double> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v8f64(double %a0, <8 x double> %a1) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v8f64:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm4, %xmm2
|
|
|
|
; SSE-NEXT: addpd %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm0 = xmm0[1],xmm1[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v8f64:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm2, %ymm1, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v8f64:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm2, %ymm1, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v8f64:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddpd %ymm2, %ymm1, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v8f64:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm1, %ymm0
|
|
|
|
; AVX512-NEXT: vaddpd %zmm0, %zmm1, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v8f64(double %a0, <8 x double> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v16f64(double %a0, <16 x double> %a1) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v16f64:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm6, %xmm2
|
|
|
|
; SSE-NEXT: addpd %xmm7, %xmm3
|
|
|
|
; SSE-NEXT: addpd %xmm5, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: addpd {{[0-9]+}}(%rsp), %xmm4
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm4
|
|
|
|
; SSE-NEXT: addpd %xmm1, %xmm4
|
|
|
|
; SSE-NEXT: movapd %xmm4, %xmm0
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm0 = xmm0[1],xmm4[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm4, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v16f64:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm4, %ymm2, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm0, %ymm1, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v16f64:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm4, %ymm2, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm0, %ymm1, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v16f64:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddpd %ymm4, %ymm2, %ymm0
|
|
|
|
; AVX2-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX2-NEXT: vaddpd %ymm0, %ymm1, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v16f64:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vaddpd %zmm2, %zmm1, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v16f64(double %a0, <16 x double> %a1)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
; vXf64 (zero)
|
|
|
|
;
|
|
|
|
|
|
|
|
define double @test_v2f64_zero(<2 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v2f64_zero:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: movapd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v2f64_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v2f64_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v2f64_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v2f64_zero:
|
|
|
|
; AVX512: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v2f64(double 0.0, <2 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v4f64_zero(<4 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v4f64_zero:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: movapd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v4f64_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v4f64_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v4f64_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v4f64_zero:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v4f64(double 0.0, <4 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v8f64_zero(<8 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v8f64_zero:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: addpd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: movapd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v8f64_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v8f64_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v8f64_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v8f64_zero:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v8f64(double 0.0, <8 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v16f64_zero(<16 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v16f64_zero:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm6, %xmm2
|
|
|
|
; SSE-NEXT: addpd %xmm4, %xmm0
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: addpd %xmm7, %xmm3
|
|
|
|
; SSE-NEXT: addpd %xmm5, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm0 = xmm0[1],xmm1[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v16f64_zero:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v16f64_zero:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v16f64_zero:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX2-NEXT: vaddpd %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v16f64_zero:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v16f64(double 0.0, <16 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
;
|
|
|
|
; vXf64 (undef)
|
|
|
|
;
|
|
|
|
|
|
|
|
define double @test_v2f64_undef(<2 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v2f64_undef:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: movapd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v2f64_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v2f64_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v2f64_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v2f64_undef:
|
|
|
|
; AVX512: # %bb.0:
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v2f64(double undef, <2 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v4f64_undef(<4 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v4f64_undef:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: movapd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v4f64_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v4f64_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v4f64_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v4f64_undef:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-25 23:37:42 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v4f64(double undef, <4 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v8f64_undef(<8 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v8f64_undef:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: addpd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: movapd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm1 = xmm1[1],xmm0[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm0, %xmm1
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v8f64_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v8f64_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v8f64_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v8f64_undef:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v8f64(double undef, <8 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @test_v16f64_undef(<16 x double> %a0) {
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-LABEL: test_v16f64_undef:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: addpd %xmm6, %xmm2
|
|
|
|
; SSE-NEXT: addpd %xmm4, %xmm0
|
|
|
|
; SSE-NEXT: addpd %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: addpd %xmm7, %xmm3
|
|
|
|
; SSE-NEXT: addpd %xmm5, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: addpd %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: movapd %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: unpckhpd {{.*#+}} xmm0 = xmm0[1],xmm1[1]
|
2019-03-01 03:47:04 +08:00
|
|
|
; SSE-NEXT: addsd %xmm1, %xmm0
|
[x86] add and use fast horizontal vector math subtarget feature
This is the planned follow-up to D52997. Here we are reducing horizontal vector math codegen
by default. AMD Jaguar (btver2) should have no difference with this patch because it has
fast-hops. (If we want to set that bit for other CPUs, let me know.)
The code changes are small, but there are many test diffs. For files that are specifically
testing for hops, I added RUNs to distinguish fast/slow, so we can see the consequences
side-by-side. For files that are primarily concerned with codegen other than hops, I just
updated the CHECK lines to reflect the new default codegen.
To recap the recent horizontal op story:
1. Before rL343727, we were producing hops for all subtargets for a variety of patterns.
Hops were likely not optimal for all targets though.
2. The IR improvement in r343727 exposed a hole in the backend hop pattern matching, so
we reduced hop codegen for all subtargets. That was bad for Jaguar (PR39195).
3. We restored the hop codegen for all targets with rL344141. Good for Jaguar, but
probably bad for other CPUs.
4. This patch allows us to distinguish when we want to produce hops, so everyone can be
happy. I'm not sure if we have the best predicate here, but the intent is to undo the
extra hop-iness that was enabled by r344141.
Differential Revision: https://reviews.llvm.org/D53095
llvm-svn: 344361
2018-10-13 00:41:02 +08:00
|
|
|
; SSE-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
2019-04-29 04:04:08 +08:00
|
|
|
; AVX1-SLOW-LABEL: test_v16f64_undef:
|
|
|
|
; AVX1-SLOW: # %bb.0:
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-SLOW-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-SLOW-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX1-SLOW-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-SLOW-NEXT: vzeroupper
|
|
|
|
; AVX1-SLOW-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-FAST-LABEL: test_v16f64_undef:
|
|
|
|
; AVX1-FAST: # %bb.0:
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-FAST-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX1-FAST-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vhaddpd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX1-FAST-NEXT: vzeroupper
|
|
|
|
; AVX1-FAST-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX2-LABEL: test_v16f64_undef:
|
|
|
|
; AVX2: # %bb.0:
|
|
|
|
; AVX2-NEXT: vaddpd %ymm3, %ymm1, %ymm1
|
|
|
|
; AVX2-NEXT: vaddpd %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vaddpd %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX2-NEXT: vextractf128 $1, %ymm0, %xmm1
|
|
|
|
; AVX2-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
|
|
|
; AVX2-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX2-NEXT: vzeroupper
|
|
|
|
; AVX2-NEXT: retq
|
2018-04-06 05:01:21 +08:00
|
|
|
;
|
|
|
|
; AVX512-LABEL: test_v16f64_undef:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf64x4 $1, %zmm0, %ymm1
|
|
|
|
; AVX512-NEXT: vaddpd %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vextractf128 $1, %ymm0, %xmm1
|
2019-01-30 03:13:39 +08:00
|
|
|
; AVX512-NEXT: vaddpd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0]
|
2019-03-01 03:47:04 +08:00
|
|
|
; AVX512-NEXT: vaddsd %xmm1, %xmm0, %xmm0
|
2018-04-06 05:01:21 +08:00
|
|
|
; AVX512-NEXT: vzeroupper
|
|
|
|
; AVX512-NEXT: retq
|
2019-05-20 17:54:06 +08:00
|
|
|
%1 = call fast double @llvm.experimental.vector.reduce.fadd.f64.v16f64(double undef, <16 x double> %a0)
|
2018-04-06 05:01:21 +08:00
|
|
|
ret double %1
|
|
|
|
}
|
|
|
|
|
2019-05-20 17:54:06 +08:00
|
|
|
declare float @llvm.experimental.vector.reduce.fadd.f32.v2f32(float, <2 x float>)
|
|
|
|
declare float @llvm.experimental.vector.reduce.fadd.f32.v4f32(float, <4 x float>)
|
|
|
|
declare float @llvm.experimental.vector.reduce.fadd.f32.v8f32(float, <8 x float>)
|
|
|
|
declare float @llvm.experimental.vector.reduce.fadd.f32.v16f32(float, <16 x float>)
|
2018-04-06 05:01:21 +08:00
|
|
|
|
2019-05-20 17:54:06 +08:00
|
|
|
declare double @llvm.experimental.vector.reduce.fadd.f64.v2f64(double, <2 x double>)
|
|
|
|
declare double @llvm.experimental.vector.reduce.fadd.f64.v4f64(double, <4 x double>)
|
|
|
|
declare double @llvm.experimental.vector.reduce.fadd.f64.v8f64(double, <8 x double>)
|
|
|
|
declare double @llvm.experimental.vector.reduce.fadd.f64.v16f64(double, <16 x double>)
|