[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / RISCV / shift-and.ll
blob288c2cd28c9011af1779c5d3d05f68bee1ae07c0
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=riscv32 -verify-machineinstrs < %s \
3 ; RUN:   | FileCheck %s -check-prefix=RV32I
4 ; RUN: llc -mtriple=riscv64 -verify-machineinstrs < %s \
5 ; RUN:   | FileCheck %s -check-prefix=RV64I
7 ; Test for handling of AND with constant followed by a shift by constant. Often
8 ; we can replace these with a pair of shifts to avoid materializing a constant
9 ; for the and.
11 define i32 @test1(i32 %x) {
12 ; RV32I-LABEL: test1:
13 ; RV32I:       # %bb.0:
14 ; RV32I-NEXT:    srli a0, a0, 5
15 ; RV32I-NEXT:    andi a0, a0, -8
16 ; RV32I-NEXT:    ret
18 ; RV64I-LABEL: test1:
19 ; RV64I:       # %bb.0:
20 ; RV64I-NEXT:    srliw a0, a0, 8
21 ; RV64I-NEXT:    slli a0, a0, 3
22 ; RV64I-NEXT:    ret
23   %a = lshr i32 %x, 5
24   %b = and i32 %a, 134217720
25   ret i32 %b
28 define i64 @test2(i64 %x) {
29 ; RV32I-LABEL: test2:
30 ; RV32I:       # %bb.0:
31 ; RV32I-NEXT:    slli a2, a1, 27
32 ; RV32I-NEXT:    srli a0, a0, 5
33 ; RV32I-NEXT:    or a0, a0, a2
34 ; RV32I-NEXT:    srli a1, a1, 5
35 ; RV32I-NEXT:    andi a0, a0, -8
36 ; RV32I-NEXT:    ret
38 ; RV64I-LABEL: test2:
39 ; RV64I:       # %bb.0:
40 ; RV64I-NEXT:    srli a0, a0, 5
41 ; RV64I-NEXT:    andi a0, a0, -8
42 ; RV64I-NEXT:    ret
43   %a = lshr i64 %x, 5
44   %b = and i64 %a, 576460752303423480
45   ret i64 %b
48 define i32 @test3(i32 %x) {
49 ; RV32I-LABEL: test3:
50 ; RV32I:       # %bb.0:
51 ; RV32I-NEXT:    srli a0, a0, 20
52 ; RV32I-NEXT:    slli a0, a0, 14
53 ; RV32I-NEXT:    ret
55 ; RV64I-LABEL: test3:
56 ; RV64I:       # %bb.0:
57 ; RV64I-NEXT:    srliw a0, a0, 20
58 ; RV64I-NEXT:    slli a0, a0, 14
59 ; RV64I-NEXT:    ret
60   %a = lshr i32 %x, 6
61   %b = and i32 %a, 67092480
62   ret i32 %b
65 define i64 @test4(i64 %x) {
66 ; RV32I-LABEL: test4:
67 ; RV32I:       # %bb.0:
68 ; RV32I-NEXT:    slli a2, a1, 26
69 ; RV32I-NEXT:    srli a0, a0, 6
70 ; RV32I-NEXT:    or a0, a0, a2
71 ; RV32I-NEXT:    srli a1, a1, 6
72 ; RV32I-NEXT:    lui a2, 1048572
73 ; RV32I-NEXT:    and a0, a0, a2
74 ; RV32I-NEXT:    ret
76 ; RV64I-LABEL: test4:
77 ; RV64I:       # %bb.0:
78 ; RV64I-NEXT:    srli a0, a0, 20
79 ; RV64I-NEXT:    slli a0, a0, 14
80 ; RV64I-NEXT:    ret
81   %a = lshr i64 %x, 6
82   %b = and i64 %a, 288230376151695360
83   ret i64 %b
86 define i32 @test5(i32 %x) {
87 ; RV32I-LABEL: test5:
88 ; RV32I:       # %bb.0:
89 ; RV32I-NEXT:    srli a0, a0, 10
90 ; RV32I-NEXT:    slli a0, a0, 16
91 ; RV32I-NEXT:    ret
93 ; RV64I-LABEL: test5:
94 ; RV64I:       # %bb.0:
95 ; RV64I-NEXT:    slliw a0, a0, 6
96 ; RV64I-NEXT:    lui a1, 1048560
97 ; RV64I-NEXT:    and a0, a0, a1
98 ; RV64I-NEXT:    ret
99   %a = shl i32 %x, 6
100   %b = and i32 %a, -65536
101   ret i32 %b
104 define i64 @test6(i64 %x) {
105 ; RV32I-LABEL: test6:
106 ; RV32I:       # %bb.0:
107 ; RV32I-NEXT:    srli a2, a0, 26
108 ; RV32I-NEXT:    slli a1, a1, 6
109 ; RV32I-NEXT:    or a1, a1, a2
110 ; RV32I-NEXT:    srli a0, a0, 10
111 ; RV32I-NEXT:    slli a0, a0, 16
112 ; RV32I-NEXT:    ret
114 ; RV64I-LABEL: test6:
115 ; RV64I:       # %bb.0:
116 ; RV64I-NEXT:    srli a0, a0, 10
117 ; RV64I-NEXT:    slli a0, a0, 16
118 ; RV64I-NEXT:    ret
119   %a = shl i64 %x, 6
120   %b = and i64 %a, -65536
121   ret i64 %b