-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8364305: Support AVX10 saturating floating point conversion instructions #26919
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
Open
missa-prime
wants to merge
16
commits into
openjdk:master
Choose a base branch
from
missa-prime:user/missa-prime/avx10_2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+566
−34
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
57745ae
Enable new AVX 10.2 vector and scalar floating point conversion instr…
missa-prime e67e376
Add memory variants of the AVX 10.2 floating point conversion instruc…
missa-prime be5c0b4
Fix input size enum values for AVX 10.2 conversion instructions that …
missa-prime 9d7484c
Correct matching rules for AVX 10.2 floating point conversion instruc…
missa-prime 07ac817
Update floating point conversion tests to check for AVX 10.2 CPU feat…
missa-prime e0c84f6
Add AVX 10.2 CPU feature flag to list of verified ones
missa-prime a38060e
Fix match rule for AVX 10.2 double to long scalar conversion
missa-prime 6407cc4
Add new IR rules to vector float to integer conversion tests
missa-prime 709b443
Avoid machine instruction searches in IR rules for non-AVX10.2 platfo…
missa-prime b7d3ae3
Use applyIfCPUFeatureAnd to check multiple CPU feature pairs in tests
missa-prime 4d8f3ab
Check for scalar casting instead of vector casting in tests when disa…
missa-prime bc59e4d
Add new IR nodes covering x86 floating point conversion instructions
missa-prime 7202ec4
Correctly calculate vector lengths and don't rely on VectorReinterpre…
missa-prime 8587952
Check for instructions that shouldn't appear in vector floating point…
missa-prime 5e8800d
Change debug text format of AVX 10.2 vector conversion instructions
missa-prime df17575
Change the floating point conversion instruction, IR nodes, and test …
missa-prime 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
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
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.
Please also add memory operand flavour of these assembler routines.
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 added memory variants of the instructions.