Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Mips / cins.ll
blob4fe25564d1c12dabc26e203ec905b21868162046
1 ; RUN: llc -march=mips64 -mcpu=octeon -target-abi=n64 < %s -o - | FileCheck %s
3 define i64 @cins_zext(i32 signext %n) {
4 entry:
5   %shl = shl i32 %n, 5
6   %conv = zext i32 %shl to i64
7   ret i64 %conv
9 ; CHECK-LABEL: cins_zext:
10 ; CHECK:       cins $[[R0:[0-9]+]], $[[R1:[0-9]+]], 5, 26
14 define i64 @cins_and_shl(i64 zeroext %n) {
15 entry:
16   %and = shl i64 %n, 8
17   %shl = and i64 %and, 16776960
18   ret i64 %shl
20 ; CHECK-LABEL: cins_and_shl:
21 ; CHECK:       cins $[[R0:[0-9]+]], $[[R1:[0-9]+]], 8, 15
25 define i64 @cins_and_shl32(i64 zeroext %n) {
26 entry:
27   %and = shl i64 %n, 38
28   %shl = and i64 %and, 18014123631575040
29   ret i64 %shl
31 ; CHECK-LABEL: cins_and_shl32:
32 ; CHECK:       cins32 $[[R0:[0-9]+]], $[[R1:[0-9]+]], 6, 15
36 define zeroext i16 @cins_and_shl_16(i16 zeroext %n) {
37 entry:
38   %0 = shl i16 %n, 2
39   %1 = and i16 %0, 60
40   ret i16 %1
42 ; CHECK-LABEL: cins_and_shl_16:
43 ; CHECK:       cins $[[R0:[0-9]+]], $[[R1:[0-9]+]], 2, 3
47 define zeroext i8 @cins_and_shl_8(i8 zeroext %n) {
48 entry:
49   %0 = shl i8 %n, 2
50   %1 = and i8 %0, 12
51   ret i8 %1
53 ; CHECK-LABEL: cins_and_shl_8:
54 ; CHECK:       cins $[[R0:[0-9]+]], $[[R1:[0-9]+]], 2, 1
58 define i32 @cins_i32(i32 signext %a) {
59 entry:
60   %and = shl i32 %a, 17
61   %shl = and i32 %and, 536739840
62   ret i32 %shl
64 ; CHECK-LABEL: cins_i32:
65 ; CHECK:       cins $[[R0:[0-9]+]], $[[R1:[0-9]+]], 17, 11
69 define i64 @cins_shl_and(i32 signext %n) {
70 entry:
71   %and = and i32 %n, 65535
72   %conv = zext i32 %and to i64
73   %shl = shl nuw nsw i64 %conv, 31
74   ret i64 %shl
76 ; CHECK-LABEL: cins_shl_and:
77 ; CHECK:       cins $[[R0:[0-9]+]], $[[R1:[0-9]+]], 31, 15
82 define i64 @cins_shl_and32(i32 signext %n) {
83 entry:
84   %and = and i32 %n, 65535
85   %conv = zext i32 %and to i64
86   %shl = shl nuw nsw i64 %conv, 47
87   ret i64 %shl
89 ; CHECK-LABEL: cins_shl_and32:
90 ; CHECK:       cins32 $[[R0:[0-9]+]], $[[R1:[0-9]+]], 15, 15