
Optimization Techniques Implemented
Motorola
About g56k
4-21
4.11.12 Leaf Routine Detection
A leaf routine is a subroutine that makes no further subroutine calls. When the compiler
identifies such routines, the prologue and epilogue code are optimized (no save and restore
of the
ssh
).
4.11.13 Function In-lining
When explicitly requested via the command-line option
-finline-function
, the compiler
will replace calls to subroutines with an in-line copy of the subroutine if the subroutine
meets these requirements:
1. The subroutine must be a non-volatile leaf function.
2. The subroutine must be in the same module.
3. The definition must precede use of the subroutine.
Function in-lining eliminates the overhead associated with subroutine calls and provides
additional opportunities for the optimizer and register allocator to further increase code
quality. Function in-lining can also be performed explicitly by the programmer by
utilizing the additional non-ANSI function type specifier
_ _inline.
By default, many
run-time libraries are in-lined by the compiler.
Note:
The function in-lining method can cause program memory requirements to
grow significantly. See Appendix A,
Programming Support
, for instructions on
disabling library routine in-lining.
4.11.14 Instruction Scheduling / Microcode Compaction
The command line switch
-alo
causes an assembly language optimizer (
alo56
) to be run,
using the assembly code emitted by the compiler as input. This optimizer attempts to
compact multiple operations into a single instruction word, while simultaneously avoiding
the pipeline hazards exposed by the address generation unit. Because this optimizer mixes
together instructions from different C language statements, debugging code compiled with
-alo
may be more difficult.
F
Freescale Semiconductor, Inc.
For More Information On This Product,
Go to: www.freescale.com
n
.