
5-2
Motorola DSP56000 Family Optimizing C Compiler User’s Manual
For More Information On This Product,
Go to: www.freescale.com
Motorola
In-line Assembly Code
Typically, in-line assembly code is used when:
1. Inserting a small amount of assembly code directly into the compiler output i.e.,
inner loop kernels.
2. Writing fast assembly language routines to be called by C subroutines. This
eliminates the need to manage data referencing, register saving and allocation, and
function call/return overhead.
The key word
_ _asm
is introduced as an extension to the ANSI C language standard and
this key word is used like a function call to specify the in-line assembly code generation
rule discussed below.
The in-line assembly statement syntax is:
_ _asm
(“instruction_template”: output_operands: input _operands:
reg_save);
where:
1.
instruction_template
is a string used to describe a sequence of assembly code
instructions that are to be inserted into the compiler output stream. It may specify
arguments, which are listed in output_operands and input_operands. It does this via
a substring called an operand expansion string (OES). An OES starts with a ‘%’.
OES and instruction_template interpretation is described in Section 5.2.1.
2.
output_operands
are optional operands used to provide specific output
information to the compiler. Each output_operand string is separated by a comma
and should begin with the character ‘=’. As an example, the output_operand “=A”
(cptr) means “the C variable cptr will get its value from this output operand, which
will be in an address register”. See Section 5.2.2 for more details.
3.
input_operands
are optional operands to provide specific input information to the
compiler. Each input_operand is separated by a comma and may include a C
variable. As an example, the input_operand “A” (cptr) means “the value of this
input operand will be taken from the C variable cptr, and placed in an address
register”. Again, full descriptions of the input and output operands can be found in
Section 5.2.2.
4.
reg_save
specifies registers that are to be explicitly reserved for the
_ _
asm ()
statement. The registers to be saved must be named as strings such as ”a” and “b”.
Each register is separated by a comma (see Section 5.2.3 for additional
information) The compiler assumes that all data residing in the reg_save registers
will be invalidated by the
_ _ asm ()
statement.
F
Freescale Semiconductor, Inc.
n
.