SlideShare una empresa de Scribd logo
1 de 42
UNIT-III
Programming Language
• Lexical and Syntactic features of a
  programming Language are specified by its
  grammar
• Language:- collection of valid sentences.
• Sentences: These are the sequence of words.
• Word:- Sequence of letters of graphic symbols.
• The Language specified in this manner is
  called as formal Language.
Programming Language Grammar
• A formal Language is a set of rules which
  precisely specify the sentence of L.
• Formal Grammar can be represented as :-
• G= {∑ , NT, S, P}
  – ∑ set of terminals
  – NT set of non terminals
  – S Distinguished symbol (Starting symbol)
  – P set of productions.
• Terminal Symbol:- These are the symbols
  which can not further sub divided
  – Ex:- ∑= { a, b,c,d…….0,1,2,3……}
• No terminal symbols:- These are the
  combination of terminal symbols which can be
  further sub divided.
  – Ex:- <A> or <Noun>
• Production :- It is called as re-writing rule
• It can be represented as :-
   – Each production consists of a No terminal
     followed by an arrow (-) or equal to
     (=), followed by string of Non terminals and
     terminals
   – Ex:- A  b
          S  Aa
Syntax Tree


• A Graphical representation of any statement
  of a Language is called as syntax tree.
id+id*id



id
Derivation
• The replacement of Non terminal symbols
  according to the given production rule is
  called as derivation
• Types of Derivation:
  – Leftmost derivation
  – Rightmost derivation
Rules for English Language
1)   <Sentence>  <NP><VP>
2)   <NP>        <article><noun>
3)   <VP>        <verb>
4)   <VP>        <verb><adverb>
5)   <article>   The
6)   <noun>      student
7)   <verb>      studies
8)   <adverb>  hard
9)   <adverb>  slowly
Derivation
•   Structure                        Rules applied
•   <Sentence>
•   <NP><VP>                                  (1)
•   <article><noun>< VP>                      (2)
•   <article><noun> <verb><adverb>            (4)
•   The <noun> <verb><adverb>                 (5)
•   The student <verb> <adverb>               (6)
•   The student studies <adverb>              (7)
•   The student studies hard                  (8)
• Ex. Consider the full grammar,
•     E → E+E
•     E → E*E
•     E → id
•     Let us derive the string “ id + id * id”
Using leftmost derivation:-
Using Right most derivation:-
Rules
Required string is bbaa
• Derive the string

  –babbaaaba
Required string is




   baab
Reduction
• It is the process of replacement of string or
  part of string by non terminal according to the
  production rule.
•   Structure                       Rules applied
•   The student studies hard
•   <article> student studies hard            (5)
•   <article><noun> studies hard             (6)
•   <article><noun> <verb> hard              (7)
•   <article><noun> <verb> <adverb>          (8)
•   <NP> <verb> <adverb>                     (2)
•   <NP><VP>                                 (4)
•   <Sentence>                               (1)
Ambiguity of Grammar
• The Grammar for a language is said to be
  ambiguous if there exists at least one string
  which can be generated (or, derived) in more
  than one way
• i. e. there can be more than one leftmost
  derivations, more than one rightmost
  derivations & also more than one derivation
  trees associated with such a string.
• Ex. Consider the full grammar,
•     E → E+E
•     E → E*E
•     E → id
•     Let us derive the string “ id + id * id”
id   id
Compiler
• Complier:-
     • These are the system programs which will
       automatically translate the High level language
       program in to the machine language program

Source program                                 Target program /
High level Lang.           Compiler            M/C Lang. Prog.
Prog.



                           Database
• Cross Compiler:-
     • These are the system programs which will automatically
       translate the HLL program compatible with M/C A, in to the
       machine language program compatible with M/C A , but the
       underlying M/C is M/C B
Source program                                      Target program /
HLL Prog.                   Cross Compiler          M/C Lang. Prog.
Compatible with
M/C A



                               M/C B
P Code Compiler
 Source
Program


Compiler     P-Code interpreter



  Obj
Program



Exexute     P-Code interpreter
• Very similar in concept of Interpreter
• In pseudo- code complier program is analyzed
  and converted into an intermediate form,
  which is then executed interpretively.
• The source program is compiled, the resulted
  object program is in p-code. This p-code
  program is then read and executed under
  control of p-code interpreter.
Compilation process overview
• Compilation process is vast and complex.
• Hence it is divided into a series of subtasks
  called as phases.
• Each of which transform the source program
  form one representation to another.
• The compilation process involves two major
  tasks.
Compilation process overview

Analysis of   +    Synthesis of   =   Translation
source text       Target text         of prog in
                                      obj form
• Analysis of source text
  – Lexical Analysis (Scanner)
  – Syntax Analysis (Parser)
  – Semantic analysis.


• Synthesis of target text
  – Storage allocation
  – Code generation
Analysis of source text

• Determine validity of source statement from
  the analysis view point.
• Determine the content of source statement.
• Construct the suitable representation of the
  source statement f0r use by the subsequent
  analysis phase or by the synthesis phase of
  compiler.
Synthesis of target text

• Memory allocation:- It is the simple task given to
  the presence of symbol table. The memory
  requirement of an identifier is computed from its
  length, type and dimension and memory is
  allocated to it.
• Code generation:- the code generation uses the
  knowledge of target architecture , knowledge of
  instruction and also the addressing modes in the
  target computer to select the appropriate
  instruction.
Synthesis of target text

• The important issues in code generation are
  – Determine the space where the intermediate
    results should ne kept i.e. whether they should be
    kept in memory location or held in machine
    register.
  – Determine which instruction should be used for
    type conversion operation.
  – Determine which addressing mode should be
    used.
Phase Structure of Compiler
Code Optimization
• This is an optional phase to improve the
  intermediate code so that ultimate object
  program can run faster and also take less phase.
•     The ultimate aim of this technique is to
  improve the execution efficiency of a program by
  – Eliminating redundancies
  – Rearranging the computation in the program with out
    affecting target machine.
Code optimization techniques

1.   Compile time evaluation
2.   Elimination of common sub expressions
3.   Frequency reduction
4.   Strength reduction
5.   Dead code elimination
6.   Boolean sub expressions optimization
7.   Local and Global optimization.

Más contenido relacionado

La actualidad más candente

System Programing Unit 1
System Programing Unit 1System Programing Unit 1
System Programing Unit 1
Manoj Patil
 
Unit 4 designing classes
Unit 4  designing classesUnit 4  designing classes
Unit 4 designing classes
gopal10scs185
 

La actualidad más candente (20)

Macro Processor
Macro ProcessorMacro Processor
Macro Processor
 
Loaders ( system programming )
Loaders ( system programming ) Loaders ( system programming )
Loaders ( system programming )
 
MACRO PROCESSOR
MACRO PROCESSORMACRO PROCESSOR
MACRO PROCESSOR
 
Macro assembler
 Macro assembler Macro assembler
Macro assembler
 
Input-Buffering
Input-BufferingInput-Buffering
Input-Buffering
 
System software
System softwareSystem software
System software
 
System Programing Unit 1
System Programing Unit 1System Programing Unit 1
System Programing Unit 1
 
Lecture 01 introduction to compiler
Lecture 01 introduction to compilerLecture 01 introduction to compiler
Lecture 01 introduction to compiler
 
Fundamentals of Language Processing
Fundamentals of Language ProcessingFundamentals of Language Processing
Fundamentals of Language Processing
 
Register Organization of 80386
Register Organization of 80386Register Organization of 80386
Register Organization of 80386
 
Run time storage
Run time storageRun time storage
Run time storage
 
Assembly Language Programming Of 8085
Assembly Language Programming Of 8085Assembly Language Programming Of 8085
Assembly Language Programming Of 8085
 
System Programming- Unit I
System Programming- Unit ISystem Programming- Unit I
System Programming- Unit I
 
Single pass assembler
Single pass assemblerSingle pass assembler
Single pass assembler
 
Unit 4 designing classes
Unit 4  designing classesUnit 4  designing classes
Unit 4 designing classes
 
Issues in the design of Code Generator
Issues in the design of Code GeneratorIssues in the design of Code Generator
Issues in the design of Code Generator
 
Single Pass Assembler
Single Pass AssemblerSingle Pass Assembler
Single Pass Assembler
 
Assembler
AssemblerAssembler
Assembler
 
Arm programmer's model
Arm programmer's modelArm programmer's model
Arm programmer's model
 
Assemblers: Ch03
Assemblers: Ch03Assemblers: Ch03
Assemblers: Ch03
 

Similar a System Programming Unit III

Unit iii-111206004501-phpapp02
Unit iii-111206004501-phpapp02Unit iii-111206004501-phpapp02
Unit iii-111206004501-phpapp02
riddhi viradiya
 
Introduction to compiler
Introduction to compilerIntroduction to compiler
Introduction to compiler
Abha Damani
 
Compier Design_Unit I_SRM.ppt
Compier Design_Unit I_SRM.pptCompier Design_Unit I_SRM.ppt
Compier Design_Unit I_SRM.ppt
Apoorv Diwan
 

Similar a System Programming Unit III (20)

Unit iii-111206004501-phpapp02
Unit iii-111206004501-phpapp02Unit iii-111206004501-phpapp02
Unit iii-111206004501-phpapp02
 
1 cc
1 cc1 cc
1 cc
 
Compilers.pptx
Compilers.pptxCompilers.pptx
Compilers.pptx
 
Experiments with Different Models of Statistcial Machine Translation
Experiments with Different Models of Statistcial Machine TranslationExperiments with Different Models of Statistcial Machine Translation
Experiments with Different Models of Statistcial Machine Translation
 
project present
project presentproject present
project present
 
Experiments with Different Models of Statistcial Machine Translation
Experiments with Different Models of Statistcial Machine TranslationExperiments with Different Models of Statistcial Machine Translation
Experiments with Different Models of Statistcial Machine Translation
 
Lecture 1 introduction to language processors
Lecture 1  introduction to language processorsLecture 1  introduction to language processors
Lecture 1 introduction to language processors
 
Basics of C Prog Lang.pdf
Basics of C Prog Lang.pdfBasics of C Prog Lang.pdf
Basics of C Prog Lang.pdf
 
Compiler Construction
Compiler ConstructionCompiler Construction
Compiler Construction
 
1 compiler outline
1 compiler outline1 compiler outline
1 compiler outline
 
System Programming Overview
System Programming OverviewSystem Programming Overview
System Programming Overview
 
Compier Design_Unit I.ppt
Compier Design_Unit I.pptCompier Design_Unit I.ppt
Compier Design_Unit I.ppt
 
Compier Design_Unit I.ppt
Compier Design_Unit I.pptCompier Design_Unit I.ppt
Compier Design_Unit I.ppt
 
Compiler Design Basics
Compiler Design BasicsCompiler Design Basics
Compiler Design Basics
 
Introduction to compiler
Introduction to compilerIntroduction to compiler
Introduction to compiler
 
Compier Design_Unit I_SRM.ppt
Compier Design_Unit I_SRM.pptCompier Design_Unit I_SRM.ppt
Compier Design_Unit I_SRM.ppt
 
Compiler Design Basics
Compiler Design BasicsCompiler Design Basics
Compiler Design Basics
 
COMPILER DESIGN PPTS.pptx
COMPILER DESIGN PPTS.pptxCOMPILER DESIGN PPTS.pptx
COMPILER DESIGN PPTS.pptx
 
Compiler Design Introduction
Compiler Design Introduction Compiler Design Introduction
Compiler Design Introduction
 
4_5802928814682016556.pptx
4_5802928814682016556.pptx4_5802928814682016556.pptx
4_5802928814682016556.pptx
 

Más de Manoj Patil

Más de Manoj Patil (8)

Smqa unit ii
Smqa unit   iiSmqa unit   ii
Smqa unit ii
 
Smqa unit v
Smqa unit v Smqa unit v
Smqa unit v
 
Smqa unit iv
Smqa unit iv Smqa unit iv
Smqa unit iv
 
Smqa unit ii
Smqa unit iiSmqa unit ii
Smqa unit ii
 
Smqa unit i
Smqa unit iSmqa unit i
Smqa unit i
 
Smqa unit iii
Smqa unit iiiSmqa unit iii
Smqa unit iii
 
System Programming Unit IV
System Programming Unit IVSystem Programming Unit IV
System Programming Unit IV
 
System Programming Unit II
System Programming Unit IISystem Programming Unit II
System Programming Unit II
 

Último

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
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
 
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
 
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...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 
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
 
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...
 
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
 
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...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 

System Programming Unit III

  • 2. Programming Language • Lexical and Syntactic features of a programming Language are specified by its grammar • Language:- collection of valid sentences. • Sentences: These are the sequence of words. • Word:- Sequence of letters of graphic symbols. • The Language specified in this manner is called as formal Language.
  • 3. Programming Language Grammar • A formal Language is a set of rules which precisely specify the sentence of L. • Formal Grammar can be represented as :- • G= {∑ , NT, S, P} – ∑ set of terminals – NT set of non terminals – S Distinguished symbol (Starting symbol) – P set of productions.
  • 4. • Terminal Symbol:- These are the symbols which can not further sub divided – Ex:- ∑= { a, b,c,d…….0,1,2,3……} • No terminal symbols:- These are the combination of terminal symbols which can be further sub divided. – Ex:- <A> or <Noun>
  • 5. • Production :- It is called as re-writing rule • It can be represented as :- – Each production consists of a No terminal followed by an arrow (-) or equal to (=), followed by string of Non terminals and terminals – Ex:- A  b S  Aa
  • 6. Syntax Tree • A Graphical representation of any statement of a Language is called as syntax tree.
  • 8. Derivation • The replacement of Non terminal symbols according to the given production rule is called as derivation • Types of Derivation: – Leftmost derivation – Rightmost derivation
  • 9. Rules for English Language 1) <Sentence>  <NP><VP> 2) <NP>  <article><noun> 3) <VP>  <verb> 4) <VP>  <verb><adverb> 5) <article>  The 6) <noun>  student 7) <verb>  studies 8) <adverb>  hard 9) <adverb>  slowly
  • 10. Derivation • Structure Rules applied • <Sentence> • <NP><VP> (1) • <article><noun>< VP> (2) • <article><noun> <verb><adverb> (4) • The <noun> <verb><adverb> (5) • The student <verb> <adverb> (6) • The student studies <adverb> (7) • The student studies hard (8)
  • 11. • Ex. Consider the full grammar, • E → E+E • E → E*E • E → id • Let us derive the string “ id + id * id”
  • 13. Using Right most derivation:-
  • 14. Rules
  • 16. • Derive the string –babbaaaba
  • 17.
  • 19.
  • 20. Reduction • It is the process of replacement of string or part of string by non terminal according to the production rule.
  • 21. Structure Rules applied • The student studies hard • <article> student studies hard (5) • <article><noun> studies hard (6) • <article><noun> <verb> hard (7) • <article><noun> <verb> <adverb> (8) • <NP> <verb> <adverb> (2) • <NP><VP> (4) • <Sentence> (1)
  • 22. Ambiguity of Grammar • The Grammar for a language is said to be ambiguous if there exists at least one string which can be generated (or, derived) in more than one way • i. e. there can be more than one leftmost derivations, more than one rightmost derivations & also more than one derivation trees associated with such a string.
  • 23. • Ex. Consider the full grammar, • E → E+E • E → E*E • E → id • Let us derive the string “ id + id * id”
  • 24.
  • 25.
  • 26. id id
  • 28. • Complier:- • These are the system programs which will automatically translate the High level language program in to the machine language program Source program Target program / High level Lang. Compiler M/C Lang. Prog. Prog. Database
  • 29. • Cross Compiler:- • These are the system programs which will automatically translate the HLL program compatible with M/C A, in to the machine language program compatible with M/C A , but the underlying M/C is M/C B Source program Target program / HLL Prog. Cross Compiler M/C Lang. Prog. Compatible with M/C A M/C B
  • 30. P Code Compiler Source Program Compiler P-Code interpreter Obj Program Exexute P-Code interpreter
  • 31. • Very similar in concept of Interpreter • In pseudo- code complier program is analyzed and converted into an intermediate form, which is then executed interpretively. • The source program is compiled, the resulted object program is in p-code. This p-code program is then read and executed under control of p-code interpreter.
  • 32. Compilation process overview • Compilation process is vast and complex. • Hence it is divided into a series of subtasks called as phases. • Each of which transform the source program form one representation to another. • The compilation process involves two major tasks.
  • 33. Compilation process overview Analysis of + Synthesis of = Translation source text Target text of prog in obj form
  • 34. • Analysis of source text – Lexical Analysis (Scanner) – Syntax Analysis (Parser) – Semantic analysis. • Synthesis of target text – Storage allocation – Code generation
  • 35. Analysis of source text • Determine validity of source statement from the analysis view point. • Determine the content of source statement. • Construct the suitable representation of the source statement f0r use by the subsequent analysis phase or by the synthesis phase of compiler.
  • 36. Synthesis of target text • Memory allocation:- It is the simple task given to the presence of symbol table. The memory requirement of an identifier is computed from its length, type and dimension and memory is allocated to it. • Code generation:- the code generation uses the knowledge of target architecture , knowledge of instruction and also the addressing modes in the target computer to select the appropriate instruction.
  • 37. Synthesis of target text • The important issues in code generation are – Determine the space where the intermediate results should ne kept i.e. whether they should be kept in memory location or held in machine register. – Determine which instruction should be used for type conversion operation. – Determine which addressing mode should be used.
  • 38. Phase Structure of Compiler
  • 39.
  • 40.
  • 41. Code Optimization • This is an optional phase to improve the intermediate code so that ultimate object program can run faster and also take less phase. • The ultimate aim of this technique is to improve the execution efficiency of a program by – Eliminating redundancies – Rearranging the computation in the program with out affecting target machine.
  • 42. Code optimization techniques 1. Compile time evaluation 2. Elimination of common sub expressions 3. Frequency reduction 4. Strength reduction 5. Dead code elimination 6. Boolean sub expressions optimization 7. Local and Global optimization.