diff options
author | Charlie Turner <charlie.turner@arm.com> | 2015-10-27 10:25:20 +0000 |
---|---|---|
committer | Charlie Turner <charlie.turner@arm.com> | 2015-10-27 10:25:20 +0000 |
commit | 458e79b814b9998368b2306b09393b74f220f62d (patch) | |
tree | 037b889f893af2e0e8e5792901ea6dc3db9cbede /llvm/test | |
parent | e272b7712083142246faf773b175062e932025fb (diff) | |
download | bcm5719-llvm-458e79b814b9998368b2306b09393b74f220f62d.tar.gz bcm5719-llvm-458e79b814b9998368b2306b09393b74f220f62d.zip |
[ARM] Expand ROTL and ROTR of vector value types
Summary: After D13851 landed, we saw backend crashes when compiling the reduced test case included in this patch. The right fix seems to be to allow these vector types for expansion in instruction selection.
Reviewers: rengolin, t.p.northover
Subscribers: RKSimon, t.p.northover, aemerson, llvm-commits, rengolin
Differential Revision: http://reviews.llvm.org/D14082
llvm-svn: 251401
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/AArch64/rotate.ll | 14 | ||||
-rw-r--r-- | llvm/test/CodeGen/ARM/rotate.ll | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AArch64/rotate.ll b/llvm/test/CodeGen/AArch64/rotate.ll new file mode 100644 index 00000000000..5ac86d5f59c --- /dev/null +++ b/llvm/test/CodeGen/AArch64/rotate.ll @@ -0,0 +1,14 @@ +; RUN: llc < %s -mtriple=aarch64--linux-gnueabihf | FileCheck %s + +;; This used to cause a backend crash about not being able to +;; select ROTL. Make sure if generates the basic ushr/shl. +define <2 x i64> @testcase(<2 x i64>* %in) { +; CHECK-LABEL: testcase +; CHECK: ushr {{v[0-9]+}}.2d +; CHECK: shl {{v[0-9]+}}.2d + %1 = load <2 x i64>, <2 x i64>* %in + %2 = lshr <2 x i64> %1, <i64 8, i64 8> + %3 = shl <2 x i64> %1, <i64 56, i64 56> + %4 = or <2 x i64> %2, %3 + ret <2 x i64> %4 +} diff --git a/llvm/test/CodeGen/ARM/rotate.ll b/llvm/test/CodeGen/ARM/rotate.ll new file mode 100644 index 00000000000..f3f7de2160f --- /dev/null +++ b/llvm/test/CodeGen/ARM/rotate.ll @@ -0,0 +1,14 @@ +; RUN: llc < %s -mtriple=thumbv8--linux-gnueabihf | FileCheck %s + +;; This used to cause a backend crash about not being able to +;; select ROTL. Make sure if generates the basic VSHL/VSHR. +define <2 x i64> @testcase(<2 x i64>* %in) { +; CHECK-LABEL: testcase +; CHECK: vshl.i64 +; CHECK: vshr.u64 + %1 = load <2 x i64>, <2 x i64>* %in + %2 = lshr <2 x i64> %1, <i64 8, i64 8> + %3 = shl <2 x i64> %1, <i64 56, i64 56> + %4 = or <2 x i64> %2, %3 + ret <2 x i64> %4 +} |