-
Notifications
You must be signed in to change notification settings - Fork 14.3k
AMDGPU: Switch a test to generated checks which only tested labels #131257
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
arsenm
merged 1 commit into
main
from
users/arsenm/amdgpu/use-generated-checks-label-only-test
Mar 14, 2025
Merged
AMDGPU: Switch a test to generated checks which only tested labels #131257
arsenm
merged 1 commit into
main
from
users/arsenm/amdgpu/use-generated-checks-label-only-test
Mar 14, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Mar 14, 2025
This was referenced Mar 14, 2025
@llvm/pr-subscribers-llvm-globalisel @llvm/pr-subscribers-backend-amdgpu Author: Matt Arsenault (arsenm) ChangesAlso remove an undef use Full diff: https://github.com/llvm/llvm-project/pull/131257.diff 1 Files Affected:
diff --git a/llvm/test/CodeGen/AMDGPU/bug-vopc-commute.ll b/llvm/test/CodeGen/AMDGPU/bug-vopc-commute.ll
index d198ec28f1602..21d4bcfcdc8c1 100644
--- a/llvm/test/CodeGen/AMDGPU/bug-vopc-commute.ll
+++ b/llvm/test/CodeGen/AMDGPU/bug-vopc-commute.ll
@@ -1,16 +1,58 @@
-; RUN: llc -mtriple=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck %s
-; RUN: llc -mtriple=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck %s
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
+; RUN: llc -mtriple=amdgcn -mcpu=verde < %s | FileCheck -check-prefix=GFX6 %s
+; RUN: llc -mtriple=amdgcn -mcpu=tonga < %s | FileCheck -check-prefix=GFX8 %s
-; CHECK-LABEL: {{^}}main:
-;
; Test for compilation only. This generated an invalid machine instruction
; by trying to commute the operands of a V_CMP_EQ_i32_e32 instruction, both
; of which were in SGPRs.
define amdgpu_vs float @main(i32 %v) {
+; GFX6-LABEL: main:
+; GFX6: ; %bb.0: ; %main_body
+; GFX6-NEXT: s_cbranch_scc1 .LBB0_2
+; GFX6-NEXT: ; %bb.1: ; %IF57
+; GFX6-NEXT: v_lshlrev_b32_e32 v0, 1, v0
+; GFX6-NEXT: .LBB0_2: ; %ENDIF56
+; GFX6-NEXT: s_buffer_load_dword s0, s[0:3], 0xf0
+; GFX6-NEXT: s_waitcnt lgkmcnt(0)
+; GFX6-NEXT: s_cmp_eq_u32 s0, 0
+; GFX6-NEXT: s_cbranch_scc1 .LBB0_4
+; GFX6-NEXT: ; %bb.3: ; %IF60
+; GFX6-NEXT: v_lshlrev_b32_e32 v0, 1, v0
+; GFX6-NEXT: .LBB0_4: ; %ENDIF59
+; GFX6-NEXT: s_buffer_load_dword s0, s[0:3], 0xf4
+; GFX6-NEXT: s_waitcnt lgkmcnt(0)
+; GFX6-NEXT: s_cmp_eq_u32 s0, 0
+; GFX6-NEXT: s_cbranch_scc0 .LBB0_6
+; GFX6-NEXT: ; %bb.5: ; %ENDIF62
+; GFX6-NEXT: s_branch .LBB0_7
+; GFX6-NEXT: .LBB0_6: ; %IF63
+; GFX6-NEXT: .LBB0_7:
+;
+; GFX8-LABEL: main:
+; GFX8: ; %bb.0: ; %main_body
+; GFX8-NEXT: s_cbranch_scc1 .LBB0_2
+; GFX8-NEXT: ; %bb.1: ; %IF57
+; GFX8-NEXT: v_lshlrev_b32_e32 v0, 1, v0
+; GFX8-NEXT: .LBB0_2: ; %ENDIF56
+; GFX8-NEXT: s_buffer_load_dword s0, s[0:3], 0x3c0
+; GFX8-NEXT: s_waitcnt lgkmcnt(0)
+; GFX8-NEXT: s_cmp_eq_u32 s0, 0
+; GFX8-NEXT: s_cbranch_scc1 .LBB0_4
+; GFX8-NEXT: ; %bb.3: ; %IF60
+; GFX8-NEXT: v_lshlrev_b32_e32 v0, 1, v0
+; GFX8-NEXT: .LBB0_4: ; %ENDIF59
+; GFX8-NEXT: s_buffer_load_dword s0, s[0:3], 0x3d0
+; GFX8-NEXT: s_waitcnt lgkmcnt(0)
+; GFX8-NEXT: s_cmp_eq_u32 s0, 0
+; GFX8-NEXT: s_cbranch_scc0 .LBB0_6
+; GFX8-NEXT: ; %bb.5: ; %ENDIF62
+; GFX8-NEXT: s_branch .LBB0_7
+; GFX8-NEXT: .LBB0_6: ; %IF63
+; GFX8-NEXT: .LBB0_7:
main_body:
%d1 = call float @llvm.amdgcn.s.buffer.load.f32(<4 x i32> poison, i32 960, i32 0)
%d2 = call float @llvm.amdgcn.s.buffer.load.f32(<4 x i32> poison, i32 976, i32 0)
- br i1 undef, label %ENDIF56, label %IF57
+ br i1 poison, label %ENDIF56, label %IF57
IF57: ; preds = %ENDIF
%v.1 = mul i32 %v, 2
@@ -40,7 +82,6 @@ ENDIF62: ; preds = %ENDIF59
ret float %r
}
-; Function Attrs: nounwind readnone
declare float @llvm.amdgcn.s.buffer.load.f32(<4 x i32>, i32, i32) #0
attributes #0 = { nounwind readnone }
|
shiltian
approved these changes
Mar 14, 2025
568de61
to
77fef8e
Compare
c2d9e5b
to
5202d32
Compare
This was referenced Mar 14, 2025
5202d32
to
d0881ae
Compare
Base automatically changed from
users/arsenm/amdgpu/use-poison-in-subreg-coalescer-crash-test
to
main
March 14, 2025 07:51
Also remove an undef use
77fef8e
to
a5c793b
Compare
This was referenced Mar 14, 2025
frederik-h
pushed a commit
to frederik-h/llvm-project
that referenced
this pull request
Mar 18, 2025
…lvm#131257) Also remove an undef use
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Also remove an undef use