SlideShare a Scribd company logo
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 1
BİL744 Derleyici Gerçekleştirimi
( Compiler Design )
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 2
Course Information
• Instructor : Prof. Dr. İlyas Çiçekli
– Phone: 297-7500 Ext. 144,
– Email: ilyas@cs.hacettepe.edu.tr
• Course Web Page:
http://web.cs.hacettepe.edu.tr/~ilyas/Courses/BIL744
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 3
Preliminaries Required
• Basic knowledge of programming languages.
• Basic knowledge of FSA and CFG.
• Knowledge of a high programming language for the programming
assignments.
Textbook:
Alfred V. Aho, Monica S. Lam, Ravi Sethi, and Jeffrey D. Ullman,
“Compilers: Principles, Techniques, and Tools” Second Edition,
Addison-Wesley, 2007.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 4
Grading
• Midterm : 30%
• Project : 30%
• Final : 40%
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 5
Course Outline
• Introduction to Compiling
• Lexical Analysis
• Syntax Analysis
– Context Free Grammars
– Top-Down Parsing, LL Parsing
– Bottom-Up Parsing, LR Parsing
• Syntax-Directed Translation
– Attribute Definitions
– Evaluation of Attribute Definitions
• Semantic Analysis, Type Checking
• Run-Time Organization
• Intermediate Code Generation
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 6
COMPILERS
• A compiler is a program takes a program written in a source language
and translates it into an equivalent program in a target language.
source program COMPILER target program
error messages
( Normally a program written in
a high-level programming language)
( Normally the equivalent program in
machine code – relocatable object file)
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 7
Other Applications
• In addition to the development of a compiler, the techniques used in
compiler design can be applicable to many problems in computer
science.
– Techniques used in a lexical analyzer can be used in text editors, information retrieval
system, and pattern recognition programs.
– Techniques used in a parser can be used in a query processing system such as SQL.
– Many software having a complex front-end may need techniques used in compiler design.
• A symbolic equation solver which takes an equation as input. That program should parse the
given input equation.
– Most of the techniques used in compiler design can be used in Natural Language
Processing (NLP) systems.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 8
Major Parts of Compilers
• There are two major parts of a compiler: Analysis and Synthesis
• In analysis phase, an intermediate representation is created from the
given source program.
– Lexical Analyzer, Syntax Analyzer and Semantic Analyzer are the parts of this phase.
• In synthesis phase, the equivalent target program is created from this
intermediate representation.
– Intermediate Code Generator, Code Generator, and Code Optimizer are the parts of this
phase.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 9
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 representation
into another representation.
• They communicate with error handlers.
• They communicate with the symbol table.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 10
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.
• Regular expressions are used to describe tokens (lexical constructs).
• A (Deterministic) Finite State Automaton can be used in the
implementation of a lexical analyzer.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 11
Syntax Analyzer
• A Syntax Analyzer creates the syntactic structure (generally a parse
tree) of the given program.
• A syntax analyzer is also called as a parser.
• A parse tree describes a syntactic structure.
assgstmt
identifier := expression
newval expression + expression
identifier number
oldval 12
• In a parse tree, all terminals are at leaves.
• All inner nodes are non-terminals in
a context free grammar.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 12
Syntax Analyzer (CFG)
• The syntax of a language is specified by a context free grammar
(CFG).
• 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
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 13
Syntax Analyzer versus Lexical Analyzer
• Which constructs of a program should be recognized by the lexical
analyzer, and which ones by the syntax analyzer?
– 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.
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 14
Parsing Techniques
• Depending on how the parse tree is created, there are different parsing
techniques.
• These parsing techniques are categorized into two groups:
– Top-Down Parsing,
– Bottom-Up Parsing
• 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.
– 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 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.
– Operator-Precedence Parsing – simple, restrictive, easy to implement
– LR Parsing – much general form of shift-reduce parsing, LR, SLR, LALR
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 15
Semantic Analyzer
• A semantic analyzer checks the source program for semantic errors and
collects the type information for the code generation.
• 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)
– the result is a syntax-directed translation,
– Attribute grammars
• Ex:
newval := oldval + 12
• The type of the identifier newval must match with type of the expression (oldval+12)
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 16
Intermediate Code Generation
• A compiler may produce an explicit intermediate codes representing the
source program.
• These intermediate codes are generally machine (architecture
independent). But the level of intermediate codes is close to the level
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
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 17
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.
• Ex:
MULT id2,id3,temp1
ADD temp1,#1,id1
BİL744 Derleyici Gerçekleştirimi (Compiler Design) 18
Code Generator
• Produces the target language in a specific architecture.
• The 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 is
a machine register)
MOVE id2,R1
MULT id3,R1
ADD #1,R1
MOVE R1,id1

More Related Content

PPT
Compiler Design in Computer Applications
PDF
lec00-Introduction.pdf
DOCX
Techniques & applications of Compiler
PPT
Lexical analyzer
PPTX
COMPILER DESIGN PPTS.pptx
PPT
Compiler Design
PPT
Compiler design computer science engineering.ppt
PDF
Chapter#01 cc
Compiler Design in Computer Applications
lec00-Introduction.pdf
Techniques & applications of Compiler
Lexical analyzer
COMPILER DESIGN PPTS.pptx
Compiler Design
Compiler design computer science engineering.ppt
Chapter#01 cc

Similar to lec00-outline.PPT cpp compiler how to cpp (20)

PPT
Compiler1
PPTX
1 compiler outline
PPTX
PDF
PDF
PPT
Unit1.ppt
PPTX
COMPILER CONSTRUCTION KU 1.pptx
PPTX
1._Introduction_.pptx
PDF
Compiler design
PDF
Compiler Design Introduction
PDF
Compilers Design
PDF
Compiler_Lecture1.pdf
PPT
Data structure and algorithm.lect-03.ppt
PDF
Compiler design Introduction
PDF
Compiler design lecture 1 introduction computer science
PPTX
Unit 1 CD.pptx
PDF
Lecture 01 introduction to compiler
PDF
COMPILER DESIGN- Introduction & Lexical Analysis:
PPTX
A Lecture of Compiler Design Subject.pptx
PDF
Cs6660 compiler design
Compiler1
1 compiler outline
Unit1.ppt
COMPILER CONSTRUCTION KU 1.pptx
1._Introduction_.pptx
Compiler design
Compiler Design Introduction
Compilers Design
Compiler_Lecture1.pdf
Data structure and algorithm.lect-03.ppt
Compiler design Introduction
Compiler design lecture 1 introduction computer science
Unit 1 CD.pptx
Lecture 01 introduction to compiler
COMPILER DESIGN- Introduction & Lexical Analysis:
A Lecture of Compiler Design Subject.pptx
Cs6660 compiler design
Ad

More from compengwaelalahmar (20)

PPT
hne human computer of eork sicew das.ppt
PPT
bxe vary very signed computer se sad.ppt
PPT
week1 computer architecture and design for
PPTX
HTML-CSS.pptx computer architect design v
PPT
ITEC229_Chapter8_new.ppt computer architecture
PPTX
lec11_CSS.pptx web page description desi
PPTX
ilet109_2.pptx web designer web page for
PPTX
Introduction to CSS.pptx web for web web
PPTX
8.haft design web designer web for web w
PPTX
HTML 3 - Stiller for December design web
PPTX
HTML 1 - Girf desigcomp web design web g
PPTX
software architecturev2.pptx cop computr
PPT
lec01_intr architecture com computeo.ppt
PPTX
lecture-11-1590405846 computer architect
PPT
Compiler to compiler whatsypechecking.PPT
PPT
D-lr-parsing compiler how to compiler com
PPT
Camtasia Getting Started Guide how to design.ppt
PPT
LR_Parser compiler how to compiler lr1 ll1
PPT
A-overview.pptbb cpp introduction how cpp
PPT
CS540-2-lecture1.pptgvcxc increment cpp cpp
hne human computer of eork sicew das.ppt
bxe vary very signed computer se sad.ppt
week1 computer architecture and design for
HTML-CSS.pptx computer architect design v
ITEC229_Chapter8_new.ppt computer architecture
lec11_CSS.pptx web page description desi
ilet109_2.pptx web designer web page for
Introduction to CSS.pptx web for web web
8.haft design web designer web for web w
HTML 3 - Stiller for December design web
HTML 1 - Girf desigcomp web design web g
software architecturev2.pptx cop computr
lec01_intr architecture com computeo.ppt
lecture-11-1590405846 computer architect
Compiler to compiler whatsypechecking.PPT
D-lr-parsing compiler how to compiler com
Camtasia Getting Started Guide how to design.ppt
LR_Parser compiler how to compiler lr1 ll1
A-overview.pptbb cpp introduction how cpp
CS540-2-lecture1.pptgvcxc increment cpp cpp
Ad

Recently uploaded (20)

PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PPTX
Pharma ospi slides which help in ospi learning
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
01-Introduction-to-Information-Management.pdf
PDF
Computing-Curriculum for Schools in Ghana
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Cell Structure & Organelles in detailed.
PPTX
Lesson notes of climatology university.
PPTX
Presentation on HIE in infants and its manifestations
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
Pharma ospi slides which help in ospi learning
O5-L3 Freight Transport Ops (International) V1.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
01-Introduction-to-Information-Management.pdf
Computing-Curriculum for Schools in Ghana
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
Final Presentation General Medicine 03-08-2024.pptx
FourierSeries-QuestionsWithAnswers(Part-A).pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
VCE English Exam - Section C Student Revision Booklet
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Cell Structure & Organelles in detailed.
Lesson notes of climatology university.
Presentation on HIE in infants and its manifestations

lec00-outline.PPT cpp compiler how to cpp

  • 1. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 1 BİL744 Derleyici Gerçekleştirimi ( Compiler Design )
  • 2. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 2 Course Information • Instructor : Prof. Dr. İlyas Çiçekli – Phone: 297-7500 Ext. 144, – Email: ilyas@cs.hacettepe.edu.tr • Course Web Page: http://web.cs.hacettepe.edu.tr/~ilyas/Courses/BIL744
  • 3. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 3 Preliminaries Required • Basic knowledge of programming languages. • Basic knowledge of FSA and CFG. • Knowledge of a high programming language for the programming assignments. Textbook: Alfred V. Aho, Monica S. Lam, Ravi Sethi, and Jeffrey D. Ullman, “Compilers: Principles, Techniques, and Tools” Second Edition, Addison-Wesley, 2007.
  • 4. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 4 Grading • Midterm : 30% • Project : 30% • Final : 40%
  • 5. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 5 Course Outline • Introduction to Compiling • Lexical Analysis • Syntax Analysis – Context Free Grammars – Top-Down Parsing, LL Parsing – Bottom-Up Parsing, LR Parsing • Syntax-Directed Translation – Attribute Definitions – Evaluation of Attribute Definitions • Semantic Analysis, Type Checking • Run-Time Organization • Intermediate Code Generation
  • 6. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 6 COMPILERS • A compiler is a program takes a program written in a source language and translates it into an equivalent program in a target language. source program COMPILER target program error messages ( Normally a program written in a high-level programming language) ( Normally the equivalent program in machine code – relocatable object file)
  • 7. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 7 Other Applications • In addition to the development of a compiler, the techniques used in compiler design can be applicable to many problems in computer science. – Techniques used in a lexical analyzer can be used in text editors, information retrieval system, and pattern recognition programs. – Techniques used in a parser can be used in a query processing system such as SQL. – Many software having a complex front-end may need techniques used in compiler design. • A symbolic equation solver which takes an equation as input. That program should parse the given input equation. – Most of the techniques used in compiler design can be used in Natural Language Processing (NLP) systems.
  • 8. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 8 Major Parts of Compilers • There are two major parts of a compiler: Analysis and Synthesis • In analysis phase, an intermediate representation is created from the given source program. – Lexical Analyzer, Syntax Analyzer and Semantic Analyzer are the parts of this phase. • In synthesis phase, the equivalent target program is created from this intermediate representation. – Intermediate Code Generator, Code Generator, and Code Optimizer are the parts of this phase.
  • 9. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 9 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 representation into another representation. • They communicate with error handlers. • They communicate with the symbol table.
  • 10. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 10 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. • Regular expressions are used to describe tokens (lexical constructs). • A (Deterministic) Finite State Automaton can be used in the implementation of a lexical analyzer.
  • 11. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 11 Syntax Analyzer • A Syntax Analyzer creates the syntactic structure (generally a parse tree) of the given program. • A syntax analyzer is also called as a parser. • A parse tree describes a syntactic structure. assgstmt identifier := expression newval expression + expression identifier number oldval 12 • In a parse tree, all terminals are at leaves. • All inner nodes are non-terminals in a context free grammar.
  • 12. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 12 Syntax Analyzer (CFG) • The syntax of a language is specified by a context free grammar (CFG). • 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
  • 13. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 13 Syntax Analyzer versus Lexical Analyzer • Which constructs of a program should be recognized by the lexical analyzer, and which ones by the syntax analyzer? – 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.
  • 14. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 14 Parsing Techniques • Depending on how the parse tree is created, there are different parsing techniques. • These parsing techniques are categorized into two groups: – Top-Down Parsing, – Bottom-Up Parsing • 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. – 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 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. – Operator-Precedence Parsing – simple, restrictive, easy to implement – LR Parsing – much general form of shift-reduce parsing, LR, SLR, LALR
  • 15. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 15 Semantic Analyzer • A semantic analyzer checks the source program for semantic errors and collects the type information for the code generation. • 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) – the result is a syntax-directed translation, – Attribute grammars • Ex: newval := oldval + 12 • The type of the identifier newval must match with type of the expression (oldval+12)
  • 16. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 16 Intermediate Code Generation • A compiler may produce an explicit intermediate codes representing the source program. • These intermediate codes are generally machine (architecture independent). But the level of intermediate codes is close to the level 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
  • 17. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 17 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. • Ex: MULT id2,id3,temp1 ADD temp1,#1,id1
  • 18. BİL744 Derleyici Gerçekleştirimi (Compiler Design) 18 Code Generator • Produces the target language in a specific architecture. • The 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 is a machine register) MOVE id2,R1 MULT id3,R1 ADD #1,R1 MOVE R1,id1

Editor's Notes

  • #2: July 19, 2024