Title: [205634] releases/WebKitGTK/webkit-2.14/Source/_javascript_Core
Revision
205634
Author
[email protected]
Date
2016-09-08 05:33:50 -0700 (Thu, 08 Sep 2016)

Log Message

Merge r205361 - GetByValWithThis: fix opInfo in DFG creation
https://bugs.webkit.org/show_bug.cgi?id=161541

Patch by JF Bastien <[email protected]> on 2016-09-02
Reviewed by Saam Barati.

super-get-by-val-with-this-monomorphic might be 1.0148x faster after this change.

* dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::parseBlock): fix OpInfo

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.14/Source/_javascript_Core/ChangeLog (205633 => 205634)


--- releases/WebKitGTK/webkit-2.14/Source/_javascript_Core/ChangeLog	2016-09-08 12:33:05 UTC (rev 205633)
+++ releases/WebKitGTK/webkit-2.14/Source/_javascript_Core/ChangeLog	2016-09-08 12:33:50 UTC (rev 205634)
@@ -1,3 +1,15 @@
+2016-09-02  JF Bastien  <[email protected]>
+
+        GetByValWithThis: fix opInfo in DFG creation
+        https://bugs.webkit.org/show_bug.cgi?id=161541
+
+        Reviewed by Saam Barati.
+
+        super-get-by-val-with-this-monomorphic might be 1.0148x faster after this change.
+
+        * dfg/DFGByteCodeParser.cpp:
+        (JSC::DFG::ByteCodeParser::parseBlock): fix OpInfo
+
 2016-09-01  JF Bastien  <[email protected]>
 
         jsc: fix cmake build missing symbol getPropertySlot

Modified: releases/WebKitGTK/webkit-2.14/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp (205633 => 205634)


--- releases/WebKitGTK/webkit-2.14/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp	2016-09-08 12:33:05 UTC (rev 205633)
+++ releases/WebKitGTK/webkit-2.14/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp	2016-09-08 12:33:50 UTC (rev 205634)
@@ -4134,7 +4134,7 @@
             Node* base = get(VirtualRegister(currentInstruction[2].u.operand));
             Node* thisValue = get(VirtualRegister(currentInstruction[3].u.operand));
             Node* property = get(VirtualRegister(currentInstruction[4].u.operand));
-            Node* getByValWithThis = addToGraph(GetByValWithThis, OpInfo(prediction), base, thisValue, property);
+            Node* getByValWithThis = addToGraph(GetByValWithThis, OpInfo(), OpInfo(prediction), base, thisValue, property);
             set(VirtualRegister(currentInstruction[1].u.operand), getByValWithThis);
 
             NEXT_OPCODE(op_get_by_val_with_this);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to