summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Mips
diff options
context:
space:
mode:
authorPetar Avramovic <Petar.Avramovic@rt-rk.com>2019-12-30 11:13:22 +0100
committerPetar Avramovic <Petar.Avramovic@rt-rk.com>2019-12-30 11:13:22 +0100
commit94a24e7a401be7a3db0ddfa2035855b75c8cc55d (patch)
treef979d574d18ec5d6b400513eb1e21aa5b8cc5231 /llvm/test/CodeGen/Mips
parentcd2a73a9f01b2ec1b7e239ba83201199df0d7912 (diff)
downloadbcm5719-llvm-94a24e7a401be7a3db0ddfa2035855b75c8cc55d.tar.gz
bcm5719-llvm-94a24e7a401be7a3db0ddfa2035855b75c8cc55d.zip
[MIPS GlobalISel] Select bswap
G_BSWAP is generated from llvm.bswap.<type> intrinsics, clang genrates these intrinsics from __builtin_bswap32 and __builtin_bswap64. Add lower and narrowscalar for G_BSWAP. Lower G_BSWAP on MIPS32, select G_BSWAP on MIPS32 revision 2 and later. Differential Revision: https://reviews.llvm.org/D71362
Diffstat (limited to 'llvm/test/CodeGen/Mips')
-rw-r--r--llvm/test/CodeGen/Mips/GlobalISel/instruction-select/bswap.mir30
-rw-r--r--llvm/test/CodeGen/Mips/GlobalISel/legalizer/bswap.mir101
-rw-r--r--llvm/test/CodeGen/Mips/GlobalISel/llvm-ir/bswap.ll68
-rw-r--r--llvm/test/CodeGen/Mips/GlobalISel/regbankselect/bswap.mir28
4 files changed, 227 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Mips/GlobalISel/instruction-select/bswap.mir b/llvm/test/CodeGen/Mips/GlobalISel/instruction-select/bswap.mir
new file mode 100644
index 00000000000..2cec5eba3ba
--- /dev/null
+++ b/llvm/test/CodeGen/Mips/GlobalISel/instruction-select/bswap.mir
@@ -0,0 +1,30 @@
+# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+# RUN: llc -mtriple=mipsel-linux-gnu -run-pass=instruction-select -mattr=+mips32r2 -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32R2
+--- |
+
+ define void @bswap_i32() { entry: ret void }
+
+...
+---
+name: bswap_i32
+alignment: 4
+legalized: true
+regBankSelected: true
+tracksRegLiveness: true
+body: |
+ bb.1.entry:
+ liveins: $a0
+
+ ; MIPS32R2-LABEL: name: bswap_i32
+ ; MIPS32R2: liveins: $a0
+ ; MIPS32R2: [[COPY:%[0-9]+]]:gpr32 = COPY $a0
+ ; MIPS32R2: [[WSBH:%[0-9]+]]:gpr32 = WSBH [[COPY]]
+ ; MIPS32R2: [[ROTR:%[0-9]+]]:gpr32 = ROTR [[WSBH]], 16
+ ; MIPS32R2: $v0 = COPY [[ROTR]]
+ ; MIPS32R2: RetRA implicit $v0
+ %0:gprb(s32) = COPY $a0
+ %1:gprb(s32) = G_BSWAP %0
+ $v0 = COPY %1(s32)
+ RetRA implicit $v0
+
+...
diff --git a/llvm/test/CodeGen/Mips/GlobalISel/legalizer/bswap.mir b/llvm/test/CodeGen/Mips/GlobalISel/legalizer/bswap.mir
new file mode 100644
index 00000000000..62a95b8c10a
--- /dev/null
+++ b/llvm/test/CodeGen/Mips/GlobalISel/legalizer/bswap.mir
@@ -0,0 +1,101 @@
+# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+# RUN: llc -mtriple=mipsel-linux-gnu -run-pass=legalizer -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32
+# RUN: llc -mtriple=mipsel-linux-gnu -run-pass=legalizer -mattr=+mips32r2 -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32R2
+--- |
+
+ define void @bswap_i32() { entry: ret void }
+ define void @bswap_i64() { entry: ret void }
+
+...
+---
+name: bswap_i32
+alignment: 4
+tracksRegLiveness: true
+body: |
+ bb.1.entry:
+ liveins: $a0
+
+ ; MIPS32-LABEL: name: bswap_i32
+ ; MIPS32: liveins: $a0
+ ; MIPS32: [[COPY:%[0-9]+]]:_(s32) = COPY $a0
+ ; MIPS32: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 24
+ ; MIPS32: [[SHL:%[0-9]+]]:_(s32) = G_SHL [[COPY]], [[C]](s32)
+ ; MIPS32: [[LSHR:%[0-9]+]]:_(s32) = G_LSHR [[COPY]], [[C]](s32)
+ ; MIPS32: [[OR:%[0-9]+]]:_(s32) = G_OR [[LSHR]], [[SHL]]
+ ; MIPS32: [[C1:%[0-9]+]]:_(s32) = G_CONSTANT i32 65280
+ ; MIPS32: [[C2:%[0-9]+]]:_(s32) = G_CONSTANT i32 8
+ ; MIPS32: [[AND:%[0-9]+]]:_(s32) = G_AND [[COPY]], [[C1]]
+ ; MIPS32: [[SHL1:%[0-9]+]]:_(s32) = G_SHL [[AND]], [[C2]](s32)
+ ; MIPS32: [[OR1:%[0-9]+]]:_(s32) = G_OR [[OR]], [[SHL1]]
+ ; MIPS32: [[LSHR1:%[0-9]+]]:_(s32) = G_LSHR [[COPY]], [[C2]](s32)
+ ; MIPS32: [[AND1:%[0-9]+]]:_(s32) = G_AND [[LSHR1]], [[C1]]
+ ; MIPS32: [[OR2:%[0-9]+]]:_(s32) = G_OR [[OR1]], [[AND1]]
+ ; MIPS32: $v0 = COPY [[OR2]](s32)
+ ; MIPS32: RetRA implicit $v0
+ ; MIPS32R2-LABEL: name: bswap_i32
+ ; MIPS32R2: liveins: $a0
+ ; MIPS32R2: [[COPY:%[0-9]+]]:_(s32) = COPY $a0
+ ; MIPS32R2: [[BSWAP:%[0-9]+]]:_(s32) = G_BSWAP [[COPY]]
+ ; MIPS32R2: $v0 = COPY [[BSWAP]](s32)
+ ; MIPS32R2: RetRA implicit $v0
+ %0:_(s32) = COPY $a0
+ %1:_(s32) = G_BSWAP %0
+ $v0 = COPY %1(s32)
+ RetRA implicit $v0
+
+...
+---
+name: bswap_i64
+alignment: 4
+tracksRegLiveness: true
+body: |
+ bb.1.entry:
+ liveins: $a0, $a1
+
+ ; MIPS32-LABEL: name: bswap_i64
+ ; MIPS32: liveins: $a0, $a1
+ ; MIPS32: [[COPY:%[0-9]+]]:_(s32) = COPY $a0
+ ; MIPS32: [[COPY1:%[0-9]+]]:_(s32) = COPY $a1
+ ; MIPS32: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 24
+ ; MIPS32: [[SHL:%[0-9]+]]:_(s32) = G_SHL [[COPY1]], [[C]](s32)
+ ; MIPS32: [[LSHR:%[0-9]+]]:_(s32) = G_LSHR [[COPY1]], [[C]](s32)
+ ; MIPS32: [[OR:%[0-9]+]]:_(s32) = G_OR [[LSHR]], [[SHL]]
+ ; MIPS32: [[C1:%[0-9]+]]:_(s32) = G_CONSTANT i32 65280
+ ; MIPS32: [[C2:%[0-9]+]]:_(s32) = G_CONSTANT i32 8
+ ; MIPS32: [[AND:%[0-9]+]]:_(s32) = G_AND [[COPY1]], [[C1]]
+ ; MIPS32: [[SHL1:%[0-9]+]]:_(s32) = G_SHL [[AND]], [[C2]](s32)
+ ; MIPS32: [[OR1:%[0-9]+]]:_(s32) = G_OR [[OR]], [[SHL1]]
+ ; MIPS32: [[LSHR1:%[0-9]+]]:_(s32) = G_LSHR [[COPY1]], [[C2]](s32)
+ ; MIPS32: [[AND1:%[0-9]+]]:_(s32) = G_AND [[LSHR1]], [[C1]]
+ ; MIPS32: [[OR2:%[0-9]+]]:_(s32) = G_OR [[OR1]], [[AND1]]
+ ; MIPS32: [[SHL2:%[0-9]+]]:_(s32) = G_SHL [[COPY]], [[C]](s32)
+ ; MIPS32: [[LSHR2:%[0-9]+]]:_(s32) = G_LSHR [[COPY]], [[C]](s32)
+ ; MIPS32: [[OR3:%[0-9]+]]:_(s32) = G_OR [[LSHR2]], [[SHL2]]
+ ; MIPS32: [[AND2:%[0-9]+]]:_(s32) = G_AND [[COPY]], [[C1]]
+ ; MIPS32: [[SHL3:%[0-9]+]]:_(s32) = G_SHL [[AND2]], [[C2]](s32)
+ ; MIPS32: [[OR4:%[0-9]+]]:_(s32) = G_OR [[OR3]], [[SHL3]]
+ ; MIPS32: [[LSHR3:%[0-9]+]]:_(s32) = G_LSHR [[COPY]], [[C2]](s32)
+ ; MIPS32: [[AND3:%[0-9]+]]:_(s32) = G_AND [[LSHR3]], [[C1]]
+ ; MIPS32: [[OR5:%[0-9]+]]:_(s32) = G_OR [[OR4]], [[AND3]]
+ ; MIPS32: $v0 = COPY [[OR2]](s32)
+ ; MIPS32: $v1 = COPY [[OR5]](s32)
+ ; MIPS32: RetRA implicit $v0, implicit $v1
+ ; MIPS32R2-LABEL: name: bswap_i64
+ ; MIPS32R2: liveins: $a0, $a1
+ ; MIPS32R2: [[COPY:%[0-9]+]]:_(s32) = COPY $a0
+ ; MIPS32R2: [[COPY1:%[0-9]+]]:_(s32) = COPY $a1
+ ; MIPS32R2: [[BSWAP:%[0-9]+]]:_(s32) = G_BSWAP [[COPY1]]
+ ; MIPS32R2: [[BSWAP1:%[0-9]+]]:_(s32) = G_BSWAP [[COPY]]
+ ; MIPS32R2: $v0 = COPY [[BSWAP]](s32)
+ ; MIPS32R2: $v1 = COPY [[BSWAP1]](s32)
+ ; MIPS32R2: RetRA implicit $v0, implicit $v1
+ %1:_(s32) = COPY $a0
+ %2:_(s32) = COPY $a1
+ %0:_(s64) = G_MERGE_VALUES %1(s32), %2(s32)
+ %3:_(s64) = G_BSWAP %0
+ %4:_(s32), %5:_(s32) = G_UNMERGE_VALUES %3(s64)
+ $v0 = COPY %4(s32)
+ $v1 = COPY %5(s32)
+ RetRA implicit $v0, implicit $v1
+
+...
diff --git a/llvm/test/CodeGen/Mips/GlobalISel/llvm-ir/bswap.ll b/llvm/test/CodeGen/Mips/GlobalISel/llvm-ir/bswap.ll
new file mode 100644
index 00000000000..3b371cca6fe
--- /dev/null
+++ b/llvm/test/CodeGen/Mips/GlobalISel/llvm-ir/bswap.ll
@@ -0,0 +1,68 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc -O0 -mtriple=mipsel-linux-gnu -global-isel -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=MIPS32
+; RUN: llc -O0 -mtriple=mipsel-linux-gnu -global-isel -mattr=+mips32r2 -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=MIPS32R2
+
+declare i32 @llvm.bswap.i32(i32)
+define i32 @bswap_i32(i32 %x) {
+; MIPS32-LABEL: bswap_i32:
+; MIPS32: # %bb.0: # %entry
+; MIPS32-NEXT: sll $1, $4, 24
+; MIPS32-NEXT: srl $2, $4, 24
+; MIPS32-NEXT: or $1, $2, $1
+; MIPS32-NEXT: andi $2, $4, 65280
+; MIPS32-NEXT: sll $2, $2, 8
+; MIPS32-NEXT: or $1, $1, $2
+; MIPS32-NEXT: srl $2, $4, 8
+; MIPS32-NEXT: andi $2, $2, 65280
+; MIPS32-NEXT: or $2, $1, $2
+; MIPS32-NEXT: jr $ra
+; MIPS32-NEXT: nop
+;
+; MIPS32R2-LABEL: bswap_i32:
+; MIPS32R2: # %bb.0: # %entry
+; MIPS32R2-NEXT: wsbh $1, $4
+; MIPS32R2-NEXT: rotr $2, $1, 16
+; MIPS32R2-NEXT: jr $ra
+; MIPS32R2-NEXT: nop
+entry:
+ %0 = tail call i32 @llvm.bswap.i32(i32 %x)
+ ret i32 %0
+}
+
+declare i64 @llvm.bswap.i64(i64)
+define i64 @bswap_i64(i64 %x) {
+; MIPS32-LABEL: bswap_i64:
+; MIPS32: # %bb.0: # %entry
+; MIPS32-NEXT: sll $1, $5, 24
+; MIPS32-NEXT: srl $2, $5, 24
+; MIPS32-NEXT: or $1, $2, $1
+; MIPS32-NEXT: andi $2, $5, 65280
+; MIPS32-NEXT: sll $2, $2, 8
+; MIPS32-NEXT: or $1, $1, $2
+; MIPS32-NEXT: srl $2, $5, 8
+; MIPS32-NEXT: andi $2, $2, 65280
+; MIPS32-NEXT: or $2, $1, $2
+; MIPS32-NEXT: sll $1, $4, 24
+; MIPS32-NEXT: srl $3, $4, 24
+; MIPS32-NEXT: or $1, $3, $1
+; MIPS32-NEXT: andi $3, $4, 65280
+; MIPS32-NEXT: sll $3, $3, 8
+; MIPS32-NEXT: or $1, $1, $3
+; MIPS32-NEXT: srl $3, $4, 8
+; MIPS32-NEXT: andi $3, $3, 65280
+; MIPS32-NEXT: or $3, $1, $3
+; MIPS32-NEXT: jr $ra
+; MIPS32-NEXT: nop
+;
+; MIPS32R2-LABEL: bswap_i64:
+; MIPS32R2: # %bb.0: # %entry
+; MIPS32R2-NEXT: wsbh $1, $5
+; MIPS32R2-NEXT: rotr $2, $1, 16
+; MIPS32R2-NEXT: wsbh $1, $4
+; MIPS32R2-NEXT: rotr $3, $1, 16
+; MIPS32R2-NEXT: jr $ra
+; MIPS32R2-NEXT: nop
+entry:
+ %0 = tail call i64 @llvm.bswap.i64(i64 %x)
+ ret i64 %0
+}
diff --git a/llvm/test/CodeGen/Mips/GlobalISel/regbankselect/bswap.mir b/llvm/test/CodeGen/Mips/GlobalISel/regbankselect/bswap.mir
new file mode 100644
index 00000000000..c50e81eae0c
--- /dev/null
+++ b/llvm/test/CodeGen/Mips/GlobalISel/regbankselect/bswap.mir
@@ -0,0 +1,28 @@
+# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+# RUN: llc -mtriple=mipsel-linux-gnu -run-pass=regbankselect -mattr=+mips32r2 -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32R2
+--- |
+
+ define void @bswap_i32() { entry: ret void }
+
+...
+---
+name: bswap_i32
+alignment: 4
+legalized: true
+tracksRegLiveness: true
+body: |
+ bb.1.entry:
+ liveins: $a0
+
+ ; MIPS32R2-LABEL: name: bswap_i32
+ ; MIPS32R2: liveins: $a0
+ ; MIPS32R2: [[COPY:%[0-9]+]]:gprb(s32) = COPY $a0
+ ; MIPS32R2: [[BSWAP:%[0-9]+]]:gprb(s32) = G_BSWAP [[COPY]]
+ ; MIPS32R2: $v0 = COPY [[BSWAP]](s32)
+ ; MIPS32R2: RetRA implicit $v0
+ %0:_(s32) = COPY $a0
+ %1:_(s32) = G_BSWAP %0
+ $v0 = COPY %1(s32)
+ RetRA implicit $v0
+
+...
OpenPOWER on IntegriCloud