Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / autohvx / build-vector-i32-64b.ll
blob85a7872b8a6136e17e5ffa0e9c4d7df3af9dcec5
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Check that vector is produced with vxor
4 ; CHECK: v{{[0-9]*}} = vxor
5 define <16 x i32> @f0(i32 %x) #0 {
6   %vect = insertelement <16 x i32> <i32 undef, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0>, i32 %x, i32 0
7   ret <16 x i32> %vect
10 ; Check that vector is produced with vsplat
11 ; CHECK: v{{[0-9]*}} = vsplat
12 define <16 x i32> @f1(i32 %x) #0 {
13   %vect = insertelement <16 x i32> <i32 undef, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1>, i32 %x, i32 0
14   ret <16 x i32> %vect
17 ; Check that the correct vror is generated
18 ; CHECK: [[REG0:r([0-9]+)]] = #56
19 ; CHECK: vror(v{{[0-9]+}},[[REG0]])
20 define <16 x i32> @f2(i32 %x) #0 {
21   %vect = insertelement <16 x i32> <i32 1, i32 1, i32 undef, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1>, i32 %x, i32 2
22   ret <16 x i32> %vect
25 ; Check that the correct vror is generated
26 ; CHECK: [[REG0:r([0-9]+)]] = #12
27 ; CHECK: vror(v{{[0-9]+}},[[REG0]])
28 define <16 x i32> @f3(i32 %x) #0 {
29   %vect = insertelement <16 x i32> <i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 undef, i32 1, i32 1>, i32 %x, i32 13
30   ret <16 x i32> %vect
33 attributes #0 = { readnone nounwind "target-cpu"="hexagonv62" "target-features"="+hvx,+hvx-length64b" }