-
Notifications
You must be signed in to change notification settings - Fork 17.8k
SelectionDAG: Improve expandFMINIMUM_FMAXIMUM #137367
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
Draft
wzssyqa
wants to merge
27
commits into
llvm:main
Choose a base branch
from
wzssyqa:expandFMINIMUM_NO_IEEE
base: main
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.
Draft
Changes from 15 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
924946c
expandFMINIMUM_FMAXIMUM: FMAXNUM/FMINNUM treat +0>-0
wzssyqa a0a2c79
Fix testcase
wzssyqa 9018fb9
Update nvptx tests
wzssyqa 55b8dd4
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa be9afea
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa 3cd47fa
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa fe36e4f
Improve expandFMINIMUM_FMAXIMUM
wzssyqa db19f15
Unroll for vector without vselect: v1f64 need it
wzssyqa b62e0d6
Update amdgcn testcase
wzssyqa 2a94376
Use constant nan instead cmp and select
wzssyqa 934bc12
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa f3ac660
Remove changes of amdgpu test
wzssyqa b257a8e
remove isOperationCustom(ISD::FMAXNUM or ISD::FMINNUM)
wzssyqa c49f60e
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa bd2d568
remove isOperationLegal(ISD::FMAXNUM or ISD::FMINNUM)
wzssyqa ccb8e22
return as early as possible if we have MinMaxOpc
wzssyqa 07b9d5b
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa 6ee3108
Improve todo wording
wzssyqa c0d7196
add missing ;
wzssyqa d1a4ce3
Use isOperationLegalOrCustom
wzssyqa 8b9674b
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa 9040416
remove unneeded comment
wzssyqa 8c79e75
Some fixes
wzssyqa 33fd8c5
update x86 tests and remove DAG.UnrollVectorOp
wzssyqa b84a948
Add DAG.UnrollVectorOp back
wzssyqa 1dc6835
Not use getSelectCC
wzssyqa 86361e3
Merge branch 'main' into expandFMINIMUM_NO_IEEE
wzssyqa 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
Some comments aren't visible on the classic Files Changed page.
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
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.
Hardcoding this to i32/f32 doesn't feel right. Can you find the next smallest FP legal FP type?