Lecture 1

  1. Phases of a Compiler
  2. Compilers vs Interpreters

1.0 - Phases of a Compiler

These notes are from Phases of a Compiler - Ian Hayes 2019

Figure 1: Phases of a Compiler

1.1 - A Note

Synthesis={Code Generation}\text{Synthesis} = \{\text{Code Generation} \}

1.2 - Lexical Analysis

Lexical Analysis is the step in the compiler where the source code is converted into lexical tokens

1.2.1 - Lexical Analysis Example

PL0 Compiler Example

1.3 - Syntax Analysis

Given a series of lexical tokens, generate an abstract syntax tree and a symbol table.

1.4 - Type Checking (Static Semantic Analysis / Static Analysis)

Check for type and other static semantic errors

A binary arithmetic operator may be applied to either a pair of integers or to a pair of floating-point numbers. If the operator is applied to a floating-point number and an integer, the compiler may convert / coerce the integer into a floating-point number.

1.5 - Code Generation

Given the updated Symbol Table and Abstract Syntax Tree, generate code for the target machine.

2.0 - Compilers vs Interpreters

What is the difference between compilers and interpreters? Interpreters are essentially the same as compilers, except they don’t perform the last step of Code Generation.

2.1 - About Interpreters

Interprets the abstract syntax tree directly to execute the program

3.0 - Syntax of PL0

PL0 is an educational language, used for teaching Compilers and Interpreters. It is a subset of the Pascal language.