compiler vs interpreter ( on basis of construction and design )

After viewing lots of posts about the difference between compilers and interpreters, I'm still not able to figure out the difference in their construction and internal mechanism.

The most common difference I read was that a compiler produces a target program which is executable { means machine code as its output } which can run on a system and than be fed with input. Whereas an interpreter simply runs the input line by line { what exactly is happening here ?} and produces the output.

My main doubts are :

1) A compiler consists of a lexical analyzer, parser, intermediate code generator and code generator but what are the parts of an interpreter?

2) Who gives the run-time support to interpreted languages, I mean who manages the heap and stacks for recursive functions?

3) This is specific to the Python language:
Python comprises of a compiler stage and than interpreter stage as well compiler produces some byte-code and and than this byte-code is interpreted by its Virtual Machine.
if I were to design only the compiler for Python (Python -> bytecode)

a) will I have to manage memory { write code to manage stack and heap } for it?

b) how will this compiler differ from the traditional compiler or say interpreter?

I know this is a whole lot to ask here but I really want to understand these minute details.

I'm referring the compiler book by Alfred V. Aho


Based on the feedback and some further study I think I should modify my question

A compiler need not produce only machine code as its output

But one question is still bugging me Let say I want to design a ( Python->bytecode ) compiler and then bytecode will be interpreted by the virtual machine.. (correct me if I'm wrong ).
Then I'll have to write a lexical analyzer for Python and then a parser which will generate some sort of abstract syntax tree.. after this do I have to generate some intermediate code (3 address code as mentioned in the dragon book) or direct bytecode instructions ( which I suppose will be given in the VM's documentation ) ?

Will I have to write code for handling stack as well to provide support for recursion and scope ?


First off, "compiler" does not imply "outputs machine code". You can compile from any language to any other, be it a high-level programming language, some intermediate format, code for a virtual machine (bytecode) or code for a physical machine (machine code).

  • Like a compiler, an interpreter needs to read and understand the language it implements. Thus you have the same front-end code (though today's interpreters usually implement far simpler language - the bytecode only; therefore these interpreters only need a very simple frontend). Unlike a compiler, an interpreter's backend doesn't generate code, but executes it. Obviously, this is a different problem entirely and hence an interpreter looks quite difference from a compiler. It emulates a computer (often one that's far more high-level than real life machines) instead of producing a representation of an equivalent program.

  • Assuming today's somewhat-high-level virtual machines, this is the job of the interpreter - there are dedicated instructions for, among other things, calling functions and creating objects, and garbage collection is baked into the VM. When you target lower-level machines (such as the x86 instruction set), many such details need to be baked into the generated code, be it directly (system calls or whatever) or via calling into the C standard library implementation.

  • 3.

  • a) Probably not, as a VM dedicated to Python won't require it. It would be very easy to screw up, unnecessary and arguably incompatible to Python semantics as it allows manual memory management. On the other hand, if you were to target something low-level like LLVM, you'd have to take special care - the details depend on the target language. That's part of why nobody does it.

  • b) It would be a perfectly fine compiler, and obviously not an interpreter. You'd probably have a simpler backend than a compiler targeting machine code, and due to the nature of the input language you wouldn't have quite as much analysis and optimization to do, but there's no fundamental difference.

  • 链接地址: http://www.djcxy.com/p/52560.html

    上一篇: 关于JIT编译器和解释器的说明

    下一篇: 编译器vs解释器(基于构造和设计)