-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Disallow BLK<SIMD>
#84868
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
Merged
jakobbotsch
merged 8 commits into
dotnet:main
from
SingleAccretion:No-Blk-Simd-Upstream
Apr 19, 2023
Merged
Disallow BLK<SIMD>
#84868
jakobbotsch
merged 8 commits into
dotnet:main
from
SingleAccretion:No-Blk-Simd-Upstream
Apr 19, 2023
Conversation
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
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch, @kunalspathak Issue DetailsSome positive diffs are expected.
|
From compiler.hpp to gentree.cpp. Motivation: more methods are to come and the header file is very large already.
8e51a8b
to
647dfc8
Compare
647dfc8
to
e09bbeb
Compare
The IND(COMMA) -> COMMA(IND) transformation decanonicalizes array access as it is only performed on "uses" (i. e. not stores). Simply do not do this for SIMD types. Evidently, this unblocks some if conversions.
e09bbeb
to
52f548a
Compare
Preserve the behavior of setting the "is used in a SIMD intrinsic" flag. Will bring additional positive diffs due to the "ldobj" change.
52f548a
to
bf36863
Compare
@dotnet/jit-contrib |
tannergooding
approved these changes
Apr 17, 2023
jakobbotsch
reviewed
Apr 19, 2023
/azp run runtime-coreclr jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
I think the failures are current known ones. |
I looked as well and believe so too. Jitstress run. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
area-CodeGen-coreclr
CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
community-contribution
Indicates that the PR has been added by a community member
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.
For a very long time, both
OBJ/BLK<SIMD>
andIND<SIMD>
representations for a SIMD-typed load have been legal. There is no point in having both, so this change disallows the former (as a less canonical one).Plus a number of supporting changes (see individual commits).
Diffs.