[PATCH] D51873: [AArch64] Add support for the ABS dag node and testcases for integer abs.
Ivan Kulagin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 12 13:00:32 PDT 2018
ikulagin updated this revision to Diff 165135.
ikulagin marked an inline comment as done.
ikulagin added a comment.
> Commit this file with current codegen and update the patch to show the codegen diff?
I have updated this patch.
Repository:
rL LLVM
https://reviews.llvm.org/D51873
Files:
test/CodeGen/AArch64/iabs.ll
Index: test/CodeGen/AArch64/iabs.ll
===================================================================
--- /dev/null
+++ test/CodeGen/AArch64/iabs.ll
@@ -0,0 +1,52 @@
+; RUN: llc < %s -mtriple=arm64-eabi -aarch64-neon-syntax=apple | FileCheck %s
+
+define i8 @test_i8(i8 %a) nounwind {
+; CHECK-LABEL: test_i8:
+; CHECK: // %bb.0:
+; CHECK-NEXT: sbfx w8, w0, #7, #1
+; CHECK-NEXT: add w9, w0, w8
+; CHECK-NEXT: eor w0, w9, w8
+; CHECK-NEXT: ret
+ %tmp1neg = sub i8 0, %a
+ %b = icmp sgt i8 %a, -1
+ %abs = select i1 %b, i8 %a, i8 %tmp1neg
+ ret i8 %abs
+}
+
+define i16 @test_i16(i16 %a) nounwind {
+; CHECK-LABEL: test_i16:
+; CHECK: // %bb.0:
+; CHECK-NEXT: sbfx w8, w0, #15, #1
+; CHECK-NEXT: add w9, w0, w8
+; CHECK-NEXT: eor w0, w9, w8
+; CHECK-NEXT: ret
+ %tmp1neg = sub i16 0, %a
+ %b = icmp sgt i16 %a, -1
+ %abs = select i1 %b, i16 %a, i16 %tmp1neg
+ ret i16 %abs
+}
+
+define i32 @test_i32(i32 %a) nounwind {
+; CHECK-LABEL: test_i32:
+; CHECK: // %bb.0:
+; CHECK-NEXT: cmp w0, #0
+; CHECK-NEXT: cneg w0, w0, mi
+; CHECK-NEXT: ret
+ %tmp1neg = sub i32 0, %a
+ %b = icmp sgt i32 %a, -1
+ %abs = select i1 %b, i32 %a, i32 %tmp1neg
+ ret i32 %abs
+}
+
+define i64 @test_i64(i64 %a) nounwind {
+; CHECK-LABEL: test_i64:
+; CHECK: // %bb.0:
+; CHECK-NEXT: cmp x0, #0
+; CHECK-NEXT: cneg x0, x0, mi
+; CHECK-NEXT: ret
+ %tmp1neg = sub i64 0, %a
+ %b = icmp sgt i64 %a, -1
+ %abs = select i1 %b, i64 %a, i64 %tmp1neg
+ ret i64 %abs
+}
+
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51873.165135.patch
Type: text/x-patch
Size: 1495 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180912/ae6ccc5d/attachment.bin>
More information about the llvm-commits
mailing list