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
[SIMD] SIMD functions should support Linear Scan and Graph Colouring …
…register allocators. https://bugs.webkit.org/show_bug.cgi?id=246348 Reviewed by Yusuke Suzuki. Today, we disable the linear scan and graph coloring register allocators when WASM SIMD is enabled. Let's fix that by making them conservatively treat floats as 128 bits when SIMD is enabled. * Source/JavaScriptCore/assembler/MacroAssemblerARM64.h: (JSC::MacroAssemblerARM64::vectorNarrow): (JSC::MacroAssemblerARM64::vectorMulSat): * Source/JavaScriptCore/b3/air/AirAllocateRegistersAndStackAndGenerateCode.cpp: (JSC::B3::Air::GenerateAndAllocateRegisters::generate): * Source/JavaScriptCore/b3/air/AirAllocateRegistersAndStackByLinearScan.cpp: (JSC::B3::Air::allocateRegistersAndStackByLinearScan): * Source/JavaScriptCore/b3/air/AirAllocateRegistersByGraphColoring.cpp: (JSC::B3::Air::allocateRegistersByGraphColoring): * Source/JavaScriptCore/b3/air/AirAllocateStackByGraphColoring.cpp: (JSC::B3::Air::allocateStackByGraphColoring): * Source/JavaScriptCore/b3/air/AirOpcode.opcodes: * Source/JavaScriptCore/b3/air/AirTmpWidth.cpp: (JSC::B3::Air::TmpWidth::recompute): * Source/JavaScriptCore/jit/RegisterSet.h: * Source/JavaScriptCore/runtime/Options.cpp: (JSC::Options::recomputeDependentOptions): * Source/JavaScriptCore/runtime/OptionsList.h: Canonical link: https://commits.webkit.org/257519@main
- Loading branch information
1 parent
7d493da
commit 244d75cd9da4e7da65f1612fac1fbf240fa72104
Showing
15 changed files
with
203 additions
and
88 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
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.