<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Register usage optimization in mathIC when LHS and RHS are constants isn't configured correctly"
   href="https://bugs.webkit.org/show_bug.cgi?id=160802#c34">Comment # 34</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Register usage optimization in mathIC when LHS and RHS are constants isn't configured correctly"
   href="https://bugs.webkit.org/show_bug.cgi?id=160802">bug 160802</a>
              from <span class="vcard"><a class="email" href="mailto:ticaiolima&#64;gmail.com" title="Caio Lima &lt;ticaiolima&#64;gmail.com&gt;"> <span class="fn">Caio Lima</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=160802#c33">comment #33</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=286147&amp;action=diff" name="attach_286147" title="Patch">attachment 286147</a> <a href="attachment.cgi?id=286147&amp;action=edit" title="Patch">[details]</a></span>
&gt; Patch
&gt; 
&gt; View in context:
&gt; <a href="https://bugs.webkit.org/attachment.cgi?id=286147&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=286147&amp;action=review</a>
&gt; 
&gt; &gt;&gt;&gt; Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp:3476
&gt; &gt;&gt;&gt; +    if (Generator::isLeftOperandValidConstant(leftOperand) || !Generator::isRightOperandValidConstant(rightOperand)) {
&gt; &gt;&gt; 
&gt; &gt;&gt; Sorry, I was totally wrong about this code. We don't need to check Generator::isLeftOperandValidConstant(leftOperand) here since
&gt; &gt;&gt; the code above makes sure that not both operands can be constant. Sorry for incorrectly suggesting that before.
&gt; &gt;&gt; Instead, what I'd do is just have an assertion above like so (by the other related assertion):
&gt; &gt;&gt; ASSERT(!(Generator::isLeftOperandValidConstant(leftOperand) &amp;&amp; Generator::isRightOperandValidConstant(rightOperand)));
&gt; &gt; 
&gt; &gt; Actually, IMHO I think it is correct. The code previously is just considering  &quot;isInt32Constant&quot; and coincidently our current JITMathICs are just considering Int32Constant as possible constant operand. However, one of them can potentially consider a rule with &quot;isNumberConstant&quot; or even RHS or LHS as always valid constant  and &quot;(left|right)Child-&gt;isInt32Constant&quot; is not considering it. I think this design better because we leave the valid constant rule in JITBlahGenerator responsibility. Does it make sense to you?
&gt; 
&gt; I see your argument. I agree with your sentiment, however, I don't
&gt; completely agree with your assertion that it's JITBlahGenerator's
&gt; responsibility at the moment to determine what a valid constant is (I would
&gt; argue that it's partially its responsibility). Currently, the caller of such
&gt; functions decides whether or not to put constants into the SnippetOperands.
&gt; I think it's cleaner for the code to go full in on this assumption, and back
&gt; it up with assertions. I'm not totally against your argument, but I'm not a
&gt; huge fan of having the code pretend a condition can hold when it can't. I
&gt; think it's better to just have the code assert that the condition holds, and
&gt; if we ever decide to improve how constants flow into JITBlahGenerator, we
&gt; can remove the assertion.</span >

Agreed</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>