1 / 24

CS 3304 Comparative Languages

CS 3304 Comparative Languages. Lecture 2: Compilation and Interpretation 19 January 2012. The von Neumann Architecture. Fetch-execute-cycle (on a von Neumann architecture computer) initialize the program counter repeat forever fetch the instruction pointed by the counter

leonorl
Download Presentation

CS 3304 Comparative Languages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 3304Comparative Languages • Lecture 2:Compilation and Interpretation • 19 January 2012

  2. The von Neumann Architecture • Fetch-execute-cycle (on a von Neumann architecture computer) initialize the program counter repeat forever fetch the instruction pointed by the counter increment the counter decode the instruction execute the instruction end repeat

  3. Compilation vs. Interpretation • Not opposites. • Not a clear-cut distinction. • Interpretation: • Greater flexibility. • Better diagnostics (error messages). • Compilation: • Better performance.

  4. Pure Compilation • The compiler translates the high-level source program into an equivalent target program (typically in machine language), and then goes away.

  5. Pure Interpretation • Interpreter stays around for the execution of the program. • Interpreter is the locus of control during execution.

  6. Hybrid • Common case is compilation or simple pre-processing, followed by interpretation. • Most language implementations include a mixture of both compilation and interpretation.

  7. Compilation and Pre-Processing • Note that compilation does NOT have to produce machine language for some sort of hardware. • Compilation is translation from one language into another, with full analysis of the meaning of the input. • Compilation entails semantic understanding of what is being processed; pre-processing does not. • A pre-processor will often let errors through. • A compiler hides further steps; a pre-processor does not.

  8. Compilation vs. Interpretation • Many compiled languages have interpreted pieces, e.g., formats in Fortran or C. • Most use “virtual instructions”: • Set operations in Pascal. • String manipulation in Basic. • Some compilers produce nothing but virtual instructions, e.g., Pascal P-code, Java byte code, Microsoft COM+.

  9. Implementation Strategies I • Preprocessor: • Removes comments and white space. • Groups characters into tokens (keywords, identifiers, numbers, symbols). • Expands abbreviations in the style of a macro assembler. • Identifies higher-level syntactic structures (loops, subroutines). • Library of Routines and Linking: • Compiler uses a linker program to merge the appropriate library of subroutines (e.g., math functions) into the final program.

  10. Implementation Strategies II • Post-compilation Assembly: • Facilitates debugging (assembly language easier for people to read). • Isolates the compiler from changes in the format of machine language files (only assembler must be changed, is shared by many compilers). • The C Preprocessor (conditional compilation) • Preprocessor deletes portions of code, which allows several versions of a program to be built from the same source.

  11. Implementation Strategies III • Source-to-Source Translation (C++): • C++ implementations based on the early AT&T compiler generated an intermediate program in C, instead of an assembly language. • Bootstrapping.

  12. Implementation Strategies IV • Compilation of Interpreted Languages: • The compiler generates code that makes assumptions about decisions that won’t be finalized until runtime. If these assumptions are valid, the code runs very fast. If not, a dynamic check will revert to the interpreter. • Dynamic and Just-in-Time Compilation: • In some cases a programming system may deliberately delay compilation until the last possible moment: • Lisp or Prolog invoke the compiler on the fly, to translate newly created source into machine language, or to optimize the code for a particular input set. • The Java language definition defines a machine-independent intermediate form known as byte code. Byte code is the standard format for distribution of Java programs. • The main C# compiler produces .NET Common Intermediate Language (CIL) then translated into machine code immediately prior to execution.

  13. Implementation Strategies V • Microcode: • Assembly-level instruction set is not implemented in hardware; it runs on an interpreter. • Interpreter is written in low-level instructions (microcode or firmware), which are stored in read-only memory and executed by the hardware. • Compilers exist for some interpreted languages, but they aren't pure: • Selective compilation of compilable pieces and extra-sophisticated pre-processing of remaining source. • Interpretation of parts of code, at least, is still necessary for reasons above. • Unconventional compilers • Text formatters. • Silicon compilers. • Query language processors.

  14. Programming Environment Tools

  15. Compilation Phases

  16. Scanning • Divides the program into "tokens", which are the smallest meaningful units; this saves time, since character-by-character processing is slow. • We can tune the scanner better if its job is simple; it also saves complexity (lots of it) for later stages. • You can design a parser to take characters instead of tokens as input, but it isn't pretty. • Scanning is recognition of a regular language, e.g., via deterministic finite automaton (DFA).

  17. Parsing • Parsing is recognition of a context-free language, e.g., via push-down automaton (PDA). • Parsing discovers the "context free" structure of the program • Informally, it finds the structure you can describe with syntax diagrams (the "circles and arrows" in a Pascal manual).

  18. Semantic Analysis • Semantic analysis is the discovery of meaning in the program • The compiler actually does what is called STATIC semantic analysis. That's the meaning that can be figured out at compile time. • Some things (e.g., array subscript out of bounds) can't be figured out until run time. Things like that are part of the program's DYNAMIC semantics.

  19. Intermediate Form • Intermediate form (IF) done after semantic analysis (if the program passes all checks). • IFs are often chosen for machine independence, ease of optimization, or compactness (these are somewhat contradictory). • They often resemble machine code for some imaginary idealized machine; e.g. a stack machine, or a machine with arbitrarily many registers. • Many compilers actually move the code through more than one IF.

  20. Other Phases • Optimization takes an intermediate-code program and produces another one that does the same thing faster, or in less space: • The term is a misnomer; we just improve code. • The optimization phase is optional. • Code generation phase produces assembly language or (sometime) relocatable machine language. • Certain machine-specific optimizations (use of special instructions or addressing modes, etc.) may be performed during or after target code generation.

  21. Symbol Table • All phases rely on a symbol table that keeps track of all the identifiers in the program and what the compiler knows about them. • This symbol table may be retained (in some form) for use by a debugger, even after compilation has completed.

  22. Example: GCD Program in C int main() { inti = getint(), j = getint(); while (i != j) { if (i > j) i = i - j; else j = j - i; } putint(i); }

  23. GCD Program Tokens • Lexical and Syntax Analysis: Scanning (lexical analysis) and parsing recognize the structure of the program, groups characters into tokens, the smallest meaningful units of the program. int main ( ) { inti = getint ( ) , j = getint ( ) ; while ( i != j ) { if ( i > j ) i = i - j ; else j = j - i ; } putint ( i ) ; }

  24. Context-Free Grammar and Parsing • Parsing organizes tokens into a parse tree that represents higher-level constructs in terms of their constituents. • Potentially recursive rules known as context-free grammar define the ways in which these constituents combine. • Example: while loop in C iteration-statement → while ( expression ) statement statement, in turn, is often a list enclosed in braces: statement → compound-statement compound-statement → { block-item-list opt } where block-item-list opt → block-item-list or block-item-list opt → ϵ and block-item-list → block-item block-item-list → block-item-list block-item block-item → declaration block-item → statement

More Related