-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[AArch64][GlobalISel] Add support for widening vector store elements to s8. #121170
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py UTC_ARGS: --version 5 | ||
# RUN: llc -O0 -mtriple=aarch64 -run-pass=legalizer -global-isel-abort=2 %s -o - | FileCheck %s | ||
# This test currently is expected to fall back after reaching truncstore of <8 x s8> as <8 x s1>. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a fragile way of testing this fallback case (testing fallback in a single pass MIR test is also odd). Should check the fallback error message, unless you're just going to fix this in the next commit anyway There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yeah this is going to be immediately fixed in the follow ups. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, I'm not testing that it falls back. I'm trying to test the intermediate legalizer output but a fallback prevents the full legalizer pass running successfully. This is a workaround so we can still check the widening was done. |
||
--- | ||
name: store_8xs1 | ||
tracksRegLiveness: true | ||
body: | | ||
bb.1: | ||
liveins: $q0, $q1, $x0 | ||
; CHECK-LABEL: name: store_8xs1 | ||
; CHECK: liveins: $q0, $q1, $x0 | ||
; CHECK-NEXT: {{ $}} | ||
; CHECK-NEXT: [[COPY:%[0-9]+]]:_(<4 x s32>) = COPY $q0 | ||
; CHECK-NEXT: [[COPY1:%[0-9]+]]:_(<4 x s32>) = COPY $q1 | ||
; CHECK-NEXT: %ptr:_(p0) = COPY $x0 | ||
; CHECK-NEXT: [[CONCAT_VECTORS:%[0-9]+]]:_(<8 x s32>) = G_CONCAT_VECTORS [[COPY]](<4 x s32>), [[COPY1]](<4 x s32>) | ||
; CHECK-NEXT: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 0 | ||
; CHECK-NEXT: [[BUILD_VECTOR:%[0-9]+]]:_(<8 x s32>) = G_BUILD_VECTOR [[C]](s32), [[C]](s32), [[C]](s32), [[C]](s32), [[C]](s32), [[C]](s32), [[C]](s32), [[C]](s32) | ||
; CHECK-NEXT: [[ICMP:%[0-9]+]]:_(<8 x s1>) = G_ICMP intpred(slt), [[CONCAT_VECTORS]](<8 x s32>), [[BUILD_VECTOR]] | ||
; CHECK-NEXT: [[ANYEXT:%[0-9]+]]:_(<8 x s8>) = G_ANYEXT [[ICMP]](<8 x s1>) | ||
; CHECK-NEXT: G_STORE [[ANYEXT]](<8 x s8>), %ptr(p0) :: (store (<8 x s1>)) | ||
; CHECK-NEXT: RET_ReallyLR | ||
%1:_(<4 x s32>) = COPY $q0 | ||
%2:_(<4 x s32>) = COPY $q1 | ||
%ptr:_(p0) = COPY $x0 | ||
%0:_(<8 x s32>) = G_CONCAT_VECTORS %1(<4 x s32>), %2(<4 x s32>) | ||
%4:_(s32) = G_CONSTANT i32 0 | ||
%3:_(<8 x s32>) = G_BUILD_VECTOR %4(s32), %4(s32), %4(s32), %4(s32), %4(s32), %4(s32), %4(s32), %4(s32) | ||
%5:_(<8 x s1>) = G_ICMP intpred(slt), %0(<8 x s32>), %3 | ||
G_STORE %5(<8 x s1>), %ptr(p0) :: (store (<8 x s1>)) | ||
RET_ReallyLR | ||
... |
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.
This is going to break on the pointer case?
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.
I can put an assert, but it shouldn't be valid to widenScalarOrElt on a pointer vector?
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.
True