<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Pathological performance on first execution of a function called with mismatched argument count"
   href="https://bugs.webkit.org/show_bug.cgi?id=155551#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Pathological performance on first execution of a function called with mismatched argument count"
   href="https://bugs.webkit.org/show_bug.cgi?id=155551">bug 155551</a>
              from <span class="vcard"><a class="email" href="mailto:oliver&#64;apple.com" title="Oliver Hunt &lt;oliver&#64;apple.com&gt;"> <span class="fn">Oliver Hunt</span></a>
</span></b>
        <pre>Let's try again with the same function in both
function f(j) { for (var i = 0 ; i &lt; 10000000; i++) j = (j ?  j * i : 1) ^ (i &amp; j); }; var start = new Date; f(1); var end = new Date; print(&quot;1st: &quot; + (end - start) + &quot;ms&quot;); var start = new Date; f(1); var end = new Date; print(&quot;2nd: &quot; + (end - start) + &quot;ms&quot;)
1st: 30
2nd: 23ms

If we do it again, without passing a parameter we get:
function f(j) { for (var i = 0 ; i &lt; 10000000; i++) j = (j ?  j * i : 1) ^ (i &amp; j); }; 
var start = new Date; f(); var end = new Date; print(&quot;1st: &quot; + (end - start) + &quot;ms&quot;); 
var start = new Date; f(); var end = new Date; print(&quot;2nd: &quot; + (end - start) + &quot;ms&quot;)

1st: 11919ms
2nd: 29ms</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>