summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Parzyszek <kparzysz@quicinc.com>2023-05-17 10:41:46 -0700
committerKrzysztof Parzyszek <kparzysz@quicinc.com>2023-05-17 10:42:58 -0700
commitb9e5dacc0dd647375f7f44ee5f2b0d368f7289e0 (patch)
tree1893b6eea212d2fc1605ca3959dc3edc260a53ad
parentfd6cd1a249136e93e73cc09c3408871255c5ae72 (diff)
downloadllvm-b9e5dacc0dd647375f7f44ee5f2b0d368f7289e0.tar.gz
[Hexagon] Split SETCC on float16/float32 HVX pairs
-rw-r--r--llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp1
-rw-r--r--llvm/test/CodeGen/Hexagon/autohvx/isel-setcc-pair-fp.ll51
2 files changed, 52 insertions, 0 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp b/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
index ce8758d790c6..3753bee76777 100644
--- a/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
+++ b/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
@@ -166,6 +166,7 @@ HexagonTargetLowering::initializeHVXLowering() {
setOperationAction(ISD::FMUL, P, Custom);
setOperationAction(ISD::FMINNUM, P, Custom);
setOperationAction(ISD::FMAXNUM, P, Custom);
+ setOperationAction(ISD::SETCC, P, Custom);
setOperationAction(ISD::VSELECT, P, Custom);
// Custom-lower BUILD_VECTOR. The standard (target-independent)
diff --git a/llvm/test/CodeGen/Hexagon/autohvx/isel-setcc-pair-fp.ll b/llvm/test/CodeGen/Hexagon/autohvx/isel-setcc-pair-fp.ll
new file mode 100644
index 000000000000..f094b139f181
--- /dev/null
+++ b/llvm/test/CodeGen/Hexagon/autohvx/isel-setcc-pair-fp.ll
@@ -0,0 +1,51 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
+; RUN: llc -march=hexagon < %s | FileCheck %s
+
+target datalayout = "e-m:e-p:32:32:32-a:0-n16:32-i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048"
+target triple = "hexagon"
+
+define dso_local fastcc <64 x float> @f0(<64 x float> %a0, <64 x float> %a1) unnamed_addr #0 {
+; CHECK-LABEL: f0:
+; CHECK: .cfi_startproc
+; CHECK-NEXT: // %bb.0: // %b0
+; CHECK-NEXT: {
+; CHECK-NEXT: v4 = vxor(v4,v4)
+; CHECK-NEXT: }
+; CHECK-NEXT: {
+; CHECK-NEXT: q0 = vcmp.gt(v4.sf,v0.sf)
+; CHECK-NEXT: q1 = vcmp.gt(v4.sf,v1.sf)
+; CHECK-NEXT: }
+; CHECK-NEXT: {
+; CHECK-NEXT: v0 = vmux(q0,v2,v0)
+; CHECK-NEXT: jumpr r31
+; CHECK-NEXT: v1 = vmux(q1,v3,v1)
+; CHECK-NEXT: }
+b0:
+ %v1 = fcmp ogt <64 x float> zeroinitializer, %a0
+ %v2 = select <64 x i1> %v1, <64 x float> %a1, <64 x float> %a0
+ ret <64 x float> %v2
+}
+
+define dso_local fastcc <128 x half> @f1(<128 x half> %a0, <128 x half> %a1) unnamed_addr #0 {
+; CHECK-LABEL: f1:
+; CHECK: .cfi_startproc
+; CHECK-NEXT: // %bb.0: // %b0
+; CHECK-NEXT: {
+; CHECK-NEXT: v4 = vxor(v4,v4)
+; CHECK-NEXT: }
+; CHECK-NEXT: {
+; CHECK-NEXT: q0 = vcmp.gt(v4.hf,v0.hf)
+; CHECK-NEXT: q1 = vcmp.gt(v4.hf,v1.hf)
+; CHECK-NEXT: }
+; CHECK-NEXT: {
+; CHECK-NEXT: v0 = vmux(q0,v2,v0)
+; CHECK-NEXT: jumpr r31
+; CHECK-NEXT: v1 = vmux(q1,v3,v1)
+; CHECK-NEXT: }
+b0:
+ %v1 = fcmp ogt <128 x half> zeroinitializer, %a0
+ %v2 = select <128 x i1> %v1, <128 x half> %a1, <128 x half> %a0
+ ret <128 x half> %v2
+}
+
+attributes #0 = { "target-features"="+hvxv69,+hvx-length128b,+hvx-qfloat,-hvx-ieee-fp" }