SlideShare ist ein Scribd-Unternehmen logo
1 von 19
Compiler
SUBMITTED BY:
MD:SUMON FAKIR
ID:173002024
Dept of CSE
SUBMITTED TO:
Md. Jahidul Islam
Lecturer of CSE
Green university of Bangladesh
Table of Contents
Introduction
The structure of Compiler(All phases)
All Phases of Compiler
1
Compiler & its Application
Compiler vs Interpreter
Symbol Table Management
Table of Contents cont..
Derivations (with Examples)
2
Reference
Conclusion
Introduction
3
A compiler translates the code written in one
language to some other language without
changing the meaning of the program. It is
also expected that a compiler should make
the target code efficient and optimized in
terms of time and space
Compiler & its Application
4
A compiler is a program that reads a
program written in one language and
translates is into an equivalent program
in another language.
What is compiler ?
Compiler & its Application cont..
5
Application of compiler
 Implementation of High-Level Programming
Optimizations for Computer Architectures
Design of New Computer Architectures
Program Translations
Software Productivity Tools
Compiler vs Interpreter
6
1.Compiler scans the entire program and
translate the whole it into machine code.
1.Interpreter translates just one statement
of the program at time into machine code
2.Compiler takes a lot of time to anaylize the
source code .however , the overall time
taken to execute the process is much faster.
2.An interpreter takes vary less time to
anaylize the source code .however, overall
time to execute the process is much slower.
3.Compiler are used by program language
like C and C++ for example
3.Interpreter are used by programming
language like Ruby and python for example
The Structure of Compiler (all phase )
7
Lexical Analyzer
Syntax Tree
Semantic Analyzer
Character stream
Intermediate code
generation
Code Optimizer
Code Generator
Symbol Table
manager
Error Handler
Lexical analysis coverts source program into a stream of
valid word of the language, known as token.
Lexical analyzer also known as(Lexer ,Scanner,Tokening )
8
Lexical Analyzer
Function of lexical
Analyzer
Convert the source code into stream of token.
Removing white space , comments
Recognizing keyword , identifier, Contents
Show error when then lexeme doesn’t match of
patten
All phase of Compiler
Syntax of a language refers to the structure of valid program or
statement of the language.
Specified using certain rules known as Productions
Collection of such productions(rules) is known as grammar.
Syntax Tree
9
Function of syntax
tree
Syntax analysis to verified that a string of token valid or not.
 report syntactic error.
recovery from such error so as to continuous to execution
process
All phase of Compiler (cont..)
Semantic Analysis makes sure that declarations and statements
of program are semantically correct. It is a collection of
procedures which is called by syntax tree as and when required by
grammar. Both syntax tree and symbol table are used to check
the consistency of the given code.
Semantic Analyzer
10
Function of syntax
tree  Semantic error :Type mismatch, Undeclared variables,
Reserved identifier.
 Type Checking: Ensures that data types are used in a way
consistent with their definition.
 Label Checking –A program should contain labels
references.
All phase of Compiler (cont..)
Semantic Analysis makes sure that declarations and statements
of program are semantically correct. It is a collection of
procedures which is called by syntax tree as and when required
by grammar. Both syntax tree and symbol table are used to
check the consistency of the given code.
Intermediate code generation
11
 Postfix Notation
 Three-Address Code
 Syntax
Intermediate code representation
All phase of Compiler (cont..)
Optimization is a program transformation technique, which tries
to improve the code by making it consume less resources example
CPU, Memory and deliver high speed. In optimization, high-level
general programming constructs are replaced by very efficient
low-level programming codes
Code Optimizer
12
Code generation can be considered as the final phase
of compilation. Through post code generation,
optimization process can be applied on the code
Code Generator
All phase of Compiler (cont..)
1
13
Symbol Table Manager
Symbol table is an important data structure created and maintained
by compilers in order to store information about the occurrence of
various entities such as variable names, function names, objects,
classes, interfaces, etc. Symbol table is used by both the analysis
and the synthesis parts of a compiler.
1
14
Derivation
derivation is used to find whether the string
belongs to a given grammar.
Type of Derivation
1. Leftmost derivation.
2. Rightmost derivation
1
15
Derivation cont..
Leftmost derivation
Example
A XYZ
B  a
Y b
Z c
SOLUTION
A XYZ
A aYZ
A abZ
A abc
Rightmost derivation
Example
A XYZ
B  a
Y b
Z c
SOLUTION
A XYZ
A XYc
A Xbc
A abc
1
16
A compiler translates the code written in one language to some other
language without changing the meaning of the program. It is also
expected that a compiler should make the target code efficient and
optimized in terms of time and space. Compiler design principles provide
an in-depth view of translation and optimization process.
Conclusion
1
17
1.https://www.tutorialspoint.com/compiler_design/index.htm
2.https://www.youtube.com/watch?v=KRx-
BPR4bbs&list=PLV8vIYTIdSnaeEO7C3elIV9u-
Vj5G5CRF&index=13
3.https://www.youtube.com/watch?v=9e-
ksSoVvG8&list=PLgH5QX0i9K3oWTwTgILA7v9oysoDgkJDg&ind
ex=7
References
1
18

Weitere ähnliche Inhalte

Was ist angesagt?

Spr ch-05-compilers
Spr ch-05-compilersSpr ch-05-compilers
Spr ch-05-compilers
Vasim Pathan
 
Error detection recovery
Error detection recoveryError detection recovery
Error detection recovery
Tech_MX
 
Chapter One
Chapter OneChapter One
Chapter One
bolovv
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
Mir Majid
 

Was ist angesagt? (20)

phases of a compiler
 phases of a compiler phases of a compiler
phases of a compiler
 
Spr ch-05-compilers
Spr ch-05-compilersSpr ch-05-compilers
Spr ch-05-compilers
 
Phases of compiler
Phases of compilerPhases of compiler
Phases of compiler
 
Compiler Design(Nanthu)
Compiler Design(Nanthu)Compiler Design(Nanthu)
Compiler Design(Nanthu)
 
Compiler Construction
Compiler ConstructionCompiler Construction
Compiler Construction
 
Error detection recovery
Error detection recoveryError detection recovery
Error detection recovery
 
basics of compiler design
basics of compiler designbasics of compiler design
basics of compiler design
 
Phases of-compiler
Phases of-compilerPhases of-compiler
Phases of-compiler
 
Concept of compiler in details
Concept of compiler in detailsConcept of compiler in details
Concept of compiler in details
 
Phases of Compiler
Phases of CompilerPhases of Compiler
Phases of Compiler
 
Chapter1pdf__2021_11_23_10_53_20.pdf
Chapter1pdf__2021_11_23_10_53_20.pdfChapter1pdf__2021_11_23_10_53_20.pdf
Chapter1pdf__2021_11_23_10_53_20.pdf
 
Compiler1
Compiler1Compiler1
Compiler1
 
Compiler Design Material
Compiler Design MaterialCompiler Design Material
Compiler Design Material
 
unit1pdf__2021_12_14_12_37_34.pdf
unit1pdf__2021_12_14_12_37_34.pdfunit1pdf__2021_12_14_12_37_34.pdf
unit1pdf__2021_12_14_12_37_34.pdf
 
Chapter One
Chapter OneChapter One
Chapter One
 
Techniques & applications of Compiler
Techniques & applications of CompilerTechniques & applications of Compiler
Techniques & applications of Compiler
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
 
Compiler Design(NANTHU NOTES)
Compiler Design(NANTHU NOTES)Compiler Design(NANTHU NOTES)
Compiler Design(NANTHU NOTES)
 
Introduction to Compiler Construction
Introduction to Compiler Construction Introduction to Compiler Construction
Introduction to Compiler Construction
 

Ähnlich wie Compiler

2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx
2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx
2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx
venkatapranaykumarGa
 

Ähnlich wie Compiler (20)

Ch 1.pptx
Ch 1.pptxCh 1.pptx
Ch 1.pptx
 
Chapter#01 cc
Chapter#01 ccChapter#01 cc
Chapter#01 cc
 
SSD Mod 2 -18CS61_Notes.pdf
SSD Mod 2 -18CS61_Notes.pdfSSD Mod 2 -18CS61_Notes.pdf
SSD Mod 2 -18CS61_Notes.pdf
 
Compiler Construction introduction
Compiler Construction introductionCompiler Construction introduction
Compiler Construction introduction
 
3.2
3.23.2
3.2
 
Assignment1
Assignment1Assignment1
Assignment1
 
Compiler_Lecture1.pdf
Compiler_Lecture1.pdfCompiler_Lecture1.pdf
Compiler_Lecture1.pdf
 
SOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGE
SOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGESOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGE
SOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGE
 
SOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGE
SOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGESOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGE
SOFTWARE TOOL FOR TRANSLATING PSEUDOCODE TO A PROGRAMMING LANGUAGE
 
design intoduction of_COMPILER_DESIGN.pdf
design intoduction of_COMPILER_DESIGN.pdfdesign intoduction of_COMPILER_DESIGN.pdf
design intoduction of_COMPILER_DESIGN.pdf
 
Code generation errors and recovery
Code generation errors and recoveryCode generation errors and recovery
Code generation errors and recovery
 
2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx
2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx
2-Design Issues, Patterns, Lexemes, Tokens-28-04-2023.docx
 
lec00-Introduction.pdf
lec00-Introduction.pdflec00-Introduction.pdf
lec00-Introduction.pdf
 
Chapter 2 Program language translation.pptx
Chapter 2 Program language translation.pptxChapter 2 Program language translation.pptx
Chapter 2 Program language translation.pptx
 
Chapter-1.pptx compiler Design Course Material
Chapter-1.pptx compiler Design Course MaterialChapter-1.pptx compiler Design Course Material
Chapter-1.pptx compiler Design Course Material
 
Lexical analyzer
Lexical analyzerLexical analyzer
Lexical analyzer
 
How a Compiler Works ?
How a Compiler Works ?How a Compiler Works ?
How a Compiler Works ?
 
Cd unit i
Cd unit iCd unit i
Cd unit i
 
PSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATOR
PSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATORPSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATOR
PSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATOR
 
Phases of Compiler.pptx
Phases of Compiler.pptxPhases of Compiler.pptx
Phases of Compiler.pptx
 

Kürzlich hochgeladen

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 

Kürzlich hochgeladen (20)

Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 

Compiler

  • 1. Compiler SUBMITTED BY: MD:SUMON FAKIR ID:173002024 Dept of CSE SUBMITTED TO: Md. Jahidul Islam Lecturer of CSE Green university of Bangladesh
  • 2. Table of Contents Introduction The structure of Compiler(All phases) All Phases of Compiler 1 Compiler & its Application Compiler vs Interpreter Symbol Table Management
  • 3. Table of Contents cont.. Derivations (with Examples) 2 Reference Conclusion
  • 4. Introduction 3 A compiler translates the code written in one language to some other language without changing the meaning of the program. It is also expected that a compiler should make the target code efficient and optimized in terms of time and space
  • 5. Compiler & its Application 4 A compiler is a program that reads a program written in one language and translates is into an equivalent program in another language. What is compiler ?
  • 6. Compiler & its Application cont.. 5 Application of compiler  Implementation of High-Level Programming Optimizations for Computer Architectures Design of New Computer Architectures Program Translations Software Productivity Tools
  • 7. Compiler vs Interpreter 6 1.Compiler scans the entire program and translate the whole it into machine code. 1.Interpreter translates just one statement of the program at time into machine code 2.Compiler takes a lot of time to anaylize the source code .however , the overall time taken to execute the process is much faster. 2.An interpreter takes vary less time to anaylize the source code .however, overall time to execute the process is much slower. 3.Compiler are used by program language like C and C++ for example 3.Interpreter are used by programming language like Ruby and python for example
  • 8. The Structure of Compiler (all phase ) 7 Lexical Analyzer Syntax Tree Semantic Analyzer Character stream Intermediate code generation Code Optimizer Code Generator Symbol Table manager Error Handler
  • 9. Lexical analysis coverts source program into a stream of valid word of the language, known as token. Lexical analyzer also known as(Lexer ,Scanner,Tokening ) 8 Lexical Analyzer Function of lexical Analyzer Convert the source code into stream of token. Removing white space , comments Recognizing keyword , identifier, Contents Show error when then lexeme doesn’t match of patten All phase of Compiler
  • 10. Syntax of a language refers to the structure of valid program or statement of the language. Specified using certain rules known as Productions Collection of such productions(rules) is known as grammar. Syntax Tree 9 Function of syntax tree Syntax analysis to verified that a string of token valid or not.  report syntactic error. recovery from such error so as to continuous to execution process All phase of Compiler (cont..)
  • 11. Semantic Analysis makes sure that declarations and statements of program are semantically correct. It is a collection of procedures which is called by syntax tree as and when required by grammar. Both syntax tree and symbol table are used to check the consistency of the given code. Semantic Analyzer 10 Function of syntax tree  Semantic error :Type mismatch, Undeclared variables, Reserved identifier.  Type Checking: Ensures that data types are used in a way consistent with their definition.  Label Checking –A program should contain labels references. All phase of Compiler (cont..)
  • 12. Semantic Analysis makes sure that declarations and statements of program are semantically correct. It is a collection of procedures which is called by syntax tree as and when required by grammar. Both syntax tree and symbol table are used to check the consistency of the given code. Intermediate code generation 11  Postfix Notation  Three-Address Code  Syntax Intermediate code representation All phase of Compiler (cont..)
  • 13. Optimization is a program transformation technique, which tries to improve the code by making it consume less resources example CPU, Memory and deliver high speed. In optimization, high-level general programming constructs are replaced by very efficient low-level programming codes Code Optimizer 12 Code generation can be considered as the final phase of compilation. Through post code generation, optimization process can be applied on the code Code Generator All phase of Compiler (cont..)
  • 14. 1 13 Symbol Table Manager Symbol table is an important data structure created and maintained by compilers in order to store information about the occurrence of various entities such as variable names, function names, objects, classes, interfaces, etc. Symbol table is used by both the analysis and the synthesis parts of a compiler.
  • 15. 1 14 Derivation derivation is used to find whether the string belongs to a given grammar. Type of Derivation 1. Leftmost derivation. 2. Rightmost derivation
  • 16. 1 15 Derivation cont.. Leftmost derivation Example A XYZ B  a Y b Z c SOLUTION A XYZ A aYZ A abZ A abc Rightmost derivation Example A XYZ B  a Y b Z c SOLUTION A XYZ A XYc A Xbc A abc
  • 17. 1 16 A compiler translates the code written in one language to some other language without changing the meaning of the program. It is also expected that a compiler should make the target code efficient and optimized in terms of time and space. Compiler design principles provide an in-depth view of translation and optimization process. Conclusion
  • 19. 1 18