What opcode dispatch strategies are used in efficient interpreters? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:04:03Z http://stackoverflow.com/feeds/question/511566 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters 0 What opcode dispatch strategies are used in efficient interpreters? joeforker 2009-02-04T14:24:46Z 2009-07-29T16:10:59Z <p>What techniques promote efficient opcode dispatch to make a fast interpreter? Are there some techniques that only work well on modern hardware and others that don't work well anymore due to hardware advances? What trade offs must be made between ease of implementation, speed, and portability?</p> <p>I'm pleased that Python's C implementation is finally moving beyond a simple <code>switch (opcode) {...}</code> implementation for opcode dispatch to indirect threading as a compile time option, but I'm less pleased that it took them 20 years to get there. Maybe if we document these strategies on stackoverflow the next language will get fast faster.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/511582#511582 3 Answer by Jason S for What opcode dispatch strategies are used in efficient interpreters? Jason S 2009-02-04T14:28:30Z 2009-02-04T14:28:30Z <p><a href="http://en.wikipedia.org/wiki/Just-in-time_compilation" rel="nofollow">Just-in-time compilation</a> is one.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/511611#511611 1 Answer by dmajkic for What opcode dispatch strategies are used in efficient interpreters? dmajkic 2009-02-04T14:36:51Z 2009-02-04T14:36:51Z <p>Befor you start anything, check <a href="http://www.lua.org" rel="nofollow">Lua</a>. </p> <p>It's small (150Kb), pure ANSI C, works on anything having C compiler. Very fast. </p> <p>And most important - source code is clean and readable. Worth checking out.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/511708#511708 0 Answer by Cheery for What opcode dispatch strategies are used in efficient interpreters? Cheery 2009-02-04T14:58:34Z 2009-02-04T14:58:34Z <p>Benchmarking is a good technique on making anything fast on given platform(s). Test, refine, test again, improve.</p> <p>I don't think you can get any better answer. There's lot of techniques to make interpreters. But I give you a tip, do not do trade offs, just choose what you really need and pursue those goals.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/511732#511732 1 Answer by Darron for What opcode dispatch strategies are used in efficient interpreters? Darron 2009-02-04T15:05:15Z 2009-02-04T15:05:15Z <p>One big win is to store the source code in an intermediate form, rather than redoing lexical analysis and parsing during execution.</p> <p>This can range all the way from just storing the tokens, through Forth style threaded code and on to JIT compilation.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/511771#511771 2 Answer by spoulson for What opcode dispatch strategies are used in efficient interpreters? spoulson 2009-02-04T15:14:28Z 2009-02-04T15:14:28Z <p>The question is a bit vague. But, it seems you're asking about writing an interpreter.</p> <p>Interpreters typically utilize traditional parsing components: lexer, parser, and abstract syntax tree (AST). This allows the designer to read and interpret valid syntax and build a tree structure of commands with associated operators, parameters, etc.</p> <p>Once in AST form, the entire input is tokenized and the interpreter can begin executing by traversing the tree.</p> <p>There are many options, but I've recently used <a href="http://antlr.org" rel="nofollow">ANTLR</a> as a parser generator that can build parsers in various target languages, including C/C++ and C#.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/511990#511990 1 Answer by joeforker for What opcode dispatch strategies are used in efficient interpreters? joeforker 2009-02-04T16:01:06Z 2009-02-04T20:09:33Z <p>Indirect threading is a strategy where each opcode implementation has its own <code>JMP</code> to the next opcode. The patch to the Python interpreter looks something like this:</p> <pre><code>add: result = a + b; goto *opcode_targets[*next_instruction++]; </code></pre> <p><code>opcode_targets</code> maps the instruction in the language's bytecode to the location in memory of the opcode implementation. This is faster because the processor's branch predictor can make a different prediction for each bytecode, in contrast to a <code>switch</code> statement that has only one branch instruction.</p> <p>The compiler must support computed goto for this to work, which mostly means gcc.</p> <p>Direct threading is similar, but in direct threading the array of opcodes is replaced with pointers to the opcode implentations like so:</p> <pre><code>goto *next_opcode_target++; </code></pre> <p>These techniques are only useful because modern processors are pipelined and must clear their pipelines (slow) on a mispredicted branch. The processor designers put in branch prediction to avoid having to clear the pipeline as often, but branch prediction only works for branches that are more likely to take a particular path.</p> http://stackoverflow.com/questions/511566/what-opcode-dispatch-strategies-are-used-in-efficient-interpreters/1201379#1201379 1 Answer by Paul Biggar for What opcode dispatch strategies are used in efficient interpreters? Paul Biggar 2009-07-29T16:10:59Z 2009-07-29T16:10:59Z <p>There are a number of papers on different kinds of dispatch:</p> <p>M. Anton Ertl and David Gregg, <a href="http://www.complang.tuwien.ac.at/papers/ertl%26gregg03.ps.gz" rel="nofollow">Optimizing Indirect Branch Prediction Accuracy in Virtual Machine Interpreters</a>, in Proceedings of the ACM SIGPLAN 2003 Conference on Programming Language Design and Implementation (PLDI 03), pp. 278-288, San Diego, California, June 2003.</p> <p>M. Anton Ertl and David Gregg,<a href="http://www.cs.tcd.ie/David.Gregg/papers/ertl-europar01.pdf" rel="nofollow"> The behaviour of efficient virtual machine interpreters on modern architectures</a>, in Proceedings of the 7th European Conference on Parallel Computing (Europar 2001), pp. 403-412, LNCS 2150, Manchester, August 2001.</p> <p>An excellent summary is provided by <a href="https://www.cs.tcd.ie/publications/tech-reports/reports.07/TCD-CS-2007-49.pdf" rel="nofollow">Yunhe Shi in his PhD thesis</a>.</p> <p>Also, <a href="http://compilers.iecc.com/comparch/article/07-05-044" rel="nofollow">someone discovered a new technique</a> a few years ago which is valid ANSI C.</p>