Title: [225161] branches/safari-604-branch/Source/_javascript_Core
- Revision
- 225161
- Author
- [email protected]
- Date
- 2017-11-27 00:21:59 -0800 (Mon, 27 Nov 2017)
Log Message
Cherry-pick r224426. rdar://problem/35364697
Modified Paths
Diff
Modified: branches/safari-604-branch/Source/_javascript_Core/ChangeLog (225160 => 225161)
--- branches/safari-604-branch/Source/_javascript_Core/ChangeLog 2017-11-27 08:21:56 UTC (rev 225160)
+++ branches/safari-604-branch/Source/_javascript_Core/ChangeLog 2017-11-27 08:21:59 UTC (rev 225161)
@@ -1,3 +1,20 @@
+2017-11-22 Jason Marcell <[email protected]>
+
+ Cherry-pick r224426. rdar://problem/35364697
+
+ 2017-11-03 Michael Saboff <[email protected]>
+
+ The Abstract Interpreter needs to change similar to clobberize() in r224366
+ https://bugs.webkit.org/show_bug.cgi?id=179267
+
+ Reviewed by Saam Barati.
+
+ Add clobberWorld() to HasGenericProperty, HasStructureProperty & GetPropertyEnumerator
+ cases in the abstract interpreter to match what was done for r224366.
+
+ * dfg/DFGAbstractInterpreterInlines.h:
+ (JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):
+
2017-11-05 Jason Marcell <[email protected]>
Cherry-pick r224416. rdar://problem/35339833
Modified: branches/safari-604-branch/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h (225160 => 225161)
--- branches/safari-604-branch/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h 2017-11-27 08:21:56 UTC (rev 225160)
+++ branches/safari-604-branch/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h 2017-11-27 08:21:59 UTC (rev 225161)
@@ -2864,10 +2864,12 @@
}
case HasGenericProperty: {
forNode(node).setType(SpecBoolean);
+ clobberWorld(node->origin.semantic, clobberLimit);
break;
}
case HasStructureProperty: {
forNode(node).setType(SpecBoolean);
+ clobberWorld(node->origin.semantic, clobberLimit);
break;
}
case HasIndexedProperty: {
@@ -2894,6 +2896,7 @@
}
case GetPropertyEnumerator: {
forNode(node).setType(m_graph, SpecCell);
+ clobberWorld(node->origin.semantic, clobberLimit);
break;
}
case GetEnumeratorStructurePname: {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes