Difference between a bytecode parsed instruction and machine language? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:38:17Z http://stackoverflow.com/feeds/question/881709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/881709/difference-between-a-bytecode-parsed-instruction-and-machine-language 1 Difference between a bytecode parsed instruction and machine language? Jinx 2009-05-19T09:08:27Z 2009-05-19T23:14:44Z <blockquote> <p>"A bytecode program is normally executed by parsing the instructions one at a time. This kind of bytecode interpreter is very portable. Some systems, called dynamic translators, or "just-in-time" (JIT) compilers, translate bytecode into machine language as necessary at runtime: this makes the virtual machine unportable."</p> </blockquote> <p>A question about this paragraph is that: After the bytecode gets processed, what's the difference between a parsed instruction and machine language (or machine code)?</p> http://stackoverflow.com/questions/881709/difference-between-a-bytecode-parsed-instruction-and-machine-language/881721#881721 2 Answer by sharptooth for Difference between a bytecode parsed instruction and machine language? sharptooth 2009-05-19T09:11:13Z 2009-05-19T09:11:13Z <p>There's no difference - JIT compiler is done exactly for that - it produces machine code that is executed on the hardware.</p> http://stackoverflow.com/questions/881709/difference-between-a-bytecode-parsed-instruction-and-machine-language/881782#881782 5 Answer by Steven for Difference between a bytecode parsed instruction and machine language? Steven 2009-05-19T09:24:53Z 2009-05-19T09:24:53Z <p>JIT is different to a byte code interpreter.</p> <p>Consider the following C function:</p> <pre><code>int sum() { return 5 + 6; } </code></pre> <p>This will be compiled directly machine code. The exact instructions on say x86 and ARM processors will be different.</p> <p>If we wrote a basic bytecode interpreter it might look something like this:</p> <pre><code>for(;;) { switch(*currentInstruction++) { case OP_PUSHINT: *stack++ = nextInt(currentInstruction); break; case OP_ADD: --stack; stack[-1].add(*stack); break; case OP_RETURN: return stack[-1]; } } </code></pre> <p>This can then interpret the following set of instructions: </p> <pre><code>OP_PUSHINT (5) OP_PUSHINT (6) OP_ADD OP_RETURN </code></pre> <p>If you compiled the byte code interpreter on both x86 or ARM then you would be able to run the same byte code without doing any further rewriting of the interpreter.</p> <p>If you wrote a JIT compiler you would need to emit processor specific instructions (machine code) for each supported processor, whereas the byte code interpreter is relying on the C++ compiler to emit the processor specific instructions.</p> http://stackoverflow.com/questions/881709/difference-between-a-bytecode-parsed-instruction-and-machine-language/881854#881854 0 Answer by sybreon for Difference between a bytecode parsed instruction and machine language? sybreon 2009-05-19T09:45:48Z 2009-05-19T09:45:48Z <p>Ultimately it all boils down to machine instructions.</p> <ol> <li>Native App - contains machine instructions that are executed directly.</li> <li>JIT App - bytecode is compiled into machine instructions and executed.</li> <li>Translated App - bytecode is translated by a virtual machine that is a Native App.</li> </ol> <p>As you can tell, with #1, you have the least overhead while with #3, you have the most overhead. So, performance should be fastest on #1 and just as fast on #2 after the initial compilation overhead.</p> http://stackoverflow.com/questions/881709/difference-between-a-bytecode-parsed-instruction-and-machine-language/885494#885494 0 Answer by Norman Ramsey for Difference between a bytecode parsed instruction and machine language? Norman Ramsey 2009-05-19T23:14:44Z 2009-05-19T23:14:44Z <p>In a bytecode interpreter, the instruction format is usually designed for very fast "parsing" using shift and mask operators. The interpreter, after "parsing" (I prefer "decoding") the instruction, immediately updates the state of the virtual machine and then begins decoding the next instruction. So after the bytecode gets processed in an <em>interpreter</em>, no remnant remains.</p> <p>In a JIT compiler, bytes are processed in units larger than a single instruction. The minimum unit is the basic block, but modern JITs will convert larger paths to machine code. This is a <em>translation</em> step, and the output of the translation step <em>is</em> machine code. The original bytecode may remain in memory, but it is not used for implementation&mdash;so there is no real difference. (Although it is still typical that the machine code for a JITted virtual machine does different things from the machine code emitted by a native-code compiler.)</p>