SlideShare ist ein Scribd-Unternehmen logo
1 von 29
Chapter 10: Compilers and
Language Translation
Invitation to Computer Science,
Java Version, Third Edition
Invitation to Computer Science, Java Version, Third Edition 2
Objectives
In this chapter, you will learn about
 The compilation process
 Phase I: Lexical analysis
 Phase II: Parsing
 Phase III: Semantics and code generation
 Phase IV: Code optimization
Invitation to Computer Science, Java Version, Third Edition 3
Introduction
 High-level language instructions must be
translated into machine language prior to
execution
 Compiler
 A piece of system software that translates high-
level languages into machine language
Invitation to Computer Science, Java Version, Third Edition 4
Introduction (continued)
 Goals of a compiler when performing a
translation
 Correctness
 Producing a reasonably efficient and concise
machine language code
Invitation to Computer Science, Java Version, Third Edition 5
Figure 10.1
General Structure of a Compiler
Invitation to Computer Science, Java Version, Third Edition 6
The Compilation Process
 Phase I: Lexical analysis
 Compiler examines the individual characters in
the source program and groups them into
syntactical units called tokens
 Phase II: Parsing
 The sequence of tokens formed by the scanner is
checked to see whether it is syntactically correct
Invitation to Computer Science, Java Version, Third Edition 7
The Compilation Process (continued)
 Phase III: Semantic analysis and code
generation
 The compiler analyzes the meaning of the high-
level language statement and generates the
machine language instructions to carry out these
actions
 Phase IV: Code optimization
 The compiler takes the generated code and sees
whether it can be made more efficient
Invitation to Computer Science, Java Version, Third Edition 8
Figure 10.2
Overall Execution Sequence on a High-Level Language Program
Invitation to Computer Science, Java Version, Third Edition 9
The Compilation Process (continued)
 Final step
 Object program is written to an object file
 Source program
 Original high-level language program
 Object program
 Machine language translation of the source
program
Invitation to Computer Science, Java Version, Third Edition 10
Phase I: Lexical Analysis
 Lexical analyzer
 The program that performs lexical analysis
 More commonly called a scanner
 Job of lexical analyzer
 Group input characters into tokens
 Tokens: Syntactical units that are treated as single,
indivisible entities for the purposes of translation
 Classify tokens according to their type
Invitation to Computer Science, Java Version, Third Edition 11
Figure 10.3
Typical Token Classifications
Invitation to Computer Science, Java Version, Third Edition 12
Phase I: Lexical Analysis (continued)
 Input to a scanner
 A high-level language statement from the source
program
 Scanner’s output
 A list of all the tokens in that statement
 The classification number of each token found
Invitation to Computer Science, Java Version, Third Edition 13
Phase II: Parsing
Introduction
 Parsing phase
 A compiler determines whether the tokens
recognized by the scanner are a syntactically
legal statement
 Performed by a parser
Invitation to Computer Science, Java Version, Third Edition 14
Phase II: Parsing
Introduction (continued)
 Output of a parser
 A parse tree, if such a tree exists
 An error message, if a parse tree cannot be
constructed
 Successful construction of a parse tree is proof
that the statement is correctly formed
Invitation to Computer Science, Java Version, Third Edition 15
 Example
 High-level language statement: a = b + c
Invitation to Computer Science, Java Version, Third Edition 16
Grammars, Languages, and BNF
 Syntax
 The grammatical structure of the language
 The parser must be given the syntax of the
language
 BNF (Backus-Naur Form)
 Most widely used notation for representing the
syntax of a programming language
Invitation to Computer Science, Java Version, Third Edition 17
Grammars, Languages, and BNF
(continued)
 In BNF
 The syntax of a language is specified as a set of
rules (also called productions)
 A grammar
 The entire collection of rules for a language
 Structure of an individual BNF rule
left-hand side ::= “definition”
Invitation to Computer Science, Java Version, Third Edition 18
Grammars, Languages, and BNF
(continued)
 BNF rules use two types of objects on the right-
hand side of a production
 Terminals
 The actual tokens of the language
 Never appear on the left-hand side of a BNF rule
 Nonterminals
 Intermediate grammatical categories used to help
explain and organize the language
 Must appear on the left-hand side of one or more
rules
Invitation to Computer Science, Java Version, Third Edition 19
Grammars, Languages, and BNF
(continued)
 Goal symbol
 The highest-level nonterminal
 The nonterminal object that the parser is trying to
produce as it builds the parse tree
 All nonterminals are written inside angle
brackets
Invitation to Computer Science, Java Version, Third Edition 20
Parsing Concepts and Techniques
 Fundamental rule of parsing
 By repeated applications of the rules of the
grammar
 If the parser can convert the sequence of input
tokens into the goal symbol, the sequence of tokens
is a syntactically valid statement of the language
 If the parser cannot convert the input tokens into
the goal symbol, the sequence of tokens is not a
syntactically valid statement of the language
Invitation to Computer Science, Java Version, Third Edition 21
Parsing Concepts and Techniques
(continued)
 One of the biggest problems in building a
compiler is designing a grammar that
 Includes every valid statement that we want to be
in the language
 Excludes every invalid statement that we do not
want to be in the language
Invitation to Computer Science, Java Version, Third Edition 22
Parsing Concepts and Techniques
(continued)
 Another problem in constructing a compiler:
Designing a grammar that is not ambiguous
 An ambiguous grammar allows the construction of
two or more distinct parse trees for the same
statement
Invitation to Computer Science, Java Version, Third Edition 23
Phase III: Semantics and Code
Generation
 Semantic analysis
 The compiler makes a first pass over the parse
tree to determine whether all branches of the tree
are semantically valid
 If they are valid, the compiler can generate machine
language instructions
 If not, there is a semantic error; machine language
instructions are not generated
Invitation to Computer Science, Java Version, Third Edition 24
Phase III: Semantics and Code
Generation (continued)
 Code generation
 Compiler makes a second pass over the parse
tree to produce the translated code
Invitation to Computer Science, Java Version, Third Edition 25
Phase IV: Code Optimization
 Two types of optimization
 Local
 Global
 Local optimization
 The compiler looks at a very small block of
instructions and tries to determine how it can
improve the efficiency of this local code block
 Relatively easy; included as part of most
compilers
Invitation to Computer Science, Java Version, Third Edition 26
Phase IV: Code Optimization
(continued)
 Examples of possible local optimizations
 Constant evaluation
 Strength reduction
 Eliminating unnecessary operations
Invitation to Computer Science, Java Version, Third Edition 27
Phase IV: Code Optimization
(continued)
 Global optimization
 The compiler looks at large segments of the
program to decide how to improve performance
 Much more difficult; usually omitted from all but
the most sophisticated and expensive production-
level “optimizing compilers”
 Optimization cannot make an inefficient
algorithm efficient
Invitation to Computer Science, Java Version, Third Edition 28
Summary
 A compiler is a piece of system software that
translates high-level languages into machine
language
 Goals of a compiler: Correctness and the
production of efficient and concise code
 Source program: High-level language program
Invitation to Computer Science, Java Version, Third Edition 29
Summary (continued)
 Object program: The machine language
translation of the source program
 Phases of the compilation process
 Phase I: Lexical analysis
 Phase II: Parsing
 Phase III: Semantic analysis and code generation
 Phase IV: Code optimization

Weitere ähnliche Inhalte

Was ist angesagt?

CPU (Central Processing Units)
CPU (Central Processing Units)CPU (Central Processing Units)
CPU (Central Processing Units)
Prabin Maharjan
 
02 Computer Evolution And Performance
02  Computer  Evolution And  Performance02  Computer  Evolution And  Performance
02 Computer Evolution And Performance
Jeanie Delos Arcos
 

Was ist angesagt? (20)

Peter Norton - Introduction to computers - Part 2
Peter Norton - Introduction to computers - Part 2Peter Norton - Introduction to computers - Part 2
Peter Norton - Introduction to computers - Part 2
 
Basic computer for_b_ed
Basic computer for_b_edBasic computer for_b_ed
Basic computer for_b_ed
 
CPU (Central Processing Units)
CPU (Central Processing Units)CPU (Central Processing Units)
CPU (Central Processing Units)
 
Chapter 4 Peter Norton
Chapter 4 Peter NortonChapter 4 Peter Norton
Chapter 4 Peter Norton
 
Operating system and its functions
Operating system and its functionsOperating system and its functions
Operating system and its functions
 
Chapter 2B Peter Norton
Chapter 2B Peter NortonChapter 2B Peter Norton
Chapter 2B Peter Norton
 
Basic computerparts
Basic computerpartsBasic computerparts
Basic computerparts
 
Computer fundamentals (kamleshwar pandey)
Computer fundamentals (kamleshwar pandey)  Computer fundamentals (kamleshwar pandey)
Computer fundamentals (kamleshwar pandey)
 
System software vs application software
System software vs application softwareSystem software vs application software
System software vs application software
 
Machine Cycle
Machine CycleMachine Cycle
Machine Cycle
 
Parallel processing
Parallel processingParallel processing
Parallel processing
 
basics of compiler design
basics of compiler designbasics of compiler design
basics of compiler design
 
Boot process
Boot processBoot process
Boot process
 
02 Computer Evolution And Performance
02  Computer  Evolution And  Performance02  Computer  Evolution And  Performance
02 Computer Evolution And Performance
 
Generation Of Computer
Generation Of ComputerGeneration Of Computer
Generation Of Computer
 
computer hardware
computer hardwarecomputer hardware
computer hardware
 
CPU Architecture - Basic
CPU Architecture - BasicCPU Architecture - Basic
CPU Architecture - Basic
 
Advanced Techniques for Exploiting ILP
Advanced Techniques for Exploiting ILPAdvanced Techniques for Exploiting ILP
Advanced Techniques for Exploiting ILP
 
Operating system
Operating systemOperating system
Operating system
 
Introduction to Natural Language Processing
Introduction to Natural Language ProcessingIntroduction to Natural Language Processing
Introduction to Natural Language Processing
 

Ähnlich wie Machine language

Chapter One
Chapter OneChapter One
Chapter One
bolovv
 
1 - Introduction to Compilers.ppt
1 - Introduction to Compilers.ppt1 - Introduction to Compilers.ppt
1 - Introduction to Compilers.ppt
Rakesh Kumar
 
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 Machine language (20)

Chapter#01 cc
Chapter#01 ccChapter#01 cc
Chapter#01 cc
 
3ss
3ss3ss
3ss
 
Compiler
Compiler Compiler
Compiler
 
Phases of Compiler
Phases of CompilerPhases of Compiler
Phases of Compiler
 
Chapter One
Chapter OneChapter One
Chapter One
 
Compiler Construction introduction
Compiler Construction introductionCompiler Construction introduction
Compiler Construction introduction
 
Compiler_Lecture1.pdf
Compiler_Lecture1.pdfCompiler_Lecture1.pdf
Compiler_Lecture1.pdf
 
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
 
Prof. Chethan Raj C, BE, M.Tech (Ph.D) Dept. of CSE. System Software & Operat...
Prof. Chethan Raj C, BE, M.Tech (Ph.D) Dept. of CSE. System Software & Operat...Prof. Chethan Raj C, BE, M.Tech (Ph.D) Dept. of CSE. System Software & Operat...
Prof. Chethan Raj C, BE, M.Tech (Ph.D) Dept. of CSE. System Software & Operat...
 
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
 
design intoduction of_COMPILER_DESIGN.pdf
design intoduction of_COMPILER_DESIGN.pdfdesign intoduction of_COMPILER_DESIGN.pdf
design intoduction of_COMPILER_DESIGN.pdf
 
Compiler Design Material
Compiler Design MaterialCompiler Design Material
Compiler Design Material
 
Dineshmaterial1 091225091539-phpapp02
Dineshmaterial1 091225091539-phpapp02Dineshmaterial1 091225091539-phpapp02
Dineshmaterial1 091225091539-phpapp02
 
Chapter 2 Program language translation.pptx
Chapter 2 Program language translation.pptxChapter 2 Program language translation.pptx
Chapter 2 Program language translation.pptx
 
1 - Introduction to Compilers.ppt
1 - Introduction to Compilers.ppt1 - Introduction to Compilers.ppt
1 - Introduction to Compilers.ppt
 
SS UI Lecture 1
SS UI Lecture 1SS UI Lecture 1
SS UI Lecture 1
 
Ss ui lecture 1
Ss ui lecture 1Ss ui lecture 1
Ss ui lecture 1
 
Assignment1
Assignment1Assignment1
Assignment1
 
PSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATOR
PSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATORPSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATOR
PSEUDOCODE TO SOURCE PROGRAMMING LANGUAGE TRANSLATOR
 
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
 

Kürzlich hochgeladen

Kürzlich hochgeladen (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

Machine language

  • 1. Chapter 10: Compilers and Language Translation Invitation to Computer Science, Java Version, Third Edition
  • 2. Invitation to Computer Science, Java Version, Third Edition 2 Objectives In this chapter, you will learn about  The compilation process  Phase I: Lexical analysis  Phase II: Parsing  Phase III: Semantics and code generation  Phase IV: Code optimization
  • 3. Invitation to Computer Science, Java Version, Third Edition 3 Introduction  High-level language instructions must be translated into machine language prior to execution  Compiler  A piece of system software that translates high- level languages into machine language
  • 4. Invitation to Computer Science, Java Version, Third Edition 4 Introduction (continued)  Goals of a compiler when performing a translation  Correctness  Producing a reasonably efficient and concise machine language code
  • 5. Invitation to Computer Science, Java Version, Third Edition 5 Figure 10.1 General Structure of a Compiler
  • 6. Invitation to Computer Science, Java Version, Third Edition 6 The Compilation Process  Phase I: Lexical analysis  Compiler examines the individual characters in the source program and groups them into syntactical units called tokens  Phase II: Parsing  The sequence of tokens formed by the scanner is checked to see whether it is syntactically correct
  • 7. Invitation to Computer Science, Java Version, Third Edition 7 The Compilation Process (continued)  Phase III: Semantic analysis and code generation  The compiler analyzes the meaning of the high- level language statement and generates the machine language instructions to carry out these actions  Phase IV: Code optimization  The compiler takes the generated code and sees whether it can be made more efficient
  • 8. Invitation to Computer Science, Java Version, Third Edition 8 Figure 10.2 Overall Execution Sequence on a High-Level Language Program
  • 9. Invitation to Computer Science, Java Version, Third Edition 9 The Compilation Process (continued)  Final step  Object program is written to an object file  Source program  Original high-level language program  Object program  Machine language translation of the source program
  • 10. Invitation to Computer Science, Java Version, Third Edition 10 Phase I: Lexical Analysis  Lexical analyzer  The program that performs lexical analysis  More commonly called a scanner  Job of lexical analyzer  Group input characters into tokens  Tokens: Syntactical units that are treated as single, indivisible entities for the purposes of translation  Classify tokens according to their type
  • 11. Invitation to Computer Science, Java Version, Third Edition 11 Figure 10.3 Typical Token Classifications
  • 12. Invitation to Computer Science, Java Version, Third Edition 12 Phase I: Lexical Analysis (continued)  Input to a scanner  A high-level language statement from the source program  Scanner’s output  A list of all the tokens in that statement  The classification number of each token found
  • 13. Invitation to Computer Science, Java Version, Third Edition 13 Phase II: Parsing Introduction  Parsing phase  A compiler determines whether the tokens recognized by the scanner are a syntactically legal statement  Performed by a parser
  • 14. Invitation to Computer Science, Java Version, Third Edition 14 Phase II: Parsing Introduction (continued)  Output of a parser  A parse tree, if such a tree exists  An error message, if a parse tree cannot be constructed  Successful construction of a parse tree is proof that the statement is correctly formed
  • 15. Invitation to Computer Science, Java Version, Third Edition 15  Example  High-level language statement: a = b + c
  • 16. Invitation to Computer Science, Java Version, Third Edition 16 Grammars, Languages, and BNF  Syntax  The grammatical structure of the language  The parser must be given the syntax of the language  BNF (Backus-Naur Form)  Most widely used notation for representing the syntax of a programming language
  • 17. Invitation to Computer Science, Java Version, Third Edition 17 Grammars, Languages, and BNF (continued)  In BNF  The syntax of a language is specified as a set of rules (also called productions)  A grammar  The entire collection of rules for a language  Structure of an individual BNF rule left-hand side ::= “definition”
  • 18. Invitation to Computer Science, Java Version, Third Edition 18 Grammars, Languages, and BNF (continued)  BNF rules use two types of objects on the right- hand side of a production  Terminals  The actual tokens of the language  Never appear on the left-hand side of a BNF rule  Nonterminals  Intermediate grammatical categories used to help explain and organize the language  Must appear on the left-hand side of one or more rules
  • 19. Invitation to Computer Science, Java Version, Third Edition 19 Grammars, Languages, and BNF (continued)  Goal symbol  The highest-level nonterminal  The nonterminal object that the parser is trying to produce as it builds the parse tree  All nonterminals are written inside angle brackets
  • 20. Invitation to Computer Science, Java Version, Third Edition 20 Parsing Concepts and Techniques  Fundamental rule of parsing  By repeated applications of the rules of the grammar  If the parser can convert the sequence of input tokens into the goal symbol, the sequence of tokens is a syntactically valid statement of the language  If the parser cannot convert the input tokens into the goal symbol, the sequence of tokens is not a syntactically valid statement of the language
  • 21. Invitation to Computer Science, Java Version, Third Edition 21 Parsing Concepts and Techniques (continued)  One of the biggest problems in building a compiler is designing a grammar that  Includes every valid statement that we want to be in the language  Excludes every invalid statement that we do not want to be in the language
  • 22. Invitation to Computer Science, Java Version, Third Edition 22 Parsing Concepts and Techniques (continued)  Another problem in constructing a compiler: Designing a grammar that is not ambiguous  An ambiguous grammar allows the construction of two or more distinct parse trees for the same statement
  • 23. Invitation to Computer Science, Java Version, Third Edition 23 Phase III: Semantics and Code Generation  Semantic analysis  The compiler makes a first pass over the parse tree to determine whether all branches of the tree are semantically valid  If they are valid, the compiler can generate machine language instructions  If not, there is a semantic error; machine language instructions are not generated
  • 24. Invitation to Computer Science, Java Version, Third Edition 24 Phase III: Semantics and Code Generation (continued)  Code generation  Compiler makes a second pass over the parse tree to produce the translated code
  • 25. Invitation to Computer Science, Java Version, Third Edition 25 Phase IV: Code Optimization  Two types of optimization  Local  Global  Local optimization  The compiler looks at a very small block of instructions and tries to determine how it can improve the efficiency of this local code block  Relatively easy; included as part of most compilers
  • 26. Invitation to Computer Science, Java Version, Third Edition 26 Phase IV: Code Optimization (continued)  Examples of possible local optimizations  Constant evaluation  Strength reduction  Eliminating unnecessary operations
  • 27. Invitation to Computer Science, Java Version, Third Edition 27 Phase IV: Code Optimization (continued)  Global optimization  The compiler looks at large segments of the program to decide how to improve performance  Much more difficult; usually omitted from all but the most sophisticated and expensive production- level “optimizing compilers”  Optimization cannot make an inefficient algorithm efficient
  • 28. Invitation to Computer Science, Java Version, Third Edition 28 Summary  A compiler is a piece of system software that translates high-level languages into machine language  Goals of a compiler: Correctness and the production of efficient and concise code  Source program: High-level language program
  • 29. Invitation to Computer Science, Java Version, Third Edition 29 Summary (continued)  Object program: The machine language translation of the source program  Phases of the compilation process  Phase I: Lexical analysis  Phase II: Parsing  Phase III: Semantic analysis and code generation  Phase IV: Code optimization