[llvm] b9e5dac - [Hexagon] Split SETCC on float16/float32 HVX pairs

Krzysztof Parzyszek via llvm-commits llvm-commits at lists.llvm.org
Wed May 17 10:44:13 PDT 2023


Author: Krzysztof Parzyszek
Date: 2023-05-17T10:42:58-07:00
New Revision: b9e5dacc0dd647375f7f44ee5f2b0d368f7289e0

URL: https://github.com/llvm/llvm-project/commit/b9e5dacc0dd647375f7f44ee5f2b0d368f7289e0
DIFF: https://github.com/llvm/llvm-project/commit/b9e5dacc0dd647375f7f44ee5f2b0d368f7289e0.diff

LOG: [Hexagon] Split SETCC on float16/float32 HVX pairs

Added: 
    llvm/test/CodeGen/Hexagon/autohvx/isel-setcc-pair-fp.ll

Modified: 
    llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp

Removed: 
    


################################################################################
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" }


        


More information about the llvm-commits mailing list