-
Couldn't load subscription status.
- Fork 15k
[X86] lowerFPToIntToFP - handle UI2FP on AVX512VL targets and i64 types on AVX512DQ targets #162656
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
KavinTheG
wants to merge
17
commits into
llvm:main
Choose a base branch
from
KavinTheG:X86lowerFPToIntToFP-UI2FP
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.
+594
−71
Open
Changes from 14 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a45fcc9
Added AVX512 handling for UI2P in lowerFPToIntToFP
KavinTheG b7f1545
Formatted lowerFPToIntToFP using git clang-format
KavinTheG 8aae7c3
Merge branch 'main' into X86lowerFPToIntToFP-UI2FP
KavinTheG ba8fad5
[X86] Add additional test coverage for #160111
RKSimon 8d08453
Added i64 handling in lowerFPToIntToFP & modified associated test case
KavinTheG a4aae57
Updated prefix in isint.ll
KavinTheG 4726c5d
Formatted code wwith clang-format
KavinTheG 74a22ef
Called lowerFPToIntToFP in LowerUINT_TO_FP and modified the appropria…
KavinTheG 3a5dc16
Merge branch 'main' into X86lowerFPToIntToFP-UI2FP
KavinTheG 5632c0c
Removed unnecessory IsStrict conditioin
KavinTheG fa77c53
Merge branch 'main' into X86lowerFPToIntToFP-UI2FP
KavinTheG 33b660a
Merge branch 'X86lowerFPToIntToFP-UI2FP' of github.com:KavinTheG/llvm…
KavinTheG b0a20ac
Modified fp-int-fp-cvt.ll
KavinTheG 1eb12e6
[X86] LowerFPToIntToFP: return SDValue() for unsigned fp -> int in SSE2
KavinTheG 819fcd8
[X86] Added optimizations for fp to signed & unsigned i32 conversions.
KavinTheG 2eed8e3
Fix mislabeled FileCheck prefixes in isint.ll
KavinTheG 940dda9
Removed unused label in isint.ll
KavinTheG 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
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.
Why didn't ucvtf64_i32 get optimized as well?
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.
My bad, I thought I was to focus on i64 handling for this patch.
I can push a commit that removes the check for i64 like below to add optimization for
ucvtf64_i32.to