<div dir="ltr">Thanks to everyone for the helpful feedback. I was able to incorporate the interpreter and loop heuristic with very little additional code, so I'm not immediately concerned about the extra maintenance introduced. An AST interpreter does sound sensible in the long run, but is more effort than I can justify spending at the moment. If the IR interpreter does bitrot (a shame) the MCJIT alone is probably still fast enough for my use.<div>
<br></div><div>v/r,</div><div>Josh</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Aug 12, 2014 at 1:31 PM, Philip Reames <span dir="ltr"><<a href="mailto:listmail@philipreames.com" target="_blank">listmail@philipreames.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class=""><br>
On 08/11/2014 04:21 AM, David Chisnall wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Josh,<br>
<br>
On 9 Aug 2014, at 21:33, Josh Klontz <<a href="mailto:josh.klontz@gmail.com" target="_blank">josh.klontz@gmail.com</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm facing a situation where I have generated IR that only needs to be executed once. I've noticed for simple IR it's faster to run the interpreter on it, but for complex IR it's much better to JIT compile and execute it. I'm seeking suggestions for a good heuristic to decide which approach to take for any given IR. I'm leaning in favor of deciding based on the presence/absence of loops.<br>

</blockquote>
What are you generating IR from?  You may find that an AST interpreter, although slow, will be faster than going to the effort of generating LLVM IR and then interpreting it.  LLVM IR is much slower than bytecodes for high-level languages because you have the overhead of interpreting for things that often map to a single machine instruction, whereas high-level bytecodes tend to amortise the interpretation cost by having complex operations.<br>

<br>
I've found having a working AST interpreter to be good for testing an LLVM-based JIT, as you can run the same code with both check that the same actions externally visible happen in the same order.<br>
</blockquote></div>
David makes a good set of points here.  The only reason not to take the approach he is suggesting is that it does involve writing and maintaining additional code.  If you don't really care about the performance of your cold code, using the LLVM interpreter is definite an option.  (Keep in mind that there's little active development happening on the interpreter and it may have started to bitrot.)<br>

<br>
Given your original question, I'm guessing you do care about the performance of your cold code.  Given that, David has suggested the best approach.<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">
<br>
You can probably find some heuristics at the AST layer that will work well.  For example, does it contain any loops with more than N iterations (where N is a number you determine experimentally)?  Does it operate on data over a certain size?<br>

<br>
David<br>
<br>
<br></div>
______________________________<u></u>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu" target="_blank">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/llvmdev</a><br>
</blockquote>
<br>
</blockquote></div><br></div>