
4-20
Motorola DSP56000 Family Optimizing C Compiler User’s Manual
For More Information On This Product,
Go to: www.freescale.com
Motorola
Optimization Techniques Implemented
4.11.9 Loop Rotation
Loop rotation
is the elimination of the code generated to check the loop’s entry conditions.
When a loop fails to qualify for
do loop
promotion i.e., it does not meet the four conditions
listed above, it will qualify for loop rotation if the length of the loop is known at
compile-time, for example:
for ( i = 0 ; i < 10 ; i ++ )
The loop created with this
for
statement will always be executed at least one time.
Therefore, the “is i < 10” test does not have to be run the first time through the loop and
as a result, can be eliminated during the first pass through the loop only. If the result of the
first test cannot be predetermined then it cannot be eliminated. In the example below, the
number of loops is a variable (and therefore cannot be predetermined) that may equal zero.
for ( i = 0 ; i < j ; i ++ )
4.11.10 Jump Optimizations
All cases of jumps (conditional and unconditional) to unconditional jumps are eliminated
to create a single jump and target label.
4.11.11 Instruction Combination
Instruction combination replaces several operators with a single, less expensive operator.
This optimization method is very machine specific.
Sequences that are commonly combined by the optimizer include:
1. Integer add/multiply becomes a
mac
instruction.
2. Integer subtract/multiply becomes a
mac
instruction.
3. A memory reference combined with a pointer adjustment becomes an
autoincrement
or
autodectrement
addressing mode. This is very powerful when
combined with register promotion and do loop promotion. For example,
for ( i = 0 ; i < 10 ; i ++ )
{
array_1[ i ] = array_2[ i ];
}
the
for
loop becomes a
do
instruction, the array references are promoted to address
registers and the induction variable is eliminated with array pointer advancement done via
the
autoincrement
addressing mode.
F
Freescale Semiconductor, Inc.
n
.