Changeset 199935 in webkit
- Timestamp:
- Apr 22, 2016, 4:48:44 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r199927 r199935 1 2016-04-22 Mark Lam <mark.lam@apple.com> 2 3 javascript jit bug affecting Google Maps. 4 https://bugs.webkit.org/show_bug.cgi?id=153431 5 6 Reviewed by Filip Pizlo. 7 8 * js/regress/bug-153431-expected.txt: Added. 9 * js/regress/bug-153431.html: Added. 10 * js/regress/script-tests/bug-153431.js: Added. 11 1 12 2016-04-22 Geoffrey Garen <ggaren@apple.com> 2 13 -
trunk/Source/JavaScriptCore/ChangeLog
r199933 r199935 1 2016-04-22 Mark Lam <mark.lam@apple.com> 2 3 javascript jit bug affecting Google Maps. 4 https://bugs.webkit.org/show_bug.cgi?id=153431 5 6 Reviewed by Filip Pizlo. 7 8 The issue was due to the abstract interpreter wrongly marking the type of the 9 value read from the Uint3Array as SpecInt52, which precludes it from being an 10 Int32. This proves to be false, and the generated code failed to handle the case 11 where the read value is actually an Int32. 12 13 The fix is to have the abstract interpreter use SpecMachineInt instead of 14 SpecInt52. 15 16 * bytecode/SpeculatedType.h: 17 * dfg/DFGAbstractInterpreterInlines.h: 18 (JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects): 19 1 20 2016-04-22 Benjamin Poulain <bpoulain@apple.com> 2 21 -
trunk/Source/JavaScriptCore/bytecode/SpeculatedType.h
r197649 r199935 68 68 static const SpeculatedType SpecNonBoolInt32 = 1u << 22; // It's definitely an Int32 with value other than 0 or 1. 69 69 static const SpeculatedType SpecInt32 = SpecBoolInt32 | SpecNonBoolInt32; // It's definitely an Int32. 70 static const SpeculatedType SpecInt52 = 1u << 23; // It's definitely an Int52 and we intend it to unbox it. 70 static const SpeculatedType SpecInt52 = 1u << 23; // It's definitely an Int52 and we intend it to unbox it. It's also definitely not an Int32. 71 71 static const SpeculatedType SpecMachineInt = SpecInt32 | SpecInt52; // It's something that we can do machine int arithmetic on. 72 72 static const SpeculatedType SpecInt52AsDouble = 1u << 24; // It's definitely an Int52 and it's inside a double. -
trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
r199867 r199935 1563 1563 forNode(node).setType(SpecInt32); 1564 1564 else if (enableInt52() && node->shouldSpeculateMachineInt()) 1565 forNode(node).setType(Spec Int52);1565 forNode(node).setType(SpecMachineInt); 1566 1566 else 1567 1567 forNode(node).setType(SpecInt52AsDouble);
Note:
See TracChangeset
for help on using the changeset viewer.