Title: [222066] trunk/Source/_javascript_Core
Revision
222066
Author
sbar...@apple.com
Date
2017-09-14 17:04:47 -0700 (Thu, 14 Sep 2017)

Log Message

Make dumping the graph print when both when exitOK and !exitOK
https://bugs.webkit.org/show_bug.cgi?id=176954

Reviewed by Keith Miller.

* dfg/DFGGraph.cpp:
(JSC::DFG::Graph::dump):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (222065 => 222066)


--- trunk/Source/_javascript_Core/ChangeLog	2017-09-14 23:52:31 UTC (rev 222065)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-09-15 00:04:47 UTC (rev 222066)
@@ -1,5 +1,15 @@
 2017-09-14  Saam Barati  <sbar...@apple.com>
 
+        Make dumping the graph print when both when exitOK and !exitOK
+        https://bugs.webkit.org/show_bug.cgi?id=176954
+
+        Reviewed by Keith Miller.
+
+        * dfg/DFGGraph.cpp:
+        (JSC::DFG::Graph::dump):
+
+2017-09-14  Saam Barati  <sbar...@apple.com>
+
         It should be valid to exit before each set when doing arity fixup when inlining
         https://bugs.webkit.org/show_bug.cgi?id=176948
 

Modified: trunk/Source/_javascript_Core/dfg/DFGGraph.cpp (222065 => 222066)


--- trunk/Source/_javascript_Core/dfg/DFGGraph.cpp	2017-09-14 23:52:31 UTC (rev 222065)
+++ trunk/Source/_javascript_Core/dfg/DFGGraph.cpp	2017-09-15 00:04:47 UTC (rev 222066)
@@ -390,8 +390,7 @@
         if (node->origin.semantic != node->origin.forExit && node->origin.forExit.isSet())
             out.print(comma, "exit: ", node->origin.forExit);
     }
-    if (!node->origin.exitOK)
-        out.print(comma, "ExitInvalid");
+    out.print(comma, node->origin.exitOK ? "ExitValid" : "ExitInvalid");
     if (node->origin.wasHoisted)
         out.print(comma, "WasHoisted");
     out.print(")");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to