Title: Compilation%20and%20Interpretation%20(Sections%201.4-1.6)
1 Compilation and Interpretation(Sections 1.4-1.6)
- CSCI 431 Programming Languages
- Fall 2003
A modification of slides developed by Felix
Hernandez-Campos at UNC Chapel Hill
2From Source Code to Executable Code
program gcd(input, output) var i, j
integer begin read(i, j) while i ltgt j
do if i gt j then i i j else j j
i writeln(i) end.
3Compilation and Interpretation
- A compiler is a program that translates
high-level source programs into target program
4Mixing Compilation and Interpretation
- Fuzzy difference
- A language is interpreted when the initial
translation is simple - A language is compiled when the translation
process is complicated
5Preprocessing
- Macros
- define ltmacrogt ltreplacement namegt
- define FALSE 0
- define max(A,B) ( (A) gt (B) ? (A)(B))
6Linking
7Portability
- Assembly language instead of machine language
8Programming Environments
- Much more than compilers and interpreters
- Assemblers, debuggers, preprocessors and linkers
- Editors
- Pretty printers
- Style Checkers
- Version management
- Profilers
- Integrated environments
- Beyond a simple bus error
- Emacs
9Overview of Compilation
program gcd(input, output) var i, j
integer begin read(i, j) while i ltgt j
do if i gt j then i i j else j j
i writeln(i) end.
10Phases of Compilation
11Example
- From Scotts class notes
- Desk calculator language
- Example program
- read A
- read B
- sum A B
- write sum
- write sum / 2
12Lexical Analysis
- Tokens
- id letter ( letter digit ) except
"read" and "write" - literal digit digit
- "", "", "-", "", "/", "(", ")
- end of file
13Syntax Analysis The Grammar
- Grammar in EBNF
- ltpgmgt -gt ltstatement listgt
- ltstmt listgt -gt ltstmt listgt ltstmtgt E
- ltstmtgt -gt id ltexprgt read id write
ltexprgt - ltexprgt -gt lttermgt ltexprgt ltadd opgt lttermgt
- lttermgt -gt ltfactorgt lttermgt ltmult opgt
ltfactorgt - ltfactorgt -gt ( ltexprgt ) id literal
- ltadd opgt -gt -
- ltmult opgt -gt /
14Syntactic and Semantic Analysis
- Derive parse tree in class
- http//www.cs.unca.edu/bruce/Fall03/csci431/slide
s/parseTree.doc - Derive abstract syntax tree in class
15Code Generation
- Intermediate code
- read
- pop A
- read
- pop B
- push A
- push B
- add
- pop sum
- push sum
- write
- push sum
- push 2
- div
- write
16Code Generation
- Target code
- .data
- A .long 0
- B .long 0
- sum .long 0
- .text
- main jsr read
- movl d0,d1
- movl d1,A
- jsr read
- movl d0,d1
- movl d1,B
- movl A,d1
-
movl B,d2 addl
d1,d2 movl d1,sum movl
sum,d1 movl d1,d0
jsr write movl sum,d1
movl 2,d2 divsl d1,d2
movl d1,d0 jsr write