show/hide this revision's text 3 bytecode -> opcode

What bytecode opcode dispatch strategies are used in efficient interpreters?

What techniques promote efficient bytecode 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?

I'm pleased that Python's C implementation is finally moving beyond a simple switch (opcode) {...} implementation for bytecode 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.

show/hide this revision's text 2 specialize question

What implementation techniques make bytecode dispatch strategies are used in efficient interpretersfast?

What techniques are used promote efficient bytecode dispatch to implement make a fast interpretersinterpreter? 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?

I'm pleased that Python's C implementation is finally moving beyond a simple switch (opcode) {...} implementation for bytecode 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.

show/hide this revision's text 1

What implementation techniques make interpreters fast?

What techniques are used to implement fast interpreters? 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?