<div dir="ltr">Hi Clement,<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Oct 16, 2013 at 5:53 AM, Clément Bera <span dir="ltr">&lt;<a href="mailto:bera.clement@gmail.com" target="_blank">bera.clement@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> <br><div dir="ltr">Hello,<div><br></div><div>Recently I realized that the tempVector is always created at the beginning of the method. In the case of:</div>
<div><br></div><div>foo</div><div>    | temp |</div><div>    true ifTrue: [ ^ self ].</div>

<div>    [ temp := 1 ] value.</div><div><br></div><div>It means that even if the execution flow goes to the quick return direction, the tempVector is created even if it is not used. I hacked a bit the compiler to lazily create the tempVector when needed (access to temp Vector variable or block closure creation), which means here the tempVector would be created just before the pushClosure bytecode and not at the beginning of the method.</div>


<div><br></div><div>I got as result that this specific method was executed 50,000,000 times per second instead of 21,000,000 times per second. Probably because of some useless garbage collection avoided.</div><div><br></div>


<div>The problem of this lazy tempVector initialization is that I never know where I am in the control flow graph. This means than in the case:</div><div><br></div><div>bar</div><div>    | temp |</div><div>    false ifTrue: [ temp := 1 ].</div>


<div>    [ temp := 2 ].</div><div><br></div><div>It is hard to detect where to add the extra bytecode for lazy tempVector initialization, because the first time you need it is in a branch, so if you create the tempVector in the branch and the execution flow goes in the other direction then the tempVector will not have been initialized.</div>


<div><br></div><div>Has any of you already investigated in this direction ? Does it worth it to implement that ?</div></div></blockquote><div><br></div><div>My philosophy of optimization is that one should optimize what looks to be expensive.  I didn&#39;t always operate like this.  When I was younger working on BrouHaHa I would think, &quot;yes, that must be slow&quot;, go implement, and then find no difference in performance.  For example, I added setters as quick methods.  I had fun, and I learned how to implement stuff, but the real learning was that one should attack the largest costs.  Now if you see some case where temp vector creation really slows things down then by all means try and optimize.  But I (and I mean me) wouldn&#39;t waste my time until I saw a significant cost due to temp vector creation. </div>
<div><br></div><div>Note that Spur, in making allocation much cheaper, makes it feasible to speed up temp vector creation a lot.  And if Spur is a factor of two faster then temp vector creation (which calls into the interpreter currently) will be twice as expensive until it is optimized.  So it could be even more worth while to do in the Spur JIT.  Then it would be interesting to compare deferring temp vector creation vs fast machine-code temp vector creation.</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div>Thanks for any answers.</div></div>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>best,<div>Eliot</div>
</div></div>