summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Hexagon/testbits.ll
diff options
context:
space:
mode:
authorKrzysztof Parzyszek <kparzysz@codeaurora.org>2018-03-12 14:01:28 +0000
committerKrzysztof Parzyszek <kparzysz@codeaurora.org>2018-03-12 14:01:28 +0000
commit046090db5330dd87e54a7b46ec34384dd3b43c31 (patch)
tree502084412f49f650e9c86e075a1e14f3ad4711be /llvm/test/CodeGen/Hexagon/testbits.ll
parent947e0acb6fa0fedac05530df98f589e928456278 (diff)
downloadbcm5719-llvm-046090db5330dd87e54a7b46ec34384dd3b43c31.tar.gz
bcm5719-llvm-046090db5330dd87e54a7b46ec34384dd3b43c31.zip
[Hexagon] Add more lit tests
llvm-svn: 327271
Diffstat (limited to 'llvm/test/CodeGen/Hexagon/testbits.ll')
-rw-r--r--llvm/test/CodeGen/Hexagon/testbits.ll33
1 files changed, 33 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Hexagon/testbits.ll b/llvm/test/CodeGen/Hexagon/testbits.ll
new file mode 100644
index 00000000000..225ce07ed06
--- /dev/null
+++ b/llvm/test/CodeGen/Hexagon/testbits.ll
@@ -0,0 +1,33 @@
+; RUN: llc -march=hexagon < %s | FileCheck %s
+
+; CHECK-LABEL: f0:
+; CHECK: p0 = bitsset(r0,r1)
+define i32 @f0(i32 %a0, i32 %a1) #0 {
+b0:
+ %v0 = and i32 %a0, %a1
+ %v1 = icmp eq i32 %v0, %a1
+ %v2 = select i1 %v1, i32 2, i32 3
+ ret i32 %v2
+}
+
+; CHECK-LABEL: f1:
+; CHECK: p0 = bitsclr(r0,r1)
+define i32 @f1(i32 %a0, i32 %a1) #0 {
+b0:
+ %v0 = and i32 %a0, %a1
+ %v1 = icmp eq i32 %v0, 0
+ %v2 = select i1 %v1, i32 2, i32 3
+ ret i32 %v2
+}
+
+; CHECK-LABEL: f2:
+; CHECK: p0 = bitsclr(r0,#37)
+define i32 @f2(i32 %a0) #0 {
+b0:
+ %v0 = and i32 %a0, 37
+ %v1 = icmp eq i32 %v0, 0
+ %v2 = select i1 %v1, i32 2, i32 3
+ ret i32 %v2
+}
+
+attributes #0 = { nounwind "target-cpu"="hexagonv55" }
OpenPOWER on IntegriCloud