-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[vm/compiler] Remove speculative shift instructions
SpeculattiveShiftInt64Op and SpeculativeShiftUint32Op instructions are only used in JIT. The only advantage of these instructions over non-speculative shifts is that they can be hoisted out of the loops in more cases. However, speculative instructions can suffer from deopt storm, introduce unnecessary differences in IL and generated code between JIT and AOT and add sufficient amount of extra code to maintain. TEST=ci Change-Id: I689e44b54832e2af76cbc99b9fc4bc937b9f2c87 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/394566 Commit-Queue: Alexander Markov <[email protected]> Reviewed-by: Slava Egorov <[email protected]>
- Loading branch information
1 parent
843c47b
commit a22daf8
Showing
10 changed files
with
26 additions
and
626 deletions.
There are no files selected for viewing
This file contains 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 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 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 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.