Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
REGRESSION(r148790) Made 7 tests fail on x86 32bit
https://bugs.webkit.org/show_bug.cgi?id=114913 Reviewed by Filip Pizlo. Source/JavaScriptCore: The X87 register was not freed before some calls. Instead of inserting resetX87Registers to the last call sites, the two X87 registers are now freed in every call. * llint/LowLevelInterpreter32_64.asm: * llint/LowLevelInterpreter64.asm: * offlineasm/instructions.rb: * offlineasm/x86.rb: LayoutTests: Unskip the five tests now passsing again. * platform/qt/TestExpectations: Canonical link: https://commits.webkit.org/137777@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@154095 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
34 additions
and 19 deletions.
- +11 −0 LayoutTests/ChangeLog
- +0 −5 LayoutTests/platform/qt/TestExpectations
- +16 −0 Source/JavaScriptCore/ChangeLog
- +0 −2 Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm
- +0 −3 Source/JavaScriptCore/llint/LowLevelInterpreter64.asm
- +1 −2 Source/JavaScriptCore/offlineasm/instructions.rb
- +6 −7 Source/JavaScriptCore/offlineasm/x86.rb
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
@@ -81,9 +81,6 @@ end | ||
macro prepareStateForCCall() | ||
leap [PB, PC, 8], PC | ||
move PB, t3 | ||
end | ||
|
||
macro restoreStateAfterCCall() | ||
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
@@ -254,8 +254,7 @@ | ||
X86_INSTRUCTIONS = | ||
[ | ||
"cdqi", | ||
"idivi" | ||
] | ||
|
||
ARM_INSTRUCTIONS = | ||
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