-
Notifications
You must be signed in to change notification settings - Fork 15.4k
[AMDGPU] Fix an invalid cast in AMDGPULateCodeGenPrepare::visitLoadInst
#122494
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
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5 | ||
| ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a %s -o - | FileCheck %s | ||
|
|
||
| define amdgpu_kernel void @load_idx_idy(ptr addrspace(4) %disp, ptr %g) { | ||
| ; CHECK-LABEL: load_idx_idy: | ||
| ; CHECK: ; %bb.0: ; %entry | ||
| ; CHECK-NEXT: s_load_dword s6, s[4:5], 0x4 | ||
| ; CHECK-NEXT: s_load_dwordx4 s[0:3], s[8:9], 0x0 | ||
| ; CHECK-NEXT: v_mov_b32_e32 v0, 0 | ||
| ; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
| ; CHECK-NEXT: s_lshr_b32 s4, s6, 16 | ||
| ; CHECK-NEXT: s_bfe_i64 s[4:5], s[4:5], 0x10000 | ||
| ; CHECK-NEXT: s_lshl_b64 s[4:5], s[4:5], 6 | ||
| ; CHECK-NEXT: s_add_u32 s0, s0, s4 | ||
| ; CHECK-NEXT: s_addc_u32 s1, s1, s5 | ||
| ; CHECK-NEXT: global_load_ubyte v2, v0, s[0:1] offset:4 | ||
| ; CHECK-NEXT: v_mov_b32_e32 v0, s2 | ||
| ; CHECK-NEXT: v_mov_b32_e32 v1, s3 | ||
| ; CHECK-NEXT: s_waitcnt vmcnt(0) | ||
| ; CHECK-NEXT: flat_store_byte v[0:1], v2 | ||
| ; CHECK-NEXT: s_endpgm | ||
| entry: | ||
| %disp1 = tail call ptr addrspace(4) @llvm.amdgcn.dispatch.ptr() | ||
| %gep_y = getelementptr i8, ptr addrspace(4) %disp1, i64 6 | ||
| %L = load i1, ptr addrspace(4) %gep_y, align 1 | ||
| %idxprom = sext i1 %L to i64 | ||
| %gep0 = getelementptr <32 x i16>, ptr addrspace(4) %disp, i64 %idxprom | ||
| %gep1 = getelementptr i8, ptr addrspace(4) %gep0, i64 4 | ||
| %L1 = load i8, ptr addrspace(4) %gep1 | ||
| store i8 %L1, ptr %g | ||
| ret void | ||
| } | ||
|
|
||
| ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) | ||
| declare noundef nonnull align 4 ptr addrspace(4) @llvm.amdgcn.dispatch.ptr() #0 | ||
|
|
||
| attributes #0 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be able to use a pointer argument and avoid the special intrinsic. Also can you merge this in with an existing test for this function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current version was from
llvm-reduce. I did try to get rid of the intrinsic but failed to do so, then I didn't dig more into that.I'm not sure which existing test can be a good fit for this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You probably missed adding the dereferenceable and align attributes to the pointer, which are implied by the intrinsic declaration