[PATCH] D27221: [AArch64] allow and-not-compare transform to form 'bics'
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 29 14:39:10 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL288206: [AArch64] allow and-not-compare transform to form 'bics' (authored by spatel).
Changed prior to commit:
https://reviews.llvm.org/D27221?vs=79615&id=79647#toc
Repository:
rL LLVM
https://reviews.llvm.org/D27221
Files:
llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.h
llvm/trunk/test/CodeGen/AArch64/bics.ll
Index: llvm/trunk/test/CodeGen/AArch64/bics.ll
===================================================================
--- llvm/trunk/test/CodeGen/AArch64/bics.ll
+++ llvm/trunk/test/CodeGen/AArch64/bics.ll
@@ -13,13 +13,10 @@
ret i1 %cmp
}
-; FIXME: Recognize a disguised bics.
-
define i1 @and_cmp(i32 %x, i32 %y) {
; CHECK-LABEL: and_cmp:
; CHECK: // BB#0:
-; CHECK-NEXT: and w8, w0, w1
-; CHECK-NEXT: cmp w8, w1
+; CHECK-NEXT: bics wzr, w1, w0
; CHECK-NEXT: cset w0, eq
; CHECK-NEXT: ret
;
@@ -32,8 +29,7 @@
; CHECK-LABEL: and_cmp_const:
; CHECK: // BB#0:
; CHECK-NEXT: mov w8, #43
-; CHECK-NEXT: and w8, w0, w8
-; CHECK-NEXT: cmp w8, #43
+; CHECK-NEXT: bics wzr, w8, w0
; CHECK-NEXT: cset w0, eq
; CHECK-NEXT: ret
;
Index: llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.h
===================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.h
+++ llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.h
@@ -412,6 +412,11 @@
return true;
}
+ bool hasAndNotCompare(SDValue) const override {
+ // 'bics'
+ return true;
+ }
+
bool hasBitPreservingFPLogic(EVT VT) const override {
// FIXME: Is this always true? It should be true for vectors at least.
return VT == MVT::f32 || VT == MVT::f64;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27221.79647.patch
Type: text/x-patch
Size: 1335 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161129/9674d366/attachment.bin>
More information about the llvm-commits
mailing list