A define_insn
expression is used to define instruction patterns
to which insns may be matched. A define_insn
expression contains
an incomplete RTL expression, with pieces to be filled in later, operand
constraints that restrict how the pieces can be filled in, and an output
template or C code to generate the assembler output.
A define_insn
is an RTL expression containing four or five operands:
The absence of a name is indicated by writing an empty string where the name should go. Nameless instruction patterns are never used for generating RTL code, but they may permit several simpler insns to be combined later on.
Names that are not thus known and used in RTL-generation have no effect; they are equivalent to no name at all.
For the purpose of debugging the compiler, you may also specify a name beginning with the ‘*’ character. Such a name is used only for identifying the instruction in RTL dumps; it is equivalent to having a nameless pattern for all other purposes. Names beginning with the ‘*’ character are not required to be unique.
match_operand
,
match_operator
, and match_dup
expressions that stand for
operands of the instruction.
If the vector has multiple elements, the RTL template is treated as a
parallel
expression.
true
, the match is
permitted. The condition may be an empty string, which is treated
as always true
.
For a named pattern, the condition may not depend on the data in the insn being matched, but only the target-machine-type flags. The compiler needs to test these conditions during initialization in order to learn exactly which named instructions are available in a particular run.
For nameless patterns, the condition is applied only when matching an
individual insn, and only after the insn has matched the pattern's
recognition template. The insn's operands may be found in the vector
operands
.
For an insn where the condition has once matched, it cannot later be used to control register allocation by excluding certain register or value combinations.
When simple substitution isn't general enough, you can specify a piece of C code to compute the output. See Output Statement.