Skip to content

[AMDGPU] Use Reg32Types for move-immediate patterns #138422

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 5, 2025

Conversation

jayfoad
Copy link
Contributor

@jayfoad jayfoad commented May 3, 2025

This just avoids having another copy of the list of valid 32-bit pointer
types.

This just avoids having another copy of the list of valid 32-bit pointer
types.
@llvmbot
Copy link
Member

llvmbot commented May 3, 2025

@llvm/pr-subscribers-backend-amdgpu

Author: Jay Foad (jayfoad)

Changes

This just avoids having another copy of the list of valid 32-bit pointer
types.


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

1 Files Affected:

  • (modified) llvm/lib/Target/AMDGPU/SIInstructions.td (+11-9)
diff --git a/llvm/lib/Target/AMDGPU/SIInstructions.td b/llvm/lib/Target/AMDGPU/SIInstructions.td
index f5c6d47369781..dea20e2d84d7b 100644
--- a/llvm/lib/Target/AMDGPU/SIInstructions.td
+++ b/llvm/lib/Target/AMDGPU/SIInstructions.td
@@ -2270,16 +2270,18 @@ def : GCNPat <
 
 // FIXME: Remove VGPRImm. Should be inferrable from register bank.
 
-foreach vt = [i32, p3, p5, p6, p2] in {
-  def : GCNPat <
-    (VGPRImm<(vt imm)>:$imm),
-    (V_MOV_B32_e32 imm:$imm)
-  >;
+foreach vt = Reg32Types.types in {
+  if !and(!not(vt.isVector), !not(vt.isFP)) then {
+    def : GCNPat <
+      (VGPRImm<(vt imm)>:$imm),
+      (V_MOV_B32_e32 imm:$imm)
+    >;
 
-  def : GCNPat <
-    (vt imm:$imm),
-    (S_MOV_B32 imm:$imm)
-  >;
+    def : GCNPat <
+      (vt imm:$imm),
+      (S_MOV_B32 imm:$imm)
+    >;
+  }
 }
 
 // FIXME: The register bank of the frame index should depend on the

(V_MOV_B32_e32 imm:$imm)
>;
foreach vt = Reg32Types.types in {
if !and(!not(vt.isVector), !not(vt.isFP)) then {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably should have a more direct way to specify integer or pointer

@jayfoad jayfoad merged commit 8f3fc72 into llvm:main May 5, 2025
13 checks passed
@jayfoad jayfoad deleted the use-reg32types branch May 5, 2025 13:11
IanWood1 pushed a commit to IanWood1/llvm-project that referenced this pull request May 6, 2025
This just avoids having another copy of the list of valid 32-bit pointer
types.
IanWood1 pushed a commit to IanWood1/llvm-project that referenced this pull request May 6, 2025
This just avoids having another copy of the list of valid 32-bit pointer
types.
IanWood1 pushed a commit to IanWood1/llvm-project that referenced this pull request May 6, 2025
This just avoids having another copy of the list of valid 32-bit pointer
types.
GeorgeARM pushed a commit to GeorgeARM/llvm-project that referenced this pull request May 7, 2025
This just avoids having another copy of the list of valid 32-bit pointer
types.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants