
4-14
Motorola DSP56000 Family Optimizing C Compiler User’s Manual
For More Information On This Product,
Go to: www.freescale.com
Motorola
Subroutine Call Sequence
4.8 Subroutine Call Sequence
Each time a C language subroutine is called, a strict calling convention is followed. The
subroutine calling sequence is broken down into three sub-sequences that are strictly
defined. The three sub-sequences are caller, callee and return sequence.
Note:
This calling convention must be followed when writing in-line or out-of-line
assembly language subroutines that call subroutines written in C.
4.8.1 Caller Sequence
The
caller
portion of the subroutine calling sequence is responsible for:
1. Pushing arguments onto the activation record (in reverse order).
2. Actual subroutine call (jsr).
3. Stack pointer adjustment.
Additional
caller
sequence when the subroutine called will return a structure:
4. Allocate space in the caller’s activation record to store the return structure.
F<identifier>
Global C variables, global subroutines, static C
variables and static subroutines. A static C variable or
subroutine is one which is not visible to any C code
outside the file in which it has been declared, thus
making it possible to reuse variable names across file
boundaries. Where
identifier
is the variable or
subroutine name.
F_ _<identifier>#
Variables static to a function.
ASM_APP_#
In-line assembly code delimiters. Required to allow the
programmer to define and use local labels (labels
beginning with an underscore character ‘_’).
<filename_c>
Sectionnames.The contents of each assembly language
file generated by the compiler are contained in a unique
section
. Where
filename
is the file name minus any ‘
.
’
extensions.
L#
Local labels. Generally the targets of conditional and
unconditional jumps. Where # is a decimal digit.
F
Freescale Semiconductor, Inc.
n
.