|
Some compilers allow use of predefined set of StarCore assembly patterns inside a C program. For example the following kernel:
s
= 0;
May be rewritten as:
s
= 0; which compiler translate into: loopstart3
Also this code is quit efficien ( runs at 1clock/point ), sco optimizes it into:
loopstart3 which processes four points in 3 clocks – 25% improvement. |