<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[188886] trunk/Source/JavaScriptCore</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/188886">188886</a></dd>
<dt>Author</dt> <dd>fpizlo@apple.com</dd>
<dt>Date</dt> <dd>2015-08-24 14:44:39 -0700 (Mon, 24 Aug 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>DFG::FixupPhase should use the lambda form of m_graph.doToChildren() rather than the old macro
https://bugs.webkit.org/show_bug.cgi?id=148397

Reviewed by Geoffrey Garen.

We used to iterate the edges of a node by using the DFG_NODE_DO_TO_CHILDREN macro. We
don't need to do that anymore since we have the lambda-based m_graph.doToChildren(). This
allows us to get rid of a bunch of helper methods in DFG::FixupPhase.

I also took the opportunity to give the injectTypeConversionsInBlock() method a more
generic name, since after https://bugs.webkit.org/show_bug.cgi?id=145204 it will be used
for fix-up of checks more broadly.

* dfg/DFGFixupPhase.cpp:
(JSC::DFG::FixupPhase::run):
(JSC::DFG::FixupPhase::attemptToMakeGetTypedArrayByteOffset):
(JSC::DFG::FixupPhase::fixupChecksInBlock):
(JSC::DFG::FixupPhase::injectTypeConversionsInBlock): Deleted.
(JSC::DFG::FixupPhase::tryToRelaxRepresentation): Deleted.
(JSC::DFG::FixupPhase::fixEdgeRepresentation): Deleted.
(JSC::DFG::FixupPhase::injectTypeConversionsForEdge): Deleted.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceJavaScriptCoreChangeLog">trunk/Source/JavaScriptCore/ChangeLog</a></li>
<li><a href="#trunkSourceJavaScriptCoredfgDFGFixupPhasecpp">trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceJavaScriptCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ChangeLog (188885 => 188886)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ChangeLog        2015-08-24 21:44:32 UTC (rev 188885)
+++ trunk/Source/JavaScriptCore/ChangeLog        2015-08-24 21:44:39 UTC (rev 188886)
</span><span class="lines">@@ -1,3 +1,27 @@
</span><ins>+2015-08-24  Filip Pizlo  &lt;fpizlo@apple.com&gt;
+
+        DFG::FixupPhase should use the lambda form of m_graph.doToChildren() rather than the old macro
+        https://bugs.webkit.org/show_bug.cgi?id=148397
+
+        Reviewed by Geoffrey Garen.
+
+        We used to iterate the edges of a node by using the DFG_NODE_DO_TO_CHILDREN macro. We
+        don't need to do that anymore since we have the lambda-based m_graph.doToChildren(). This
+        allows us to get rid of a bunch of helper methods in DFG::FixupPhase.
+
+        I also took the opportunity to give the injectTypeConversionsInBlock() method a more
+        generic name, since after https://bugs.webkit.org/show_bug.cgi?id=145204 it will be used
+        for fix-up of checks more broadly.
+
+        * dfg/DFGFixupPhase.cpp:
+        (JSC::DFG::FixupPhase::run):
+        (JSC::DFG::FixupPhase::attemptToMakeGetTypedArrayByteOffset):
+        (JSC::DFG::FixupPhase::fixupChecksInBlock):
+        (JSC::DFG::FixupPhase::injectTypeConversionsInBlock): Deleted.
+        (JSC::DFG::FixupPhase::tryToRelaxRepresentation): Deleted.
+        (JSC::DFG::FixupPhase::fixEdgeRepresentation): Deleted.
+        (JSC::DFG::FixupPhase::injectTypeConversionsForEdge): Deleted.
+
</ins><span class="cx"> 2015-08-24  Geoffrey Garen  &lt;ggaren@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Some renaming to clarify CodeBlock and UnlinkedCodeBlock
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoredfgDFGFixupPhasecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp (188885 => 188886)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp        2015-08-24 21:44:32 UTC (rev 188885)
+++ trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp        2015-08-24 21:44:39 UTC (rev 188886)
</span><span class="lines">@@ -67,7 +67,7 @@
</span><span class="cx">         }
</span><span class="cx">         
</span><span class="cx">         for (BlockIndex blockIndex = 0; blockIndex &lt; m_graph.numBlocks(); ++blockIndex)
</span><del>-            injectTypeConversionsInBlock(m_graph.block(blockIndex));
</del><ins>+            fixupChecksInBlock(m_graph.block(blockIndex));
</ins><span class="cx"> 
</span><span class="cx">         m_graph.m_planStage = PlanStage::AfterFixup;
</span><span class="cx"> 
</span><span class="lines">@@ -2104,166 +2104,154 @@
</span><span class="cx">         return true;
</span><span class="cx">     }
</span><span class="cx">     
</span><del>-    void injectTypeConversionsInBlock(BasicBlock* block)
</del><ins>+    void fixupChecksInBlock(BasicBlock* block)
</ins><span class="cx">     {
</span><span class="cx">         if (!block)
</span><span class="cx">             return;
</span><span class="cx">         ASSERT(block-&gt;isReachable);
</span><span class="cx">         m_block = block;
</span><span class="cx">         for (m_indexInBlock = 0; m_indexInBlock &lt; block-&gt;size(); ++m_indexInBlock) {
</span><del>-            m_currentNode = block-&gt;at(m_indexInBlock);
-            tryToRelaxRepresentation(m_currentNode);
-            DFG_NODE_DO_TO_CHILDREN(m_graph, m_currentNode, injectTypeConversionsForEdge);
-        }
-        m_insertionSet.execute(block);
-    }
-    
-    void tryToRelaxRepresentation(Node* node)
-    {
-        // Some operations may be able to operate more efficiently over looser representations.
-        // Identify those here. This avoids inserting a redundant representation conversion.
-        // Also, for some operations, like MovHint, this is a necessary optimization: inserting
-        // an otherwise-dead conversion just for a MovHint would break OSR's understanding of
-        // the IR.
-        
-        switch (node-&gt;op()) {
-        case MovHint:
-        case Check:
-            DFG_NODE_DO_TO_CHILDREN(m_graph, m_currentNode, fixEdgeRepresentation);
-            break;
</del><ins>+            Node* node = block-&gt;at(m_indexInBlock);
+
+            // First, try to relax the representational demands of each node, in order to have
+            // fewer conversions.
+            switch (node-&gt;op()) {
+            case MovHint:
+            case Check:
+                m_graph.doToChildren(
+                    node,
+                    [&amp;] (Edge&amp; edge) {
+                        switch (edge.useKind()) {
+                        case DoubleRepUse:
+                        case DoubleRepRealUse:
+                            if (edge-&gt;hasDoubleResult())
+                                break;
</ins><span class="cx">             
</span><del>-        case ValueToInt32:
-            if (node-&gt;child1().useKind() == DoubleRepUse
-                &amp;&amp; !node-&gt;child1()-&gt;hasDoubleResult()) {
-                node-&gt;child1().setUseKind(NumberUse);
-                break;
-            }
-            break;
</del><ins>+                            if (edge-&gt;hasInt52Result())
+                                edge.setUseKind(Int52RepUse);
+                            else if (edge.useKind() == DoubleRepUse)
+                                edge.setUseKind(NumberUse);
+                            break;
</ins><span class="cx">             
</span><del>-        default:
-            break;
-        }
-    }
-    
-    void fixEdgeRepresentation(Node*, Edge&amp; edge)
-    {
-        switch (edge.useKind()) {
-        case DoubleRepUse:
-        case DoubleRepRealUse:
-            if (edge-&gt;hasDoubleResult())
-                break;
</del><ins>+                        case Int52RepUse:
+                            // Nothing we can really do.
+                            break;
</ins><span class="cx">             
</span><del>-            if (edge-&gt;hasInt52Result())
-                edge.setUseKind(Int52RepUse);
-            else if (edge.useKind() == DoubleRepUse)
-                edge.setUseKind(NumberUse);
-            break;
</del><ins>+                        case UntypedUse:
+                        case NumberUse:
+                            if (edge-&gt;hasDoubleResult())
+                                edge.setUseKind(DoubleRepUse);
+                            else if (edge-&gt;hasInt52Result())
+                                edge.setUseKind(Int52RepUse);
+                            break;
</ins><span class="cx">             
</span><del>-        case Int52RepUse:
-            // Nothing we can really do.
-            break;
</del><ins>+                        case RealNumberUse:
+                            if (edge-&gt;hasDoubleResult())
+                                edge.setUseKind(DoubleRepRealUse);
+                            else if (edge-&gt;hasInt52Result())
+                                edge.setUseKind(Int52RepUse);
+                            break;
</ins><span class="cx">             
</span><del>-        case UntypedUse:
-        case NumberUse:
-            if (edge-&gt;hasDoubleResult())
-                edge.setUseKind(DoubleRepUse);
-            else if (edge-&gt;hasInt52Result())
-                edge.setUseKind(Int52RepUse);
-            break;
-            
-        case RealNumberUse:
-            if (edge-&gt;hasDoubleResult())
-                edge.setUseKind(DoubleRepRealUse);
-            else if (edge-&gt;hasInt52Result())
-                edge.setUseKind(Int52RepUse);
-            break;
-            
-        default:
-            break;
-        }
-    }
-    
-    void injectTypeConversionsForEdge(Node* node, Edge&amp; edge)
-    {
-        ASSERT(node == m_currentNode);
-        Node* result = nullptr;
-        
-        switch (edge.useKind()) {
-        case DoubleRepUse:
-        case DoubleRepRealUse:
-        case DoubleRepMachineIntUse: {
-            if (edge-&gt;hasDoubleResult())
</del><ins>+                        default:
+                            break;
+                        }
+                    });
</ins><span class="cx">                 break;
</span><del>-            
-            if (edge-&gt;isNumberConstant()) {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecBytecodeDouble, DoubleConstant, node-&gt;origin,
-                    OpInfo(m_graph.freeze(jsDoubleNumber(edge-&gt;asNumber()))));
-            } else if (edge-&gt;hasInt52Result()) {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecInt52AsDouble, DoubleRep, node-&gt;origin,
-                    Edge(edge.node(), Int52RepUse));
-            } else {
-                UseKind useKind;
-                if (edge-&gt;shouldSpeculateDoubleReal())
-                    useKind = RealNumberUse;
-                else if (edge-&gt;shouldSpeculateNumber())
-                    useKind = NumberUse;
-                else
-                    useKind = NotCellUse;
-
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecBytecodeDouble, DoubleRep, node-&gt;origin,
-                    Edge(edge.node(), useKind));
</del><ins>+                
+            case ValueToInt32:
+                if (node-&gt;child1().useKind() == DoubleRepUse
+                    &amp;&amp; !node-&gt;child1()-&gt;hasDoubleResult()) {
+                    node-&gt;child1().setUseKind(NumberUse);
+                    break;
+                }
+                break;
+                
+            default:
+                break;
</ins><span class="cx">             }
</span><span class="cx"> 
</span><del>-            edge.setNode(result);
-            break;
-        }
</del><ins>+            // Now, insert type conversions if necessary.
+            m_graph.doToChildren(
+                node,
+                [&amp;] (Edge&amp; edge) {
+                    Node* result = nullptr;
+        
+                    switch (edge.useKind()) {
+                    case DoubleRepUse:
+                    case DoubleRepRealUse:
+                    case DoubleRepMachineIntUse: {
+                        if (edge-&gt;hasDoubleResult())
+                            return;
</ins><span class="cx">             
</span><del>-        case Int52RepUse: {
-            if (edge-&gt;hasInt52Result())
-                break;
-            
-            if (edge-&gt;isMachineIntConstant()) {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecMachineInt, Int52Constant, node-&gt;origin,
-                    OpInfo(edge-&gt;constant()));
-            } else if (edge-&gt;hasDoubleResult()) {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecMachineInt, Int52Rep, node-&gt;origin,
-                    Edge(edge.node(), DoubleRepMachineIntUse));
-            } else if (edge-&gt;shouldSpeculateInt32ForArithmetic()) {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecInt32, Int52Rep, node-&gt;origin,
-                    Edge(edge.node(), Int32Use));
-            } else {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecMachineInt, Int52Rep, node-&gt;origin,
-                    Edge(edge.node(), MachineIntUse));
-            }
</del><ins>+                        if (edge-&gt;isNumberConstant()) {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecBytecodeDouble, DoubleConstant, node-&gt;origin,
+                                OpInfo(m_graph.freeze(jsDoubleNumber(edge-&gt;asNumber()))));
+                        } else if (edge-&gt;hasInt52Result()) {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecInt52AsDouble, DoubleRep, node-&gt;origin,
+                                Edge(edge.node(), Int52RepUse));
+                        } else {
+                            UseKind useKind;
+                            if (edge-&gt;shouldSpeculateDoubleReal())
+                                useKind = RealNumberUse;
+                            else if (edge-&gt;shouldSpeculateNumber())
+                                useKind = NumberUse;
+                            else
+                                useKind = NotCellUse;
</ins><span class="cx"> 
</span><del>-            edge.setNode(result);
-            break;
-        }
</del><ins>+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecBytecodeDouble, DoubleRep, node-&gt;origin,
+                                Edge(edge.node(), useKind));
+                        }
+                        break;
+                    }
</ins><span class="cx">             
</span><del>-        default: {
-            if (!edge-&gt;hasDoubleResult() &amp;&amp; !edge-&gt;hasInt52Result())
-                break;
</del><ins>+                    case Int52RepUse: {
+                        if (edge-&gt;hasInt52Result())
+                            return;
</ins><span class="cx">             
</span><del>-            if (edge-&gt;hasDoubleResult()) {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecBytecodeDouble, ValueRep, node-&gt;origin,
-                    Edge(edge.node(), DoubleRepUse));
-            } else {
-                result = m_insertionSet.insertNode(
-                    m_indexInBlock, SpecInt32 | SpecInt52AsDouble, ValueRep, node-&gt;origin,
-                    Edge(edge.node(), Int52RepUse));
-            }
</del><ins>+                        if (edge-&gt;isMachineIntConstant()) {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecMachineInt, Int52Constant, node-&gt;origin,
+                                OpInfo(edge-&gt;constant()));
+                        } else if (edge-&gt;hasDoubleResult()) {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecMachineInt, Int52Rep, node-&gt;origin,
+                                Edge(edge.node(), DoubleRepMachineIntUse));
+                        } else if (edge-&gt;shouldSpeculateInt32ForArithmetic()) {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecInt32, Int52Rep, node-&gt;origin,
+                                Edge(edge.node(), Int32Use));
+                        } else {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecMachineInt, Int52Rep, node-&gt;origin,
+                                Edge(edge.node(), MachineIntUse));
+                        }
+                        break;
+                    }
</ins><span class="cx">             
</span><del>-            edge.setNode(result);
-            break;
-        } }
</del><ins>+                    default: {
+                        if (!edge-&gt;hasDoubleResult() &amp;&amp; !edge-&gt;hasInt52Result())
+                            return;
+            
+                        if (edge-&gt;hasDoubleResult()) {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecBytecodeDouble, ValueRep, node-&gt;origin,
+                                Edge(edge.node(), DoubleRepUse));
+                        } else {
+                            result = m_insertionSet.insertNode(
+                                m_indexInBlock, SpecInt32 | SpecInt52AsDouble, ValueRep,
+                                node-&gt;origin, Edge(edge.node(), Int52RepUse));
+                        }
+                        break;
+                    } }
+                    
+                    edge.setNode(result);
+                });
+        }
+        
+        m_insertionSet.execute(block);
</ins><span class="cx">     }
</span><span class="cx">     
</span><span class="cx">     BasicBlock* m_block;
</span></span></pre>
</div>
</div>

</body>
</html>