Skip to content
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

Merged
merged 2 commits into from
Jan 24, 2025

Conversation

Cyanoxygen
Copy link
Contributor

@Cyanoxygen Cyanoxygen commented Jan 15, 2025

Description

  • Widen v2i8, v2i16 and v2i32 vectors so they don't cast back and forth, and make sure that instructions with correct data unit is being used.
  • Handle undef indices for VSHF when lowering VECTOR_SHUFFLE (it crashes if such index is present).

Copy link

github-actions bot commented Jan 15, 2025

✅ With the latest revision this PR passed the undef deprecator.

@Cyanoxygen Cyanoxygen force-pushed the cyan/mips-msa-widen-v2-vecs branch 2 times, most recently from 6643b64 to ed98aec Compare January 15, 2025 17:33
Copy link

github-actions bot commented Jan 15, 2025

✅ With the latest revision this PR passed the C/C++ code formatter.

@Cyanoxygen Cyanoxygen force-pushed the cyan/mips-msa-widen-v2-vecs branch from ed98aec to 4b42669 Compare January 15, 2025 17:40
@brad0
Copy link
Contributor

brad0 commented Jan 18, 2025

@yingopq @wzssyqa

@brad0
Copy link
Contributor

brad0 commented Jan 19, 2025

@topperc

@Cyanoxygen Cyanoxygen changed the title [MIPS] [MSA] Fix ILVOD operand order; Widen v2 vectors for MIPS64 [MIPS] [MSA] Fix ILVOD operand order Jan 20, 2025
@Cyanoxygen Cyanoxygen changed the title [MIPS] [MSA] Fix ILVOD operand order [MIPS] [MSA] Widen v2i8, v216 and v2i32 vectors Jan 20, 2025
@wzssyqa
Copy link
Contributor

wzssyqa commented Jan 20, 2025

Can we split

Widen v2i8, v2i16 and v2i32 vectors so they don't cast back and forth, and make sure that instructions with correct data unit is being used.

and

Handle undef indices for VSHF when lowering VECTOR_SHUFFLE (it crashes if such index is present).

@Cyanoxygen
Copy link
Contributor Author

Can we split


Widen v2i8, v2i16 and v2i32 vectors so they don't cast back and forth, and make sure that instructions with correct data unit is being used.

and


Handle undef indices for VSHF when lowering VECTOR_SHUFFLE (it crashes if such index is present).

No, the widened shuffle mask is guaranteed to contain UNDEFs which the VSHF must handle. Without that change the compiler simply aborts.

@Cyanoxygen Cyanoxygen force-pushed the cyan/mips-msa-widen-v2-vecs branch from 4b42669 to 4e33b3e Compare January 21, 2025 06:05
@Cyanoxygen
Copy link
Contributor Author

Cyanoxygen commented Jan 21, 2025

TODO: Update test cases for mips32r5. For now the tests will fail.

@Cyanoxygen Cyanoxygen force-pushed the cyan/mips-msa-widen-v2-vecs branch from 4e33b3e to 8fcfd7c Compare January 21, 2025 06:11
wzssyqa pushed a commit that referenced this pull request Jan 21, 2025
…FFLE` (#123555)

This PR fixes operand order of `ILVOD.df` when lowering
`VECTOR_SHUFFLE`, the result was `<y[1], x[1]>` while it should be
`<x[1], y[1]>`.

* This PR is split from #123040.
@Cyanoxygen Cyanoxygen force-pushed the cyan/mips-msa-widen-v2-vecs branch from 8fcfd7c to 44a4170 Compare January 23, 2025 02:20
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.
@Cyanoxygen Cyanoxygen force-pushed the cyan/mips-msa-widen-v2-vecs branch from 44a4170 to 4bf95bc Compare January 23, 2025 03:50
@Cyanoxygen
Copy link
Contributor Author

@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)
Copy link
Contributor

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)
Copy link
Contributor

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

@wzssyqa wzssyqa merged commit 6735d52 into llvm:main Jan 24, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants