[CSKY][test][NFC] Add tests of ANDI/ORI
authorBen Shi <2283975856@qq.com>
Fri, 23 Jun 2023 07:15:57 +0000 (15:15 +0800)
committerBen Shi <2283975856@qq.com>
Thu, 29 Jun 2023 11:31:49 +0000 (19:31 +0800)
These tests will be optimized with BSETI32/BCLRI32
in the future.

Reviewed By: zixuan-wu

Differential Revision: https://reviews.llvm.org/D153613

llvm/lib/Target/CSKY/CSKYInstrInfo.td
llvm/test/CodeGen/CSKY/bseti_bclri.ll [new file with mode: 0644]

index 34bdf5d..77b1410 100644 (file)
@@ -885,9 +885,9 @@ let Predicates = [iHasE2] in {
   def XTRB3 : R_XZ<0x1C, 0x8, "xtrb3.32">;
   def BTSTI32 : I_5_X<0x0A, 0x4, "btsti32", uimm5, []>;
   def BCLRI32 : I_5_XZ<0xA, 0x1, "bclri32",
-  (outs GPR:$rz), (ins GPR:$rx, uimm5:$imm5), []>;
+    (outs GPR:$rz), (ins GPR:$rx, uimm5:$imm5), []>;
   def BSETI32 : I_5_XZ<0xA, 0x2, "bseti32",
-  (outs GPR:$rz), (ins GPR:$rx, uimm5:$imm5), []>;
+    (outs GPR:$rz), (ins GPR:$rx, uimm5:$imm5), []>;
 }
 
 //===----------------------------------------------------------------------===//
@@ -1274,7 +1274,6 @@ let Predicates = [iHasE2] in
   def : Pat<(i32 imm:$imm),
             (ORI32 (MOVIH32 (uimm32_hi16 imm:$imm)), (uimm32_lo16 imm:$imm))>;
 
-
 // Other operations.
 let Predicates = [iHasE2] in {
   def : Pat<(rotl GPR:$rs1, GPR:$rs2),
diff --git a/llvm/test/CodeGen/CSKY/bseti_bclri.ll b/llvm/test/CodeGen/CSKY/bseti_bclri.ll
new file mode 100644 (file)
index 0000000..fcf9b4e
--- /dev/null
@@ -0,0 +1,120 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
+; RUN: llc -verify-machineinstrs -csky-no-aliases -mattr=+e2 < %s -mtriple=csky | FileCheck %s
+
+define i32 @test_or_128(i32 noundef %0) {
+; CHECK-LABEL: test_or_128:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    ori32 a0, a0, 128
+; CHECK-NEXT:    rts16
+ %2 = or i32 %0, 128
+ ret i32 %2
+}
+
+define i32 @test_or_131072(i32 noundef %0) {
+; CHECK-LABEL: test_or_131072:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    movih32 a1, 2
+; CHECK-NEXT:    or16 a0, a1
+; CHECK-NEXT:    rts16
+ %2 = or i32 %0, 131072
+ ret i32 %2
+}
+
+define i32 @test_or_192(i32 noundef %0) {
+; CHECK-LABEL: test_or_192:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    ori32 a0, a0, 192
+; CHECK-NEXT:    rts16
+ %2 = or i32 %0, 192
+ ret i32 %2
+}
+
+define i32 @test_or_3072(i32 noundef %0) {
+; CHECK-LABEL: test_or_3072:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    ori32 a0, a0, 3072
+; CHECK-NEXT:    rts16
+ %2 = or i32 %0, 3072
+ ret i32 %2
+}
+
+define i32 @test_or_196608(i32 noundef %0) {
+; CHECK-LABEL: test_or_196608:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    movih32 a1, 3
+; CHECK-NEXT:    or16 a0, a1
+; CHECK-NEXT:    rts16
+ %2 = or i32 %0, 196608
+ ret i32 %2
+}
+
+define i32 @test_or_65540(i32 noundef %0) {
+; CHECK-LABEL: test_or_65540:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    movih32 a1, 1
+; CHECK-NEXT:    ori32 a1, a1, 4
+; CHECK-NEXT:    or16 a0, a1
+; CHECK-NEXT:    rts16
+ %2 = or i32 %0, 65540
+ ret i32 %2
+}
+
+define i32 @test_andnot_128(i32 noundef %0) {
+; CHECK-LABEL: test_andnot_128:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    andni32 a0, a0, 128
+; CHECK-NEXT:    rts16
+ %2 = and i32 %0, -129
+ ret i32 %2
+}
+
+define i32 @test_andnot_131072(i32 noundef %0) {
+; CHECK-LABEL: test_andnot_131072:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    movih32 a1, 65533
+; CHECK-NEXT:    ori32 a1, a1, 65535
+; CHECK-NEXT:    and16 a0, a1
+; CHECK-NEXT:    rts16
+ %2 = and i32 %0, -131073
+ ret i32 %2
+}
+
+define i32 @test_andnot_192(i32 noundef %0) {
+; CHECK-LABEL: test_andnot_192:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    andni32 a0, a0, 192
+; CHECK-NEXT:    rts16
+ %2 = and i32 %0, -193
+ ret i32 %2
+}
+
+define i32 @test_andnot_3072(i32 noundef %0) {
+; CHECK-LABEL: test_andnot_3072:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    andni32 a0, a0, 3072
+; CHECK-NEXT:    rts16
+ %2 = and i32 %0, -3073
+ ret i32 %2
+}
+
+define i32 @test_andnot_1966608(i32 noundef %0) {
+; CHECK-LABEL: test_andnot_1966608:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    movih32 a1, 65505
+; CHECK-NEXT:    ori32 a1, a1, 65007
+; CHECK-NEXT:    and16 a0, a1
+; CHECK-NEXT:    rts16
+ %2 = and i32 %0, -1966609
+ ret i32 %2
+}
+
+define i32 @test_andnot_65540(i32 noundef %0) {
+; CHECK-LABEL: test_andnot_65540:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    movih32 a1, 65534
+; CHECK-NEXT:    ori32 a1, a1, 65531
+; CHECK-NEXT:    and16 a0, a1
+; CHECK-NEXT:    rts16
+ %2 = and i32 %0, -65541
+ ret i32 %2
+}