forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jumpTrueOrFalse only takes the fast path for boolean false on 64bit L…
…LInt https://bugs.webkit.org/show_bug.cgi?id=186446 <rdar://problem/40949995> Patch by Tadeu Zagallo <[email protected]> on 2018-06-08 Reviewed by Mark Lam. On 64bit LLInt, jumpTrueOrFalse did a mask check to take the fast path for boolean literals, but it would only work for false. Change it so that it takes the fast path for true, false, null and undefined. * llint/LowLevelInterpreter.asm: * llint/LowLevelInterpreter64.asm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@232658 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
86c135c
commit 1e75a42
Showing
3 changed files
with
18 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
2018-06-08 Tadeu Zagallo <[email protected]> | ||
|
||
jumpTrueOrFalse only takes the fast path for boolean false on 64bit LLInt | ||
https://bugs.webkit.org/show_bug.cgi?id=186446 | ||
<rdar://problem/40949995> | ||
|
||
Reviewed by Mark Lam. | ||
|
||
On 64bit LLInt, jumpTrueOrFalse did a mask check to take the fast path for | ||
boolean literals, but it would only work for false. Change it so that it | ||
takes the fast path for true, false, null and undefined. | ||
|
||
* llint/LowLevelInterpreter.asm: | ||
* llint/LowLevelInterpreter64.asm: | ||
|
||
2018-06-08 Brian Burg <[email protected]> | ||
|
||
[Cocoa] Web Automation: include browser name and version in listing for automation targets | ||
|
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