0
38kviews
Explain Peephole Optimisation In Compiler Design.
1 Answer
| written 3.7 years ago by | • modified 3.7 years ago |
Peephole optimisation is a simple and effective technique for locally improving target code. This technique is applied to improve the performance of the target program by examining the short sequence of target instructions (called the peephole) and replace these instructions replacing by shorter or faster sequence whenever possible. Peephole …