Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[aarch64] moveConditionally32(), moveConditionallyTest32() should mov…
…e from/to 64-bit registers https://bugs.webkit.org/show_bug.cgi?id=170891 Reviewed by Saam Barati. moveConditionally32() and moveConditionallyTest32() operations in MacroAssemblerARM64 properly perform comparisons and tests on 32-bit values, but end up performing the moves from and to 32-bit registers. Move operations should instead be done on 64-bit registers, just like on the X86_64 platform. This is achieved by specifying 64 as the data size for the csel instructions. * assembler/MacroAssemblerARM64.h: (JSC::MacroAssemblerARM64::moveConditionally32): (JSC::MacroAssemblerARM64::moveConditionallyTest32): Canonical link: https://commits.webkit.org/188135@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@215731 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
2 changed files
with
24 additions
and
5 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