-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AMDGPU] Fix crash in allowsMisalignedMemoryAccesses with i1 (#105794)
- Loading branch information
Showing
3 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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
20 changes: 20 additions & 0 deletions
20
llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/load-i1-misaligned.ll
This file contains 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,20 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: opt -mtriple=amdgcn-amd-amdhsa --mcpu=gfx940 -passes=load-store-vectorizer -S -o - %s | FileCheck %s | ||
|
||
; Don't crash when checking for misaligned accesses with sub-byte size. | ||
|
||
define void @misaligned_access_i1(ptr addrspace(3) %in) #0 { | ||
; CHECK-LABEL: define void @misaligned_access_i1( | ||
; CHECK-SAME: ptr addrspace(3) [[IN:%.*]]) #[[ATTR0:[0-9]+]] { | ||
; CHECK-NEXT: [[IN_GEP_1:%.*]] = getelementptr i1, ptr addrspace(3) [[IN]], i32 1 | ||
; CHECK-NEXT: [[TMP1:%.*]] = load <16 x i1>, ptr addrspace(3) [[IN_GEP_1]], align 4 | ||
; CHECK-NEXT: [[TMP2:%.*]] = load <8 x i1>, ptr addrspace(3) [[IN]], align 1 | ||
; CHECK-NEXT: ret void | ||
; | ||
%in.gep.1 = getelementptr i1, ptr addrspace(3) %in, i32 1 | ||
|
||
%1 = load <16 x i1>, ptr addrspace(3) %in.gep.1, align 4 | ||
%2 = load <8 x i1>, ptr addrspace(3) %in, align 1 | ||
ret void | ||
} | ||
|