xref: /llvm-project/llvm/test/Transforms/SLPVectorizer/X86/remark_alternate.ll (revision 3be72f402925b99adbec4a2ee5bacdf76ba6c8d1)
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt -S -mtriple=x86_64-pc-linux-gnu -mcpu=generic -passes=slp-vectorizer -pass-remarks-output=%t < %s | FileCheck %s
3; RUN: FileCheck --input-file=%t --check-prefix=YAML %s
4
5; YAML-LABEL: --- !Passed
6; YAML-NEXT:  Pass:            slp-vectorizer
7; YAML-NEXT:  Name:            VectorizedList
8; YAML-NEXT:  Function:        build_vec_v2i64
9; YAML-NEXT:  Args:
10; YAML-NEXT:    - String:          'SLP vectorized with cost '
11; YAML-NEXT:    - Cost:            '-10'
12; YAML-NEXT:    - String:          ' and with tree size '
13; YAML-NEXT:    - TreeSize:        '8'
14
15define <2 x i64> @build_vec_v2i64(<2 x i64> %v0, <2 x i64> %v1) {
16; CHECK-LABEL: @build_vec_v2i64(
17; CHECK-NEXT:    [[TMP1:%.*]] = add <2 x i64> [[V0:%.*]], [[V1:%.*]]
18; CHECK-NEXT:    [[TMP2:%.*]] = sub <2 x i64> [[V0]], [[V1]]
19; CHECK-NEXT:    [[TMP3:%.*]] = shufflevector <2 x i64> [[TMP1]], <2 x i64> [[TMP2]], <2 x i32> <i32 1, i32 2>
20; CHECK-NEXT:    [[TMP4:%.*]] = shufflevector <2 x i64> [[TMP1]], <2 x i64> [[TMP2]], <2 x i32> <i32 0, i32 3>
21; CHECK-NEXT:    [[TMP5:%.*]] = add <2 x i64> [[TMP4]], [[TMP3]]
22; CHECK-NEXT:    ret <2 x i64> [[TMP5]]
23;
24  %v0.0 = extractelement <2 x i64> %v0, i32 0
25  %v0.1 = extractelement <2 x i64> %v0, i32 1
26  %v1.0 = extractelement <2 x i64> %v1, i32 0
27  %v1.1 = extractelement <2 x i64> %v1, i32 1
28  %tmp0.0 = add i64 %v0.0, %v1.0
29  %tmp0.1 = add i64 %v0.1, %v1.1
30  %tmp1.0 = sub i64 %v0.0, %v1.0
31  %tmp1.1 = sub i64 %v0.1, %v1.1
32  %tmp2.0 = add i64 %tmp0.0, %tmp0.1
33  %tmp2.1 = add i64 %tmp1.0, %tmp1.1
34  %tmp3.0 = insertelement <2 x i64> undef, i64 %tmp2.0, i32 0
35  %tmp3.1 = insertelement <2 x i64> %tmp3.0, i64 %tmp2.1, i32 1
36  ret <2 x i64> %tmp3.1
37}
38