Language
Processors

Page Contents

Introduction

    1.Language processing activities arise due to the differences between the manner in which a software designer describes the ideas concerning the behavior of software and the manner in which these ideas are implemented in computer system.
     2.The designer expresses the ideas in terms related to the application domain of the software.

     3.To implement these ideas, their description has to be interpreted in terms related to the execution domain.

Semantic
Gap


The term semantics to represent the rules of meaning of a domain, and the term semantic gap to represent difference between the semantics of two domains.
 

 
The semantic gap has many consequences, some of the important are

  1. Large development times
  2. Large development effort
  3. Poor quality software.

Key Software engineering steps

  1. Specification and design of an application program, followed by its coding in a programming language Execution of the program with the help of language processor
  2. An Application program written in a programming language is governed by semantics of a programming language.
  3. Thus use of programming language has introduces a new domain, programming language domain PL Domain.

 Specification and execution Gap

Difference between specification gap and execution gap

Specification Gap:

Semantic gap between two specification of the same task
Execution Gap:
Semantic gap between the semantics of programs that performs the same task but written in different programming languages.
Problem
and procedure oriented programming languages
Problem oriented programming languages:
Lets a user specify a computation using data and operation that are meaningful in the area of the computation

 
Procedure oriented programming languages:
It provides some standard methods of creating data and performing operations and lets the user describe the intended computation by using them
 
 

Language
Processors

  •  A language processor is software which bridge a specification or execution gap.
 


Language processor abandons generation of target program if it detects error in the source program 
Different Types of Language Processors:
  1. A Language Translator
  2. De-translator
  3. Preprocessor 
  4. Language migrator
Language translator:
bridges an execution gap between PL, and the machine language of a computer. 
De-translator
Bridges the same execution gap as the language translator but in the opposite direction
  Preprocessor
  Bridges an execution gap but is not a language translator
  Language Migrator
  Bridges specification gap between two programming languages
Example: Preprocessor and Translator 
 

Interpreter

An interpreter is language processor which bridges an execution gap without generating a machine language program that means the execution gap vanishes totally.

Fundamental activities divided into those that bridge the specification gap and execution gap.

  • Program generation activities
  • Program execution activities

Program Generation:

  1. A program generation activity aims at automatic generation of a program.
  2. A source language is a specification language of an application domain and the target language is procedure oriented PL.
  3. Program generator introduces a new domain between the application and PL domain, call this the program generator domain.
  4. Specification gap now between Application domain and program generation domain, reduction in the specification gap increases the reliability of the generated program.

 

Also read GATE MCQ’s
There are 2 popular models of program execution

1.Program Translation
2.Program Interpretation

Lets us know briefly about these two,

Program Translation:The program translation model bridges the execution gap by translating a sources program into program in the machine or assembly language of the computer system, called target program. 







Characteristics of the program translation model:

  1. A program must be translated before it can be executed
  2. The translated program may be saved in a file. The saved program may be executed repeatedly.
  3. A program must be retranslated following modifications.



 

Program Interpretation: during interpretation interpreter takes source program statement, determines its meaning and performs actions which implement it.


The function of an interpreter is same as the execution of machine language program by CPU.  

 Characteristics:

  1. The source program is retained in the source form itself, no target program form exists,
  2. A statement is analyzed during its interpretation.

 


 Comparison

  1.  In translator whole program is translated into target and if modified the source program, whole source program is translated irrespective to size of modification.
  2. That not the in case of interpreter, interpretation is slower than execution of m/c language program. 

Previous articleWhat is Deadlock? Defination of Deadlock in Operating System Pdf/ebook/ppt Download Free
Next articleBaseband Receiver (Detection Theory/Source Encoding/Decoding AWGN)

LEAVE A REPLY

Please enter your comment!
Please enter your name here