Compiler Design
Compiler Design
Phases of a Compiler
Prerequisite – Introduction of Compiler design
We basically have two phases of compilers, namely Analysis phase and Synthesis
phase. Analysis phase creates an intermediate representation from the given source
code. Synthesis phase creates an equivalent target program from the intermediate
representation.
Symbol Table – It is a data structure being used and maintained by the compiler,
consists all the identifier’s name along with their types. It helps the compiler to
function smoothly by finding the identifiers quickly.
The compiler has two modules namely front end and back end. Front-end constitutes
of the Lexical analyzer, semantic analyzer, syntax analyzer and intermediate code
generator. And the rest are assembled to form the back end.
1. Lexical Analyzer –
It is also called scanner. It takes the output of preprocessor (which performs file
inclusion and macro expansion) as the input which is in pure high level
language. It reads the characters from source program and groups them into
lexemes (sequence of characters that “go together”). Each lexeme corresponds
to a token. Tokens are defined by regular expressions which are understood by
the lexical analyzer. It also removes lexical errors (for e.g. erroneous
characters), comments and white space.
2. Syntax Analyzer – It is sometimes called as parser. It constructs the parse
tree. It takes all the tokens one by one and uses Context Free Grammar to
construct the parse tree.
Why Grammar ?
The rules of programming can be entirely represented in some few productions.
Using these productions we can represent what the program actually is. The
input has to be checked whether it is in the desired format or not.
Syntax error can be detected at this level if the input is not in accordance with
the grammar.
3. Semantic Analyzer – It verifies the parse tree, whether it’s meaningful or not.
It furthermore produces a verified parse tree.It also does type checking, Label
checking and Flow control checking.
4. Intermediate Code Generator – It generates intermediate code, that is a
form which can be readily executed by machine We have many popular
intermediate codes. Example – Three address code etc. Intermediate code is
converted to machine language using the last two phases which are platform
dependent.
Till intermediate code, it is same for every compiler out there, but after that, it
depends on the platform. To build a new compiler we don’t need to build it from
scratch. We can take the intermediate code from the already existing compiler
and build the last two parts.
5. Code Optimizer – It transforms the code so that it consumes fewer resources
and produces more speed. The meaning of the code being transformed is not
altered. Optimisation can be categorized into two types: machine dependent
and machine independent.
6. Target Code Generator – The main purpose of Target Code generator is to
write a code that the machine can understand and also register allocation,
instruction selection etc. The output is dependent on the type of assembler.
This is the final stage of compilation.
\
Ans 2: -
Parser Generators
Input: Grammatical description of a programming language
Output: Syntax analyzers.
Parser generator takes the grammatical description of a programming language and
produces a syntax analyzer.
Scanner Generators
Input: Regular expression description of the tokens of a language
Output: Lexical analyzers.
Scanner generator generates lexical analyzers from a regular expression
description of the tokens of a language.