Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Mips / msa / shift-dagcombine.ll
blob1f8572751c1a48cf447d85d96bb3986dab3247a4
1 ; RUN: llc -march=mips -mattr=+msa,+fp64,+mips32r2 < %s | FileCheck %s
3 define void @ashr_v4i32(ptr %c) nounwind {
4   ; CHECK-LABEL: ashr_v4i32:
6   %1 = ashr <4 x i32> <i32 1, i32 2, i32 4, i32 8>,
7                       <i32 0, i32 1, i32 2, i32 3>
8   ; CHECK-NOT: sra
9   ; CHECK-DAG: ldi.w [[R1:\$w[0-9]+]], 1
10   ; CHECK-NOT: sra
11   store volatile <4 x i32> %1, ptr %c
12   ; CHECK-DAG: st.w [[R1]], 0($4)
14   %2 = ashr <4 x i32> <i32 -2, i32 -4, i32 -8, i32 -16>,
15                       <i32 0, i32 1, i32 2, i32 3>
16   ; CHECK-NOT: sra
17   ; CHECK-DAG: ldi.w [[R1:\$w[0-9]+]], -2
18   ; CHECK-NOT: sra
19   store volatile <4 x i32> %2, ptr %c
20   ; CHECK-DAG: st.w [[R1]], 0($4)
22   ret void
23   ; CHECK-LABEL: .size ashr_v4i32
26 define void @lshr_v4i32(ptr %c) nounwind {
27   ; CHECK-LABEL: lshr_v4i32:
29   %1 = lshr <4 x i32> <i32 1, i32 2, i32 4, i32 8>,
30                       <i32 0, i32 1, i32 2, i32 3>
31   ; CHECK-NOT: srl
32   ; CHECK-DAG: ldi.w [[R1:\$w[0-9]+]], 1
33   ; CHECK-NOT: srl
34   store volatile <4 x i32> %1, ptr %c
35   ; CHECK-DAG: st.w [[R1]], 0($4)
37   %2 = lshr <4 x i32> <i32 -2, i32 -4, i32 -8, i32 -16>,
38                       <i32 0, i32 1, i32 2, i32 3>
39   ; CHECK-NOT: srl
40   ; CHECK-DAG: addiu [[CPOOL:\$[0-9]+]], {{.*}}, %lo($
41   ; CHECK-DAG: ld.w [[R1:\$w[0-9]+]], 0([[CPOOL]])
42   ; CHECK-NOT: srl
43   store volatile <4 x i32> %2, ptr %c
44   ; CHECK-DAG: st.w [[R1]], 0($4)
46   ret void
47   ; CHECK-LABEL: .size lshr_v4i32
50 define void @shl_v4i32(ptr %c) nounwind {
51   ; CHECK-LABEL: shl_v4i32:
53   %1 = shl <4 x i32> <i32 8, i32 4, i32 2, i32 1>,
54                      <i32 0, i32 1, i32 2, i32 3>
55   ; CHECK-NOT: sll
56   ; CHECK-DAG: ldi.w [[R1:\$w[0-9]+]], 8
57   ; CHECK-NOT: sll
58   store volatile <4 x i32> %1, ptr %c
59   ; CHECK-DAG: st.w [[R1]], 0($4)
61   %2 = shl <4 x i32> <i32 -8, i32 -4, i32 -2, i32 -1>,
62                      <i32 0, i32 1, i32 2, i32 3>
63   ; CHECK-NOT: sll
64   ; CHECK-DAG: ldi.w [[R1:\$w[0-9]+]], -8
65   ; CHECK-NOT: sll
66   store volatile <4 x i32> %2, ptr %c
67   ; CHECK-DAG: st.w [[R1]], 0($4)
69   ret void
70   ; CHECK-LABEL: .size shl_v4i32