xref: /llvm-project/llvm/test/CodeGen/PowerPC/optimize-vector.ll (revision 329b8cd3e3826822f000175ed3e3dc6084e47e57)
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
2; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu \
3; RUN:   -mcpu=pwr8 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr < %s | \
4; RUN:   FileCheck %s
5
6define dso_local <16 x i8> @x2(<16 x i8> noundef %x) {
7; CHECK-LABEL: x2:
8; CHECK:       # %bb.0: # %entry
9; CHECK-NEXT:    vaddubm v2, v2, v2
10; CHECK-NEXT:    blr
11entry:
12  %add = shl <16 x i8> %x, <i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1>
13  ret <16 x i8> %add
14}
15
16define dso_local <8 x i16> @x2h(<8 x i16> noundef %x) {
17; CHECK-LABEL: x2h:
18; CHECK:       # %bb.0: # %entry
19; CHECK-NEXT:    vadduhm v2, v2, v2
20; CHECK-NEXT:    blr
21entry:
22  %add = shl <8 x i16> %x, <i16 1, i16 1, i16 1, i16 1, i16 1, i16 1, i16 1, i16 1>
23  ret <8 x i16> %add
24}
25
26define dso_local <4 x i32> @x2w(<4 x i32> noundef %x) {
27; CHECK-LABEL: x2w:
28; CHECK:       # %bb.0: # %entry
29; CHECK-NEXT:    vadduwm v2, v2, v2
30; CHECK-NEXT:    blr
31entry:
32  %add = shl <4 x i32> %x, <i32 1, i32 1, i32 1, i32 1>
33  ret <4 x i32> %add
34}
35
36define dso_local <2 x i64> @x2d(<2 x i64> noundef %x) {
37; CHECK-LABEL: x2d:
38; CHECK:       # %bb.0: # %entry
39; CHECK-NEXT:    addis r3, r2, .LCPI3_0@toc@ha
40; CHECK-NEXT:    addi r3, r3, .LCPI3_0@toc@l
41; CHECK-NEXT:    lxvd2x v3, 0, r3
42; CHECK-NEXT:    vsld v2, v2, v3
43; CHECK-NEXT:    blr
44entry:
45  %add = shl <2 x i64> %x, <i64 1, i64 1>
46  ret <2 x i64> %add
47}
48