Skip to content

[Hexagon] Add missing patterns to select PFALSE and PTRUE #138712

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025

Conversation

iajbar
Copy link
Contributor

@iajbar iajbar commented May 6, 2025

Fixes #134659

@iajbar iajbar requested a review from alexrp May 6, 2025 16:01
@llvmbot
Copy link
Member

llvmbot commented May 6, 2025

@llvm/pr-subscribers-backend-hexagon

Author: Ikhlas Ajbar (iajbar)

Changes

Fixes #134659


Full diff: https://github.com/llvm/llvm-project/pull/138712.diff

2 Files Affected:

  • (modified) llvm/lib/Target/Hexagon/HexagonPatterns.td (+5)
  • (added) llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll (+29)
diff --git a/llvm/lib/Target/Hexagon/HexagonPatterns.td b/llvm/lib/Target/Hexagon/HexagonPatterns.td
index dd2a5a34afcc0..0d872b556d801 100644
--- a/llvm/lib/Target/Hexagon/HexagonPatterns.td
+++ b/llvm/lib/Target/Hexagon/HexagonPatterns.td
@@ -109,7 +109,12 @@ def pfalse: PatFrag<(ops), (HexagonPFALSE)>;
 def pnot:   PatFrag<(ops node:$Pu), (xor node:$Pu, ptrue)>;
 
 def: Pat<(v8i1 (HexagonPFALSE)), (C2_tfrrp (A2_tfrsi (i32 0)))>;
+def: Pat<(v4i1 (HexagonPFALSE)), (C2_tfrrp (A2_tfrsi (i32 0)))>;
+def: Pat<(v2i1 (HexagonPFALSE)), (C2_tfrrp (A2_tfrsi (i32 0)))>;
+
 def: Pat<(v8i1 (HexagonPTRUE)), (C2_tfrrp (A2_tfrsi (i32 -1)))>;
+def: Pat<(v4i1 (HexagonPTRUE)), (C2_tfrrp (A2_tfrsi (i32 -1)))>;
+def: Pat<(v2i1 (HexagonPTRUE)), (C2_tfrrp (A2_tfrsi (i32 -1)))>;
 
 def valign: PatFrag<(ops node:$Vt, node:$Vs, node:$Ru),
                     (HexagonVALIGN node:$Vt, node:$Vs, node:$Ru)>;
diff --git a/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll b/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll
new file mode 100644
index 0000000000000..c0904b8b4fdd6
--- /dev/null
+++ b/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll
@@ -0,0 +1,29 @@
+; RUN: llc -march=hexagon -debug-only=isel 2>&1 < %s - | FileCheck %s
+
+; CHECK: [[R0:%[0-9]+]]:intregs = A2_tfrsi 0
+; CHECK-NEXT: predregs = C2_tfrrp killed [[R0]]:intregs
+
+define fastcc i16 @test(ptr %0, { <4 x i32>, <4 x i1> } %1, <4 x i1> %2) {
+Entry:
+  %3 = alloca [16 x i8], i32 0, align 16
+  %4 = alloca [16 x i8], i32 0, align 16
+  store <4 x i32> <i32 1, i32 2, i32 3, i32 4>, ptr %4, align 16
+  store <4 x i32> <i32 5, i32 6, i32 7, i32 8>, ptr %3, align 16
+  %5 = load <4 x i32>, ptr %4, align 16
+  %6 = load <4 x i32>, ptr %3, align 16
+  %7 = call { <4 x i32>, <4 x i1> } @llvm.sadd.with.overflow.v4i32(<4 x i32> %5, <4 x i32> %6)
+  %8 = call i1 @llvm.vector.reduce.or.v4i1(<4 x i1> %2)
+  br i1 %8, label %OverflowFail, label %OverflowOk
+
+OverflowFail:                                     ; preds = %Entry
+  store volatile i32 0, ptr null, align 4
+    unreachable
+
+OverflowOk:                                       ; preds = %Entry
+  %9 = extractvalue { <4 x i32>, <4 x i1> } %7, 0
+    store <4 x i32> %9, ptr %0, align 16
+      ret i16 0
+      }
+
+declare { <4 x i32>, <4 x i1> } @llvm.sadd.with.overflow.v4i32(<4 x i32>, <4 x i32>) #0
+declare i1 @llvm.vector.reduce.or.v4i1(<4 x i1>) #0

@iajbar iajbar requested a review from quic-santdas May 6, 2025 16:01
@iajbar iajbar added this to the LLVM 20.X Release milestone May 6, 2025
@github-project-automation github-project-automation bot moved this to Needs Triage in LLVM Release Status May 6, 2025
@iajbar iajbar merged commit 57e8899 into llvm:main May 6, 2025
13 checks passed
@github-project-automation github-project-automation bot moved this from Needs Triage to Done in LLVM Release Status May 6, 2025
GeorgeARM pushed a commit to GeorgeARM/llvm-project that referenced this pull request May 7, 2025
GeorgeARM pushed a commit to GeorgeARM/llvm-project that referenced this pull request May 7, 2025
swift-ci pushed a commit to swiftlang/llvm-project that referenced this pull request May 9, 2025
@dyung
Copy link
Collaborator

dyung commented May 13, 2025

Was this change ever reviewed/approved before it was submitted?

dyung added a commit to dyung/llvm-project that referenced this pull request May 14, 2025
@h-vetinari
Copy link
Contributor

This landed in v20.1.5 via #138770, and seems to cause a test failure when building llvm:

******************** TEST 'LLVM :: CodeGen/Hexagon/isel/pfalse-v4i1.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: $SRC_DIR/build/bin/llc -march=hexagon -debug-only=isel 2>&1 < $SRC_DIR/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll - | $SRC_DIR/build/bin/FileCheck $SRC_DIR/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll
+ $SRC_DIR/build/bin/llc -march=hexagon -debug-only=isel -
+ $SRC_DIR/build/bin/FileCheck $SRC_DIR/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll
$SRC_DIR/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll:3:10: error: CHECK: expected string not found in input
; CHECK: [[R0:%[0-9]+]]:intregs = A2_tfrsi 0
         ^
<stdin>:1:1: note: scanning from here
llc: Unknown command line argument '-debug-only=isel'. Try: '$SRC_DIR/build/bin/llc --help'
^
<stdin>:1:22: note: possible intended match here
llc: Unknown command line argument '-debug-only=isel'. Try: '$SRC_DIR/build/bin/llc --help'
                     ^

Input file: <stdin>
Check file: $SRC_DIR/llvm/test/CodeGen/Hexagon/isel/pfalse-v4i1.ll

-dump-input=help explains the following input dump.

Input was:
<<<<<<
           1: llc: Unknown command line argument '-debug-only=isel'. Try: '$SRC_DIR/build/bin/llc --help' 
check:3'0     X~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ error: no match found
check:3'1                          ?                                                                                                                                         possible intended match
           2: llc: Did you mean '--debug-pass=isel'? 
check:3'0     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>>>>>

@svs-quic
Copy link
Contributor

We will need to backport dyung@340d199 to release branch 20.

@amy-kwan
Copy link
Contributor

amy-kwan commented May 16, 2025

I also agree with a backport of the test case fix into the release/20.x branch.

/cherry-pick 194a4a3

@llvmbot
Copy link
Member

llvmbot commented May 16, 2025

/pull-request #140176

@h-vetinari
Copy link
Contributor

I backported 194a4a3 for the build in our distribution and can confirm that it fixed the failure: conda-forge/llvmdev-feedstock@c41f96d

@dyung
Copy link
Collaborator

dyung commented May 16, 2025

I also agree with a backport of the test case fix into the release/20.x branch.

/cherry-pick 194a4a3

FYI, I've already requested it to be ported to the release branch at #139822. It is just awaiting merging.

@llvmbot
Copy link
Member

llvmbot commented May 16, 2025

Failed to cherry-pick: 194a4a3

https://github.com/llvm/llvm-project/actions/runs/15060425251

Please manually backport the fix and push it to your github fork. Once this is done, please create a pull request

swift-ci pushed a commit to swiftlang/llvm-project that referenced this pull request May 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

Successfully merging this pull request may close these issues.

[Hexagon] Cannot select: t89: v4i1 = HexagonISD::PFALSE
6 participants