Home »
» What are the advantages of generating intermediate code?
10:30 AM
Intermediate Code Generation: After syntax & semantic analysis the compiler generates an explicit intermediate representation of the source program. To implement intermediatecode such as -
- It should be easy to produce &
- Easy to translate into the target program
- Retargeting is faciliated.
- Finally, the representation of intermediate code is directly executed using a program, which is referred to as interpreter.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :
CSE SOLVE
Related Posts:
What is CFG?Advantages of CFG
Context Free Grammar : A CFG is a way of describing language by recursive rules. A CFG consists four tuples, denoted G = {V, T, P, S}
Where,
V = Finit… Read More
What is drawback of operator precedence parsing?
Drawback of operator precedence parsing :
Difficult to find token from the operator precedence parsing.
It is itself tenuous. One can't always be sure the parser accepts exactly the desired language.
Only a small cla… Read More
Discuss the capabilities of CFG
The capabilities of CFG :
Context free grammars are capable of describing most of the syntax of programming language. suitable grammars for expressions can often be constructed using associatively & prec… Read More
What is Context Free Grammar With Example?
Context Free Grammar : A CFG is a way of describing language by recursive rules. A CFG consists four tuples, denoted G = {V, T, P, S}
Where,
V = Finite … Read More
What are the differences between single pass & multi-pass compiler?
The differences between single pass & multi-pass compiler :
Single Pass Compiler
Multi-Pass Compiler
1. Single pass compiler can be made to use more space than multi-pass compil… Read More
0 comments:
Post a Comment