[mono][interp] Add vectorization for Vector4 - #87822
#87822Merged
BrzVlad merged 8 commits intoJul 5, 2023
dotnet:maindotnet/runtime:mainfrom
BrzVlad:feature-interp-vector4BrzVlad/runtime:feature-interp-vector4Copy head branch name to clipboard
Merged
[mono][interp] Add vectorization for Vector4#87822BrzVlad merged 8 commits intodotnet:maindotnet/runtime:mainfrom BrzVlad:feature-interp-vector4BrzVlad/runtime:feature-interp-vector4Copy head branch name to clipboard
BrzVlad merged 8 commits into
dotnet:maindotnet/runtime:mainfrom
BrzVlad:feature-interp-vector4BrzVlad/runtime:feature-interp-vector4Copy head branch name to clipboard
Conversation
|
Tagging subscribers to this area: @BrzVlad, @kotlarmilos Issue DetailsAnd other vector of float improvements.
|
vargaz
approved these changes
Jun 20, 2023
This was referenced Jun 20, 2023
BrzVlad
force-pushed
the
feature-interp-vector4
branch
from
June 22, 2023 14:19
5d1b462 to
0de18b8
Compare
BrzVlad
force-pushed
the
feature-interp-vector4
branch
from
June 26, 2023 10:49
0de18b8 to
0325364
Compare
This was referenced Jun 26, 2023
BrzVlad
force-pushed
the
feature-interp-vector4
branch
2 times, most recently
from
July 5, 2023 06:28
ce989eb to
ca4a6c5
Compare
Which is pretty much Vector<float>
The constructors receive each element as an argument. This is the same as `Vector128.Create` so we reuse that code. This ends up generating a MINT_SIMD_V128_I*_CREATE opcode which receives each element value as an argument.
Since it is common to instantiate Vector4 with constant values, add also support for tracking R4 values during optimizations. If all elements are constant, we generate instead a single MINT_SIMD_V128_LDC, which has the entire vector value embedded in the instruction stream.
It is not marked as simd type if the generic param is not valid (ex not primitive type). Future checks are not expecting this scenario and can potentially crash.
BrzVlad
force-pushed
the
feature-interp-vector4
branch
from
July 5, 2023 06:51
ca4a6c5 to
941827d
Compare
This was referenced Jul 10, 2023
This was referenced Jul 12, 2023
Closed
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
And other vector of float improvements.