LOOP Optimization
Rules Every Programmer must follow before the optimization of any source code.
1.) Loop transformation technique.
2.) Help to reduce optimize the execution time of a program.
3.) Basically, remove the iterations.
4.) Loop Unrolling increase the program speed by eliminating loop control instructions.
Loop Optimization is a Machine Independent Technique. We can do Code optimization in the loops of the program. In loop optimization, code optimization is performed on inner loops.
Methods of Loop Optimization
1.) Code Motion
2.) Loop Invariant Method
3.) Loop Jamming
4.) Loop Unrolling
5.) Strength Reduction
Code Motion: Technique that moves the code outside the loop.
Loop Jamming: Combining two or more loops in a single loop.
Code Strength: Expressions that consumes CPU time and memory should replace with cheaper expressions. Replace Expensive Expressions (i.e., *) with cheaper ones (i.e., +)
Comments
Post a Comment