SlideShare a Scribd company logo
TCS 502 Compiler Designp g
CS416 Compiler Design 1P K Singh
Course Information
Textbook:
Alfred V Aho Ravi Sethi and Jeffrey D UllmanAlfred V. Aho, Ravi Sethi, and Jeffrey D. Ullman,
“Compilers: Principles, Techniques, and Tools”
Addison-Wesley, 1986.Addison Wesley, 1986.
• Course Web Page: http://pksmmmec.googlepages.com
CS416 Compiler Design 2P K Singh
Preliminaries Required
• Basic knowledge of programming languages.
• Basic knowledge of FSA and CFGBasic knowledge of FSA and CFG.
• Knowledge of a high programming language for the
programming assignments.
CS416 Compiler Design 3P K Singh
Course Outline
• Introduction to Compiling
• Lexical Analysisy
• Syntax Analysis
– Context Free GrammarsContext Free Grammars
– Top-Down Parsing, LL Parsing
– Bottom-Up Parsing, LR Parsingp g g
CS416 Compiler Design 4P K Singh
Course Outline
• Syntax-Directed Translation
– Attribute Definitions
– Evaluation of Attribute Definitions
• Semantic Analysis, Type Checking
• Run-Time Organization
• Intermediate Code GenerationIntermediate Code Generation
• Code Optimization
P K Singh CS416 Compiler Design 5
COMPILERS
• A compiler is a program takes a program written in a source
language and translates it into an equivalent program in a targetg g q p g g
language.
source program COMPILER target program
( ll i i ( ll h i l i
error messages
( Normally a program written in
a high-level programming language)
( Normally the equivalent program in
machine code – relocatable object file)
error messages
CS416 Compiler Design 6P K Singh
Major Parts of Compilers
• There are two major parts of a compiler: Analysis and
SynthesisSynthesis
• In analysis phase an intermediate representation is• In analysis phase, an intermediate representation is
created from the given source program.
– Lexical Analyzer, Syntax Analyzer and Semantic Analyzer are the parts ofy y y y p
this phase.
• In synthesis phase, the equivalent target program is
t d f thi i t di t t ticreated from this intermediate representation.
– Intermediate Code Generator, Code Generator, and Code Optimizer are
the parts of this phase.
CS416 Compiler Design 7P K Singh
Phases of A Compiler
Lexical
Analyzer
Semantic
Analyzer
Syntax
Analyzer
Intermediate
Code Generator
Code
Optimizer
Code
Generator
Target
Program
Source
Program
• Each phase transforms the source program from one representationp p g p
into another representation.
• They communicate with error handlers• They communicate with error handlers.
• They communicate with the symbol table.
CS416 Compiler Design 8P K Singh
Lexical Analyzer
• Lexical Analyzer reads the source program character by
character and returns the tokens of the source program.
• A token describes a pattern of characters having same meaning
in the source program. (such as identifiers, operators, keywords,
numbers, delimeters and so on), )
Ex: newval := oldval + 12 => tokens: newval identifier
:= assignment operator
oldval identifier
+ add operator
12 a number
• Puts information about identifiers into the symbol table.u s o a o abou de e s o e sy bo ab e
• Regular expressions are used to describe tokens (lexical
constructs).
A (Deterministic) Finite State Automaton can be used in the
CS416 Compiler Design 9
• A (Deterministic) Finite State Automaton can be used in the
implementation of a lexical analyzer.
P K Singh
Syntax Analyzer
• A Syntax Analyzer creates the syntactic structure (generally a
parse tree) of the given program.p ) g p g
• A syntax analyzer is also called as a parser.
• A parse tree describes a syntactic structure.
assgstmt
identifier := expression • In a parse tree, all terminals are at leaves.
newval expression + expression
id tifi b
p ,
• All inner nodes are non-terminals in
a context free grammar.
identifier number
oldval 12
CS416 Compiler Design 10P K Singh
Syntax Analyzer (CFG)
• The syntax of a language is specified by a context free
grammar (CFG).g ( )
• The rules in a CFG are mostly recursive.
• A syntax analyzer checks whether a given program satisfies the
rules implied by a CFG or not.
– If it satisfies, the syntax analyzer creates a parse tree for the given program.
• Ex: We use BNF (Backus Naur Form) to specify a CFG
assgstmt -> identifier := expression
expression -> identifier
expression -> number
expression -> expression + expression
CS416 Compiler Design 11P K Singh
Syntax Analyzer versus Lexical Analyzer
• Which constructs of a program should be recognized by the
lexical analyzer, and which ones by the syntax analyzer?y , y y y
– Both of them do similar things; But the lexical analyzer deals with simple non-
recursive constructs of the language.
– The syntax analyzer deals with recursive constructs of the language.
– The lexical analyzer simplifies the job of the syntax analyzer.
– The lexical analyzer recognizes the smallest meaningful units (tokens) in a source
program.
– The syntax analyzer works on the smallest meaningful units (tokens) in a source
program to recognize meaningful structures in our programming language.
CS416 Compiler Design 12P K Singh
Parsing Techniques
• Depending on how the parse tree is created, there are different
parsing techniques.
These parsing techniques are categorized into two groups:• These parsing techniques are categorized into two groups:
– Top-Down Parsing,
– Bottom-Up Parsingp g
• Top-Down Parsing:
– Construction of the parse tree starts at the root, and proceeds towards the leaves.
– Efficient top-down parsers can be easily constructed by hand.Efficient top down parsers can be easily constructed by hand.
– Recursive Predictive Parsing, Non-Recursive Predictive Parsing (LL Parsing).
• Bottom-Up Parsing:
– Construction of the parse tree starts at the leaves and proceeds towards the rootConstruction of the parse tree starts at the leaves, and proceeds towards the root.
– Normally efficient bottom-up parsers are created with the help of some software
tools.
– Bottom-up parsing is also known as shift-reduce parsing.
CS416 Compiler Design 13
– Operator-Precedence Parsing – simple, restrictive, easy to implement
– LR Parsing – much general form of shift-reduce parsing, LR, SLR, LALR
P K Singh
Semantic Analyzer
• A semantic analyzer checks the source program for semantic
errors and collects the type information for the code generation.yp g
• Type-checking is an important part of semantic analyzer.
• Normally semantic information cannot be represented by a
context-free language used in syntax analyzers.
• Context-free grammars used in the syntax analysis are integrated
with attributes (semantic rules)with attributes (semantic rules)
– the result is a syntax-directed translation,
– Attribute grammars
E• Ex:
newval := oldval + 12
Th t f th id tifi l t t h ith t f th i ( ld l 12)
CS416 Compiler Design 14
• The type of the identifier newval must match with type of the expression (oldval+12)
P K Singh
Intermediate Code Generation
• A compiler may produce an explicit intermediate codes
representing the source program.p g p g
• These intermediate codes are generally machine (architecture
independent). But the level of intermediate codes is close to the
le el of machine codeslevel of machine codes.
• Ex:
newval := oldval * fact + 1
id1 := id2 * id3 + 1
MULT id2,id3,temp1 Intermediates Codes (Quadraples)
ADD temp1,#1,temp2
MOV temp2,,id1
CS416 Compiler Design 15
p ,,
P K Singh
Code Optimizer (for Intermediate Code Generator)
• The code optimizer optimizes the code produced by the
intermediate code generator in the terms of time and space.g p
• Ex:
MULT id2,id3,temp1
ADD temp1,#1,id1ADD temp1,#1,id1
CS416 Compiler Design 16P K Singh
Code Generator
• Produces the target language in a specific architecture.
• The target program is normally is a relocatable object fileThe target program is normally is a relocatable object file
containing the machine codes.
• Ex:
( assume that we have an architecture with instructions whose at least one of its operands
isis
a machine register)
MOVE id2 R1MOVE id2,R1
MULT id3,R1
ADD #1,R1
MOVE R1 id1
CS416 Compiler Design 17
MOVE R1,id1
P K Singh

More Related Content

PPTX
PPT
Compiler Design Tutorial
PDF
Lecture1 introduction compilers
PDF
Compiler unit 1
PPT
Introduction to course
PPT
Cpcs302 1
PPTX
Flex (fast lexical analyzer generator )
PDF
Compiler Design Lecture Notes
Compiler Design Tutorial
Lecture1 introduction compilers
Compiler unit 1
Introduction to course
Cpcs302 1
Flex (fast lexical analyzer generator )
Compiler Design Lecture Notes

What's hot (20)

PPT
Csci360 08-subprograms
PPTX
Compiler Design
PPT
Unit 5 cspc
DOC
Lex tool manual
PDF
Lecture2 general structure of a compiler
KEY
Unit 1 cd
PPTX
Lex & yacc
PPT
Compiler Design
PPTX
7 compiler lab
PPT
Lex and Yacc ppt
PDF
08 subprograms
PPTX
Structure of the compiler
ODP
About Tokens and Lexemes
PDF
Compiler Design Introduction
PDF
Compilers Design
PDF
Subprogram
PDF
New c sharp3_features_(linq)_part_iv
PDF
Cs6660 compiler design
PPTX
Lecture 15 run timeenvironment_2
Csci360 08-subprograms
Compiler Design
Unit 5 cspc
Lex tool manual
Lecture2 general structure of a compiler
Unit 1 cd
Lex & yacc
Compiler Design
7 compiler lab
Lex and Yacc ppt
08 subprograms
Structure of the compiler
About Tokens and Lexemes
Compiler Design Introduction
Compilers Design
Subprogram
New c sharp3_features_(linq)_part_iv
Cs6660 compiler design
Lecture 15 run timeenvironment_2
Ad

Viewers also liked (16)

PDF
internet securityand cyber law Unit2
PPS
Anti stresssong
PDF
Midlands Alternative Mining Indaba Declaration 2014
PDF
Aarad Homer's Visual Resume
DOCX
นักพัฒ
PPS
Painted feathers
PPTX
Excel - формули и функции
PPTX
Toni bou i mena
PPTX
SQL Server Worst Practices
PDF
2014 the boulder history museum
PDF
конференц сервис Happy spaces
PPTX
Learn Database Design with MySQL - Chapter 4 - Data types
PDF
Expand Your Loft Space
DOCX
Jonas Salk by Carlee
PDF
Midlands PAMI press statement-final
PPTX
How to have the best Christmas
internet securityand cyber law Unit2
Anti stresssong
Midlands Alternative Mining Indaba Declaration 2014
Aarad Homer's Visual Resume
นักพัฒ
Painted feathers
Excel - формули и функции
Toni bou i mena
SQL Server Worst Practices
2014 the boulder history museum
конференц сервис Happy spaces
Learn Database Design with MySQL - Chapter 4 - Data types
Expand Your Loft Space
Jonas Salk by Carlee
Midlands PAMI press statement-final
How to have the best Christmas
Ad

Similar to Introduction (20)

PPT
Compiler1
PPTX
1 compiler outline
PPT
Lexical analyzer
PPT
Compiler Design in Computer Applications
PDF
lec00-Introduction.pdf
PPT
Compiler design computer science engineering.ppt
PPTX
CD U1-5.pptx
PDF
Chapter#01 cc
PPT
Compier Design_Unit I.ppt
PPT
Compier Design_Unit I.ppt
PPTX
Introduction to Compilers | Phases & Structure
PDF
Assignment1
DOCX
Techniques & applications of Compiler
PPTX
Ss ui lecture 2
PPTX
1 cc
PPT
Unit1.ppt
PPT
Phases of compiler
DOCX
Compiler Design Material
PPTX
COMPILER DESIGN PPTS.pptx
PPT
Compier Design_Unit I_SRM.ppt
Compiler1
1 compiler outline
Lexical analyzer
Compiler Design in Computer Applications
lec00-Introduction.pdf
Compiler design computer science engineering.ppt
CD U1-5.pptx
Chapter#01 cc
Compier Design_Unit I.ppt
Compier Design_Unit I.ppt
Introduction to Compilers | Phases & Structure
Assignment1
Techniques & applications of Compiler
Ss ui lecture 2
1 cc
Unit1.ppt
Phases of compiler
Compiler Design Material
COMPILER DESIGN PPTS.pptx
Compier Design_Unit I_SRM.ppt

More from Royalzig Luxury Furniture (20)

PDF
Royalzig Unveils India’s First World-Class Luxury Furniture Experience Center...
PPTX
A Glimpse of Beautiful Hand-Carved Luxury Italian Furniture Photos from Royal...
PPTX
French Style Slim Carving Bedroom Sets
PDF
India's Luxury Furniture Brand Royalzig setting-Up a New Production Unit
PPTX
Luxury furniture manufacturer in india
PPTX
bone inlay hand carved luxury table
PPTX
Hand Carved Luxury & Designer Wooden arm chair
PPTX
beautiful hand carved dressing table
PPTX
Hand Carved Luxury & Designer Wooden Dining Table
PPTX
Hand Carved Luxury & Designer Wooden sofa set
PPTX
Royalzig Hand Carved Luxury & Designer Wood Bed
PPTX
hand carved luxury wedding throne
PPTX
Hand carved Luxury wood divan
PPTX
Royalzig luxury furniture
PPTX
Royalzigppt 004
PPTX
Royalzig high end furniture
PPTX
Royalzigppt 002
PDF
Topdown parsing
PDF
Royalzig Unveils India’s First World-Class Luxury Furniture Experience Center...
A Glimpse of Beautiful Hand-Carved Luxury Italian Furniture Photos from Royal...
French Style Slim Carving Bedroom Sets
India's Luxury Furniture Brand Royalzig setting-Up a New Production Unit
Luxury furniture manufacturer in india
bone inlay hand carved luxury table
Hand Carved Luxury & Designer Wooden arm chair
beautiful hand carved dressing table
Hand Carved Luxury & Designer Wooden Dining Table
Hand Carved Luxury & Designer Wooden sofa set
Royalzig Hand Carved Luxury & Designer Wood Bed
hand carved luxury wedding throne
Hand carved Luxury wood divan
Royalzig luxury furniture
Royalzigppt 004
Royalzig high end furniture
Royalzigppt 002
Topdown parsing

Recently uploaded (20)

PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
UNIT III MENTAL HEALTH NURSING ASSESSMENT
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
Hazard Identification & Risk Assessment .pdf
PPTX
Lesson notes of climatology university.
PDF
IGGE1 Understanding the Self1234567891011
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PPTX
Unit 4 Skeletal System.ppt.pptxopresentatiom
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PPTX
Digestion and Absorption of Carbohydrates, Proteina and Fats
PDF
Weekly quiz Compilation Jan -July 25.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
advance database management system book.pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
UNIT III MENTAL HEALTH NURSING ASSESSMENT
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
Hazard Identification & Risk Assessment .pdf
Lesson notes of climatology university.
IGGE1 Understanding the Self1234567891011
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Unit 4 Skeletal System.ppt.pptxopresentatiom
Paper A Mock Exam 9_ Attempt review.pdf.
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
Digestion and Absorption of Carbohydrates, Proteina and Fats
Weekly quiz Compilation Jan -July 25.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Supply Chain Operations Speaking Notes -ICLT Program
What if we spent less time fighting change, and more time building what’s rig...
advance database management system book.pdf
RMMM.pdf make it easy to upload and study
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين

Introduction

  • 1. TCS 502 Compiler Designp g CS416 Compiler Design 1P K Singh
  • 2. Course Information Textbook: Alfred V Aho Ravi Sethi and Jeffrey D UllmanAlfred V. Aho, Ravi Sethi, and Jeffrey D. Ullman, “Compilers: Principles, Techniques, and Tools” Addison-Wesley, 1986.Addison Wesley, 1986. • Course Web Page: http://pksmmmec.googlepages.com CS416 Compiler Design 2P K Singh
  • 3. Preliminaries Required • Basic knowledge of programming languages. • Basic knowledge of FSA and CFGBasic knowledge of FSA and CFG. • Knowledge of a high programming language for the programming assignments. CS416 Compiler Design 3P K Singh
  • 4. Course Outline • Introduction to Compiling • Lexical Analysisy • Syntax Analysis – Context Free GrammarsContext Free Grammars – Top-Down Parsing, LL Parsing – Bottom-Up Parsing, LR Parsingp g g CS416 Compiler Design 4P K Singh
  • 5. Course Outline • Syntax-Directed Translation – Attribute Definitions – Evaluation of Attribute Definitions • Semantic Analysis, Type Checking • Run-Time Organization • Intermediate Code GenerationIntermediate Code Generation • Code Optimization P K Singh CS416 Compiler Design 5
  • 6. COMPILERS • A compiler is a program takes a program written in a source language and translates it into an equivalent program in a targetg g q p g g language. source program COMPILER target program ( ll i i ( ll h i l i error messages ( Normally a program written in a high-level programming language) ( Normally the equivalent program in machine code – relocatable object file) error messages CS416 Compiler Design 6P K Singh
  • 7. Major Parts of Compilers • There are two major parts of a compiler: Analysis and SynthesisSynthesis • In analysis phase an intermediate representation is• In analysis phase, an intermediate representation is created from the given source program. – Lexical Analyzer, Syntax Analyzer and Semantic Analyzer are the parts ofy y y y p this phase. • In synthesis phase, the equivalent target program is t d f thi i t di t t ticreated from this intermediate representation. – Intermediate Code Generator, Code Generator, and Code Optimizer are the parts of this phase. CS416 Compiler Design 7P K Singh
  • 8. Phases of A Compiler Lexical Analyzer Semantic Analyzer Syntax Analyzer Intermediate Code Generator Code Optimizer Code Generator Target Program Source Program • Each phase transforms the source program from one representationp p g p into another representation. • They communicate with error handlers• They communicate with error handlers. • They communicate with the symbol table. CS416 Compiler Design 8P K Singh
  • 9. Lexical Analyzer • Lexical Analyzer reads the source program character by character and returns the tokens of the source program. • A token describes a pattern of characters having same meaning in the source program. (such as identifiers, operators, keywords, numbers, delimeters and so on), ) Ex: newval := oldval + 12 => tokens: newval identifier := assignment operator oldval identifier + add operator 12 a number • Puts information about identifiers into the symbol table.u s o a o abou de e s o e sy bo ab e • Regular expressions are used to describe tokens (lexical constructs). A (Deterministic) Finite State Automaton can be used in the CS416 Compiler Design 9 • A (Deterministic) Finite State Automaton can be used in the implementation of a lexical analyzer. P K Singh
  • 10. Syntax Analyzer • A Syntax Analyzer creates the syntactic structure (generally a parse tree) of the given program.p ) g p g • A syntax analyzer is also called as a parser. • A parse tree describes a syntactic structure. assgstmt identifier := expression • In a parse tree, all terminals are at leaves. newval expression + expression id tifi b p , • All inner nodes are non-terminals in a context free grammar. identifier number oldval 12 CS416 Compiler Design 10P K Singh
  • 11. Syntax Analyzer (CFG) • The syntax of a language is specified by a context free grammar (CFG).g ( ) • The rules in a CFG are mostly recursive. • A syntax analyzer checks whether a given program satisfies the rules implied by a CFG or not. – If it satisfies, the syntax analyzer creates a parse tree for the given program. • Ex: We use BNF (Backus Naur Form) to specify a CFG assgstmt -> identifier := expression expression -> identifier expression -> number expression -> expression + expression CS416 Compiler Design 11P K Singh
  • 12. Syntax Analyzer versus Lexical Analyzer • Which constructs of a program should be recognized by the lexical analyzer, and which ones by the syntax analyzer?y , y y y – Both of them do similar things; But the lexical analyzer deals with simple non- recursive constructs of the language. – The syntax analyzer deals with recursive constructs of the language. – The lexical analyzer simplifies the job of the syntax analyzer. – The lexical analyzer recognizes the smallest meaningful units (tokens) in a source program. – The syntax analyzer works on the smallest meaningful units (tokens) in a source program to recognize meaningful structures in our programming language. CS416 Compiler Design 12P K Singh
  • 13. Parsing Techniques • Depending on how the parse tree is created, there are different parsing techniques. These parsing techniques are categorized into two groups:• These parsing techniques are categorized into two groups: – Top-Down Parsing, – Bottom-Up Parsingp g • Top-Down Parsing: – Construction of the parse tree starts at the root, and proceeds towards the leaves. – Efficient top-down parsers can be easily constructed by hand.Efficient top down parsers can be easily constructed by hand. – Recursive Predictive Parsing, Non-Recursive Predictive Parsing (LL Parsing). • Bottom-Up Parsing: – Construction of the parse tree starts at the leaves and proceeds towards the rootConstruction of the parse tree starts at the leaves, and proceeds towards the root. – Normally efficient bottom-up parsers are created with the help of some software tools. – Bottom-up parsing is also known as shift-reduce parsing. CS416 Compiler Design 13 – Operator-Precedence Parsing – simple, restrictive, easy to implement – LR Parsing – much general form of shift-reduce parsing, LR, SLR, LALR P K Singh
  • 14. Semantic Analyzer • A semantic analyzer checks the source program for semantic errors and collects the type information for the code generation.yp g • Type-checking is an important part of semantic analyzer. • Normally semantic information cannot be represented by a context-free language used in syntax analyzers. • Context-free grammars used in the syntax analysis are integrated with attributes (semantic rules)with attributes (semantic rules) – the result is a syntax-directed translation, – Attribute grammars E• Ex: newval := oldval + 12 Th t f th id tifi l t t h ith t f th i ( ld l 12) CS416 Compiler Design 14 • The type of the identifier newval must match with type of the expression (oldval+12) P K Singh
  • 15. Intermediate Code Generation • A compiler may produce an explicit intermediate codes representing the source program.p g p g • These intermediate codes are generally machine (architecture independent). But the level of intermediate codes is close to the le el of machine codeslevel of machine codes. • Ex: newval := oldval * fact + 1 id1 := id2 * id3 + 1 MULT id2,id3,temp1 Intermediates Codes (Quadraples) ADD temp1,#1,temp2 MOV temp2,,id1 CS416 Compiler Design 15 p ,, P K Singh
  • 16. Code Optimizer (for Intermediate Code Generator) • The code optimizer optimizes the code produced by the intermediate code generator in the terms of time and space.g p • Ex: MULT id2,id3,temp1 ADD temp1,#1,id1ADD temp1,#1,id1 CS416 Compiler Design 16P K Singh
  • 17. Code Generator • Produces the target language in a specific architecture. • The target program is normally is a relocatable object fileThe target program is normally is a relocatable object file containing the machine codes. • Ex: ( assume that we have an architecture with instructions whose at least one of its operands isis a machine register) MOVE id2 R1MOVE id2,R1 MULT id3,R1 ADD #1,R1 MOVE R1 id1 CS416 Compiler Design 17 MOVE R1,id1 P K Singh