Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / X86 / combine-avx2-intrinsics.ll
blob672820d86c6d1177faf830c8c97dcab2b20e9f06
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx2 | FileCheck %s
4 ; Verify that the backend correctly combines AVX2 builtin intrinsics.
7 define <16 x i16> @test_x86_avx2_pblendw(<16 x i16> %a0) {
8 ; CHECK-LABEL: test_x86_avx2_pblendw:
9 ; CHECK:       # %bb.0:
10 ; CHECK-NEXT:    retq
11   %res = call <16 x i16> @llvm.x86.avx2.pblendw(<16 x i16> %a0, <16 x i16> %a0, i32 7)
12   ret <16 x i16> %res
15 define <4 x i32> @test_x86_avx2_pblendd_128(<4 x i32> %a0) {
16 ; CHECK-LABEL: test_x86_avx2_pblendd_128:
17 ; CHECK:       # %bb.0:
18 ; CHECK-NEXT:    retq
19   %res = call <4 x i32> @llvm.x86.avx2.pblendd.128(<4 x i32> %a0, <4 x i32> %a0, i32 7)
20   ret <4 x i32> %res
23 define <8 x i32> @test_x86_avx2_pblendd_256(<8 x i32> %a0) {
24 ; CHECK-LABEL: test_x86_avx2_pblendd_256:
25 ; CHECK:       # %bb.0:
26 ; CHECK-NEXT:    retq
27   %res = call <8 x i32> @llvm.x86.avx2.pblendd.256(<8 x i32> %a0, <8 x i32> %a0, i32 7)
28   ret <8 x i32> %res
31 define <16 x i16> @test2_x86_avx2_pblendw(<16 x i16> %a0, <16 x i16> %a1) {
32 ; CHECK-LABEL: test2_x86_avx2_pblendw:
33 ; CHECK:       # %bb.0:
34 ; CHECK-NEXT:    retq
35   %res = call <16 x i16> @llvm.x86.avx2.pblendw(<16 x i16> %a0, <16 x i16> %a1, i32 0)
36   ret <16 x i16> %res
39 define <4 x i32> @test2_x86_avx2_pblendd_128(<4 x i32> %a0, <4 x i32> %a1) {
40 ; CHECK-LABEL: test2_x86_avx2_pblendd_128:
41 ; CHECK:       # %bb.0:
42 ; CHECK-NEXT:    retq
43   %res = call <4 x i32> @llvm.x86.avx2.pblendd.128(<4 x i32> %a0, <4 x i32> %a1, i32 0)
44   ret <4 x i32> %res
47 define <8 x i32> @test2_x86_avx2_pblendd_256(<8 x i32> %a0, <8 x i32> %a1) {
48 ; CHECK-LABEL: test2_x86_avx2_pblendd_256:
49 ; CHECK:       # %bb.0:
50 ; CHECK-NEXT:    retq
51   %res = call <8 x i32> @llvm.x86.avx2.pblendd.256(<8 x i32> %a0, <8 x i32> %a1, i32 0)
52   ret <8 x i32> %res
55 define <16 x i16> @test3_x86_avx2_pblendw(<16 x i16> %a0, <16 x i16> %a1) {
56 ; CHECK-LABEL: test3_x86_avx2_pblendw:
57 ; CHECK:       # %bb.0:
58 ; CHECK-NEXT:    vmovaps %ymm1, %ymm0
59 ; CHECK-NEXT:    retq
60   %res = call <16 x i16> @llvm.x86.avx2.pblendw(<16 x i16> %a0, <16 x i16> %a1, i32 -1)
61   ret <16 x i16> %res
64 define <4 x i32> @test3_x86_avx2_pblendd_128(<4 x i32> %a0, <4 x i32> %a1) {
65 ; CHECK-LABEL: test3_x86_avx2_pblendd_128:
66 ; CHECK:       # %bb.0:
67 ; CHECK-NEXT:    vmovaps %xmm1, %xmm0
68 ; CHECK-NEXT:    retq
69   %res = call <4 x i32> @llvm.x86.avx2.pblendd.128(<4 x i32> %a0, <4 x i32> %a1, i32 -1)
70   ret <4 x i32> %res
73 define <8 x i32> @test3_x86_avx2_pblendd_256(<8 x i32> %a0, <8 x i32> %a1) {
74 ; CHECK-LABEL: test3_x86_avx2_pblendd_256:
75 ; CHECK:       # %bb.0:
76 ; CHECK-NEXT:    vmovaps %ymm1, %ymm0
77 ; CHECK-NEXT:    retq
78   %res = call <8 x i32> @llvm.x86.avx2.pblendd.256(<8 x i32> %a0, <8 x i32> %a1, i32 -1)
79   ret <8 x i32> %res
82 declare <16 x i16> @llvm.x86.avx2.pblendw(<16 x i16>, <16 x i16>, i32)
83 declare <4 x i32> @llvm.x86.avx2.pblendd.128(<4 x i32>, <4 x i32>, i32)
84 declare <8 x i32> @llvm.x86.avx2.pblendd.256(<8 x i32>, <8 x i32>, i32)