|
Lines 1-3
a/Source/JavaScriptCore/ChangeLog_sec1
|
|
|
1 |
2018-03-10 Yusuke Suzuki <utatane.tea@gmail.com> |
| 2 |
|
| 3 |
[B3] Above/Below should be strength-reduced for comparison with 0 |
| 4 |
https://bugs.webkit.org/show_bug.cgi?id=183543 |
| 5 |
|
| 6 |
Reviewed by NOBODY (OOPS!). |
| 7 |
|
| 8 |
Above(0, x) and BelowEqual(0, x) can be converted to constants false and true respectively. |
| 9 |
This can be seen in ArraySlice(0) case: `Select(Above(0, length), length, 0)` this should |
| 10 |
be converted to `0`. |
| 11 |
|
| 12 |
This change is already coverted by testb3's compare tests. |
| 13 |
|
| 14 |
* b3/B3Const32Value.cpp: |
| 15 |
(JSC::B3::Const32Value::aboveConstant const): |
| 16 |
(JSC::B3::Const32Value::belowEqualConstant const): |
| 17 |
* b3/B3Const64Value.cpp: |
| 18 |
(JSC::B3::Const64Value::aboveConstant const): |
| 19 |
(JSC::B3::Const64Value::belowEqualConstant const): |
| 20 |
|
| 1 |
2018-03-09 Brian Burg <bburg@apple.com> |
21 |
2018-03-09 Brian Burg <bburg@apple.com> |
| 2 |
|
22 |
|
| 3 |
Web Inspector: there should only be one way for async backend commands to send failure |
23 |
Web Inspector: there should only be one way for async backend commands to send failure |