Why python compile the source to bytecode before interpreting? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T18:29:07Zhttp://stackoverflow.com/feeds/question/888100http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting1Why python compile the source to bytecode before interpreting?Jinx2009-05-20T14:04:26Z2009-08-05T17:33:44Z
<p>Why python compile the source to bytecode before interpreting?</p>
<p>Why not interpret from the source directly?</p>
http://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting/888116#8881166Answer by Brian for Why python compile the source to bytecode before interpreting?Brian2009-05-20T14:07:17Z2009-05-20T14:07:17Z<p>Because interpretting from bytecode directly is faster. It avoids the need to do lexing, for one thing.</p>
http://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting/888117#8881175Answer by Dave Webb for Why python compile the source to bytecode before interpreting?Dave Webb2009-05-20T14:07:35Z2009-05-20T14:07:35Z<p>Because you can compile to a <code>.pyc</code> once and interpret from it many times.</p>
<p>So if you're running a script many times you only have the overhead of parsing the source code once.</p>
http://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting/888119#88811921Answer by Konrad Rudolph for Why python compile the source to bytecode before interpreting?Konrad Rudolph2009-05-20T14:07:45Z2009-05-20T14:07:45Z<p>Nearly no interpreter really interprets code <em>directly</em>, line by line – it's simply too inefficient. Almost all interpreters use some intermediate representation which can be executed easily. Also, small optimizations can be performed on this intermediate code.</p>
<p>Python furthermore stores this code which has a huge advantage for the next time this code gets executed: Python doesn't have to parse the code anymore; parsing is the slowest part in the compile process. Thus, a bytecode representation reduces execution overhead quite substantially.</p>
http://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting/888159#8881594Answer by Alex Martelli for Why python compile the source to bytecode before interpreting?Alex Martelli2009-05-20T14:12:39Z2009-05-20T14:12:39Z<p>Re-lexing and parsing the source code over and over, rather than doing it just once (most often on the first <code>import</code>), would obviously be a silly and pointless waste of effort.</p>
http://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting/1184282#1184282-1Answer by John Leidegren for Why python compile the source to bytecode before interpreting?John Leidegren2009-07-26T11:03:26Z2009-08-05T17:33:44Z<p>I doubt very much that the reason is performance, albeit be it a nice side effect. I would say that it's only natural to think a VM built around some high-level assembly language would be more practical than to find and replace text in some source code string.</p>
<p>Edit:</p>
<p>Okay, clearly, who ever put a -1 vote on my post without leaving a reasonable comment to explain knows very little about virtual machines (run-time environments).</p>
<p><a href="http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Erik-Meijer-and-Lars-Bak-Inside-V8-A-Javascript-Virtual-Machine/" rel="nofollow">http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Erik-Meijer-and-Lars-Bak-Inside-V8-A-Javascript-Virtual-Machine/</a></p>
http://stackoverflow.com/questions/888100/why-python-compile-the-source-to-bytecode-before-interpreting/1189344#11893440Answer by Paul Biggar for Why python compile the source to bytecode before interpreting?Paul Biggar2009-07-27T16:55:51Z2009-07-27T16:55:51Z<p>Although there is a small efficiency aspect to it (you can store the bytecode on disk or in memory), its mostly engineering: it allows you separate parsing from interpreting. Parsers can often be nasty creatures, full of edge-cases and having to conform to esoteric rules like using just the right amount of lookahead and resolving shift-reduce problems. By contrast, interpreting is really simple: its just a big switch statement using the bytecode's opcode.</p>