-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
[MIPS] [MSA] Widen v2i8, v216 and v2i32 vectors #123040
Conversation
✅ With the latest revision this PR passed the undef deprecator. |
6643b64
to
ed98aec
Compare
✅ With the latest revision this PR passed the C/C++ code formatter. |
ed98aec
to
4b42669
Compare
Can we split
and
|
No, the widened shuffle mask is guaranteed to contain UNDEFs which the VSHF must handle. Without that change the compiler simply aborts. |
4b42669
to
4e33b3e
Compare
TODO: Update test cases for mips32r5. For now the tests will fail. |
4e33b3e
to
8fcfd7c
Compare
8fcfd7c
to
44a4170
Compare
Currently v2i8, v2i16 and v2i32 are being promoted to v2i64 which casts the vector back and forth, and instructions with the wrong format are being used. Widening them to avoid unnecessary bitcasts, loads and stores, and ensure the correct element size is used. * tests/CodeGen/Mips: Update tests after widening of v2 vectors.
Currently VSHF does not handle UNDEF indices. However isSPLATI() is able to handle undefs, which may pass indices with undefs to this function. Adding a check to handle undefs in shuffle indices. Also, shuffle mask widened from v2 vector types are guranteed to contain UNDEFs. These shuffle lower logics can handle UNDEFs, so we just leave it as is, except for VSHF, which we must use whatever necessary to fill the UNDEFs.
44a4170
to
4bf95bc
Compare
@wzssyqa I've updated the change and the corresponding test cases based on the previous review comments. Could you please take a look at the new changes. |
; MIPS64R5EB-NEXT: shf.b $w0, $w0, 177 | ||
; MIPS64R5EB-NEXT: copy_s.h $1, $w0[0] | ||
; MIPS64R5EB-NEXT: sh $1, 44($sp) | ||
; MIPS64R5EB-NEXT: lh $2, 44($sp) |
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.
Another problem: why sh&lh here?
copy_s.h $2, $w0[0]
?
; MIPS64R5EB-NEXT: sh $5, 16($sp) | ||
; MIPS64R5EB-NEXT: sh $4, 0($sp) | ||
; MIPS64R5EB-NEXT: ld.b $w0, 16($sp) | ||
; MIPS64R5EB-NEXT: ld.b $w1, 0($sp) |
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.
Not a bug of this problem:
SH
& LD.B
may be optimistic with FILL
or INSERT
Description
ILVOD
when loweringVECTOR_SHUFFLE
#123555.