Add support for SVE gather loads
[official-gcc.git] / gcc / doc / md.texi
blob245fa90e6d14d13aca3abf8c1f87599276a77b04
1 @c Copyright (C) 1988-2018 Free Software Foundation, Inc.
2 @c This is part of the GCC manual.
3 @c For copying conditions, see the file gcc.texi.
5 @ifset INTERNALS
6 @node Machine Desc
7 @chapter Machine Descriptions
8 @cindex machine descriptions
10 A machine description has two parts: a file of instruction patterns
11 (@file{.md} file) and a C header file of macro definitions.
13 The @file{.md} file for a target machine contains a pattern for each
14 instruction that the target machine supports (or at least each instruction
15 that is worth telling the compiler about).  It may also contain comments.
16 A semicolon causes the rest of the line to be a comment, unless the semicolon
17 is inside a quoted string.
19 See the next chapter for information on the C header file.
21 @menu
22 * Overview::            How the machine description is used.
23 * Patterns::            How to write instruction patterns.
24 * Example::             An explained example of a @code{define_insn} pattern.
25 * RTL Template::        The RTL template defines what insns match a pattern.
26 * Output Template::     The output template says how to make assembler code
27                         from such an insn.
28 * Output Statement::    For more generality, write C code to output
29                         the assembler code.
30 * Predicates::          Controlling what kinds of operands can be used
31                         for an insn.
32 * Constraints::         Fine-tuning operand selection.
33 * Standard Names::      Names mark patterns to use for code generation.
34 * Pattern Ordering::    When the order of patterns makes a difference.
35 * Dependent Patterns::  Having one pattern may make you need another.
36 * Jump Patterns::       Special considerations for patterns for jump insns.
37 * Looping Patterns::    How to define patterns for special looping insns.
38 * Insn Canonicalizations::Canonicalization of Instructions
39 * Expander Definitions::Generating a sequence of several RTL insns
40                         for a standard operation.
41 * Insn Splitting::      Splitting Instructions into Multiple Instructions.
42 * Including Patterns::  Including Patterns in Machine Descriptions.
43 * Peephole Definitions::Defining machine-specific peephole optimizations.
44 * Insn Attributes::     Specifying the value of attributes for generated insns.
45 * Conditional Execution::Generating @code{define_insn} patterns for
46                          predication.
47 * Define Subst::        Generating @code{define_insn} and @code{define_expand}
48                         patterns from other patterns.
49 * Constant Definitions::Defining symbolic constants that can be used in the
50                         md file.
51 * Iterators::           Using iterators to generate patterns from a template.
52 @end menu
54 @node Overview
55 @section Overview of How the Machine Description is Used
57 There are three main conversions that happen in the compiler:
59 @enumerate
61 @item
62 The front end reads the source code and builds a parse tree.
64 @item
65 The parse tree is used to generate an RTL insn list based on named
66 instruction patterns.
68 @item
69 The insn list is matched against the RTL templates to produce assembler
70 code.
72 @end enumerate
74 For the generate pass, only the names of the insns matter, from either a
75 named @code{define_insn} or a @code{define_expand}.  The compiler will
76 choose the pattern with the right name and apply the operands according
77 to the documentation later in this chapter, without regard for the RTL
78 template or operand constraints.  Note that the names the compiler looks
79 for are hard-coded in the compiler---it will ignore unnamed patterns and
80 patterns with names it doesn't know about, but if you don't provide a
81 named pattern it needs, it will abort.
83 If a @code{define_insn} is used, the template given is inserted into the
84 insn list.  If a @code{define_expand} is used, one of three things
85 happens, based on the condition logic.  The condition logic may manually
86 create new insns for the insn list, say via @code{emit_insn()}, and
87 invoke @code{DONE}.  For certain named patterns, it may invoke @code{FAIL} to tell the
88 compiler to use an alternate way of performing that task.  If it invokes
89 neither @code{DONE} nor @code{FAIL}, the template given in the pattern
90 is inserted, as if the @code{define_expand} were a @code{define_insn}.
92 Once the insn list is generated, various optimization passes convert,
93 replace, and rearrange the insns in the insn list.  This is where the
94 @code{define_split} and @code{define_peephole} patterns get used, for
95 example.
97 Finally, the insn list's RTL is matched up with the RTL templates in the
98 @code{define_insn} patterns, and those patterns are used to emit the
99 final assembly code.  For this purpose, each named @code{define_insn}
100 acts like it's unnamed, since the names are ignored.
102 @node Patterns
103 @section Everything about Instruction Patterns
104 @cindex patterns
105 @cindex instruction patterns
107 @findex define_insn
108 A @code{define_insn} expression is used to define instruction patterns
109 to which insns may be matched.  A @code{define_insn} expression contains
110 an incomplete RTL expression, with pieces to be filled in later, operand
111 constraints that restrict how the pieces can be filled in, and an output
112 template or C code to generate the assembler output.
114 A @code{define_insn} is an RTL expression containing four or five operands:
116 @enumerate
117 @item
118 An optional name.  The presence of a name indicates that this instruction
119 pattern can perform a certain standard job for the RTL-generation
120 pass of the compiler.  This pass knows certain names and will use
121 the instruction patterns with those names, if the names are defined
122 in the machine description.
124 The absence of a name is indicated by writing an empty string
125 where the name should go.  Nameless instruction patterns are never
126 used for generating RTL code, but they may permit several simpler insns
127 to be combined later on.
129 Names that are not thus known and used in RTL-generation have no
130 effect; they are equivalent to no name at all.
132 For the purpose of debugging the compiler, you may also specify a
133 name beginning with the @samp{*} character.  Such a name is used only
134 for identifying the instruction in RTL dumps; it is equivalent to having
135 a nameless pattern for all other purposes.  Names beginning with the
136 @samp{*} character are not required to be unique.
138 @item
139 The @dfn{RTL template}: This is a vector of incomplete RTL expressions
140 which describe the semantics of the instruction (@pxref{RTL Template}).
141 It is incomplete because it may contain @code{match_operand},
142 @code{match_operator}, and @code{match_dup} expressions that stand for
143 operands of the instruction.
145 If the vector has multiple elements, the RTL template is treated as a
146 @code{parallel} expression.
148 @item
149 @cindex pattern conditions
150 @cindex conditions, in patterns
151 The condition: This is a string which contains a C expression.  When the
152 compiler attempts to match RTL against a pattern, the condition is
153 evaluated.  If the condition evaluates to @code{true}, the match is
154 permitted.  The condition may be an empty string, which is treated
155 as always @code{true}.
157 @cindex named patterns and conditions
158 For a named pattern, the condition may not depend on the data in the
159 insn being matched, but only the target-machine-type flags.  The compiler
160 needs to test these conditions during initialization in order to learn
161 exactly which named instructions are available in a particular run.
163 @findex operands
164 For nameless patterns, the condition is applied only when matching an
165 individual insn, and only after the insn has matched the pattern's
166 recognition template.  The insn's operands may be found in the vector
167 @code{operands}.
169 An instruction condition cannot become more restrictive as compilation
170 progresses.  If the condition accepts a particular RTL instruction at
171 one stage of compilation, it must continue to accept that instruction
172 until the final pass.  For example, @samp{!reload_completed} and
173 @samp{can_create_pseudo_p ()} are both invalid instruction conditions,
174 because they are true during the earlier RTL passes and false during
175 the later ones.  For the same reason, if a condition accepts an
176 instruction before register allocation, it cannot later try to control
177 register allocation by excluding certain register or value combinations.
179 Although a condition cannot become more restrictive as compilation
180 progresses, the condition for a nameless pattern @emph{can} become
181 more permissive.  For example, a nameless instruction can require
182 @samp{reload_completed} to be true, in which case it only matches
183 after register allocation.
185 @item
186 The @dfn{output template} or @dfn{output statement}: This is either
187 a string, or a fragment of C code which returns a string.
189 When simple substitution isn't general enough, you can specify a piece
190 of C code to compute the output.  @xref{Output Statement}.
192 @item
193 The @dfn{insn attributes}: This is an optional vector containing the values of
194 attributes for insns matching this pattern (@pxref{Insn Attributes}).
195 @end enumerate
197 @node Example
198 @section Example of @code{define_insn}
199 @cindex @code{define_insn} example
201 Here is an example of an instruction pattern, taken from the machine
202 description for the 68000/68020.
204 @smallexample
205 (define_insn "tstsi"
206   [(set (cc0)
207         (match_operand:SI 0 "general_operand" "rm"))]
208   ""
209   "*
211   if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
212     return \"tstl %0\";
213   return \"cmpl #0,%0\";
214 @}")
215 @end smallexample
217 @noindent
218 This can also be written using braced strings:
220 @smallexample
221 (define_insn "tstsi"
222   [(set (cc0)
223         (match_operand:SI 0 "general_operand" "rm"))]
224   ""
226   if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
227     return "tstl %0";
228   return "cmpl #0,%0";
230 @end smallexample
232 This describes an instruction which sets the condition codes based on the
233 value of a general operand.  It has no condition, so any insn with an RTL
234 description of the form shown may be matched to this pattern.  The name
235 @samp{tstsi} means ``test a @code{SImode} value'' and tells the RTL
236 generation pass that, when it is necessary to test such a value, an insn
237 to do so can be constructed using this pattern.
239 The output control string is a piece of C code which chooses which
240 output template to return based on the kind of operand and the specific
241 type of CPU for which code is being generated.
243 @samp{"rm"} is an operand constraint.  Its meaning is explained below.
245 @node RTL Template
246 @section RTL Template
247 @cindex RTL insn template
248 @cindex generating insns
249 @cindex insns, generating
250 @cindex recognizing insns
251 @cindex insns, recognizing
253 The RTL template is used to define which insns match the particular pattern
254 and how to find their operands.  For named patterns, the RTL template also
255 says how to construct an insn from specified operands.
257 Construction involves substituting specified operands into a copy of the
258 template.  Matching involves determining the values that serve as the
259 operands in the insn being matched.  Both of these activities are
260 controlled by special expression types that direct matching and
261 substitution of the operands.
263 @table @code
264 @findex match_operand
265 @item (match_operand:@var{m} @var{n} @var{predicate} @var{constraint})
266 This expression is a placeholder for operand number @var{n} of
267 the insn.  When constructing an insn, operand number @var{n}
268 will be substituted at this point.  When matching an insn, whatever
269 appears at this position in the insn will be taken as operand
270 number @var{n}; but it must satisfy @var{predicate} or this instruction
271 pattern will not match at all.
273 Operand numbers must be chosen consecutively counting from zero in
274 each instruction pattern.  There may be only one @code{match_operand}
275 expression in the pattern for each operand number.  Usually operands
276 are numbered in the order of appearance in @code{match_operand}
277 expressions.  In the case of a @code{define_expand}, any operand numbers
278 used only in @code{match_dup} expressions have higher values than all
279 other operand numbers.
281 @var{predicate} is a string that is the name of a function that
282 accepts two arguments, an expression and a machine mode.
283 @xref{Predicates}.  During matching, the function will be called with
284 the putative operand as the expression and @var{m} as the mode
285 argument (if @var{m} is not specified, @code{VOIDmode} will be used,
286 which normally causes @var{predicate} to accept any mode).  If it
287 returns zero, this instruction pattern fails to match.
288 @var{predicate} may be an empty string; then it means no test is to be
289 done on the operand, so anything which occurs in this position is
290 valid.
292 Most of the time, @var{predicate} will reject modes other than @var{m}---but
293 not always.  For example, the predicate @code{address_operand} uses
294 @var{m} as the mode of memory ref that the address should be valid for.
295 Many predicates accept @code{const_int} nodes even though their mode is
296 @code{VOIDmode}.
298 @var{constraint} controls reloading and the choice of the best register
299 class to use for a value, as explained later (@pxref{Constraints}).
300 If the constraint would be an empty string, it can be omitted.
302 People are often unclear on the difference between the constraint and the
303 predicate.  The predicate helps decide whether a given insn matches the
304 pattern.  The constraint plays no role in this decision; instead, it
305 controls various decisions in the case of an insn which does match.
307 @findex match_scratch
308 @item (match_scratch:@var{m} @var{n} @var{constraint})
309 This expression is also a placeholder for operand number @var{n}
310 and indicates that operand must be a @code{scratch} or @code{reg}
311 expression.
313 When matching patterns, this is equivalent to
315 @smallexample
316 (match_operand:@var{m} @var{n} "scratch_operand" @var{constraint})
317 @end smallexample
319 but, when generating RTL, it produces a (@code{scratch}:@var{m})
320 expression.
322 If the last few expressions in a @code{parallel} are @code{clobber}
323 expressions whose operands are either a hard register or
324 @code{match_scratch}, the combiner can add or delete them when
325 necessary.  @xref{Side Effects}.
327 @findex match_dup
328 @item (match_dup @var{n})
329 This expression is also a placeholder for operand number @var{n}.
330 It is used when the operand needs to appear more than once in the
331 insn.
333 In construction, @code{match_dup} acts just like @code{match_operand}:
334 the operand is substituted into the insn being constructed.  But in
335 matching, @code{match_dup} behaves differently.  It assumes that operand
336 number @var{n} has already been determined by a @code{match_operand}
337 appearing earlier in the recognition template, and it matches only an
338 identical-looking expression.
340 Note that @code{match_dup} should not be used to tell the compiler that
341 a particular register is being used for two operands (example:
342 @code{add} that adds one register to another; the second register is
343 both an input operand and the output operand).  Use a matching
344 constraint (@pxref{Simple Constraints}) for those.  @code{match_dup} is for the cases where one
345 operand is used in two places in the template, such as an instruction
346 that computes both a quotient and a remainder, where the opcode takes
347 two input operands but the RTL template has to refer to each of those
348 twice; once for the quotient pattern and once for the remainder pattern.
350 @findex match_operator
351 @item (match_operator:@var{m} @var{n} @var{predicate} [@var{operands}@dots{}])
352 This pattern is a kind of placeholder for a variable RTL expression
353 code.
355 When constructing an insn, it stands for an RTL expression whose
356 expression code is taken from that of operand @var{n}, and whose
357 operands are constructed from the patterns @var{operands}.
359 When matching an expression, it matches an expression if the function
360 @var{predicate} returns nonzero on that expression @emph{and} the
361 patterns @var{operands} match the operands of the expression.
363 Suppose that the function @code{commutative_operator} is defined as
364 follows, to match any expression whose operator is one of the
365 commutative arithmetic operators of RTL and whose mode is @var{mode}:
367 @smallexample
369 commutative_integer_operator (x, mode)
370      rtx x;
371      machine_mode mode;
373   enum rtx_code code = GET_CODE (x);
374   if (GET_MODE (x) != mode)
375     return 0;
376   return (GET_RTX_CLASS (code) == RTX_COMM_ARITH
377           || code == EQ || code == NE);
379 @end smallexample
381 Then the following pattern will match any RTL expression consisting
382 of a commutative operator applied to two general operands:
384 @smallexample
385 (match_operator:SI 3 "commutative_operator"
386   [(match_operand:SI 1 "general_operand" "g")
387    (match_operand:SI 2 "general_operand" "g")])
388 @end smallexample
390 Here the vector @code{[@var{operands}@dots{}]} contains two patterns
391 because the expressions to be matched all contain two operands.
393 When this pattern does match, the two operands of the commutative
394 operator are recorded as operands 1 and 2 of the insn.  (This is done
395 by the two instances of @code{match_operand}.)  Operand 3 of the insn
396 will be the entire commutative expression: use @code{GET_CODE
397 (operands[3])} to see which commutative operator was used.
399 The machine mode @var{m} of @code{match_operator} works like that of
400 @code{match_operand}: it is passed as the second argument to the
401 predicate function, and that function is solely responsible for
402 deciding whether the expression to be matched ``has'' that mode.
404 When constructing an insn, argument 3 of the gen-function will specify
405 the operation (i.e.@: the expression code) for the expression to be
406 made.  It should be an RTL expression, whose expression code is copied
407 into a new expression whose operands are arguments 1 and 2 of the
408 gen-function.  The subexpressions of argument 3 are not used;
409 only its expression code matters.
411 When @code{match_operator} is used in a pattern for matching an insn,
412 it usually best if the operand number of the @code{match_operator}
413 is higher than that of the actual operands of the insn.  This improves
414 register allocation because the register allocator often looks at
415 operands 1 and 2 of insns to see if it can do register tying.
417 There is no way to specify constraints in @code{match_operator}.  The
418 operand of the insn which corresponds to the @code{match_operator}
419 never has any constraints because it is never reloaded as a whole.
420 However, if parts of its @var{operands} are matched by
421 @code{match_operand} patterns, those parts may have constraints of
422 their own.
424 @findex match_op_dup
425 @item (match_op_dup:@var{m} @var{n}[@var{operands}@dots{}])
426 Like @code{match_dup}, except that it applies to operators instead of
427 operands.  When constructing an insn, operand number @var{n} will be
428 substituted at this point.  But in matching, @code{match_op_dup} behaves
429 differently.  It assumes that operand number @var{n} has already been
430 determined by a @code{match_operator} appearing earlier in the
431 recognition template, and it matches only an identical-looking
432 expression.
434 @findex match_parallel
435 @item (match_parallel @var{n} @var{predicate} [@var{subpat}@dots{}])
436 This pattern is a placeholder for an insn that consists of a
437 @code{parallel} expression with a variable number of elements.  This
438 expression should only appear at the top level of an insn pattern.
440 When constructing an insn, operand number @var{n} will be substituted at
441 this point.  When matching an insn, it matches if the body of the insn
442 is a @code{parallel} expression with at least as many elements as the
443 vector of @var{subpat} expressions in the @code{match_parallel}, if each
444 @var{subpat} matches the corresponding element of the @code{parallel},
445 @emph{and} the function @var{predicate} returns nonzero on the
446 @code{parallel} that is the body of the insn.  It is the responsibility
447 of the predicate to validate elements of the @code{parallel} beyond
448 those listed in the @code{match_parallel}.
450 A typical use of @code{match_parallel} is to match load and store
451 multiple expressions, which can contain a variable number of elements
452 in a @code{parallel}.  For example,
454 @smallexample
455 (define_insn ""
456   [(match_parallel 0 "load_multiple_operation"
457      [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
458            (match_operand:SI 2 "memory_operand" "m"))
459       (use (reg:SI 179))
460       (clobber (reg:SI 179))])]
461   ""
462   "loadm 0,0,%1,%2")
463 @end smallexample
465 This example comes from @file{a29k.md}.  The function
466 @code{load_multiple_operation} is defined in @file{a29k.c} and checks
467 that subsequent elements in the @code{parallel} are the same as the
468 @code{set} in the pattern, except that they are referencing subsequent
469 registers and memory locations.
471 An insn that matches this pattern might look like:
473 @smallexample
474 (parallel
475  [(set (reg:SI 20) (mem:SI (reg:SI 100)))
476   (use (reg:SI 179))
477   (clobber (reg:SI 179))
478   (set (reg:SI 21)
479        (mem:SI (plus:SI (reg:SI 100)
480                         (const_int 4))))
481   (set (reg:SI 22)
482        (mem:SI (plus:SI (reg:SI 100)
483                         (const_int 8))))])
484 @end smallexample
486 @findex match_par_dup
487 @item (match_par_dup @var{n} [@var{subpat}@dots{}])
488 Like @code{match_op_dup}, but for @code{match_parallel} instead of
489 @code{match_operator}.
491 @end table
493 @node Output Template
494 @section Output Templates and Operand Substitution
495 @cindex output templates
496 @cindex operand substitution
498 @cindex @samp{%} in template
499 @cindex percent sign
500 The @dfn{output template} is a string which specifies how to output the
501 assembler code for an instruction pattern.  Most of the template is a
502 fixed string which is output literally.  The character @samp{%} is used
503 to specify where to substitute an operand; it can also be used to
504 identify places where different variants of the assembler require
505 different syntax.
507 In the simplest case, a @samp{%} followed by a digit @var{n} says to output
508 operand @var{n} at that point in the string.
510 @samp{%} followed by a letter and a digit says to output an operand in an
511 alternate fashion.  Four letters have standard, built-in meanings described
512 below.  The machine description macro @code{PRINT_OPERAND} can define
513 additional letters with nonstandard meanings.
515 @samp{%c@var{digit}} can be used to substitute an operand that is a
516 constant value without the syntax that normally indicates an immediate
517 operand.
519 @samp{%n@var{digit}} is like @samp{%c@var{digit}} except that the value of
520 the constant is negated before printing.
522 @samp{%a@var{digit}} can be used to substitute an operand as if it were a
523 memory reference, with the actual operand treated as the address.  This may
524 be useful when outputting a ``load address'' instruction, because often the
525 assembler syntax for such an instruction requires you to write the operand
526 as if it were a memory reference.
528 @samp{%l@var{digit}} is used to substitute a @code{label_ref} into a jump
529 instruction.
531 @samp{%=} outputs a number which is unique to each instruction in the
532 entire compilation.  This is useful for making local labels to be
533 referred to more than once in a single template that generates multiple
534 assembler instructions.
536 @samp{%} followed by a punctuation character specifies a substitution that
537 does not use an operand.  Only one case is standard: @samp{%%} outputs a
538 @samp{%} into the assembler code.  Other nonstandard cases can be
539 defined in the @code{PRINT_OPERAND} macro.  You must also define
540 which punctuation characters are valid with the
541 @code{PRINT_OPERAND_PUNCT_VALID_P} macro.
543 @cindex \
544 @cindex backslash
545 The template may generate multiple assembler instructions.  Write the text
546 for the instructions, with @samp{\;} between them.
548 @cindex matching operands
549 When the RTL contains two operands which are required by constraint to match
550 each other, the output template must refer only to the lower-numbered operand.
551 Matching operands are not always identical, and the rest of the compiler
552 arranges to put the proper RTL expression for printing into the lower-numbered
553 operand.
555 One use of nonstandard letters or punctuation following @samp{%} is to
556 distinguish between different assembler languages for the same machine; for
557 example, Motorola syntax versus MIT syntax for the 68000.  Motorola syntax
558 requires periods in most opcode names, while MIT syntax does not.  For
559 example, the opcode @samp{movel} in MIT syntax is @samp{move.l} in Motorola
560 syntax.  The same file of patterns is used for both kinds of output syntax,
561 but the character sequence @samp{%.} is used in each place where Motorola
562 syntax wants a period.  The @code{PRINT_OPERAND} macro for Motorola syntax
563 defines the sequence to output a period; the macro for MIT syntax defines
564 it to do nothing.
566 @cindex @code{#} in template
567 As a special case, a template consisting of the single character @code{#}
568 instructs the compiler to first split the insn, and then output the
569 resulting instructions separately.  This helps eliminate redundancy in the
570 output templates.   If you have a @code{define_insn} that needs to emit
571 multiple assembler instructions, and there is a matching @code{define_split}
572 already defined, then you can simply use @code{#} as the output template
573 instead of writing an output template that emits the multiple assembler
574 instructions.
576 Note that @code{#} only has an effect while generating assembly code;
577 it does not affect whether a split occurs earlier.  An associated
578 @code{define_split} must exist and it must be suitable for use after
579 register allocation.
581 If the macro @code{ASSEMBLER_DIALECT} is defined, you can use construct
582 of the form @samp{@{option0|option1|option2@}} in the templates.  These
583 describe multiple variants of assembler language syntax.
584 @xref{Instruction Output}.
586 @node Output Statement
587 @section C Statements for Assembler Output
588 @cindex output statements
589 @cindex C statements for assembler output
590 @cindex generating assembler output
592 Often a single fixed template string cannot produce correct and efficient
593 assembler code for all the cases that are recognized by a single
594 instruction pattern.  For example, the opcodes may depend on the kinds of
595 operands; or some unfortunate combinations of operands may require extra
596 machine instructions.
598 If the output control string starts with a @samp{@@}, then it is actually
599 a series of templates, each on a separate line.  (Blank lines and
600 leading spaces and tabs are ignored.)  The templates correspond to the
601 pattern's constraint alternatives (@pxref{Multi-Alternative}).  For example,
602 if a target machine has a two-address add instruction @samp{addr} to add
603 into a register and another @samp{addm} to add a register to memory, you
604 might write this pattern:
606 @smallexample
607 (define_insn "addsi3"
608   [(set (match_operand:SI 0 "general_operand" "=r,m")
609         (plus:SI (match_operand:SI 1 "general_operand" "0,0")
610                  (match_operand:SI 2 "general_operand" "g,r")))]
611   ""
612   "@@
613    addr %2,%0
614    addm %2,%0")
615 @end smallexample
617 @cindex @code{*} in template
618 @cindex asterisk in template
619 If the output control string starts with a @samp{*}, then it is not an
620 output template but rather a piece of C program that should compute a
621 template.  It should execute a @code{return} statement to return the
622 template-string you want.  Most such templates use C string literals, which
623 require doublequote characters to delimit them.  To include these
624 doublequote characters in the string, prefix each one with @samp{\}.
626 If the output control string is written as a brace block instead of a
627 double-quoted string, it is automatically assumed to be C code.  In that
628 case, it is not necessary to put in a leading asterisk, or to escape the
629 doublequotes surrounding C string literals.
631 The operands may be found in the array @code{operands}, whose C data type
632 is @code{rtx []}.
634 It is very common to select different ways of generating assembler code
635 based on whether an immediate operand is within a certain range.  Be
636 careful when doing this, because the result of @code{INTVAL} is an
637 integer on the host machine.  If the host machine has more bits in an
638 @code{int} than the target machine has in the mode in which the constant
639 will be used, then some of the bits you get from @code{INTVAL} will be
640 superfluous.  For proper results, you must carefully disregard the
641 values of those bits.
643 @findex output_asm_insn
644 It is possible to output an assembler instruction and then go on to output
645 or compute more of them, using the subroutine @code{output_asm_insn}.  This
646 receives two arguments: a template-string and a vector of operands.  The
647 vector may be @code{operands}, or it may be another array of @code{rtx}
648 that you declare locally and initialize yourself.
650 @findex which_alternative
651 When an insn pattern has multiple alternatives in its constraints, often
652 the appearance of the assembler code is determined mostly by which alternative
653 was matched.  When this is so, the C code can test the variable
654 @code{which_alternative}, which is the ordinal number of the alternative
655 that was actually satisfied (0 for the first, 1 for the second alternative,
656 etc.).
658 For example, suppose there are two opcodes for storing zero, @samp{clrreg}
659 for registers and @samp{clrmem} for memory locations.  Here is how
660 a pattern could use @code{which_alternative} to choose between them:
662 @smallexample
663 (define_insn ""
664   [(set (match_operand:SI 0 "general_operand" "=r,m")
665         (const_int 0))]
666   ""
667   @{
668   return (which_alternative == 0
669           ? "clrreg %0" : "clrmem %0");
670   @})
671 @end smallexample
673 The example above, where the assembler code to generate was
674 @emph{solely} determined by the alternative, could also have been specified
675 as follows, having the output control string start with a @samp{@@}:
677 @smallexample
678 @group
679 (define_insn ""
680   [(set (match_operand:SI 0 "general_operand" "=r,m")
681         (const_int 0))]
682   ""
683   "@@
684    clrreg %0
685    clrmem %0")
686 @end group
687 @end smallexample
689 If you just need a little bit of C code in one (or a few) alternatives,
690 you can use @samp{*} inside of a @samp{@@} multi-alternative template:
692 @smallexample
693 @group
694 (define_insn ""
695   [(set (match_operand:SI 0 "general_operand" "=r,<,m")
696         (const_int 0))]
697   ""
698   "@@
699    clrreg %0
700    * return stack_mem_p (operands[0]) ? \"push 0\" : \"clrmem %0\";
701    clrmem %0")
702 @end group
703 @end smallexample
705 @node Predicates
706 @section Predicates
707 @cindex predicates
708 @cindex operand predicates
709 @cindex operator predicates
711 A predicate determines whether a @code{match_operand} or
712 @code{match_operator} expression matches, and therefore whether the
713 surrounding instruction pattern will be used for that combination of
714 operands.  GCC has a number of machine-independent predicates, and you
715 can define machine-specific predicates as needed.  By convention,
716 predicates used with @code{match_operand} have names that end in
717 @samp{_operand}, and those used with @code{match_operator} have names
718 that end in @samp{_operator}.
720 All predicates are boolean functions (in the mathematical sense) of
721 two arguments: the RTL expression that is being considered at that
722 position in the instruction pattern, and the machine mode that the
723 @code{match_operand} or @code{match_operator} specifies.  In this
724 section, the first argument is called @var{op} and the second argument
725 @var{mode}.  Predicates can be called from C as ordinary two-argument
726 functions; this can be useful in output templates or other
727 machine-specific code.
729 Operand predicates can allow operands that are not actually acceptable
730 to the hardware, as long as the constraints give reload the ability to
731 fix them up (@pxref{Constraints}).  However, GCC will usually generate
732 better code if the predicates specify the requirements of the machine
733 instructions as closely as possible.  Reload cannot fix up operands
734 that must be constants (``immediate operands''); you must use a
735 predicate that allows only constants, or else enforce the requirement
736 in the extra condition.
738 @cindex predicates and machine modes
739 @cindex normal predicates
740 @cindex special predicates
741 Most predicates handle their @var{mode} argument in a uniform manner.
742 If @var{mode} is @code{VOIDmode} (unspecified), then @var{op} can have
743 any mode.  If @var{mode} is anything else, then @var{op} must have the
744 same mode, unless @var{op} is a @code{CONST_INT} or integer
745 @code{CONST_DOUBLE}.  These RTL expressions always have
746 @code{VOIDmode}, so it would be counterproductive to check that their
747 mode matches.  Instead, predicates that accept @code{CONST_INT} and/or
748 integer @code{CONST_DOUBLE} check that the value stored in the
749 constant will fit in the requested mode.
751 Predicates with this behavior are called @dfn{normal}.
752 @command{genrecog} can optimize the instruction recognizer based on
753 knowledge of how normal predicates treat modes.  It can also diagnose
754 certain kinds of common errors in the use of normal predicates; for
755 instance, it is almost always an error to use a normal predicate
756 without specifying a mode.
758 Predicates that do something different with their @var{mode} argument
759 are called @dfn{special}.  The generic predicates
760 @code{address_operand} and @code{pmode_register_operand} are special
761 predicates.  @command{genrecog} does not do any optimizations or
762 diagnosis when special predicates are used.
764 @menu
765 * Machine-Independent Predicates::  Predicates available to all back ends.
766 * Defining Predicates::             How to write machine-specific predicate
767                                     functions.
768 @end menu
770 @node Machine-Independent Predicates
771 @subsection Machine-Independent Predicates
772 @cindex machine-independent predicates
773 @cindex generic predicates
775 These are the generic predicates available to all back ends.  They are
776 defined in @file{recog.c}.  The first category of predicates allow
777 only constant, or @dfn{immediate}, operands.
779 @defun immediate_operand
780 This predicate allows any sort of constant that fits in @var{mode}.
781 It is an appropriate choice for instructions that take operands that
782 must be constant.
783 @end defun
785 @defun const_int_operand
786 This predicate allows any @code{CONST_INT} expression that fits in
787 @var{mode}.  It is an appropriate choice for an immediate operand that
788 does not allow a symbol or label.
789 @end defun
791 @defun const_double_operand
792 This predicate accepts any @code{CONST_DOUBLE} expression that has
793 exactly @var{mode}.  If @var{mode} is @code{VOIDmode}, it will also
794 accept @code{CONST_INT}.  It is intended for immediate floating point
795 constants.
796 @end defun
798 @noindent
799 The second category of predicates allow only some kind of machine
800 register.
802 @defun register_operand
803 This predicate allows any @code{REG} or @code{SUBREG} expression that
804 is valid for @var{mode}.  It is often suitable for arithmetic
805 instruction operands on a RISC machine.
806 @end defun
808 @defun pmode_register_operand
809 This is a slight variant on @code{register_operand} which works around
810 a limitation in the machine-description reader.
812 @smallexample
813 (match_operand @var{n} "pmode_register_operand" @var{constraint})
814 @end smallexample
816 @noindent
817 means exactly what
819 @smallexample
820 (match_operand:P @var{n} "register_operand" @var{constraint})
821 @end smallexample
823 @noindent
824 would mean, if the machine-description reader accepted @samp{:P}
825 mode suffixes.  Unfortunately, it cannot, because @code{Pmode} is an
826 alias for some other mode, and might vary with machine-specific
827 options.  @xref{Misc}.
828 @end defun
830 @defun scratch_operand
831 This predicate allows hard registers and @code{SCRATCH} expressions,
832 but not pseudo-registers.  It is used internally by @code{match_scratch};
833 it should not be used directly.
834 @end defun
836 @noindent
837 The third category of predicates allow only some kind of memory reference.
839 @defun memory_operand
840 This predicate allows any valid reference to a quantity of mode
841 @var{mode} in memory, as determined by the weak form of
842 @code{GO_IF_LEGITIMATE_ADDRESS} (@pxref{Addressing Modes}).
843 @end defun
845 @defun address_operand
846 This predicate is a little unusual; it allows any operand that is a
847 valid expression for the @emph{address} of a quantity of mode
848 @var{mode}, again determined by the weak form of
849 @code{GO_IF_LEGITIMATE_ADDRESS}.  To first order, if
850 @samp{@w{(mem:@var{mode} (@var{exp}))}} is acceptable to
851 @code{memory_operand}, then @var{exp} is acceptable to
852 @code{address_operand}.  Note that @var{exp} does not necessarily have
853 the mode @var{mode}.
854 @end defun
856 @defun indirect_operand
857 This is a stricter form of @code{memory_operand} which allows only
858 memory references with a @code{general_operand} as the address
859 expression.  New uses of this predicate are discouraged, because
860 @code{general_operand} is very permissive, so it's hard to tell what
861 an @code{indirect_operand} does or does not allow.  If a target has
862 different requirements for memory operands for different instructions,
863 it is better to define target-specific predicates which enforce the
864 hardware's requirements explicitly.
865 @end defun
867 @defun push_operand
868 This predicate allows a memory reference suitable for pushing a value
869 onto the stack.  This will be a @code{MEM} which refers to
870 @code{stack_pointer_rtx}, with a side-effect in its address expression
871 (@pxref{Incdec}); which one is determined by the
872 @code{STACK_PUSH_CODE} macro (@pxref{Frame Layout}).
873 @end defun
875 @defun pop_operand
876 This predicate allows a memory reference suitable for popping a value
877 off the stack.  Again, this will be a @code{MEM} referring to
878 @code{stack_pointer_rtx}, with a side-effect in its address
879 expression.  However, this time @code{STACK_POP_CODE} is expected.
880 @end defun
882 @noindent
883 The fourth category of predicates allow some combination of the above
884 operands.
886 @defun nonmemory_operand
887 This predicate allows any immediate or register operand valid for @var{mode}.
888 @end defun
890 @defun nonimmediate_operand
891 This predicate allows any register or memory operand valid for @var{mode}.
892 @end defun
894 @defun general_operand
895 This predicate allows any immediate, register, or memory operand
896 valid for @var{mode}.
897 @end defun
899 @noindent
900 Finally, there are two generic operator predicates.
902 @defun comparison_operator
903 This predicate matches any expression which performs an arithmetic
904 comparison in @var{mode}; that is, @code{COMPARISON_P} is true for the
905 expression code.
906 @end defun
908 @defun ordered_comparison_operator
909 This predicate matches any expression which performs an arithmetic
910 comparison in @var{mode} and whose expression code is valid for integer
911 modes; that is, the expression code will be one of @code{eq}, @code{ne},
912 @code{lt}, @code{ltu}, @code{le}, @code{leu}, @code{gt}, @code{gtu},
913 @code{ge}, @code{geu}.
914 @end defun
916 @node Defining Predicates
917 @subsection Defining Machine-Specific Predicates
918 @cindex defining predicates
919 @findex define_predicate
920 @findex define_special_predicate
922 Many machines have requirements for their operands that cannot be
923 expressed precisely using the generic predicates.  You can define
924 additional predicates using @code{define_predicate} and
925 @code{define_special_predicate} expressions.  These expressions have
926 three operands:
928 @itemize @bullet
929 @item
930 The name of the predicate, as it will be referred to in
931 @code{match_operand} or @code{match_operator} expressions.
933 @item
934 An RTL expression which evaluates to true if the predicate allows the
935 operand @var{op}, false if it does not.  This expression can only use
936 the following RTL codes:
938 @table @code
939 @item MATCH_OPERAND
940 When written inside a predicate expression, a @code{MATCH_OPERAND}
941 expression evaluates to true if the predicate it names would allow
942 @var{op}.  The operand number and constraint are ignored.  Due to
943 limitations in @command{genrecog}, you can only refer to generic
944 predicates and predicates that have already been defined.
946 @item MATCH_CODE
947 This expression evaluates to true if @var{op} or a specified
948 subexpression of @var{op} has one of a given list of RTX codes.
950 The first operand of this expression is a string constant containing a
951 comma-separated list of RTX code names (in lower case).  These are the
952 codes for which the @code{MATCH_CODE} will be true.
954 The second operand is a string constant which indicates what
955 subexpression of @var{op} to examine.  If it is absent or the empty
956 string, @var{op} itself is examined.  Otherwise, the string constant
957 must be a sequence of digits and/or lowercase letters.  Each character
958 indicates a subexpression to extract from the current expression; for
959 the first character this is @var{op}, for the second and subsequent
960 characters it is the result of the previous character.  A digit
961 @var{n} extracts @samp{@w{XEXP (@var{e}, @var{n})}}; a letter @var{l}
962 extracts @samp{@w{XVECEXP (@var{e}, 0, @var{n})}} where @var{n} is the
963 alphabetic ordinal of @var{l} (0 for `a', 1 for 'b', and so on).  The
964 @code{MATCH_CODE} then examines the RTX code of the subexpression
965 extracted by the complete string.  It is not possible to extract
966 components of an @code{rtvec} that is not at position 0 within its RTX
967 object.
969 @item MATCH_TEST
970 This expression has one operand, a string constant containing a C
971 expression.  The predicate's arguments, @var{op} and @var{mode}, are
972 available with those names in the C expression.  The @code{MATCH_TEST}
973 evaluates to true if the C expression evaluates to a nonzero value.
974 @code{MATCH_TEST} expressions must not have side effects.
976 @item  AND
977 @itemx IOR
978 @itemx NOT
979 @itemx IF_THEN_ELSE
980 The basic @samp{MATCH_} expressions can be combined using these
981 logical operators, which have the semantics of the C operators
982 @samp{&&}, @samp{||}, @samp{!}, and @samp{@w{? :}} respectively.  As
983 in Common Lisp, you may give an @code{AND} or @code{IOR} expression an
984 arbitrary number of arguments; this has exactly the same effect as
985 writing a chain of two-argument @code{AND} or @code{IOR} expressions.
986 @end table
988 @item
989 An optional block of C code, which should execute
990 @samp{@w{return true}} if the predicate is found to match and
991 @samp{@w{return false}} if it does not.  It must not have any side
992 effects.  The predicate arguments, @var{op} and @var{mode}, are
993 available with those names.
995 If a code block is present in a predicate definition, then the RTL
996 expression must evaluate to true @emph{and} the code block must
997 execute @samp{@w{return true}} for the predicate to allow the operand.
998 The RTL expression is evaluated first; do not re-check anything in the
999 code block that was checked in the RTL expression.
1000 @end itemize
1002 The program @command{genrecog} scans @code{define_predicate} and
1003 @code{define_special_predicate} expressions to determine which RTX
1004 codes are possibly allowed.  You should always make this explicit in
1005 the RTL predicate expression, using @code{MATCH_OPERAND} and
1006 @code{MATCH_CODE}.
1008 Here is an example of a simple predicate definition, from the IA64
1009 machine description:
1011 @smallexample
1012 @group
1013 ;; @r{True if @var{op} is a @code{SYMBOL_REF} which refers to the sdata section.}
1014 (define_predicate "small_addr_symbolic_operand"
1015   (and (match_code "symbol_ref")
1016        (match_test "SYMBOL_REF_SMALL_ADDR_P (op)")))
1017 @end group
1018 @end smallexample
1020 @noindent
1021 And here is another, showing the use of the C block.
1023 @smallexample
1024 @group
1025 ;; @r{True if @var{op} is a register operand that is (or could be) a GR reg.}
1026 (define_predicate "gr_register_operand"
1027   (match_operand 0 "register_operand")
1029   unsigned int regno;
1030   if (GET_CODE (op) == SUBREG)
1031     op = SUBREG_REG (op);
1033   regno = REGNO (op);
1034   return (regno >= FIRST_PSEUDO_REGISTER || GENERAL_REGNO_P (regno));
1036 @end group
1037 @end smallexample
1039 Predicates written with @code{define_predicate} automatically include
1040 a test that @var{mode} is @code{VOIDmode}, or @var{op} has the same
1041 mode as @var{mode}, or @var{op} is a @code{CONST_INT} or
1042 @code{CONST_DOUBLE}.  They do @emph{not} check specifically for
1043 integer @code{CONST_DOUBLE}, nor do they test that the value of either
1044 kind of constant fits in the requested mode.  This is because
1045 target-specific predicates that take constants usually have to do more
1046 stringent value checks anyway.  If you need the exact same treatment
1047 of @code{CONST_INT} or @code{CONST_DOUBLE} that the generic predicates
1048 provide, use a @code{MATCH_OPERAND} subexpression to call
1049 @code{const_int_operand}, @code{const_double_operand}, or
1050 @code{immediate_operand}.
1052 Predicates written with @code{define_special_predicate} do not get any
1053 automatic mode checks, and are treated as having special mode handling
1054 by @command{genrecog}.
1056 The program @command{genpreds} is responsible for generating code to
1057 test predicates.  It also writes a header file containing function
1058 declarations for all machine-specific predicates.  It is not necessary
1059 to declare these predicates in @file{@var{cpu}-protos.h}.
1060 @end ifset
1062 @c Most of this node appears by itself (in a different place) even
1063 @c when the INTERNALS flag is clear.  Passages that require the internals
1064 @c manual's context are conditionalized to appear only in the internals manual.
1065 @ifset INTERNALS
1066 @node Constraints
1067 @section Operand Constraints
1068 @cindex operand constraints
1069 @cindex constraints
1071 Each @code{match_operand} in an instruction pattern can specify
1072 constraints for the operands allowed.  The constraints allow you to
1073 fine-tune matching within the set of operands allowed by the
1074 predicate.
1076 @end ifset
1077 @ifclear INTERNALS
1078 @node Constraints
1079 @section Constraints for @code{asm} Operands
1080 @cindex operand constraints, @code{asm}
1081 @cindex constraints, @code{asm}
1082 @cindex @code{asm} constraints
1084 Here are specific details on what constraint letters you can use with
1085 @code{asm} operands.
1086 @end ifclear
1087 Constraints can say whether
1088 an operand may be in a register, and which kinds of register; whether the
1089 operand can be a memory reference, and which kinds of address; whether the
1090 operand may be an immediate constant, and which possible values it may
1091 have.  Constraints can also require two operands to match.
1092 Side-effects aren't allowed in operands of inline @code{asm}, unless
1093 @samp{<} or @samp{>} constraints are used, because there is no guarantee
1094 that the side-effects will happen exactly once in an instruction that can update
1095 the addressing register.
1097 @ifset INTERNALS
1098 @menu
1099 * Simple Constraints::  Basic use of constraints.
1100 * Multi-Alternative::   When an insn has two alternative constraint-patterns.
1101 * Class Preferences::   Constraints guide which hard register to put things in.
1102 * Modifiers::           More precise control over effects of constraints.
1103 * Machine Constraints:: Existing constraints for some particular machines.
1104 * Disable Insn Alternatives:: Disable insn alternatives using attributes.
1105 * Define Constraints::  How to define machine-specific constraints.
1106 * C Constraint Interface:: How to test constraints from C code.
1107 @end menu
1108 @end ifset
1110 @ifclear INTERNALS
1111 @menu
1112 * Simple Constraints::  Basic use of constraints.
1113 * Multi-Alternative::   When an insn has two alternative constraint-patterns.
1114 * Modifiers::           More precise control over effects of constraints.
1115 * Machine Constraints:: Special constraints for some particular machines.
1116 @end menu
1117 @end ifclear
1119 @node Simple Constraints
1120 @subsection Simple Constraints
1121 @cindex simple constraints
1123 The simplest kind of constraint is a string full of letters, each of
1124 which describes one kind of operand that is permitted.  Here are
1125 the letters that are allowed:
1127 @table @asis
1128 @item whitespace
1129 Whitespace characters are ignored and can be inserted at any position
1130 except the first.  This enables each alternative for different operands to
1131 be visually aligned in the machine description even if they have different
1132 number of constraints and modifiers.
1134 @cindex @samp{m} in constraint
1135 @cindex memory references in constraints
1136 @item @samp{m}
1137 A memory operand is allowed, with any kind of address that the machine
1138 supports in general.
1139 Note that the letter used for the general memory constraint can be
1140 re-defined by a back end using the @code{TARGET_MEM_CONSTRAINT} macro.
1142 @cindex offsettable address
1143 @cindex @samp{o} in constraint
1144 @item @samp{o}
1145 A memory operand is allowed, but only if the address is
1146 @dfn{offsettable}.  This means that adding a small integer (actually,
1147 the width in bytes of the operand, as determined by its machine mode)
1148 may be added to the address and the result is also a valid memory
1149 address.
1151 @cindex autoincrement/decrement addressing
1152 For example, an address which is constant is offsettable; so is an
1153 address that is the sum of a register and a constant (as long as a
1154 slightly larger constant is also within the range of address-offsets
1155 supported by the machine); but an autoincrement or autodecrement
1156 address is not offsettable.  More complicated indirect/indexed
1157 addresses may or may not be offsettable depending on the other
1158 addressing modes that the machine supports.
1160 Note that in an output operand which can be matched by another
1161 operand, the constraint letter @samp{o} is valid only when accompanied
1162 by both @samp{<} (if the target machine has predecrement addressing)
1163 and @samp{>} (if the target machine has preincrement addressing).
1165 @cindex @samp{V} in constraint
1166 @item @samp{V}
1167 A memory operand that is not offsettable.  In other words, anything that
1168 would fit the @samp{m} constraint but not the @samp{o} constraint.
1170 @cindex @samp{<} in constraint
1171 @item @samp{<}
1172 A memory operand with autodecrement addressing (either predecrement or
1173 postdecrement) is allowed.  In inline @code{asm} this constraint is only
1174 allowed if the operand is used exactly once in an instruction that can
1175 handle the side-effects.  Not using an operand with @samp{<} in constraint
1176 string in the inline @code{asm} pattern at all or using it in multiple
1177 instructions isn't valid, because the side-effects wouldn't be performed
1178 or would be performed more than once.  Furthermore, on some targets
1179 the operand with @samp{<} in constraint string must be accompanied by
1180 special instruction suffixes like @code{%U0} instruction suffix on PowerPC
1181 or @code{%P0} on IA-64.
1183 @cindex @samp{>} in constraint
1184 @item @samp{>}
1185 A memory operand with autoincrement addressing (either preincrement or
1186 postincrement) is allowed.  In inline @code{asm} the same restrictions
1187 as for @samp{<} apply.
1189 @cindex @samp{r} in constraint
1190 @cindex registers in constraints
1191 @item @samp{r}
1192 A register operand is allowed provided that it is in a general
1193 register.
1195 @cindex constants in constraints
1196 @cindex @samp{i} in constraint
1197 @item @samp{i}
1198 An immediate integer operand (one with constant value) is allowed.
1199 This includes symbolic constants whose values will be known only at
1200 assembly time or later.
1202 @cindex @samp{n} in constraint
1203 @item @samp{n}
1204 An immediate integer operand with a known numeric value is allowed.
1205 Many systems cannot support assembly-time constants for operands less
1206 than a word wide.  Constraints for these operands should use @samp{n}
1207 rather than @samp{i}.
1209 @cindex @samp{I} in constraint
1210 @item @samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}
1211 Other letters in the range @samp{I} through @samp{P} may be defined in
1212 a machine-dependent fashion to permit immediate integer operands with
1213 explicit integer values in specified ranges.  For example, on the
1214 68000, @samp{I} is defined to stand for the range of values 1 to 8.
1215 This is the range permitted as a shift count in the shift
1216 instructions.
1218 @cindex @samp{E} in constraint
1219 @item @samp{E}
1220 An immediate floating operand (expression code @code{const_double}) is
1221 allowed, but only if the target floating point format is the same as
1222 that of the host machine (on which the compiler is running).
1224 @cindex @samp{F} in constraint
1225 @item @samp{F}
1226 An immediate floating operand (expression code @code{const_double} or
1227 @code{const_vector}) is allowed.
1229 @cindex @samp{G} in constraint
1230 @cindex @samp{H} in constraint
1231 @item @samp{G}, @samp{H}
1232 @samp{G} and @samp{H} may be defined in a machine-dependent fashion to
1233 permit immediate floating operands in particular ranges of values.
1235 @cindex @samp{s} in constraint
1236 @item @samp{s}
1237 An immediate integer operand whose value is not an explicit integer is
1238 allowed.
1240 This might appear strange; if an insn allows a constant operand with a
1241 value not known at compile time, it certainly must allow any known
1242 value.  So why use @samp{s} instead of @samp{i}?  Sometimes it allows
1243 better code to be generated.
1245 For example, on the 68000 in a fullword instruction it is possible to
1246 use an immediate operand; but if the immediate value is between @minus{}128
1247 and 127, better code results from loading the value into a register and
1248 using the register.  This is because the load into the register can be
1249 done with a @samp{moveq} instruction.  We arrange for this to happen
1250 by defining the letter @samp{K} to mean ``any integer outside the
1251 range @minus{}128 to 127'', and then specifying @samp{Ks} in the operand
1252 constraints.
1254 @cindex @samp{g} in constraint
1255 @item @samp{g}
1256 Any register, memory or immediate integer operand is allowed, except for
1257 registers that are not general registers.
1259 @cindex @samp{X} in constraint
1260 @item @samp{X}
1261 @ifset INTERNALS
1262 Any operand whatsoever is allowed, even if it does not satisfy
1263 @code{general_operand}.  This is normally used in the constraint of
1264 a @code{match_scratch} when certain alternatives will not actually
1265 require a scratch register.
1266 @end ifset
1267 @ifclear INTERNALS
1268 Any operand whatsoever is allowed.
1269 @end ifclear
1271 @cindex @samp{0} in constraint
1272 @cindex digits in constraint
1273 @item @samp{0}, @samp{1}, @samp{2}, @dots{} @samp{9}
1274 An operand that matches the specified operand number is allowed.  If a
1275 digit is used together with letters within the same alternative, the
1276 digit should come last.
1278 This number is allowed to be more than a single digit.  If multiple
1279 digits are encountered consecutively, they are interpreted as a single
1280 decimal integer.  There is scant chance for ambiguity, since to-date
1281 it has never been desirable that @samp{10} be interpreted as matching
1282 either operand 1 @emph{or} operand 0.  Should this be desired, one
1283 can use multiple alternatives instead.
1285 @cindex matching constraint
1286 @cindex constraint, matching
1287 This is called a @dfn{matching constraint} and what it really means is
1288 that the assembler has only a single operand that fills two roles
1289 @ifset INTERNALS
1290 considered separate in the RTL insn.  For example, an add insn has two
1291 input operands and one output operand in the RTL, but on most CISC
1292 @end ifset
1293 @ifclear INTERNALS
1294 which @code{asm} distinguishes.  For example, an add instruction uses
1295 two input operands and an output operand, but on most CISC
1296 @end ifclear
1297 machines an add instruction really has only two operands, one of them an
1298 input-output operand:
1300 @smallexample
1301 addl #35,r12
1302 @end smallexample
1304 Matching constraints are used in these circumstances.
1305 More precisely, the two operands that match must include one input-only
1306 operand and one output-only operand.  Moreover, the digit must be a
1307 smaller number than the number of the operand that uses it in the
1308 constraint.
1310 @ifset INTERNALS
1311 For operands to match in a particular case usually means that they
1312 are identical-looking RTL expressions.  But in a few special cases
1313 specific kinds of dissimilarity are allowed.  For example, @code{*x}
1314 as an input operand will match @code{*x++} as an output operand.
1315 For proper results in such cases, the output template should always
1316 use the output-operand's number when printing the operand.
1317 @end ifset
1319 @cindex load address instruction
1320 @cindex push address instruction
1321 @cindex address constraints
1322 @cindex @samp{p} in constraint
1323 @item @samp{p}
1324 An operand that is a valid memory address is allowed.  This is
1325 for ``load address'' and ``push address'' instructions.
1327 @findex address_operand
1328 @samp{p} in the constraint must be accompanied by @code{address_operand}
1329 as the predicate in the @code{match_operand}.  This predicate interprets
1330 the mode specified in the @code{match_operand} as the mode of the memory
1331 reference for which the address would be valid.
1333 @cindex other register constraints
1334 @cindex extensible constraints
1335 @item @var{other-letters}
1336 Other letters can be defined in machine-dependent fashion to stand for
1337 particular classes of registers or other arbitrary operand types.
1338 @samp{d}, @samp{a} and @samp{f} are defined on the 68000/68020 to stand
1339 for data, address and floating point registers.
1340 @end table
1342 @ifset INTERNALS
1343 In order to have valid assembler code, each operand must satisfy
1344 its constraint.  But a failure to do so does not prevent the pattern
1345 from applying to an insn.  Instead, it directs the compiler to modify
1346 the code so that the constraint will be satisfied.  Usually this is
1347 done by copying an operand into a register.
1349 Contrast, therefore, the two instruction patterns that follow:
1351 @smallexample
1352 (define_insn ""
1353   [(set (match_operand:SI 0 "general_operand" "=r")
1354         (plus:SI (match_dup 0)
1355                  (match_operand:SI 1 "general_operand" "r")))]
1356   ""
1357   "@dots{}")
1358 @end smallexample
1360 @noindent
1361 which has two operands, one of which must appear in two places, and
1363 @smallexample
1364 (define_insn ""
1365   [(set (match_operand:SI 0 "general_operand" "=r")
1366         (plus:SI (match_operand:SI 1 "general_operand" "0")
1367                  (match_operand:SI 2 "general_operand" "r")))]
1368   ""
1369   "@dots{}")
1370 @end smallexample
1372 @noindent
1373 which has three operands, two of which are required by a constraint to be
1374 identical.  If we are considering an insn of the form
1376 @smallexample
1377 (insn @var{n} @var{prev} @var{next}
1378   (set (reg:SI 3)
1379        (plus:SI (reg:SI 6) (reg:SI 109)))
1380   @dots{})
1381 @end smallexample
1383 @noindent
1384 the first pattern would not apply at all, because this insn does not
1385 contain two identical subexpressions in the right place.  The pattern would
1386 say, ``That does not look like an add instruction; try other patterns''.
1387 The second pattern would say, ``Yes, that's an add instruction, but there
1388 is something wrong with it''.  It would direct the reload pass of the
1389 compiler to generate additional insns to make the constraint true.  The
1390 results might look like this:
1392 @smallexample
1393 (insn @var{n2} @var{prev} @var{n}
1394   (set (reg:SI 3) (reg:SI 6))
1395   @dots{})
1397 (insn @var{n} @var{n2} @var{next}
1398   (set (reg:SI 3)
1399        (plus:SI (reg:SI 3) (reg:SI 109)))
1400   @dots{})
1401 @end smallexample
1403 It is up to you to make sure that each operand, in each pattern, has
1404 constraints that can handle any RTL expression that could be present for
1405 that operand.  (When multiple alternatives are in use, each pattern must,
1406 for each possible combination of operand expressions, have at least one
1407 alternative which can handle that combination of operands.)  The
1408 constraints don't need to @emph{allow} any possible operand---when this is
1409 the case, they do not constrain---but they must at least point the way to
1410 reloading any possible operand so that it will fit.
1412 @itemize @bullet
1413 @item
1414 If the constraint accepts whatever operands the predicate permits,
1415 there is no problem: reloading is never necessary for this operand.
1417 For example, an operand whose constraints permit everything except
1418 registers is safe provided its predicate rejects registers.
1420 An operand whose predicate accepts only constant values is safe
1421 provided its constraints include the letter @samp{i}.  If any possible
1422 constant value is accepted, then nothing less than @samp{i} will do;
1423 if the predicate is more selective, then the constraints may also be
1424 more selective.
1426 @item
1427 Any operand expression can be reloaded by copying it into a register.
1428 So if an operand's constraints allow some kind of register, it is
1429 certain to be safe.  It need not permit all classes of registers; the
1430 compiler knows how to copy a register into another register of the
1431 proper class in order to make an instruction valid.
1433 @cindex nonoffsettable memory reference
1434 @cindex memory reference, nonoffsettable
1435 @item
1436 A nonoffsettable memory reference can be reloaded by copying the
1437 address into a register.  So if the constraint uses the letter
1438 @samp{o}, all memory references are taken care of.
1440 @item
1441 A constant operand can be reloaded by allocating space in memory to
1442 hold it as preinitialized data.  Then the memory reference can be used
1443 in place of the constant.  So if the constraint uses the letters
1444 @samp{o} or @samp{m}, constant operands are not a problem.
1446 @item
1447 If the constraint permits a constant and a pseudo register used in an insn
1448 was not allocated to a hard register and is equivalent to a constant,
1449 the register will be replaced with the constant.  If the predicate does
1450 not permit a constant and the insn is re-recognized for some reason, the
1451 compiler will crash.  Thus the predicate must always recognize any
1452 objects allowed by the constraint.
1453 @end itemize
1455 If the operand's predicate can recognize registers, but the constraint does
1456 not permit them, it can make the compiler crash.  When this operand happens
1457 to be a register, the reload pass will be stymied, because it does not know
1458 how to copy a register temporarily into memory.
1460 If the predicate accepts a unary operator, the constraint applies to the
1461 operand.  For example, the MIPS processor at ISA level 3 supports an
1462 instruction which adds two registers in @code{SImode} to produce a
1463 @code{DImode} result, but only if the registers are correctly sign
1464 extended.  This predicate for the input operands accepts a
1465 @code{sign_extend} of an @code{SImode} register.  Write the constraint
1466 to indicate the type of register that is required for the operand of the
1467 @code{sign_extend}.
1468 @end ifset
1470 @node Multi-Alternative
1471 @subsection Multiple Alternative Constraints
1472 @cindex multiple alternative constraints
1474 Sometimes a single instruction has multiple alternative sets of possible
1475 operands.  For example, on the 68000, a logical-or instruction can combine
1476 register or an immediate value into memory, or it can combine any kind of
1477 operand into a register; but it cannot combine one memory location into
1478 another.
1480 These constraints are represented as multiple alternatives.  An alternative
1481 can be described by a series of letters for each operand.  The overall
1482 constraint for an operand is made from the letters for this operand
1483 from the first alternative, a comma, the letters for this operand from
1484 the second alternative, a comma, and so on until the last alternative.
1485 All operands for a single instruction must have the same number of 
1486 alternatives.
1487 @ifset INTERNALS
1488 Here is how it is done for fullword logical-or on the 68000:
1490 @smallexample
1491 (define_insn "iorsi3"
1492   [(set (match_operand:SI 0 "general_operand" "=m,d")
1493         (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
1494                 (match_operand:SI 2 "general_operand" "dKs,dmKs")))]
1495   @dots{})
1496 @end smallexample
1498 The first alternative has @samp{m} (memory) for operand 0, @samp{0} for
1499 operand 1 (meaning it must match operand 0), and @samp{dKs} for operand
1500 2.  The second alternative has @samp{d} (data register) for operand 0,
1501 @samp{0} for operand 1, and @samp{dmKs} for operand 2.  The @samp{=} and
1502 @samp{%} in the constraints apply to all the alternatives; their
1503 meaning is explained in the next section (@pxref{Class Preferences}).
1505 If all the operands fit any one alternative, the instruction is valid.
1506 Otherwise, for each alternative, the compiler counts how many instructions
1507 must be added to copy the operands so that that alternative applies.
1508 The alternative requiring the least copying is chosen.  If two alternatives
1509 need the same amount of copying, the one that comes first is chosen.
1510 These choices can be altered with the @samp{?} and @samp{!} characters:
1512 @table @code
1513 @cindex @samp{?} in constraint
1514 @cindex question mark
1515 @item ?
1516 Disparage slightly the alternative that the @samp{?} appears in,
1517 as a choice when no alternative applies exactly.  The compiler regards
1518 this alternative as one unit more costly for each @samp{?} that appears
1519 in it.
1521 @cindex @samp{!} in constraint
1522 @cindex exclamation point
1523 @item !
1524 Disparage severely the alternative that the @samp{!} appears in.
1525 This alternative can still be used if it fits without reloading,
1526 but if reloading is needed, some other alternative will be used.
1528 @cindex @samp{^} in constraint
1529 @cindex caret
1530 @item ^
1531 This constraint is analogous to @samp{?} but it disparages slightly
1532 the alternative only if the operand with the @samp{^} needs a reload.
1534 @cindex @samp{$} in constraint
1535 @cindex dollar sign
1536 @item $
1537 This constraint is analogous to @samp{!} but it disparages severely
1538 the alternative only if the operand with the @samp{$} needs a reload.
1539 @end table
1541 When an insn pattern has multiple alternatives in its constraints, often
1542 the appearance of the assembler code is determined mostly by which
1543 alternative was matched.  When this is so, the C code for writing the
1544 assembler code can use the variable @code{which_alternative}, which is
1545 the ordinal number of the alternative that was actually satisfied (0 for
1546 the first, 1 for the second alternative, etc.).  @xref{Output Statement}.
1547 @end ifset
1548 @ifclear INTERNALS
1550 So the first alternative for the 68000's logical-or could be written as 
1551 @code{"+m" (output) : "ir" (input)}.  The second could be @code{"+r" 
1552 (output): "irm" (input)}.  However, the fact that two memory locations 
1553 cannot be used in a single instruction prevents simply using @code{"+rm" 
1554 (output) : "irm" (input)}.  Using multi-alternatives, this might be 
1555 written as @code{"+m,r" (output) : "ir,irm" (input)}.  This describes
1556 all the available alternatives to the compiler, allowing it to choose 
1557 the most efficient one for the current conditions.
1559 There is no way within the template to determine which alternative was 
1560 chosen.  However you may be able to wrap your @code{asm} statements with 
1561 builtins such as @code{__builtin_constant_p} to achieve the desired results.
1562 @end ifclear
1564 @ifset INTERNALS
1565 @node Class Preferences
1566 @subsection Register Class Preferences
1567 @cindex class preference constraints
1568 @cindex register class preference constraints
1570 @cindex voting between constraint alternatives
1571 The operand constraints have another function: they enable the compiler
1572 to decide which kind of hardware register a pseudo register is best
1573 allocated to.  The compiler examines the constraints that apply to the
1574 insns that use the pseudo register, looking for the machine-dependent
1575 letters such as @samp{d} and @samp{a} that specify classes of registers.
1576 The pseudo register is put in whichever class gets the most ``votes''.
1577 The constraint letters @samp{g} and @samp{r} also vote: they vote in
1578 favor of a general register.  The machine description says which registers
1579 are considered general.
1581 Of course, on some machines all registers are equivalent, and no register
1582 classes are defined.  Then none of this complexity is relevant.
1583 @end ifset
1585 @node Modifiers
1586 @subsection Constraint Modifier Characters
1587 @cindex modifiers in constraints
1588 @cindex constraint modifier characters
1590 @c prevent bad page break with this line
1591 Here are constraint modifier characters.
1593 @table @samp
1594 @cindex @samp{=} in constraint
1595 @item =
1596 Means that this operand is written to by this instruction:
1597 the previous value is discarded and replaced by new data.
1599 @cindex @samp{+} in constraint
1600 @item +
1601 Means that this operand is both read and written by the instruction.
1603 When the compiler fixes up the operands to satisfy the constraints,
1604 it needs to know which operands are read by the instruction and
1605 which are written by it.  @samp{=} identifies an operand which is only
1606 written; @samp{+} identifies an operand that is both read and written; all
1607 other operands are assumed to only be read.
1609 If you specify @samp{=} or @samp{+} in a constraint, you put it in the
1610 first character of the constraint string.
1612 @cindex @samp{&} in constraint
1613 @cindex earlyclobber operand
1614 @item &
1615 Means (in a particular alternative) that this operand is an
1616 @dfn{earlyclobber} operand, which is written before the instruction is
1617 finished using the input operands.  Therefore, this operand may not lie
1618 in a register that is read by the instruction or as part of any memory
1619 address.
1621 @samp{&} applies only to the alternative in which it is written.  In
1622 constraints with multiple alternatives, sometimes one alternative
1623 requires @samp{&} while others do not.  See, for example, the
1624 @samp{movdf} insn of the 68000.
1626 A operand which is read by the instruction can be tied to an earlyclobber
1627 operand if its only use as an input occurs before the early result is
1628 written.  Adding alternatives of this form often allows GCC to produce
1629 better code when only some of the read operands can be affected by the
1630 earlyclobber. See, for example, the @samp{mulsi3} insn of the ARM@.
1632 Furthermore, if the @dfn{earlyclobber} operand is also a read/write
1633 operand, then that operand is written only after it's used.
1635 @samp{&} does not obviate the need to write @samp{=} or @samp{+}.  As
1636 @dfn{earlyclobber} operands are always written, a read-only
1637 @dfn{earlyclobber} operand is ill-formed and will be rejected by the
1638 compiler.
1640 @cindex @samp{%} in constraint
1641 @item %
1642 Declares the instruction to be commutative for this operand and the
1643 following operand.  This means that the compiler may interchange the
1644 two operands if that is the cheapest way to make all operands fit the
1645 constraints.  @samp{%} applies to all alternatives and must appear as
1646 the first character in the constraint.  Only read-only operands can use
1647 @samp{%}.
1649 @ifset INTERNALS
1650 This is often used in patterns for addition instructions
1651 that really have only two operands: the result must go in one of the
1652 arguments.  Here for example, is how the 68000 halfword-add
1653 instruction is defined:
1655 @smallexample
1656 (define_insn "addhi3"
1657   [(set (match_operand:HI 0 "general_operand" "=m,r")
1658      (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
1659               (match_operand:HI 2 "general_operand" "di,g")))]
1660   @dots{})
1661 @end smallexample
1662 @end ifset
1663 GCC can only handle one commutative pair in an asm; if you use more,
1664 the compiler may fail.  Note that you need not use the modifier if
1665 the two alternatives are strictly identical; this would only waste
1666 time in the reload pass.
1667 @ifset INTERNALS
1668 The modifier is not operational after
1669 register allocation, so the result of @code{define_peephole2}
1670 and @code{define_split}s performed after reload cannot rely on
1671 @samp{%} to make the intended insn match.
1673 @cindex @samp{#} in constraint
1674 @item #
1675 Says that all following characters, up to the next comma, are to be
1676 ignored as a constraint.  They are significant only for choosing
1677 register preferences.
1679 @cindex @samp{*} in constraint
1680 @item *
1681 Says that the following character should be ignored when choosing
1682 register preferences.  @samp{*} has no effect on the meaning of the
1683 constraint as a constraint, and no effect on reloading.  For LRA
1684 @samp{*} additionally disparages slightly the alternative if the
1685 following character matches the operand.
1687 Here is an example: the 68000 has an instruction to sign-extend a
1688 halfword in a data register, and can also sign-extend a value by
1689 copying it into an address register.  While either kind of register is
1690 acceptable, the constraints on an address-register destination are
1691 less strict, so it is best if register allocation makes an address
1692 register its goal.  Therefore, @samp{*} is used so that the @samp{d}
1693 constraint letter (for data register) is ignored when computing
1694 register preferences.
1696 @smallexample
1697 (define_insn "extendhisi2"
1698   [(set (match_operand:SI 0 "general_operand" "=*d,a")
1699         (sign_extend:SI
1700          (match_operand:HI 1 "general_operand" "0,g")))]
1701   @dots{})
1702 @end smallexample
1703 @end ifset
1704 @end table
1706 @node Machine Constraints
1707 @subsection Constraints for Particular Machines
1708 @cindex machine specific constraints
1709 @cindex constraints, machine specific
1711 Whenever possible, you should use the general-purpose constraint letters
1712 in @code{asm} arguments, since they will convey meaning more readily to
1713 people reading your code.  Failing that, use the constraint letters
1714 that usually have very similar meanings across architectures.  The most
1715 commonly used constraints are @samp{m} and @samp{r} (for memory and
1716 general-purpose registers respectively; @pxref{Simple Constraints}), and
1717 @samp{I}, usually the letter indicating the most common
1718 immediate-constant format.
1720 Each architecture defines additional constraints.  These constraints
1721 are used by the compiler itself for instruction generation, as well as
1722 for @code{asm} statements; therefore, some of the constraints are not
1723 particularly useful for @code{asm}.  Here is a summary of some of the
1724 machine-dependent constraints available on some particular machines;
1725 it includes both constraints that are useful for @code{asm} and
1726 constraints that aren't.  The compiler source file mentioned in the
1727 table heading for each architecture is the definitive reference for
1728 the meanings of that architecture's constraints.
1730 @c Please keep this table alphabetized by target!
1731 @table @emph
1732 @item AArch64 family---@file{config/aarch64/constraints.md}
1733 @table @code
1734 @item k
1735 The stack pointer register (@code{SP})
1737 @item w
1738 Floating point register, Advanced SIMD vector register or SVE vector register
1740 @item Upl
1741 One of the low eight SVE predicate registers (@code{P0} to @code{P7})
1743 @item Upa
1744 Any of the SVE predicate registers (@code{P0} to @code{P15})
1746 @item I
1747 Integer constant that is valid as an immediate operand in an @code{ADD}
1748 instruction
1750 @item J
1751 Integer constant that is valid as an immediate operand in a @code{SUB}
1752 instruction (once negated)
1754 @item K
1755 Integer constant that can be used with a 32-bit logical instruction
1757 @item L
1758 Integer constant that can be used with a 64-bit logical instruction
1760 @item M
1761 Integer constant that is valid as an immediate operand in a 32-bit @code{MOV}
1762 pseudo instruction. The @code{MOV} may be assembled to one of several different
1763 machine instructions depending on the value
1765 @item N
1766 Integer constant that is valid as an immediate operand in a 64-bit @code{MOV}
1767 pseudo instruction
1769 @item S
1770 An absolute symbolic address or a label reference
1772 @item Y
1773 Floating point constant zero
1775 @item Z
1776 Integer constant zero
1778 @item Ush
1779 The high part (bits 12 and upwards) of the pc-relative address of a symbol
1780 within 4GB of the instruction
1782 @item Q
1783 A memory address which uses a single base register with no offset
1785 @item Ump
1786 A memory address suitable for a load/store pair instruction in SI, DI, SF and
1787 DF modes
1789 @end table
1792 @item ARC ---@file{config/arc/constraints.md}
1793 @table @code
1794 @item q
1795 Registers usable in ARCompact 16-bit instructions: @code{r0}-@code{r3},
1796 @code{r12}-@code{r15}.  This constraint can only match when the @option{-mq}
1797 option is in effect.
1799 @item e
1800 Registers usable as base-regs of memory addresses in ARCompact 16-bit memory
1801 instructions: @code{r0}-@code{r3}, @code{r12}-@code{r15}, @code{sp}.
1802 This constraint can only match when the @option{-mq}
1803 option is in effect.
1804 @item D
1805 ARC FPX (dpfp) 64-bit registers. @code{D0}, @code{D1}.
1807 @item I
1808 A signed 12-bit integer constant.
1810 @item Cal
1811 constant for arithmetic/logical operations.  This might be any constant
1812 that can be put into a long immediate by the assmbler or linker without
1813 involving a PIC relocation.
1815 @item K
1816 A 3-bit unsigned integer constant.
1818 @item L
1819 A 6-bit unsigned integer constant.
1821 @item CnL
1822 One's complement of a 6-bit unsigned integer constant.
1824 @item CmL
1825 Two's complement of a 6-bit unsigned integer constant.
1827 @item M
1828 A 5-bit unsigned integer constant.
1830 @item O
1831 A 7-bit unsigned integer constant.
1833 @item P
1834 A 8-bit unsigned integer constant.
1836 @item H
1837 Any const_double value.
1838 @end table
1840 @item ARM family---@file{config/arm/constraints.md}
1841 @table @code
1843 @item h
1844 In Thumb state, the core registers @code{r8}-@code{r15}.
1846 @item k
1847 The stack pointer register.
1849 @item l
1850 In Thumb State the core registers @code{r0}-@code{r7}.  In ARM state this
1851 is an alias for the @code{r} constraint.
1853 @item t
1854 VFP floating-point registers @code{s0}-@code{s31}.  Used for 32 bit values.
1856 @item w
1857 VFP floating-point registers @code{d0}-@code{d31} and the appropriate
1858 subset @code{d0}-@code{d15} based on command line options.
1859 Used for 64 bit values only.  Not valid for Thumb1.
1861 @item y
1862 The iWMMX co-processor registers.
1864 @item z
1865 The iWMMX GR registers.
1867 @item G
1868 The floating-point constant 0.0
1870 @item I
1871 Integer that is valid as an immediate operand in a data processing
1872 instruction.  That is, an integer in the range 0 to 255 rotated by a
1873 multiple of 2
1875 @item J
1876 Integer in the range @minus{}4095 to 4095
1878 @item K
1879 Integer that satisfies constraint @samp{I} when inverted (ones complement)
1881 @item L
1882 Integer that satisfies constraint @samp{I} when negated (twos complement)
1884 @item M
1885 Integer in the range 0 to 32
1887 @item Q
1888 A memory reference where the exact address is in a single register
1889 (`@samp{m}' is preferable for @code{asm} statements)
1891 @item R
1892 An item in the constant pool
1894 @item S
1895 A symbol in the text segment of the current file
1897 @item Uv
1898 A memory reference suitable for VFP load/store insns (reg+constant offset)
1900 @item Uy
1901 A memory reference suitable for iWMMXt load/store instructions.
1903 @item Uq
1904 A memory reference suitable for the ARMv4 ldrsb instruction.
1905 @end table
1907 @item AVR family---@file{config/avr/constraints.md}
1908 @table @code
1909 @item l
1910 Registers from r0 to r15
1912 @item a
1913 Registers from r16 to r23
1915 @item d
1916 Registers from r16 to r31
1918 @item w
1919 Registers from r24 to r31.  These registers can be used in @samp{adiw} command
1921 @item e
1922 Pointer register (r26--r31)
1924 @item b
1925 Base pointer register (r28--r31)
1927 @item q
1928 Stack pointer register (SPH:SPL)
1930 @item t
1931 Temporary register r0
1933 @item x
1934 Register pair X (r27:r26)
1936 @item y
1937 Register pair Y (r29:r28)
1939 @item z
1940 Register pair Z (r31:r30)
1942 @item I
1943 Constant greater than @minus{}1, less than 64
1945 @item J
1946 Constant greater than @minus{}64, less than 1
1948 @item K
1949 Constant integer 2
1951 @item L
1952 Constant integer 0
1954 @item M
1955 Constant that fits in 8 bits
1957 @item N
1958 Constant integer @minus{}1
1960 @item O
1961 Constant integer 8, 16, or 24
1963 @item P
1964 Constant integer 1
1966 @item G
1967 A floating point constant 0.0
1969 @item Q
1970 A memory address based on Y or Z pointer with displacement.
1971 @end table
1973 @item Blackfin family---@file{config/bfin/constraints.md}
1974 @table @code
1975 @item a
1976 P register
1978 @item d
1979 D register
1981 @item z
1982 A call clobbered P register.
1984 @item q@var{n}
1985 A single register.  If @var{n} is in the range 0 to 7, the corresponding D
1986 register.  If it is @code{A}, then the register P0.
1988 @item D
1989 Even-numbered D register
1991 @item W
1992 Odd-numbered D register
1994 @item e
1995 Accumulator register.
1997 @item A
1998 Even-numbered accumulator register.
2000 @item B
2001 Odd-numbered accumulator register.
2003 @item b
2004 I register
2006 @item v
2007 B register
2009 @item f
2010 M register
2012 @item c
2013 Registers used for circular buffering, i.e. I, B, or L registers.
2015 @item C
2016 The CC register.
2018 @item t
2019 LT0 or LT1.
2021 @item k
2022 LC0 or LC1.
2024 @item u
2025 LB0 or LB1.
2027 @item x
2028 Any D, P, B, M, I or L register.
2030 @item y
2031 Additional registers typically used only in prologues and epilogues: RETS,
2032 RETN, RETI, RETX, RETE, ASTAT, SEQSTAT and USP.
2034 @item w
2035 Any register except accumulators or CC.
2037 @item Ksh
2038 Signed 16 bit integer (in the range @minus{}32768 to 32767)
2040 @item Kuh
2041 Unsigned 16 bit integer (in the range 0 to 65535)
2043 @item Ks7
2044 Signed 7 bit integer (in the range @minus{}64 to 63)
2046 @item Ku7
2047 Unsigned 7 bit integer (in the range 0 to 127)
2049 @item Ku5
2050 Unsigned 5 bit integer (in the range 0 to 31)
2052 @item Ks4
2053 Signed 4 bit integer (in the range @minus{}8 to 7)
2055 @item Ks3
2056 Signed 3 bit integer (in the range @minus{}3 to 4)
2058 @item Ku3
2059 Unsigned 3 bit integer (in the range 0 to 7)
2061 @item P@var{n}
2062 Constant @var{n}, where @var{n} is a single-digit constant in the range 0 to 4.
2064 @item PA
2065 An integer equal to one of the MACFLAG_XXX constants that is suitable for
2066 use with either accumulator.
2068 @item PB
2069 An integer equal to one of the MACFLAG_XXX constants that is suitable for
2070 use only with accumulator A1.
2072 @item M1
2073 Constant 255.
2075 @item M2
2076 Constant 65535.
2078 @item J
2079 An integer constant with exactly a single bit set.
2081 @item L
2082 An integer constant with all bits set except exactly one.
2084 @item H
2086 @item Q
2087 Any SYMBOL_REF.
2088 @end table
2090 @item CR16 Architecture---@file{config/cr16/cr16.h}
2091 @table @code
2093 @item b
2094 Registers from r0 to r14 (registers without stack pointer)
2096 @item t
2097 Register from r0 to r11 (all 16-bit registers)
2099 @item p
2100 Register from r12 to r15 (all 32-bit registers)
2102 @item I
2103 Signed constant that fits in 4 bits
2105 @item J
2106 Signed constant that fits in 5 bits
2108 @item K
2109 Signed constant that fits in 6 bits
2111 @item L
2112 Unsigned constant that fits in 4 bits
2114 @item M
2115 Signed constant that fits in 32 bits
2117 @item N
2118 Check for 64 bits wide constants for add/sub instructions
2120 @item G
2121 Floating point constant that is legal for store immediate
2122 @end table
2124 @item Epiphany---@file{config/epiphany/constraints.md}
2125 @table @code
2126 @item U16
2127 An unsigned 16-bit constant.
2129 @item K
2130 An unsigned 5-bit constant.
2132 @item L
2133 A signed 11-bit constant.
2135 @item Cm1
2136 A signed 11-bit constant added to @minus{}1.
2137 Can only match when the @option{-m1reg-@var{reg}} option is active.
2139 @item Cl1
2140 Left-shift of @minus{}1, i.e., a bit mask with a block of leading ones, the rest
2141 being a block of trailing zeroes.
2142 Can only match when the @option{-m1reg-@var{reg}} option is active.
2144 @item Cr1
2145 Right-shift of @minus{}1, i.e., a bit mask with a trailing block of ones, the
2146 rest being zeroes.  Or to put it another way, one less than a power of two.
2147 Can only match when the @option{-m1reg-@var{reg}} option is active.
2149 @item Cal
2150 Constant for arithmetic/logical operations.
2151 This is like @code{i}, except that for position independent code,
2152 no symbols / expressions needing relocations are allowed.
2154 @item Csy
2155 Symbolic constant for call/jump instruction.
2157 @item Rcs
2158 The register class usable in short insns.  This is a register class
2159 constraint, and can thus drive register allocation.
2160 This constraint won't match unless @option{-mprefer-short-insn-regs} is
2161 in effect.
2163 @item Rsc
2164 The the register class of registers that can be used to hold a
2165 sibcall call address.  I.e., a caller-saved register.
2167 @item Rct
2168 Core control register class.
2170 @item Rgs
2171 The register group usable in short insns.
2172 This constraint does not use a register class, so that it only
2173 passively matches suitable registers, and doesn't drive register allocation.
2175 @ifset INTERNALS
2176 @item Car
2177 Constant suitable for the addsi3_r pattern.  This is a valid offset
2178 For byte, halfword, or word addressing.
2179 @end ifset
2181 @item Rra
2182 Matches the return address if it can be replaced with the link register.
2184 @item Rcc
2185 Matches the integer condition code register.
2187 @item Sra
2188 Matches the return address if it is in a stack slot.
2190 @item Cfm
2191 Matches control register values to switch fp mode, which are encapsulated in
2192 @code{UNSPEC_FP_MODE}.
2193 @end table
2195 @item FRV---@file{config/frv/frv.h}
2196 @table @code
2197 @item a
2198 Register in the class @code{ACC_REGS} (@code{acc0} to @code{acc7}).
2200 @item b
2201 Register in the class @code{EVEN_ACC_REGS} (@code{acc0} to @code{acc7}).
2203 @item c
2204 Register in the class @code{CC_REGS} (@code{fcc0} to @code{fcc3} and
2205 @code{icc0} to @code{icc3}).
2207 @item d
2208 Register in the class @code{GPR_REGS} (@code{gr0} to @code{gr63}).
2210 @item e
2211 Register in the class @code{EVEN_REGS} (@code{gr0} to @code{gr63}).
2212 Odd registers are excluded not in the class but through the use of a machine
2213 mode larger than 4 bytes.
2215 @item f
2216 Register in the class @code{FPR_REGS} (@code{fr0} to @code{fr63}).
2218 @item h
2219 Register in the class @code{FEVEN_REGS} (@code{fr0} to @code{fr63}).
2220 Odd registers are excluded not in the class but through the use of a machine
2221 mode larger than 4 bytes.
2223 @item l
2224 Register in the class @code{LR_REG} (the @code{lr} register).
2226 @item q
2227 Register in the class @code{QUAD_REGS} (@code{gr2} to @code{gr63}).
2228 Register numbers not divisible by 4 are excluded not in the class but through
2229 the use of a machine mode larger than 8 bytes.
2231 @item t
2232 Register in the class @code{ICC_REGS} (@code{icc0} to @code{icc3}).
2234 @item u
2235 Register in the class @code{FCC_REGS} (@code{fcc0} to @code{fcc3}).
2237 @item v
2238 Register in the class @code{ICR_REGS} (@code{cc4} to @code{cc7}).
2240 @item w
2241 Register in the class @code{FCR_REGS} (@code{cc0} to @code{cc3}).
2243 @item x
2244 Register in the class @code{QUAD_FPR_REGS} (@code{fr0} to @code{fr63}).
2245 Register numbers not divisible by 4 are excluded not in the class but through
2246 the use of a machine mode larger than 8 bytes.
2248 @item z
2249 Register in the class @code{SPR_REGS} (@code{lcr} and @code{lr}).
2251 @item A
2252 Register in the class @code{QUAD_ACC_REGS} (@code{acc0} to @code{acc7}).
2254 @item B
2255 Register in the class @code{ACCG_REGS} (@code{accg0} to @code{accg7}).
2257 @item C
2258 Register in the class @code{CR_REGS} (@code{cc0} to @code{cc7}).
2260 @item G
2261 Floating point constant zero
2263 @item I
2264 6-bit signed integer constant
2266 @item J
2267 10-bit signed integer constant
2269 @item L
2270 16-bit signed integer constant
2272 @item M
2273 16-bit unsigned integer constant
2275 @item N
2276 12-bit signed integer constant that is negative---i.e.@: in the
2277 range of @minus{}2048 to @minus{}1
2279 @item O
2280 Constant zero
2282 @item P
2283 12-bit signed integer constant that is greater than zero---i.e.@: in the
2284 range of 1 to 2047.
2286 @end table
2288 @item FT32---@file{config/ft32/constraints.md}
2289 @table @code
2290 @item A
2291 An absolute address
2293 @item B
2294 An offset address
2296 @item W
2297 A register indirect memory operand
2299 @item e
2300 An offset address.
2302 @item f
2303 An offset address.
2305 @item O
2306 The constant zero or one
2308 @item I
2309 A 16-bit signed constant (@minus{}32768 @dots{} 32767)
2311 @item w
2312 A bitfield mask suitable for bext or bins
2314 @item x
2315 An inverted bitfield mask suitable for bext or bins
2317 @item L
2318 A 16-bit unsigned constant, multiple of 4 (0 @dots{} 65532)
2320 @item S
2321 A 20-bit signed constant (@minus{}524288 @dots{} 524287)
2323 @item b
2324 A constant for a bitfield width (1 @dots{} 16)
2326 @item KA
2327 A 10-bit signed constant (@minus{}512 @dots{} 511)
2329 @end table
2331 @item Hewlett-Packard PA-RISC---@file{config/pa/pa.h}
2332 @table @code
2333 @item a
2334 General register 1
2336 @item f
2337 Floating point register
2339 @item q
2340 Shift amount register
2342 @item x
2343 Floating point register (deprecated)
2345 @item y
2346 Upper floating point register (32-bit), floating point register (64-bit)
2348 @item Z
2349 Any register
2351 @item I
2352 Signed 11-bit integer constant
2354 @item J
2355 Signed 14-bit integer constant
2357 @item K
2358 Integer constant that can be deposited with a @code{zdepi} instruction
2360 @item L
2361 Signed 5-bit integer constant
2363 @item M
2364 Integer constant 0
2366 @item N
2367 Integer constant that can be loaded with a @code{ldil} instruction
2369 @item O
2370 Integer constant whose value plus one is a power of 2
2372 @item P
2373 Integer constant that can be used for @code{and} operations in @code{depi}
2374 and @code{extru} instructions
2376 @item S
2377 Integer constant 31
2379 @item U
2380 Integer constant 63
2382 @item G
2383 Floating-point constant 0.0
2385 @item A
2386 A @code{lo_sum} data-linkage-table memory operand
2388 @item Q
2389 A memory operand that can be used as the destination operand of an
2390 integer store instruction
2392 @item R
2393 A scaled or unscaled indexed memory operand
2395 @item T
2396 A memory operand for floating-point loads and stores
2398 @item W
2399 A register indirect memory operand
2400 @end table
2402 @item Intel IA-64---@file{config/ia64/ia64.h}
2403 @table @code
2404 @item a
2405 General register @code{r0} to @code{r3} for @code{addl} instruction
2407 @item b
2408 Branch register
2410 @item c
2411 Predicate register (@samp{c} as in ``conditional'')
2413 @item d
2414 Application register residing in M-unit
2416 @item e
2417 Application register residing in I-unit
2419 @item f
2420 Floating-point register
2422 @item m
2423 Memory operand.  If used together with @samp{<} or @samp{>},
2424 the operand can have postincrement and postdecrement which
2425 require printing with @samp{%Pn} on IA-64.
2427 @item G
2428 Floating-point constant 0.0 or 1.0
2430 @item I
2431 14-bit signed integer constant
2433 @item J
2434 22-bit signed integer constant
2436 @item K
2437 8-bit signed integer constant for logical instructions
2439 @item L
2440 8-bit adjusted signed integer constant for compare pseudo-ops
2442 @item M
2443 6-bit unsigned integer constant for shift counts
2445 @item N
2446 9-bit signed integer constant for load and store postincrements
2448 @item O
2449 The constant zero
2451 @item P
2452 0 or @minus{}1 for @code{dep} instruction
2454 @item Q
2455 Non-volatile memory for floating-point loads and stores
2457 @item R
2458 Integer constant in the range 1 to 4 for @code{shladd} instruction
2460 @item S
2461 Memory operand except postincrement and postdecrement.  This is
2462 now roughly the same as @samp{m} when not used together with @samp{<}
2463 or @samp{>}.
2464 @end table
2466 @item M32C---@file{config/m32c/m32c.c}
2467 @table @code
2468 @item Rsp
2469 @itemx Rfb
2470 @itemx Rsb
2471 @samp{$sp}, @samp{$fb}, @samp{$sb}.
2473 @item Rcr
2474 Any control register, when they're 16 bits wide (nothing if control
2475 registers are 24 bits wide)
2477 @item Rcl
2478 Any control register, when they're 24 bits wide.
2480 @item R0w
2481 @itemx R1w
2482 @itemx R2w
2483 @itemx R3w
2484 $r0, $r1, $r2, $r3.
2486 @item R02
2487 $r0 or $r2, or $r2r0 for 32 bit values.
2489 @item R13
2490 $r1 or $r3, or $r3r1 for 32 bit values.
2492 @item Rdi
2493 A register that can hold a 64 bit value.
2495 @item Rhl
2496 $r0 or $r1 (registers with addressable high/low bytes)
2498 @item R23
2499 $r2 or $r3
2501 @item Raa
2502 Address registers
2504 @item Raw
2505 Address registers when they're 16 bits wide.
2507 @item Ral
2508 Address registers when they're 24 bits wide.
2510 @item Rqi
2511 Registers that can hold QI values.
2513 @item Rad
2514 Registers that can be used with displacements ($a0, $a1, $sb).
2516 @item Rsi
2517 Registers that can hold 32 bit values.
2519 @item Rhi
2520 Registers that can hold 16 bit values.
2522 @item Rhc
2523 Registers chat can hold 16 bit values, including all control
2524 registers.
2526 @item Rra
2527 $r0 through R1, plus $a0 and $a1.
2529 @item Rfl
2530 The flags register.
2532 @item Rmm
2533 The memory-based pseudo-registers $mem0 through $mem15.
2535 @item Rpi
2536 Registers that can hold pointers (16 bit registers for r8c, m16c; 24
2537 bit registers for m32cm, m32c).
2539 @item Rpa
2540 Matches multiple registers in a PARALLEL to form a larger register.
2541 Used to match function return values.
2543 @item Is3
2544 @minus{}8 @dots{} 7
2546 @item IS1
2547 @minus{}128 @dots{} 127
2549 @item IS2
2550 @minus{}32768 @dots{} 32767
2552 @item IU2
2553 0 @dots{} 65535
2555 @item In4
2556 @minus{}8 @dots{} @minus{}1 or 1 @dots{} 8
2558 @item In5
2559 @minus{}16 @dots{} @minus{}1 or 1 @dots{} 16
2561 @item In6
2562 @minus{}32 @dots{} @minus{}1 or 1 @dots{} 32
2564 @item IM2
2565 @minus{}65536 @dots{} @minus{}1
2567 @item Ilb
2568 An 8 bit value with exactly one bit set.
2570 @item Ilw
2571 A 16 bit value with exactly one bit set.
2573 @item Sd
2574 The common src/dest memory addressing modes.
2576 @item Sa
2577 Memory addressed using $a0 or $a1.
2579 @item Si
2580 Memory addressed with immediate addresses.
2582 @item Ss
2583 Memory addressed using the stack pointer ($sp).
2585 @item Sf
2586 Memory addressed using the frame base register ($fb).
2588 @item Ss
2589 Memory addressed using the small base register ($sb).
2591 @item S1
2592 $r1h
2593 @end table
2595 @item MicroBlaze---@file{config/microblaze/constraints.md}
2596 @table @code
2597 @item d
2598 A general register (@code{r0} to @code{r31}).
2600 @item z
2601 A status register (@code{rmsr}, @code{$fcc1} to @code{$fcc7}).
2603 @end table
2605 @item MIPS---@file{config/mips/constraints.md}
2606 @table @code
2607 @item d
2608 A general-purpose register.  This is equivalent to @code{r} unless
2609 generating MIPS16 code, in which case the MIPS16 register set is used.
2611 @item f
2612 A floating-point register (if available).
2614 @item h
2615 Formerly the @code{hi} register.  This constraint is no longer supported.
2617 @item l
2618 The @code{lo} register.  Use this register to store values that are
2619 no bigger than a word.
2621 @item x
2622 The concatenated @code{hi} and @code{lo} registers.  Use this register
2623 to store doubleword values.
2625 @item c
2626 A register suitable for use in an indirect jump.  This will always be
2627 @code{$25} for @option{-mabicalls}.
2629 @item v
2630 Register @code{$3}.  Do not use this constraint in new code;
2631 it is retained only for compatibility with glibc.
2633 @item y
2634 Equivalent to @code{r}; retained for backwards compatibility.
2636 @item z
2637 A floating-point condition code register.
2639 @item I
2640 A signed 16-bit constant (for arithmetic instructions).
2642 @item J
2643 Integer zero.
2645 @item K
2646 An unsigned 16-bit constant (for logic instructions).
2648 @item L
2649 A signed 32-bit constant in which the lower 16 bits are zero.
2650 Such constants can be loaded using @code{lui}.
2652 @item M
2653 A constant that cannot be loaded using @code{lui}, @code{addiu}
2654 or @code{ori}.
2656 @item N
2657 A constant in the range @minus{}65535 to @minus{}1 (inclusive).
2659 @item O
2660 A signed 15-bit constant.
2662 @item P
2663 A constant in the range 1 to 65535 (inclusive).
2665 @item G
2666 Floating-point zero.
2668 @item R
2669 An address that can be used in a non-macro load or store.
2671 @item ZC
2672 A memory operand whose address is formed by a base register and offset
2673 that is suitable for use in instructions with the same addressing mode
2674 as @code{ll} and @code{sc}.
2676 @item ZD
2677 An address suitable for a @code{prefetch} instruction, or for any other
2678 instruction with the same addressing mode as @code{prefetch}.
2679 @end table
2681 @item Motorola 680x0---@file{config/m68k/constraints.md}
2682 @table @code
2683 @item a
2684 Address register
2686 @item d
2687 Data register
2689 @item f
2690 68881 floating-point register, if available
2692 @item I
2693 Integer in the range 1 to 8
2695 @item J
2696 16-bit signed number
2698 @item K
2699 Signed number whose magnitude is greater than 0x80
2701 @item L
2702 Integer in the range @minus{}8 to @minus{}1
2704 @item M
2705 Signed number whose magnitude is greater than 0x100
2707 @item N
2708 Range 24 to 31, rotatert:SI 8 to 1 expressed as rotate
2710 @item O
2711 16 (for rotate using swap)
2713 @item P
2714 Range 8 to 15, rotatert:HI 8 to 1 expressed as rotate
2716 @item R
2717 Numbers that mov3q can handle
2719 @item G
2720 Floating point constant that is not a 68881 constant
2722 @item S
2723 Operands that satisfy 'm' when -mpcrel is in effect
2725 @item T
2726 Operands that satisfy 's' when -mpcrel is not in effect
2728 @item Q
2729 Address register indirect addressing mode
2731 @item U
2732 Register offset addressing
2734 @item W
2735 const_call_operand
2737 @item Cs
2738 symbol_ref or const
2740 @item Ci
2741 const_int
2743 @item C0
2744 const_int 0
2746 @item Cj
2747 Range of signed numbers that don't fit in 16 bits
2749 @item Cmvq
2750 Integers valid for mvq
2752 @item Capsw
2753 Integers valid for a moveq followed by a swap
2755 @item Cmvz
2756 Integers valid for mvz
2758 @item Cmvs
2759 Integers valid for mvs
2761 @item Ap
2762 push_operand
2764 @item Ac
2765 Non-register operands allowed in clr
2767 @end table
2769 @item Moxie---@file{config/moxie/constraints.md}
2770 @table @code
2771 @item A
2772 An absolute address
2774 @item B
2775 An offset address
2777 @item W
2778 A register indirect memory operand
2780 @item I
2781 A constant in the range of 0 to 255.
2783 @item N
2784 A constant in the range of 0 to @minus{}255.
2786 @end table
2788 @item MSP430--@file{config/msp430/constraints.md}
2789 @table @code
2791 @item R12
2792 Register R12.
2794 @item R13
2795 Register R13.
2797 @item K
2798 Integer constant 1.
2800 @item L
2801 Integer constant -1^20..1^19.
2803 @item M
2804 Integer constant 1-4.
2806 @item Ya
2807 Memory references which do not require an extended MOVX instruction.
2809 @item Yl
2810 Memory reference, labels only.
2812 @item Ys
2813 Memory reference, stack only.
2815 @end table
2817 @item NDS32---@file{config/nds32/constraints.md}
2818 @table @code
2819 @item w
2820 LOW register class $r0 to $r7 constraint for V3/V3M ISA.
2821 @item l
2822 LOW register class $r0 to $r7.
2823 @item d
2824 MIDDLE register class $r0 to $r11, $r16 to $r19.
2825 @item h
2826 HIGH register class $r12 to $r14, $r20 to $r31.
2827 @item t
2828 Temporary assist register $ta (i.e.@: $r15).
2829 @item k
2830 Stack register $sp.
2831 @item Iu03
2832 Unsigned immediate 3-bit value.
2833 @item In03
2834 Negative immediate 3-bit value in the range of @minus{}7--0.
2835 @item Iu04
2836 Unsigned immediate 4-bit value.
2837 @item Is05
2838 Signed immediate 5-bit value.
2839 @item Iu05
2840 Unsigned immediate 5-bit value.
2841 @item In05
2842 Negative immediate 5-bit value in the range of @minus{}31--0.
2843 @item Ip05
2844 Unsigned immediate 5-bit value for movpi45 instruction with range 16--47.
2845 @item Iu06
2846 Unsigned immediate 6-bit value constraint for addri36.sp instruction.
2847 @item Iu08
2848 Unsigned immediate 8-bit value.
2849 @item Iu09
2850 Unsigned immediate 9-bit value.
2851 @item Is10
2852 Signed immediate 10-bit value.
2853 @item Is11
2854 Signed immediate 11-bit value.
2855 @item Is15
2856 Signed immediate 15-bit value.
2857 @item Iu15
2858 Unsigned immediate 15-bit value.
2859 @item Ic15
2860 A constant which is not in the range of imm15u but ok for bclr instruction.
2861 @item Ie15
2862 A constant which is not in the range of imm15u but ok for bset instruction.
2863 @item It15
2864 A constant which is not in the range of imm15u but ok for btgl instruction.
2865 @item Ii15
2866 A constant whose compliment value is in the range of imm15u
2867 and ok for bitci instruction.
2868 @item Is16
2869 Signed immediate 16-bit value.
2870 @item Is17
2871 Signed immediate 17-bit value.
2872 @item Is19
2873 Signed immediate 19-bit value.
2874 @item Is20
2875 Signed immediate 20-bit value.
2876 @item Ihig
2877 The immediate value that can be simply set high 20-bit.
2878 @item Izeb
2879 The immediate value 0xff.
2880 @item Izeh
2881 The immediate value 0xffff.
2882 @item Ixls
2883 The immediate value 0x01.
2884 @item Ix11
2885 The immediate value 0x7ff.
2886 @item Ibms
2887 The immediate value with power of 2.
2888 @item Ifex
2889 The immediate value with power of 2 minus 1.
2890 @item U33
2891 Memory constraint for 333 format.
2892 @item U45
2893 Memory constraint for 45 format.
2894 @item U37
2895 Memory constraint for 37 format.
2896 @end table
2898 @item Nios II family---@file{config/nios2/constraints.md}
2899 @table @code
2901 @item I
2902 Integer that is valid as an immediate operand in an
2903 instruction taking a signed 16-bit number. Range
2904 @minus{}32768 to 32767.
2906 @item J
2907 Integer that is valid as an immediate operand in an
2908 instruction taking an unsigned 16-bit number. Range
2909 0 to 65535.
2911 @item K
2912 Integer that is valid as an immediate operand in an
2913 instruction taking only the upper 16-bits of a
2914 32-bit number. Range 32-bit numbers with the lower
2915 16-bits being 0.
2917 @item L
2918 Integer that is valid as an immediate operand for a 
2919 shift instruction. Range 0 to 31.
2921 @item M
2922 Integer that is valid as an immediate operand for
2923 only the value 0. Can be used in conjunction with
2924 the format modifier @code{z} to use @code{r0}
2925 instead of @code{0} in the assembly output.
2927 @item N
2928 Integer that is valid as an immediate operand for
2929 a custom instruction opcode. Range 0 to 255.
2931 @item P
2932 An immediate operand for R2 andchi/andci instructions. 
2934 @item S
2935 Matches immediates which are addresses in the small
2936 data section and therefore can be added to @code{gp}
2937 as a 16-bit immediate to re-create their 32-bit value.
2939 @item U
2940 Matches constants suitable as an operand for the rdprs and
2941 cache instructions.
2943 @item v
2944 A memory operand suitable for Nios II R2 load/store
2945 exclusive instructions.
2947 @item w
2948 A memory operand suitable for load/store IO and cache
2949 instructions.
2951 @ifset INTERNALS
2952 @item T
2953 A @code{const} wrapped @code{UNSPEC} expression,
2954 representing a supported PIC or TLS relocation.
2955 @end ifset
2957 @end table
2959 @item PDP-11---@file{config/pdp11/constraints.md}
2960 @table @code
2961 @item a
2962 Floating point registers AC0 through AC3.  These can be loaded from/to
2963 memory with a single instruction.
2965 @item d
2966 Odd numbered general registers (R1, R3, R5).  These are used for
2967 16-bit multiply operations.
2969 @item f
2970 Any of the floating point registers (AC0 through AC5).
2972 @item G
2973 Floating point constant 0.
2975 @item I
2976 An integer constant that fits in 16 bits.
2978 @item J
2979 An integer constant whose low order 16 bits are zero.
2981 @item K
2982 An integer constant that does not meet the constraints for codes
2983 @samp{I} or @samp{J}.
2985 @item L
2986 The integer constant 1.
2988 @item M
2989 The integer constant @minus{}1.
2991 @item N
2992 The integer constant 0.
2994 @item O
2995 Integer constants @minus{}4 through @minus{}1 and 1 through 4; shifts by these
2996 amounts are handled as multiple single-bit shifts rather than a single
2997 variable-length shift.
2999 @item Q
3000 A memory reference which requires an additional word (address or
3001 offset) after the opcode.
3003 @item R
3004 A memory reference that is encoded within the opcode.
3006 @end table
3008 @item PowerPC and IBM RS6000---@file{config/rs6000/constraints.md}
3009 @table @code
3010 @item b
3011 Address base register
3013 @item d
3014 Floating point register (containing 64-bit value)
3016 @item f
3017 Floating point register (containing 32-bit value)
3019 @item v
3020 Altivec vector register
3022 @item wa
3023 Any VSX register if the @option{-mvsx} option was used or NO_REGS.
3025 When using any of the register constraints (@code{wa}, @code{wd},
3026 @code{wf}, @code{wg}, @code{wh}, @code{wi}, @code{wj}, @code{wk},
3027 @code{wl}, @code{wm}, @code{wo}, @code{wp}, @code{wq}, @code{ws},
3028 @code{wt}, @code{wu}, @code{wv}, @code{ww}, or @code{wy})
3029 that take VSX registers, you must use @code{%x<n>} in the template so
3030 that the correct register is used.  Otherwise the register number
3031 output in the assembly file will be incorrect if an Altivec register
3032 is an operand of a VSX instruction that expects VSX register
3033 numbering.
3035 @smallexample
3036 asm ("xvadddp %x0,%x1,%x2"
3037      : "=wa" (v1)
3038      : "wa" (v2), "wa" (v3));
3039 @end smallexample
3041 @noindent
3042 is correct, but:
3044 @smallexample
3045 asm ("xvadddp %0,%1,%2" 
3046      : "=wa" (v1) 
3047      : "wa" (v2), "wa" (v3));
3048 @end smallexample
3050 @noindent
3051 is not correct.
3053 If an instruction only takes Altivec registers, you do not want to use
3054 @code{%x<n>}.
3056 @smallexample
3057 asm ("xsaddqp %0,%1,%2"
3058      : "=v" (v1)
3059      : "v" (v2), "v" (v3));
3060 @end smallexample
3062 @noindent
3063 is correct because the @code{xsaddqp} instruction only takes Altivec
3064 registers, while:
3066 @smallexample
3067 asm ("xsaddqp %x0,%x1,%x2" 
3068      : "=v" (v1) 
3069      : "v" (v2), "v" (v3));
3070 @end smallexample
3072 @noindent
3073 is incorrect.
3075 @item wb
3076 Altivec register if @option{-mcpu=power9} is used or NO_REGS.
3078 @item wd
3079 VSX vector register to hold vector double data or NO_REGS.
3081 @item we
3082 VSX register if the @option{-mcpu=power9} and @option{-m64} options
3083 were used or NO_REGS.
3085 @item wf
3086 VSX vector register to hold vector float data or NO_REGS.
3088 @item wg
3089 If @option{-mmfpgpr} was used, a floating point register or NO_REGS.
3091 @item wh
3092 Floating point register if direct moves are available, or NO_REGS.
3094 @item wi
3095 FP or VSX register to hold 64-bit integers for VSX insns or NO_REGS.
3097 @item wj
3098 FP or VSX register to hold 64-bit integers for direct moves or NO_REGS.
3100 @item wk
3101 FP or VSX register to hold 64-bit doubles for direct moves or NO_REGS.
3103 @item wl
3104 Floating point register if the LFIWAX instruction is enabled or NO_REGS.
3106 @item wm
3107 VSX register if direct move instructions are enabled, or NO_REGS.
3109 @item wn
3110 No register (NO_REGS).
3112 @item wo
3113 VSX register to use for ISA 3.0 vector instructions, or NO_REGS.
3115 @item wp
3116 VSX register to use for IEEE 128-bit floating point TFmode, or NO_REGS.
3118 @item wq
3119 VSX register to use for IEEE 128-bit floating point, or NO_REGS.
3121 @item wr
3122 General purpose register if 64-bit instructions are enabled or NO_REGS.
3124 @item ws
3125 VSX vector register to hold scalar double values or NO_REGS.
3127 @item wt
3128 VSX vector register to hold 128 bit integer or NO_REGS.
3130 @item wu
3131 Altivec register to use for float/32-bit int loads/stores  or NO_REGS.
3133 @item wv
3134 Altivec register to use for double loads/stores  or NO_REGS.
3136 @item ww
3137 FP or VSX register to perform float operations under @option{-mvsx} or NO_REGS.
3139 @item wx
3140 Floating point register if the STFIWX instruction is enabled or NO_REGS.
3142 @item wy
3143 FP or VSX register to perform ISA 2.07 float ops or NO_REGS.
3145 @item wz
3146 Floating point register if the LFIWZX instruction is enabled or NO_REGS.
3148 @item wA
3149 Address base register if 64-bit instructions are enabled or NO_REGS.
3151 @item wB
3152 Signed 5-bit constant integer that can be loaded into an altivec register.
3154 @item wD
3155 Int constant that is the element number of the 64-bit scalar in a vector.
3157 @item wE
3158 Vector constant that can be loaded with the XXSPLTIB instruction.
3160 @item wF
3161 Memory operand suitable for power9 fusion load/stores.
3163 @item wG
3164 Memory operand suitable for TOC fusion memory references.
3166 @item wH
3167 Altivec register if @option{-mvsx-small-integer}.
3169 @item wI
3170 Floating point register if @option{-mvsx-small-integer}.
3172 @item wJ
3173 FP register if @option{-mvsx-small-integer} and @option{-mpower9-vector}.
3175 @item wK
3176 Altivec register if @option{-mvsx-small-integer} and @option{-mpower9-vector}.
3178 @item wL
3179 Int constant that is the element number that the MFVSRLD instruction.
3180 targets.
3182 @item wM
3183 Match vector constant with all 1's if the XXLORC instruction is available.
3185 @item wO
3186 A memory operand suitable for the ISA 3.0 vector d-form instructions.
3188 @item wQ
3189 A memory address that will work with the @code{lq} and @code{stq}
3190 instructions.
3192 @item wS
3193 Vector constant that can be loaded with XXSPLTIB & sign extension.
3195 @item h
3196 @samp{MQ}, @samp{CTR}, or @samp{LINK} register
3198 @item c
3199 @samp{CTR} register
3201 @item l
3202 @samp{LINK} register
3204 @item x
3205 @samp{CR} register (condition register) number 0
3207 @item y
3208 @samp{CR} register (condition register)
3210 @item z
3211 @samp{XER[CA]} carry bit (part of the XER register)
3213 @item I
3214 Signed 16-bit constant
3216 @item J
3217 Unsigned 16-bit constant shifted left 16 bits (use @samp{L} instead for
3218 @code{SImode} constants)
3220 @item K
3221 Unsigned 16-bit constant
3223 @item L
3224 Signed 16-bit constant shifted left 16 bits
3226 @item M
3227 Constant larger than 31
3229 @item N
3230 Exact power of 2
3232 @item O
3233 Zero
3235 @item P
3236 Constant whose negation is a signed 16-bit constant
3238 @item G
3239 Floating point constant that can be loaded into a register with one
3240 instruction per word
3242 @item H
3243 Integer/Floating point constant that can be loaded into a register using
3244 three instructions
3246 @item m
3247 Memory operand.
3248 Normally, @code{m} does not allow addresses that update the base register.
3249 If @samp{<} or @samp{>} constraint is also used, they are allowed and
3250 therefore on PowerPC targets in that case it is only safe
3251 to use @samp{m<>} in an @code{asm} statement if that @code{asm} statement
3252 accesses the operand exactly once.  The @code{asm} statement must also
3253 use @samp{%U@var{<opno>}} as a placeholder for the ``update'' flag in the
3254 corresponding load or store instruction.  For example:
3256 @smallexample
3257 asm ("st%U0 %1,%0" : "=m<>" (mem) : "r" (val));
3258 @end smallexample
3260 is correct but:
3262 @smallexample
3263 asm ("st %1,%0" : "=m<>" (mem) : "r" (val));
3264 @end smallexample
3266 is not.
3268 @item es
3269 A ``stable'' memory operand; that is, one which does not include any
3270 automodification of the base register.  This used to be useful when
3271 @samp{m} allowed automodification of the base register, but as those are now only
3272 allowed when @samp{<} or @samp{>} is used, @samp{es} is basically the same
3273 as @samp{m} without @samp{<} and @samp{>}.
3275 @item Q
3276 Memory operand that is an offset from a register (it is usually better
3277 to use @samp{m} or @samp{es} in @code{asm} statements)
3279 @item Z
3280 Memory operand that is an indexed or indirect from a register (it is
3281 usually better to use @samp{m} or @samp{es} in @code{asm} statements)
3283 @item R
3284 AIX TOC entry
3286 @item a
3287 Address operand that is an indexed or indirect from a register (@samp{p} is
3288 preferable for @code{asm} statements)
3290 @item U
3291 System V Release 4 small data area reference
3293 @item W
3294 Vector constant that does not require memory
3296 @item j
3297 Vector constant that is all zeros.
3299 @end table
3301 @item RL78---@file{config/rl78/constraints.md}
3302 @table @code
3304 @item Int3
3305 An integer constant in the range 1 @dots{} 7.
3306 @item Int8
3307 An integer constant in the range 0 @dots{} 255.
3308 @item J
3309 An integer constant in the range @minus{}255 @dots{} 0
3310 @item K
3311 The integer constant 1.
3312 @item L
3313 The integer constant -1.
3314 @item M
3315 The integer constant 0.
3316 @item N
3317 The integer constant 2.
3318 @item O
3319 The integer constant -2.
3320 @item P
3321 An integer constant in the range 1 @dots{} 15.
3322 @item Qbi
3323 The built-in compare types--eq, ne, gtu, ltu, geu, and leu.
3324 @item Qsc
3325 The synthetic compare types--gt, lt, ge, and le.
3326 @item Wab
3327 A memory reference with an absolute address.
3328 @item Wbc
3329 A memory reference using @code{BC} as a base register, with an optional offset.
3330 @item Wca
3331 A memory reference using @code{AX}, @code{BC}, @code{DE}, or @code{HL} for the address, for calls.
3332 @item Wcv
3333 A memory reference using any 16-bit register pair for the address, for calls.
3334 @item Wd2
3335 A memory reference using @code{DE} as a base register, with an optional offset.
3336 @item Wde
3337 A memory reference using @code{DE} as a base register, without any offset.
3338 @item Wfr
3339 Any memory reference to an address in the far address space.
3340 @item Wh1
3341 A memory reference using @code{HL} as a base register, with an optional one-byte offset.
3342 @item Whb
3343 A memory reference using @code{HL} as a base register, with @code{B} or @code{C} as the index register.
3344 @item Whl
3345 A memory reference using @code{HL} as a base register, without any offset.
3346 @item Ws1
3347 A memory reference using @code{SP} as a base register, with an optional one-byte offset.
3348 @item Y
3349 Any memory reference to an address in the near address space.
3350 @item A
3351 The @code{AX} register.
3352 @item B
3353 The @code{BC} register.
3354 @item D
3355 The @code{DE} register.
3356 @item R
3357 @code{A} through @code{L} registers.
3358 @item S
3359 The @code{SP} register.
3360 @item T
3361 The @code{HL} register.
3362 @item Z08W
3363 The 16-bit @code{R8} register.
3364 @item Z10W
3365 The 16-bit @code{R10} register.
3366 @item Zint
3367 The registers reserved for interrupts (@code{R24} to @code{R31}).
3368 @item a
3369 The @code{A} register.
3370 @item b
3371 The @code{B} register.
3372 @item c
3373 The @code{C} register.
3374 @item d
3375 The @code{D} register.
3376 @item e
3377 The @code{E} register.
3378 @item h
3379 The @code{H} register.
3380 @item l
3381 The @code{L} register.
3382 @item v
3383 The virtual registers.
3384 @item w
3385 The @code{PSW} register.
3386 @item x
3387 The @code{X} register.
3389 @end table
3391 @item RISC-V---@file{config/riscv/constraints.md}
3392 @table @code
3394 @item f
3395 A floating-point register (if availiable).
3397 @item I
3398 An I-type 12-bit signed immediate.
3400 @item J
3401 Integer zero.
3403 @item K
3404 A 5-bit unsigned immediate for CSR access instructions.
3406 @item A
3407 An address that is held in a general-purpose register.
3409 @end table
3411 @item RX---@file{config/rx/constraints.md}
3412 @table @code
3413 @item Q
3414 An address which does not involve register indirect addressing or
3415 pre/post increment/decrement addressing.
3417 @item Symbol
3418 A symbol reference.
3420 @item Int08
3421 A constant in the range @minus{}256 to 255, inclusive.
3423 @item Sint08
3424 A constant in the range @minus{}128 to 127, inclusive.
3426 @item Sint16
3427 A constant in the range @minus{}32768 to 32767, inclusive.
3429 @item Sint24
3430 A constant in the range @minus{}8388608 to 8388607, inclusive.
3432 @item Uint04
3433 A constant in the range 0 to 15, inclusive.
3435 @end table
3437 @item S/390 and zSeries---@file{config/s390/s390.h}
3438 @table @code
3439 @item a
3440 Address register (general purpose register except r0)
3442 @item c
3443 Condition code register
3445 @item d
3446 Data register (arbitrary general purpose register)
3448 @item f
3449 Floating-point register
3451 @item I
3452 Unsigned 8-bit constant (0--255)
3454 @item J
3455 Unsigned 12-bit constant (0--4095)
3457 @item K
3458 Signed 16-bit constant (@minus{}32768--32767)
3460 @item L
3461 Value appropriate as displacement.
3462 @table @code
3463 @item (0..4095)
3464 for short displacement
3465 @item (@minus{}524288..524287)
3466 for long displacement
3467 @end table
3469 @item M
3470 Constant integer with a value of 0x7fffffff.
3472 @item N
3473 Multiple letter constraint followed by 4 parameter letters.
3474 @table @code
3475 @item 0..9:
3476 number of the part counting from most to least significant
3477 @item H,Q:
3478 mode of the part
3479 @item D,S,H:
3480 mode of the containing operand
3481 @item 0,F:
3482 value of the other parts (F---all bits set)
3483 @end table
3484 The constraint matches if the specified part of a constant
3485 has a value different from its other parts.
3487 @item Q
3488 Memory reference without index register and with short displacement.
3490 @item R
3491 Memory reference with index register and short displacement.
3493 @item S
3494 Memory reference without index register but with long displacement.
3496 @item T
3497 Memory reference with index register and long displacement.
3499 @item U
3500 Pointer with short displacement.
3502 @item W
3503 Pointer with long displacement.
3505 @item Y
3506 Shift count operand.
3508 @end table
3510 @need 1000
3511 @item SPARC---@file{config/sparc/sparc.h}
3512 @table @code
3513 @item f
3514 Floating-point register on the SPARC-V8 architecture and
3515 lower floating-point register on the SPARC-V9 architecture.
3517 @item e
3518 Floating-point register.  It is equivalent to @samp{f} on the
3519 SPARC-V8 architecture and contains both lower and upper
3520 floating-point registers on the SPARC-V9 architecture.
3522 @item c
3523 Floating-point condition code register.
3525 @item d
3526 Lower floating-point register.  It is only valid on the SPARC-V9
3527 architecture when the Visual Instruction Set is available.
3529 @item b
3530 Floating-point register.  It is only valid on the SPARC-V9 architecture
3531 when the Visual Instruction Set is available.
3533 @item h
3534 64-bit global or out register for the SPARC-V8+ architecture.
3536 @item C
3537 The constant all-ones, for floating-point.
3539 @item A
3540 Signed 5-bit constant
3542 @item D
3543 A vector constant
3545 @item I
3546 Signed 13-bit constant
3548 @item J
3549 Zero
3551 @item K
3552 32-bit constant with the low 12 bits clear (a constant that can be
3553 loaded with the @code{sethi} instruction)
3555 @item L
3556 A constant in the range supported by @code{movcc} instructions (11-bit
3557 signed immediate)
3559 @item M
3560 A constant in the range supported by @code{movrcc} instructions (10-bit
3561 signed immediate)
3563 @item N
3564 Same as @samp{K}, except that it verifies that bits that are not in the
3565 lower 32-bit range are all zero.  Must be used instead of @samp{K} for
3566 modes wider than @code{SImode}
3568 @item O
3569 The constant 4096
3571 @item G
3572 Floating-point zero
3574 @item H
3575 Signed 13-bit constant, sign-extended to 32 or 64 bits
3577 @item P
3578 The constant -1
3580 @item Q
3581 Floating-point constant whose integral representation can
3582 be moved into an integer register using a single sethi
3583 instruction
3585 @item R
3586 Floating-point constant whose integral representation can
3587 be moved into an integer register using a single mov
3588 instruction
3590 @item S
3591 Floating-point constant whose integral representation can
3592 be moved into an integer register using a high/lo_sum
3593 instruction sequence
3595 @item T
3596 Memory address aligned to an 8-byte boundary
3598 @item U
3599 Even register
3601 @item W
3602 Memory address for @samp{e} constraint registers
3604 @item w
3605 Memory address with only a base register
3607 @item Y
3608 Vector zero
3610 @end table
3612 @item SPU---@file{config/spu/spu.h}
3613 @table @code
3614 @item a
3615 An immediate which can be loaded with the il/ila/ilh/ilhu instructions.  const_int is treated as a 64 bit value.
3617 @item c
3618 An immediate for and/xor/or instructions.  const_int is treated as a 64 bit value.
3620 @item d
3621 An immediate for the @code{iohl} instruction.  const_int is treated as a 64 bit value.
3623 @item f
3624 An immediate which can be loaded with @code{fsmbi}.
3626 @item A
3627 An immediate which can be loaded with the il/ila/ilh/ilhu instructions.  const_int is treated as a 32 bit value.
3629 @item B
3630 An immediate for most arithmetic instructions.  const_int is treated as a 32 bit value.
3632 @item C
3633 An immediate for and/xor/or instructions.  const_int is treated as a 32 bit value.
3635 @item D
3636 An immediate for the @code{iohl} instruction.  const_int is treated as a 32 bit value.
3638 @item I
3639 A constant in the range [@minus{}64, 63] for shift/rotate instructions.
3641 @item J
3642 An unsigned 7-bit constant for conversion/nop/channel instructions.
3644 @item K
3645 A signed 10-bit constant for most arithmetic instructions.
3647 @item M
3648 A signed 16 bit immediate for @code{stop}.
3650 @item N
3651 An unsigned 16-bit constant for @code{iohl} and @code{fsmbi}.
3653 @item O
3654 An unsigned 7-bit constant whose 3 least significant bits are 0.
3656 @item P
3657 An unsigned 3-bit constant for 16-byte rotates and shifts
3659 @item R
3660 Call operand, reg, for indirect calls
3662 @item S
3663 Call operand, symbol, for relative calls.
3665 @item T
3666 Call operand, const_int, for absolute calls.
3668 @item U
3669 An immediate which can be loaded with the il/ila/ilh/ilhu instructions.  const_int is sign extended to 128 bit.
3671 @item W
3672 An immediate for shift and rotate instructions.  const_int is treated as a 32 bit value.
3674 @item Y
3675 An immediate for and/xor/or instructions.  const_int is sign extended as a 128 bit.
3677 @item Z
3678 An immediate for the @code{iohl} instruction.  const_int is sign extended to 128 bit.
3680 @end table
3682 @item TI C6X family---@file{config/c6x/constraints.md}
3683 @table @code
3684 @item a
3685 Register file A (A0--A31).
3687 @item b
3688 Register file B (B0--B31).
3690 @item A
3691 Predicate registers in register file A (A0--A2 on C64X and
3692 higher, A1 and A2 otherwise).
3694 @item B
3695 Predicate registers in register file B (B0--B2).
3697 @item C
3698 A call-used register in register file B (B0--B9, B16--B31).
3700 @item Da
3701 Register file A, excluding predicate registers (A3--A31,
3702 plus A0 if not C64X or higher).
3704 @item Db
3705 Register file B, excluding predicate registers (B3--B31).
3707 @item Iu4
3708 Integer constant in the range 0 @dots{} 15.
3710 @item Iu5
3711 Integer constant in the range 0 @dots{} 31.
3713 @item In5
3714 Integer constant in the range @minus{}31 @dots{} 0.
3716 @item Is5
3717 Integer constant in the range @minus{}16 @dots{} 15.
3719 @item I5x
3720 Integer constant that can be the operand of an ADDA or a SUBA insn.
3722 @item IuB
3723 Integer constant in the range 0 @dots{} 65535.
3725 @item IsB
3726 Integer constant in the range @minus{}32768 @dots{} 32767.
3728 @item IsC
3729 Integer constant in the range @math{-2^{20}} @dots{} @math{2^{20} - 1}.
3731 @item Jc
3732 Integer constant that is a valid mask for the clr instruction.
3734 @item Js
3735 Integer constant that is a valid mask for the set instruction.
3737 @item Q
3738 Memory location with A base register.
3740 @item R
3741 Memory location with B base register.
3743 @ifset INTERNALS
3744 @item S0
3745 On C64x+ targets, a GP-relative small data reference.
3747 @item S1
3748 Any kind of @code{SYMBOL_REF}, for use in a call address.
3750 @item Si
3751 Any kind of immediate operand, unless it matches the S0 constraint.
3753 @item T
3754 Memory location with B base register, but not using a long offset.
3756 @item W
3757 A memory operand with an address that cannot be used in an unaligned access.
3759 @end ifset
3760 @item Z
3761 Register B14 (aka DP).
3763 @end table
3765 @item TILE-Gx---@file{config/tilegx/constraints.md}
3766 @table @code
3767 @item R00
3768 @itemx R01
3769 @itemx R02
3770 @itemx R03
3771 @itemx R04
3772 @itemx R05
3773 @itemx R06
3774 @itemx R07
3775 @itemx R08
3776 @itemx R09
3777 @itemx R10
3778 Each of these represents a register constraint for an individual
3779 register, from r0 to r10.
3781 @item I
3782 Signed 8-bit integer constant.
3784 @item J
3785 Signed 16-bit integer constant.
3787 @item K
3788 Unsigned 16-bit integer constant.
3790 @item L
3791 Integer constant that fits in one signed byte when incremented by one
3792 (@minus{}129 @dots{} 126).
3794 @item m
3795 Memory operand.  If used together with @samp{<} or @samp{>}, the
3796 operand can have postincrement which requires printing with @samp{%In}
3797 and @samp{%in} on TILE-Gx.  For example:
3799 @smallexample
3800 asm ("st_add %I0,%1,%i0" : "=m<>" (*mem) : "r" (val));
3801 @end smallexample
3803 @item M
3804 A bit mask suitable for the BFINS instruction.
3806 @item N
3807 Integer constant that is a byte tiled out eight times.
3809 @item O
3810 The integer zero constant.
3812 @item P
3813 Integer constant that is a sign-extended byte tiled out as four shorts.
3815 @item Q
3816 Integer constant that fits in one signed byte when incremented
3817 (@minus{}129 @dots{} 126), but excluding -1.
3819 @item S
3820 Integer constant that has all 1 bits consecutive and starting at bit 0.
3822 @item T
3823 A 16-bit fragment of a got, tls, or pc-relative reference.
3825 @item U
3826 Memory operand except postincrement.  This is roughly the same as
3827 @samp{m} when not used together with @samp{<} or @samp{>}.
3829 @item W
3830 An 8-element vector constant with identical elements.
3832 @item Y
3833 A 4-element vector constant with identical elements.
3835 @item Z0
3836 The integer constant 0xffffffff.
3838 @item Z1
3839 The integer constant 0xffffffff00000000.
3841 @end table
3843 @item TILEPro---@file{config/tilepro/constraints.md}
3844 @table @code
3845 @item R00
3846 @itemx R01
3847 @itemx R02
3848 @itemx R03
3849 @itemx R04
3850 @itemx R05
3851 @itemx R06
3852 @itemx R07
3853 @itemx R08
3854 @itemx R09
3855 @itemx R10
3856 Each of these represents a register constraint for an individual
3857 register, from r0 to r10.
3859 @item I
3860 Signed 8-bit integer constant.
3862 @item J
3863 Signed 16-bit integer constant.
3865 @item K
3866 Nonzero integer constant with low 16 bits zero.
3868 @item L
3869 Integer constant that fits in one signed byte when incremented by one
3870 (@minus{}129 @dots{} 126).
3872 @item m
3873 Memory operand.  If used together with @samp{<} or @samp{>}, the
3874 operand can have postincrement which requires printing with @samp{%In}
3875 and @samp{%in} on TILEPro.  For example:
3877 @smallexample
3878 asm ("swadd %I0,%1,%i0" : "=m<>" (mem) : "r" (val));
3879 @end smallexample
3881 @item M
3882 A bit mask suitable for the MM instruction.
3884 @item N
3885 Integer constant that is a byte tiled out four times.
3887 @item O
3888 The integer zero constant.
3890 @item P
3891 Integer constant that is a sign-extended byte tiled out as two shorts.
3893 @item Q
3894 Integer constant that fits in one signed byte when incremented
3895 (@minus{}129 @dots{} 126), but excluding -1.
3897 @item T
3898 A symbolic operand, or a 16-bit fragment of a got, tls, or pc-relative
3899 reference.
3901 @item U
3902 Memory operand except postincrement.  This is roughly the same as
3903 @samp{m} when not used together with @samp{<} or @samp{>}.
3905 @item W
3906 A 4-element vector constant with identical elements.
3908 @item Y
3909 A 2-element vector constant with identical elements.
3911 @end table
3913 @item Visium---@file{config/visium/constraints.md}
3914 @table @code
3915 @item b
3916 EAM register @code{mdb}
3918 @item c
3919 EAM register @code{mdc}
3921 @item f
3922 Floating point register
3924 @ifset INTERNALS
3925 @item k
3926 Register for sibcall optimization
3927 @end ifset
3929 @item l
3930 General register, but not @code{r29}, @code{r30} and @code{r31}
3932 @item t
3933 Register @code{r1}
3935 @item u
3936 Register @code{r2}
3938 @item v
3939 Register @code{r3}
3941 @item G
3942 Floating-point constant 0.0
3944 @item J
3945 Integer constant in the range 0 .. 65535 (16-bit immediate)
3947 @item K
3948 Integer constant in the range 1 .. 31 (5-bit immediate)
3950 @item L
3951 Integer constant in the range @minus{}65535 .. @minus{}1 (16-bit negative immediate)
3953 @item M
3954 Integer constant @minus{}1
3956 @item O
3957 Integer constant 0
3959 @item P
3960 Integer constant 32
3961 @end table
3963 @item x86 family---@file{config/i386/constraints.md}
3964 @table @code
3965 @item R
3966 Legacy register---the eight integer registers available on all
3967 i386 processors (@code{a}, @code{b}, @code{c}, @code{d},
3968 @code{si}, @code{di}, @code{bp}, @code{sp}).
3970 @item q
3971 Any register accessible as @code{@var{r}l}.  In 32-bit mode, @code{a},
3972 @code{b}, @code{c}, and @code{d}; in 64-bit mode, any integer register.
3974 @item Q
3975 Any register accessible as @code{@var{r}h}: @code{a}, @code{b},
3976 @code{c}, and @code{d}.
3978 @ifset INTERNALS
3979 @item l
3980 Any register that can be used as the index in a base+index memory
3981 access: that is, any general register except the stack pointer.
3982 @end ifset
3984 @item a
3985 The @code{a} register.
3987 @item b
3988 The @code{b} register.
3990 @item c
3991 The @code{c} register.
3993 @item d
3994 The @code{d} register.
3996 @item S
3997 The @code{si} register.
3999 @item D
4000 The @code{di} register.
4002 @item A
4003 The @code{a} and @code{d} registers.  This class is used for instructions
4004 that return double word results in the @code{ax:dx} register pair.  Single
4005 word values will be allocated either in @code{ax} or @code{dx}.
4006 For example on i386 the following implements @code{rdtsc}:
4008 @smallexample
4009 unsigned long long rdtsc (void)
4011   unsigned long long tick;
4012   __asm__ __volatile__("rdtsc":"=A"(tick));
4013   return tick;
4015 @end smallexample
4017 This is not correct on x86-64 as it would allocate tick in either @code{ax}
4018 or @code{dx}.  You have to use the following variant instead:
4020 @smallexample
4021 unsigned long long rdtsc (void)
4023   unsigned int tickl, tickh;
4024   __asm__ __volatile__("rdtsc":"=a"(tickl),"=d"(tickh));
4025   return ((unsigned long long)tickh << 32)|tickl;
4027 @end smallexample
4029 @item U
4030 The call-clobbered integer registers.
4032 @item f
4033 Any 80387 floating-point (stack) register.
4035 @item t
4036 Top of 80387 floating-point stack (@code{%st(0)}).
4038 @item u
4039 Second from top of 80387 floating-point stack (@code{%st(1)}).
4041 @ifset INTERNALS
4042 @item Yk
4043 Any mask register that can be used as a predicate, i.e. @code{k1-k7}.
4045 @item k
4046 Any mask register.
4047 @end ifset
4049 @item y
4050 Any MMX register.
4052 @item x
4053 Any SSE register.
4055 @item v
4056 Any EVEX encodable SSE register (@code{%xmm0-%xmm31}).
4058 @ifset INTERNALS
4059 @item w
4060 Any bound register.
4061 @end ifset
4063 @item Yz
4064 First SSE register (@code{%xmm0}).
4066 @ifset INTERNALS
4067 @item Yi
4068 Any SSE register, when SSE2 and inter-unit moves are enabled.
4070 @item Yj
4071 Any SSE register, when SSE2 and inter-unit moves from vector registers are enabled.
4073 @item Ym
4074 Any MMX register, when inter-unit moves are enabled.
4076 @item Yn
4077 Any MMX register, when inter-unit moves from vector registers are enabled.
4079 @item Yp
4080 Any integer register when @code{TARGET_PARTIAL_REG_STALL} is disabled.
4082 @item Ya
4083 Any integer register when zero extensions with @code{AND} are disabled.
4085 @item Yb
4086 Any register that can be used as the GOT base when calling@*
4087 @code{___tls_get_addr}: that is, any general register except @code{a}
4088 and @code{sp} registers, for @option{-fno-plt} if linker supports it.
4089 Otherwise, @code{b} register.
4091 @item Yf
4092 Any x87 register when 80387 floating-point arithmetic is enabled.
4094 @item Yr
4095 Lower SSE register when avoiding REX prefix and all SSE registers otherwise.
4097 @item Yv
4098 For AVX512VL, any EVEX-encodable SSE register (@code{%xmm0-%xmm31}),
4099 otherwise any SSE register.
4101 @item Yh
4102 Any EVEX-encodable SSE register, that has number factor of four.
4104 @item Bf
4105 Flags register operand.
4107 @item Bg
4108 GOT memory operand.
4110 @item Bm
4111 Vector memory operand.
4113 @item Bc
4114 Constant memory operand.
4116 @item Bn
4117 Memory operand without REX prefix.
4119 @item Bs
4120 Sibcall memory operand.
4122 @item Bw
4123 Call memory operand.
4125 @item Bz
4126 Constant call address operand.
4128 @item BC
4129 SSE constant -1 operand.
4130 @end ifset
4132 @item I
4133 Integer constant in the range 0 @dots{} 31, for 32-bit shifts.
4135 @item J
4136 Integer constant in the range 0 @dots{} 63, for 64-bit shifts.
4138 @item K
4139 Signed 8-bit integer constant.
4141 @item L
4142 @code{0xFF} or @code{0xFFFF}, for andsi as a zero-extending move.
4144 @item M
4145 0, 1, 2, or 3 (shifts for the @code{lea} instruction).
4147 @item N
4148 Unsigned 8-bit integer constant (for @code{in} and @code{out}
4149 instructions).
4151 @ifset INTERNALS
4152 @item O
4153 Integer constant in the range 0 @dots{} 127, for 128-bit shifts.
4154 @end ifset
4156 @item G
4157 Standard 80387 floating point constant.
4159 @item C
4160 SSE constant zero operand.
4162 @item e
4163 32-bit signed integer constant, or a symbolic reference known
4164 to fit that range (for immediate operands in sign-extending x86-64
4165 instructions).
4167 @item We
4168 32-bit signed integer constant, or a symbolic reference known
4169 to fit that range (for sign-extending conversion operations that
4170 require non-@code{VOIDmode} immediate operands).
4172 @item Wz
4173 32-bit unsigned integer constant, or a symbolic reference known
4174 to fit that range (for zero-extending conversion operations that
4175 require non-@code{VOIDmode} immediate operands).
4177 @item Wd
4178 128-bit integer constant where both the high and low 64-bit word
4179 satisfy the @code{e} constraint.
4181 @item Z
4182 32-bit unsigned integer constant, or a symbolic reference known
4183 to fit that range (for immediate operands in zero-extending x86-64
4184 instructions).
4186 @item Tv
4187 VSIB address operand.
4189 @item Ts
4190 Address operand without segment register.
4192 @item Ti
4193 MPX address operand without index.
4195 @item Tb
4196 MPX address operand without base.
4198 @end table
4200 @item Xstormy16---@file{config/stormy16/stormy16.h}
4201 @table @code
4202 @item a
4203 Register r0.
4205 @item b
4206 Register r1.
4208 @item c
4209 Register r2.
4211 @item d
4212 Register r8.
4214 @item e
4215 Registers r0 through r7.
4217 @item t
4218 Registers r0 and r1.
4220 @item y
4221 The carry register.
4223 @item z
4224 Registers r8 and r9.
4226 @item I
4227 A constant between 0 and 3 inclusive.
4229 @item J
4230 A constant that has exactly one bit set.
4232 @item K
4233 A constant that has exactly one bit clear.
4235 @item L
4236 A constant between 0 and 255 inclusive.
4238 @item M
4239 A constant between @minus{}255 and 0 inclusive.
4241 @item N
4242 A constant between @minus{}3 and 0 inclusive.
4244 @item O
4245 A constant between 1 and 4 inclusive.
4247 @item P
4248 A constant between @minus{}4 and @minus{}1 inclusive.
4250 @item Q
4251 A memory reference that is a stack push.
4253 @item R
4254 A memory reference that is a stack pop.
4256 @item S
4257 A memory reference that refers to a constant address of known value.
4259 @item T
4260 The register indicated by Rx (not implemented yet).
4262 @item U
4263 A constant that is not between 2 and 15 inclusive.
4265 @item Z
4266 The constant 0.
4268 @end table
4270 @item Xtensa---@file{config/xtensa/constraints.md}
4271 @table @code
4272 @item a
4273 General-purpose 32-bit register
4275 @item b
4276 One-bit boolean register
4278 @item A
4279 MAC16 40-bit accumulator register
4281 @item I
4282 Signed 12-bit integer constant, for use in MOVI instructions
4284 @item J
4285 Signed 8-bit integer constant, for use in ADDI instructions
4287 @item K
4288 Integer constant valid for BccI instructions
4290 @item L
4291 Unsigned constant valid for BccUI instructions
4293 @end table
4295 @end table
4297 @ifset INTERNALS
4298 @node Disable Insn Alternatives
4299 @subsection Disable insn alternatives using the @code{enabled} attribute
4300 @cindex enabled
4302 There are three insn attributes that may be used to selectively disable
4303 instruction alternatives:
4305 @table @code
4306 @item enabled
4307 Says whether an alternative is available on the current subtarget.
4309 @item preferred_for_size
4310 Says whether an enabled alternative should be used in code that is
4311 optimized for size.
4313 @item preferred_for_speed
4314 Says whether an enabled alternative should be used in code that is
4315 optimized for speed.
4316 @end table
4318 All these attributes should use @code{(const_int 1)} to allow an alternative
4319 or @code{(const_int 0)} to disallow it.  The attributes must be a static
4320 property of the subtarget; they cannot for example depend on the
4321 current operands, on the current optimization level, on the location
4322 of the insn within the body of a loop, on whether register allocation
4323 has finished, or on the current compiler pass.
4325 The @code{enabled} attribute is a correctness property.  It tells GCC to act
4326 as though the disabled alternatives were never defined in the first place.
4327 This is useful when adding new instructions to an existing pattern in
4328 cases where the new instructions are only available for certain cpu
4329 architecture levels (typically mapped to the @code{-march=} command-line
4330 option).
4332 In contrast, the @code{preferred_for_size} and @code{preferred_for_speed}
4333 attributes are strong optimization hints rather than correctness properties.
4334 @code{preferred_for_size} tells GCC which alternatives to consider when
4335 adding or modifying an instruction that GCC wants to optimize for size.
4336 @code{preferred_for_speed} does the same thing for speed.  Note that things
4337 like code motion can lead to cases where code optimized for size uses
4338 alternatives that are not preferred for size, and similarly for speed.
4340 Although @code{define_insn}s can in principle specify the @code{enabled}
4341 attribute directly, it is often clearer to have subsiduary attributes
4342 for each architectural feature of interest.  The @code{define_insn}s
4343 can then use these subsiduary attributes to say which alternatives
4344 require which features.  The example below does this for @code{cpu_facility}.
4346 E.g. the following two patterns could easily be merged using the @code{enabled}
4347 attribute:
4349 @smallexample
4351 (define_insn "*movdi_old"
4352   [(set (match_operand:DI 0 "register_operand" "=d")
4353         (match_operand:DI 1 "register_operand" " d"))]
4354   "!TARGET_NEW"
4355   "lgr %0,%1")
4357 (define_insn "*movdi_new"
4358   [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4359         (match_operand:DI 1 "register_operand" " d,d,f"))]
4360   "TARGET_NEW"
4361   "@@
4362    lgr  %0,%1
4363    ldgr %0,%1
4364    lgdr %0,%1")
4366 @end smallexample
4370 @smallexample
4372 (define_insn "*movdi_combined"
4373   [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4374         (match_operand:DI 1 "register_operand" " d,d,f"))]
4375   ""
4376   "@@
4377    lgr  %0,%1
4378    ldgr %0,%1
4379    lgdr %0,%1"
4380   [(set_attr "cpu_facility" "*,new,new")])
4382 @end smallexample
4384 with the @code{enabled} attribute defined like this:
4386 @smallexample
4388 (define_attr "cpu_facility" "standard,new" (const_string "standard"))
4390 (define_attr "enabled" ""
4391   (cond [(eq_attr "cpu_facility" "standard") (const_int 1)
4392          (and (eq_attr "cpu_facility" "new")
4393               (ne (symbol_ref "TARGET_NEW") (const_int 0)))
4394          (const_int 1)]
4395         (const_int 0)))
4397 @end smallexample
4399 @end ifset
4401 @ifset INTERNALS
4402 @node Define Constraints
4403 @subsection Defining Machine-Specific Constraints
4404 @cindex defining constraints
4405 @cindex constraints, defining
4407 Machine-specific constraints fall into two categories: register and
4408 non-register constraints.  Within the latter category, constraints
4409 which allow subsets of all possible memory or address operands should
4410 be specially marked, to give @code{reload} more information.
4412 Machine-specific constraints can be given names of arbitrary length,
4413 but they must be entirely composed of letters, digits, underscores
4414 (@samp{_}), and angle brackets (@samp{< >}).  Like C identifiers, they
4415 must begin with a letter or underscore.
4417 In order to avoid ambiguity in operand constraint strings, no
4418 constraint can have a name that begins with any other constraint's
4419 name.  For example, if @code{x} is defined as a constraint name,
4420 @code{xy} may not be, and vice versa.  As a consequence of this rule,
4421 no constraint may begin with one of the generic constraint letters:
4422 @samp{E F V X g i m n o p r s}.
4424 Register constraints correspond directly to register classes.
4425 @xref{Register Classes}.  There is thus not much flexibility in their
4426 definitions.
4428 @deffn {MD Expression} define_register_constraint name regclass docstring
4429 All three arguments are string constants.
4430 @var{name} is the name of the constraint, as it will appear in
4431 @code{match_operand} expressions.  If @var{name} is a multi-letter
4432 constraint its length shall be the same for all constraints starting
4433 with the same letter.  @var{regclass} can be either the
4434 name of the corresponding register class (@pxref{Register Classes}),
4435 or a C expression which evaluates to the appropriate register class.
4436 If it is an expression, it must have no side effects, and it cannot
4437 look at the operand.  The usual use of expressions is to map some
4438 register constraints to @code{NO_REGS} when the register class
4439 is not available on a given subarchitecture.
4441 @var{docstring} is a sentence documenting the meaning of the
4442 constraint.  Docstrings are explained further below.
4443 @end deffn
4445 Non-register constraints are more like predicates: the constraint
4446 definition gives a boolean expression which indicates whether the
4447 constraint matches.
4449 @deffn {MD Expression} define_constraint name docstring exp
4450 The @var{name} and @var{docstring} arguments are the same as for
4451 @code{define_register_constraint}, but note that the docstring comes
4452 immediately after the name for these expressions.  @var{exp} is an RTL
4453 expression, obeying the same rules as the RTL expressions in predicate
4454 definitions.  @xref{Defining Predicates}, for details.  If it
4455 evaluates true, the constraint matches; if it evaluates false, it
4456 doesn't. Constraint expressions should indicate which RTL codes they
4457 might match, just like predicate expressions.
4459 @code{match_test} C expressions have access to the
4460 following variables:
4462 @table @var
4463 @item op
4464 The RTL object defining the operand.
4465 @item mode
4466 The machine mode of @var{op}.
4467 @item ival
4468 @samp{INTVAL (@var{op})}, if @var{op} is a @code{const_int}.
4469 @item hval
4470 @samp{CONST_DOUBLE_HIGH (@var{op})}, if @var{op} is an integer
4471 @code{const_double}.
4472 @item lval
4473 @samp{CONST_DOUBLE_LOW (@var{op})}, if @var{op} is an integer
4474 @code{const_double}.
4475 @item rval
4476 @samp{CONST_DOUBLE_REAL_VALUE (@var{op})}, if @var{op} is a floating-point
4477 @code{const_double}.
4478 @end table
4480 The @var{*val} variables should only be used once another piece of the
4481 expression has verified that @var{op} is the appropriate kind of RTL
4482 object.
4483 @end deffn
4485 Most non-register constraints should be defined with
4486 @code{define_constraint}.  The remaining two definition expressions
4487 are only appropriate for constraints that should be handled specially
4488 by @code{reload} if they fail to match.
4490 @deffn {MD Expression} define_memory_constraint name docstring exp
4491 Use this expression for constraints that match a subset of all memory
4492 operands: that is, @code{reload} can make them match by converting the
4493 operand to the form @samp{@w{(mem (reg @var{X}))}}, where @var{X} is a
4494 base register (from the register class specified by
4495 @code{BASE_REG_CLASS}, @pxref{Register Classes}).
4497 For example, on the S/390, some instructions do not accept arbitrary
4498 memory references, but only those that do not make use of an index
4499 register.  The constraint letter @samp{Q} is defined to represent a
4500 memory address of this type.  If @samp{Q} is defined with
4501 @code{define_memory_constraint}, a @samp{Q} constraint can handle any
4502 memory operand, because @code{reload} knows it can simply copy the
4503 memory address into a base register if required.  This is analogous to
4504 the way an @samp{o} constraint can handle any memory operand.
4506 The syntax and semantics are otherwise identical to
4507 @code{define_constraint}.
4508 @end deffn
4510 @deffn {MD Expression} define_special_memory_constraint name docstring exp
4511 Use this expression for constraints that match a subset of all memory
4512 operands: that is, @code{reload} can not make them match by reloading
4513 the address as it is described for @code{define_memory_constraint} or
4514 such address reload is undesirable with the performance point of view.
4516 For example, @code{define_special_memory_constraint} can be useful if
4517 specifically aligned memory is necessary or desirable for some insn
4518 operand.
4520 The syntax and semantics are otherwise identical to
4521 @code{define_constraint}.
4522 @end deffn
4524 @deffn {MD Expression} define_address_constraint name docstring exp
4525 Use this expression for constraints that match a subset of all address
4526 operands: that is, @code{reload} can make the constraint match by
4527 converting the operand to the form @samp{@w{(reg @var{X})}}, again
4528 with @var{X} a base register.
4530 Constraints defined with @code{define_address_constraint} can only be
4531 used with the @code{address_operand} predicate, or machine-specific
4532 predicates that work the same way.  They are treated analogously to
4533 the generic @samp{p} constraint.
4535 The syntax and semantics are otherwise identical to
4536 @code{define_constraint}.
4537 @end deffn
4539 For historical reasons, names beginning with the letters @samp{G H}
4540 are reserved for constraints that match only @code{const_double}s, and
4541 names beginning with the letters @samp{I J K L M N O P} are reserved
4542 for constraints that match only @code{const_int}s.  This may change in
4543 the future.  For the time being, constraints with these names must be
4544 written in a stylized form, so that @code{genpreds} can tell you did
4545 it correctly:
4547 @smallexample
4548 @group
4549 (define_constraint "[@var{GHIJKLMNOP}]@dots{}"
4550   "@var{doc}@dots{}"
4551   (and (match_code "const_int")  ; @r{@code{const_double} for G/H}
4552        @var{condition}@dots{}))            ; @r{usually a @code{match_test}}
4553 @end group
4554 @end smallexample
4555 @c the semicolons line up in the formatted manual
4557 It is fine to use names beginning with other letters for constraints
4558 that match @code{const_double}s or @code{const_int}s.
4560 Each docstring in a constraint definition should be one or more complete
4561 sentences, marked up in Texinfo format.  @emph{They are currently unused.}
4562 In the future they will be copied into the GCC manual, in @ref{Machine
4563 Constraints}, replacing the hand-maintained tables currently found in
4564 that section.  Also, in the future the compiler may use this to give
4565 more helpful diagnostics when poor choice of @code{asm} constraints
4566 causes a reload failure.
4568 If you put the pseudo-Texinfo directive @samp{@@internal} at the
4569 beginning of a docstring, then (in the future) it will appear only in
4570 the internals manual's version of the machine-specific constraint tables.
4571 Use this for constraints that should not appear in @code{asm} statements.
4573 @node C Constraint Interface
4574 @subsection Testing constraints from C
4575 @cindex testing constraints
4576 @cindex constraints, testing
4578 It is occasionally useful to test a constraint from C code rather than
4579 implicitly via the constraint string in a @code{match_operand}.  The
4580 generated file @file{tm_p.h} declares a few interfaces for working
4581 with constraints.  At present these are defined for all constraints
4582 except @code{g} (which is equivalent to @code{general_operand}).
4584 Some valid constraint names are not valid C identifiers, so there is a
4585 mangling scheme for referring to them from C@.  Constraint names that
4586 do not contain angle brackets or underscores are left unchanged.
4587 Underscores are doubled, each @samp{<} is replaced with @samp{_l}, and
4588 each @samp{>} with @samp{_g}.  Here are some examples:
4590 @c the @c's prevent double blank lines in the printed manual.
4591 @example
4592 @multitable {Original} {Mangled}
4593 @item @strong{Original} @tab @strong{Mangled}  @c
4594 @item @code{x}     @tab @code{x}       @c
4595 @item @code{P42x}  @tab @code{P42x}    @c
4596 @item @code{P4_x}  @tab @code{P4__x}   @c
4597 @item @code{P4>x}  @tab @code{P4_gx}   @c
4598 @item @code{P4>>}  @tab @code{P4_g_g}  @c
4599 @item @code{P4_g>} @tab @code{P4__g_g} @c
4600 @end multitable
4601 @end example
4603 Throughout this section, the variable @var{c} is either a constraint
4604 in the abstract sense, or a constant from @code{enum constraint_num};
4605 the variable @var{m} is a mangled constraint name (usually as part of
4606 a larger identifier).
4608 @deftp Enum constraint_num
4609 For each constraint except @code{g}, there is a corresponding
4610 enumeration constant: @samp{CONSTRAINT_} plus the mangled name of the
4611 constraint.  Functions that take an @code{enum constraint_num} as an
4612 argument expect one of these constants.
4613 @end deftp
4615 @deftypefun {inline bool} satisfies_constraint_@var{m} (rtx @var{exp})
4616 For each non-register constraint @var{m} except @code{g}, there is
4617 one of these functions; it returns @code{true} if @var{exp} satisfies the
4618 constraint.  These functions are only visible if @file{rtl.h} was included
4619 before @file{tm_p.h}.
4620 @end deftypefun
4622 @deftypefun bool constraint_satisfied_p (rtx @var{exp}, enum constraint_num @var{c})
4623 Like the @code{satisfies_constraint_@var{m}} functions, but the
4624 constraint to test is given as an argument, @var{c}.  If @var{c}
4625 specifies a register constraint, this function will always return
4626 @code{false}.
4627 @end deftypefun
4629 @deftypefun {enum reg_class} reg_class_for_constraint (enum constraint_num @var{c})
4630 Returns the register class associated with @var{c}.  If @var{c} is not
4631 a register constraint, or those registers are not available for the
4632 currently selected subtarget, returns @code{NO_REGS}.
4633 @end deftypefun
4635 Here is an example use of @code{satisfies_constraint_@var{m}}.  In
4636 peephole optimizations (@pxref{Peephole Definitions}), operand
4637 constraint strings are ignored, so if there are relevant constraints,
4638 they must be tested in the C condition.  In the example, the
4639 optimization is applied if operand 2 does @emph{not} satisfy the
4640 @samp{K} constraint.  (This is a simplified version of a peephole
4641 definition from the i386 machine description.)
4643 @smallexample
4644 (define_peephole2
4645   [(match_scratch:SI 3 "r")
4646    (set (match_operand:SI 0 "register_operand" "")
4647         (mult:SI (match_operand:SI 1 "memory_operand" "")
4648                  (match_operand:SI 2 "immediate_operand" "")))]
4650   "!satisfies_constraint_K (operands[2])"
4652   [(set (match_dup 3) (match_dup 1))
4653    (set (match_dup 0) (mult:SI (match_dup 3) (match_dup 2)))]
4655   "")
4656 @end smallexample
4658 @node Standard Names
4659 @section Standard Pattern Names For Generation
4660 @cindex standard pattern names
4661 @cindex pattern names
4662 @cindex names, pattern
4664 Here is a table of the instruction names that are meaningful in the RTL
4665 generation pass of the compiler.  Giving one of these names to an
4666 instruction pattern tells the RTL generation pass that it can use the
4667 pattern to accomplish a certain task.
4669 @table @asis
4670 @cindex @code{mov@var{m}} instruction pattern
4671 @item @samp{mov@var{m}}
4672 Here @var{m} stands for a two-letter machine mode name, in lowercase.
4673 This instruction pattern moves data with that machine mode from operand
4674 1 to operand 0.  For example, @samp{movsi} moves full-word data.
4676 If operand 0 is a @code{subreg} with mode @var{m} of a register whose
4677 own mode is wider than @var{m}, the effect of this instruction is
4678 to store the specified value in the part of the register that corresponds
4679 to mode @var{m}.  Bits outside of @var{m}, but which are within the
4680 same target word as the @code{subreg} are undefined.  Bits which are
4681 outside the target word are left unchanged.
4683 This class of patterns is special in several ways.  First of all, each
4684 of these names up to and including full word size @emph{must} be defined,
4685 because there is no other way to copy a datum from one place to another.
4686 If there are patterns accepting operands in larger modes,
4687 @samp{mov@var{m}} must be defined for integer modes of those sizes.
4689 Second, these patterns are not used solely in the RTL generation pass.
4690 Even the reload pass can generate move insns to copy values from stack
4691 slots into temporary registers.  When it does so, one of the operands is
4692 a hard register and the other is an operand that can need to be reloaded
4693 into a register.
4695 @findex force_reg
4696 Therefore, when given such a pair of operands, the pattern must generate
4697 RTL which needs no reloading and needs no temporary registers---no
4698 registers other than the operands.  For example, if you support the
4699 pattern with a @code{define_expand}, then in such a case the
4700 @code{define_expand} mustn't call @code{force_reg} or any other such
4701 function which might generate new pseudo registers.
4703 This requirement exists even for subword modes on a RISC machine where
4704 fetching those modes from memory normally requires several insns and
4705 some temporary registers.
4707 @findex change_address
4708 During reload a memory reference with an invalid address may be passed
4709 as an operand.  Such an address will be replaced with a valid address
4710 later in the reload pass.  In this case, nothing may be done with the
4711 address except to use it as it stands.  If it is copied, it will not be
4712 replaced with a valid address.  No attempt should be made to make such
4713 an address into a valid address and no routine (such as
4714 @code{change_address}) that will do so may be called.  Note that
4715 @code{general_operand} will fail when applied to such an address.
4717 @findex reload_in_progress
4718 The global variable @code{reload_in_progress} (which must be explicitly
4719 declared if required) can be used to determine whether such special
4720 handling is required.
4722 The variety of operands that have reloads depends on the rest of the
4723 machine description, but typically on a RISC machine these can only be
4724 pseudo registers that did not get hard registers, while on other
4725 machines explicit memory references will get optional reloads.
4727 If a scratch register is required to move an object to or from memory,
4728 it can be allocated using @code{gen_reg_rtx} prior to life analysis.
4730 If there are cases which need scratch registers during or after reload,
4731 you must provide an appropriate secondary_reload target hook.
4733 @findex can_create_pseudo_p
4734 The macro @code{can_create_pseudo_p} can be used to determine if it
4735 is unsafe to create new pseudo registers.  If this variable is nonzero, then
4736 it is unsafe to call @code{gen_reg_rtx} to allocate a new pseudo.
4738 The constraints on a @samp{mov@var{m}} must permit moving any hard
4739 register to any other hard register provided that
4740 @code{TARGET_HARD_REGNO_MODE_OK} permits mode @var{m} in both registers and
4741 @code{TARGET_REGISTER_MOVE_COST} applied to their classes returns a value
4742 of 2.
4744 It is obligatory to support floating point @samp{mov@var{m}}
4745 instructions into and out of any registers that can hold fixed point
4746 values, because unions and structures (which have modes @code{SImode} or
4747 @code{DImode}) can be in those registers and they may have floating
4748 point members.
4750 There may also be a need to support fixed point @samp{mov@var{m}}
4751 instructions in and out of floating point registers.  Unfortunately, I
4752 have forgotten why this was so, and I don't know whether it is still
4753 true.  If @code{TARGET_HARD_REGNO_MODE_OK} rejects fixed point values in
4754 floating point registers, then the constraints of the fixed point
4755 @samp{mov@var{m}} instructions must be designed to avoid ever trying to
4756 reload into a floating point register.
4758 @cindex @code{reload_in} instruction pattern
4759 @cindex @code{reload_out} instruction pattern
4760 @item @samp{reload_in@var{m}}
4761 @itemx @samp{reload_out@var{m}}
4762 These named patterns have been obsoleted by the target hook
4763 @code{secondary_reload}.
4765 Like @samp{mov@var{m}}, but used when a scratch register is required to
4766 move between operand 0 and operand 1.  Operand 2 describes the scratch
4767 register.  See the discussion of the @code{SECONDARY_RELOAD_CLASS}
4768 macro in @pxref{Register Classes}.
4770 There are special restrictions on the form of the @code{match_operand}s
4771 used in these patterns.  First, only the predicate for the reload
4772 operand is examined, i.e., @code{reload_in} examines operand 1, but not
4773 the predicates for operand 0 or 2.  Second, there may be only one
4774 alternative in the constraints.  Third, only a single register class
4775 letter may be used for the constraint; subsequent constraint letters
4776 are ignored.  As a special exception, an empty constraint string
4777 matches the @code{ALL_REGS} register class.  This may relieve ports
4778 of the burden of defining an @code{ALL_REGS} constraint letter just
4779 for these patterns.
4781 @cindex @code{movstrict@var{m}} instruction pattern
4782 @item @samp{movstrict@var{m}}
4783 Like @samp{mov@var{m}} except that if operand 0 is a @code{subreg}
4784 with mode @var{m} of a register whose natural mode is wider,
4785 the @samp{movstrict@var{m}} instruction is guaranteed not to alter
4786 any of the register except the part which belongs to mode @var{m}.
4788 @cindex @code{movmisalign@var{m}} instruction pattern
4789 @item @samp{movmisalign@var{m}}
4790 This variant of a move pattern is designed to load or store a value
4791 from a memory address that is not naturally aligned for its mode.
4792 For a store, the memory will be in operand 0; for a load, the memory
4793 will be in operand 1.  The other operand is guaranteed not to be a
4794 memory, so that it's easy to tell whether this is a load or store.
4796 This pattern is used by the autovectorizer, and when expanding a
4797 @code{MISALIGNED_INDIRECT_REF} expression.
4799 @cindex @code{load_multiple} instruction pattern
4800 @item @samp{load_multiple}
4801 Load several consecutive memory locations into consecutive registers.
4802 Operand 0 is the first of the consecutive registers, operand 1
4803 is the first memory location, and operand 2 is a constant: the
4804 number of consecutive registers.
4806 Define this only if the target machine really has such an instruction;
4807 do not define this if the most efficient way of loading consecutive
4808 registers from memory is to do them one at a time.
4810 On some machines, there are restrictions as to which consecutive
4811 registers can be stored into memory, such as particular starting or
4812 ending register numbers or only a range of valid counts.  For those
4813 machines, use a @code{define_expand} (@pxref{Expander Definitions})
4814 and make the pattern fail if the restrictions are not met.
4816 Write the generated insn as a @code{parallel} with elements being a
4817 @code{set} of one register from the appropriate memory location (you may
4818 also need @code{use} or @code{clobber} elements).  Use a
4819 @code{match_parallel} (@pxref{RTL Template}) to recognize the insn.  See
4820 @file{rs6000.md} for examples of the use of this insn pattern.
4822 @cindex @samp{store_multiple} instruction pattern
4823 @item @samp{store_multiple}
4824 Similar to @samp{load_multiple}, but store several consecutive registers
4825 into consecutive memory locations.  Operand 0 is the first of the
4826 consecutive memory locations, operand 1 is the first register, and
4827 operand 2 is a constant: the number of consecutive registers.
4829 @cindex @code{vec_load_lanes@var{m}@var{n}} instruction pattern
4830 @item @samp{vec_load_lanes@var{m}@var{n}}
4831 Perform an interleaved load of several vectors from memory operand 1
4832 into register operand 0.  Both operands have mode @var{m}.  The register
4833 operand is viewed as holding consecutive vectors of mode @var{n},
4834 while the memory operand is a flat array that contains the same number
4835 of elements.  The operation is equivalent to:
4837 @smallexample
4838 int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4839 for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4840   for (i = 0; i < c; i++)
4841     operand0[i][j] = operand1[j * c + i];
4842 @end smallexample
4844 For example, @samp{vec_load_lanestiv4hi} loads 8 16-bit values
4845 from memory into a register of mode @samp{TI}@.  The register
4846 contains two consecutive vectors of mode @samp{V4HI}@.
4848 This pattern can only be used if:
4849 @smallexample
4850 TARGET_ARRAY_MODE_SUPPORTED_P (@var{n}, @var{c})
4851 @end smallexample
4852 is true.  GCC assumes that, if a target supports this kind of
4853 instruction for some mode @var{n}, it also supports unaligned
4854 loads for vectors of mode @var{n}.
4856 This pattern is not allowed to @code{FAIL}.
4858 @cindex @code{vec_mask_load_lanes@var{m}@var{n}} instruction pattern
4859 @item @samp{vec_mask_load_lanes@var{m}@var{n}}
4860 Like @samp{vec_load_lanes@var{m}@var{n}}, but takes an additional
4861 mask operand (operand 2) that specifies which elements of the destination
4862 vectors should be loaded.  Other elements of the destination
4863 vectors are set to zero.  The operation is equivalent to:
4865 @smallexample
4866 int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4867 for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4868   if (operand2[j])
4869     for (i = 0; i < c; i++)
4870       operand0[i][j] = operand1[j * c + i];
4871   else
4872     for (i = 0; i < c; i++)
4873       operand0[i][j] = 0;
4874 @end smallexample
4876 This pattern is not allowed to @code{FAIL}.
4878 @cindex @code{vec_store_lanes@var{m}@var{n}} instruction pattern
4879 @item @samp{vec_store_lanes@var{m}@var{n}}
4880 Equivalent to @samp{vec_load_lanes@var{m}@var{n}}, with the memory
4881 and register operands reversed.  That is, the instruction is
4882 equivalent to:
4884 @smallexample
4885 int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4886 for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4887   for (i = 0; i < c; i++)
4888     operand0[j * c + i] = operand1[i][j];
4889 @end smallexample
4891 for a memory operand 0 and register operand 1.
4893 This pattern is not allowed to @code{FAIL}.
4895 @cindex @code{vec_mask_store_lanes@var{m}@var{n}} instruction pattern
4896 @item @samp{vec_mask_store_lanes@var{m}@var{n}}
4897 Like @samp{vec_store_lanes@var{m}@var{n}}, but takes an additional
4898 mask operand (operand 2) that specifies which elements of the source
4899 vectors should be stored.  The operation is equivalent to:
4901 @smallexample
4902 int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4903 for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4904   if (operand2[j])
4905     for (i = 0; i < c; i++)
4906       operand0[j * c + i] = operand1[i][j];
4907 @end smallexample
4909 This pattern is not allowed to @code{FAIL}.
4911 @cindex @code{gather_load@var{m}} instruction pattern
4912 @item @samp{gather_load@var{m}}
4913 Load several separate memory locations into a vector of mode @var{m}.
4914 Operand 1 is a scalar base address and operand 2 is a vector of
4915 offsets from that base.  Operand 0 is a destination vector with the
4916 same number of elements as the offset.  For each element index @var{i}:
4918 @itemize @bullet
4919 @item
4920 extend the offset element @var{i} to address width, using zero
4921 extension if operand 3 is 1 and sign extension if operand 3 is zero;
4922 @item
4923 multiply the extended offset by operand 4;
4924 @item
4925 add the result to the base; and
4926 @item
4927 load the value at that address into element @var{i} of operand 0.
4928 @end itemize
4930 The value of operand 3 does not matter if the offsets are already
4931 address width.
4933 @cindex @code{mask_gather_load@var{m}} instruction pattern
4934 @item @samp{mask_gather_load@var{m}}
4935 Like @samp{gather_load@var{m}}, but takes an extra mask operand as
4936 operand 5.  Bit @var{i} of the mask is set if element @var{i}
4937 of the result should be loaded from memory and clear if element @var{i}
4938 of the result should be set to zero.
4940 @cindex @code{vec_set@var{m}} instruction pattern
4941 @item @samp{vec_set@var{m}}
4942 Set given field in the vector value.  Operand 0 is the vector to modify,
4943 operand 1 is new value of field and operand 2 specify the field index.
4945 @cindex @code{vec_extract@var{m}@var{n}} instruction pattern
4946 @item @samp{vec_extract@var{m}@var{n}}
4947 Extract given field from the vector value.  Operand 1 is the vector, operand 2
4948 specify field index and operand 0 place to store value into.  The
4949 @var{n} mode is the mode of the field or vector of fields that should be
4950 extracted, should be either element mode of the vector mode @var{m}, or
4951 a vector mode with the same element mode and smaller number of elements.
4952 If @var{n} is a vector mode, the index is counted in units of that mode.
4954 @cindex @code{vec_init@var{m}@var{n}} instruction pattern
4955 @item @samp{vec_init@var{m}@var{n}}
4956 Initialize the vector to given values.  Operand 0 is the vector to initialize
4957 and operand 1 is parallel containing values for individual fields.  The
4958 @var{n} mode is the mode of the elements, should be either element mode of
4959 the vector mode @var{m}, or a vector mode with the same element mode and
4960 smaller number of elements.
4962 @cindex @code{vec_duplicate@var{m}} instruction pattern
4963 @item @samp{vec_duplicate@var{m}}
4964 Initialize vector output operand 0 so that each element has the value given
4965 by scalar input operand 1.  The vector has mode @var{m} and the scalar has
4966 the mode appropriate for one element of @var{m}.
4968 This pattern only handles duplicates of non-constant inputs.  Constant
4969 vectors go through the @code{mov@var{m}} pattern instead.
4971 This pattern is not allowed to @code{FAIL}.
4973 @cindex @code{vec_series@var{m}} instruction pattern
4974 @item @samp{vec_series@var{m}}
4975 Initialize vector output operand 0 so that element @var{i} is equal to
4976 operand 1 plus @var{i} times operand 2.  In other words, create a linear
4977 series whose base value is operand 1 and whose step is operand 2.
4979 The vector output has mode @var{m} and the scalar inputs have the mode
4980 appropriate for one element of @var{m}.  This pattern is not used for
4981 floating-point vectors, in order to avoid having to specify the
4982 rounding behavior for @var{i} > 1.
4984 This pattern is not allowed to @code{FAIL}.
4986 @cindex @code{while_ult@var{m}@var{n}} instruction pattern
4987 @item @code{while_ult@var{m}@var{n}}
4988 Set operand 0 to a mask that is true while incrementing operand 1
4989 gives a value that is less than operand 2.  Operand 0 has mode @var{n}
4990 and operands 1 and 2 are scalar integers of mode @var{m}.
4991 The operation is equivalent to:
4993 @smallexample
4994 operand0[0] = operand1 < operand2;
4995 for (i = 1; i < GET_MODE_NUNITS (@var{n}); i++)
4996   operand0[i] = operand0[i - 1] && (operand1 + i < operand2);
4997 @end smallexample
4999 @cindex @code{vec_cmp@var{m}@var{n}} instruction pattern
5000 @item @samp{vec_cmp@var{m}@var{n}}
5001 Output a vector comparison.  Operand 0 of mode @var{n} is the destination for
5002 predicate in operand 1 which is a signed vector comparison with operands of
5003 mode @var{m} in operands 2 and 3.  Predicate is computed by element-wise
5004 evaluation of the vector comparison with a truth value of all-ones and a false
5005 value of all-zeros.
5007 @cindex @code{vec_cmpu@var{m}@var{n}} instruction pattern
5008 @item @samp{vec_cmpu@var{m}@var{n}}
5009 Similar to @code{vec_cmp@var{m}@var{n}} but perform unsigned vector comparison.
5011 @cindex @code{vec_cmpeq@var{m}@var{n}} instruction pattern
5012 @item @samp{vec_cmpeq@var{m}@var{n}}
5013 Similar to @code{vec_cmp@var{m}@var{n}} but perform equality or non-equality
5014 vector comparison only.  If @code{vec_cmp@var{m}@var{n}}
5015 or @code{vec_cmpu@var{m}@var{n}} instruction pattern is supported,
5016 it will be preferred over @code{vec_cmpeq@var{m}@var{n}}, so there is
5017 no need to define this instruction pattern if the others are supported.
5019 @cindex @code{vcond@var{m}@var{n}} instruction pattern
5020 @item @samp{vcond@var{m}@var{n}}
5021 Output a conditional vector move.  Operand 0 is the destination to
5022 receive a combination of operand 1 and operand 2, which are of mode @var{m},
5023 dependent on the outcome of the predicate in operand 3 which is a signed
5024 vector comparison with operands of mode @var{n} in operands 4 and 5.  The
5025 modes @var{m} and @var{n} should have the same size.  Operand 0
5026 will be set to the value @var{op1} & @var{msk} | @var{op2} & ~@var{msk}
5027 where @var{msk} is computed by element-wise evaluation of the vector
5028 comparison with a truth value of all-ones and a false value of all-zeros.
5030 @cindex @code{vcondu@var{m}@var{n}} instruction pattern
5031 @item @samp{vcondu@var{m}@var{n}}
5032 Similar to @code{vcond@var{m}@var{n}} but performs unsigned vector
5033 comparison.
5035 @cindex @code{vcondeq@var{m}@var{n}} instruction pattern
5036 @item @samp{vcondeq@var{m}@var{n}}
5037 Similar to @code{vcond@var{m}@var{n}} but performs equality or
5038 non-equality vector comparison only.  If @code{vcond@var{m}@var{n}}
5039 or @code{vcondu@var{m}@var{n}} instruction pattern is supported,
5040 it will be preferred over @code{vcondeq@var{m}@var{n}}, so there is
5041 no need to define this instruction pattern if the others are supported.
5043 @cindex @code{vcond_mask_@var{m}@var{n}} instruction pattern
5044 @item @samp{vcond_mask_@var{m}@var{n}}
5045 Similar to @code{vcond@var{m}@var{n}} but operand 3 holds a pre-computed
5046 result of vector comparison.
5048 @cindex @code{maskload@var{m}@var{n}} instruction pattern
5049 @item @samp{maskload@var{m}@var{n}}
5050 Perform a masked load of vector from memory operand 1 of mode @var{m}
5051 into register operand 0.  Mask is provided in register operand 2 of
5052 mode @var{n}.
5054 This pattern is not allowed to @code{FAIL}.
5056 @cindex @code{maskstore@var{m}@var{n}} instruction pattern
5057 @item @samp{maskstore@var{m}@var{n}}
5058 Perform a masked store of vector from register operand 1 of mode @var{m}
5059 into memory operand 0.  Mask is provided in register operand 2 of
5060 mode @var{n}.
5062 This pattern is not allowed to @code{FAIL}.
5064 @cindex @code{vec_perm@var{m}} instruction pattern
5065 @item @samp{vec_perm@var{m}}
5066 Output a (variable) vector permutation.  Operand 0 is the destination
5067 to receive elements from operand 1 and operand 2, which are of mode
5068 @var{m}.  Operand 3 is the @dfn{selector}.  It is an integral mode
5069 vector of the same width and number of elements as mode @var{m}.
5071 The input elements are numbered from 0 in operand 1 through
5072 @math{2*@var{N}-1} in operand 2.  The elements of the selector must
5073 be computed modulo @math{2*@var{N}}.  Note that if
5074 @code{rtx_equal_p(operand1, operand2)}, this can be implemented
5075 with just operand 1 and selector elements modulo @var{N}.
5077 In order to make things easy for a number of targets, if there is no
5078 @samp{vec_perm} pattern for mode @var{m}, but there is for mode @var{q}
5079 where @var{q} is a vector of @code{QImode} of the same width as @var{m},
5080 the middle-end will lower the mode @var{m} @code{VEC_PERM_EXPR} to
5081 mode @var{q}.
5083 See also @code{TARGET_VECTORIZER_VEC_PERM_CONST}, which performs
5084 the analogous operation for constant selectors.
5086 @cindex @code{push@var{m}1} instruction pattern
5087 @item @samp{push@var{m}1}
5088 Output a push instruction.  Operand 0 is value to push.  Used only when
5089 @code{PUSH_ROUNDING} is defined.  For historical reason, this pattern may be
5090 missing and in such case an @code{mov} expander is used instead, with a
5091 @code{MEM} expression forming the push operation.  The @code{mov} expander
5092 method is deprecated.
5094 @cindex @code{add@var{m}3} instruction pattern
5095 @item @samp{add@var{m}3}
5096 Add operand 2 and operand 1, storing the result in operand 0.  All operands
5097 must have mode @var{m}.  This can be used even on two-address machines, by
5098 means of constraints requiring operands 1 and 0 to be the same location.
5100 @cindex @code{ssadd@var{m}3} instruction pattern
5101 @cindex @code{usadd@var{m}3} instruction pattern
5102 @cindex @code{sub@var{m}3} instruction pattern
5103 @cindex @code{sssub@var{m}3} instruction pattern
5104 @cindex @code{ussub@var{m}3} instruction pattern
5105 @cindex @code{mul@var{m}3} instruction pattern
5106 @cindex @code{ssmul@var{m}3} instruction pattern
5107 @cindex @code{usmul@var{m}3} instruction pattern
5108 @cindex @code{div@var{m}3} instruction pattern
5109 @cindex @code{ssdiv@var{m}3} instruction pattern
5110 @cindex @code{udiv@var{m}3} instruction pattern
5111 @cindex @code{usdiv@var{m}3} instruction pattern
5112 @cindex @code{mod@var{m}3} instruction pattern
5113 @cindex @code{umod@var{m}3} instruction pattern
5114 @cindex @code{umin@var{m}3} instruction pattern
5115 @cindex @code{umax@var{m}3} instruction pattern
5116 @cindex @code{and@var{m}3} instruction pattern
5117 @cindex @code{ior@var{m}3} instruction pattern
5118 @cindex @code{xor@var{m}3} instruction pattern
5119 @item @samp{ssadd@var{m}3}, @samp{usadd@var{m}3}
5120 @itemx @samp{sub@var{m}3}, @samp{sssub@var{m}3}, @samp{ussub@var{m}3}
5121 @itemx @samp{mul@var{m}3}, @samp{ssmul@var{m}3}, @samp{usmul@var{m}3}
5122 @itemx @samp{div@var{m}3}, @samp{ssdiv@var{m}3}
5123 @itemx @samp{udiv@var{m}3}, @samp{usdiv@var{m}3}
5124 @itemx @samp{mod@var{m}3}, @samp{umod@var{m}3}
5125 @itemx @samp{umin@var{m}3}, @samp{umax@var{m}3}
5126 @itemx @samp{and@var{m}3}, @samp{ior@var{m}3}, @samp{xor@var{m}3}
5127 Similar, for other arithmetic operations.
5129 @cindex @code{addv@var{m}4} instruction pattern
5130 @item @samp{addv@var{m}4}
5131 Like @code{add@var{m}3} but takes a @code{code_label} as operand 3 and
5132 emits code to jump to it if signed overflow occurs during the addition.
5133 This pattern is used to implement the built-in functions performing
5134 signed integer addition with overflow checking.
5136 @cindex @code{subv@var{m}4} instruction pattern
5137 @cindex @code{mulv@var{m}4} instruction pattern
5138 @item @samp{subv@var{m}4}, @samp{mulv@var{m}4}
5139 Similar, for other signed arithmetic operations.
5141 @cindex @code{uaddv@var{m}4} instruction pattern
5142 @item @samp{uaddv@var{m}4}
5143 Like @code{addv@var{m}4} but for unsigned addition.  That is to
5144 say, the operation is the same as signed addition but the jump
5145 is taken only on unsigned overflow.
5147 @cindex @code{usubv@var{m}4} instruction pattern
5148 @cindex @code{umulv@var{m}4} instruction pattern
5149 @item @samp{usubv@var{m}4}, @samp{umulv@var{m}4}
5150 Similar, for other unsigned arithmetic operations.
5152 @cindex @code{addptr@var{m}3} instruction pattern
5153 @item @samp{addptr@var{m}3}
5154 Like @code{add@var{m}3} but is guaranteed to only be used for address
5155 calculations.  The expanded code is not allowed to clobber the
5156 condition code.  It only needs to be defined if @code{add@var{m}3}
5157 sets the condition code.  If adds used for address calculations and
5158 normal adds are not compatible it is required to expand a distinct
5159 pattern (e.g. using an unspec).  The pattern is used by LRA to emit
5160 address calculations.  @code{add@var{m}3} is used if
5161 @code{addptr@var{m}3} is not defined.
5163 @cindex @code{fma@var{m}4} instruction pattern
5164 @item @samp{fma@var{m}4}
5165 Multiply operand 2 and operand 1, then add operand 3, storing the
5166 result in operand 0 without doing an intermediate rounding step.  All
5167 operands must have mode @var{m}.  This pattern is used to implement
5168 the @code{fma}, @code{fmaf}, and @code{fmal} builtin functions from
5169 the ISO C99 standard.
5171 @cindex @code{fms@var{m}4} instruction pattern
5172 @item @samp{fms@var{m}4}
5173 Like @code{fma@var{m}4}, except operand 3 subtracted from the
5174 product instead of added to the product.  This is represented
5175 in the rtl as
5177 @smallexample
5178 (fma:@var{m} @var{op1} @var{op2} (neg:@var{m} @var{op3}))
5179 @end smallexample
5181 @cindex @code{fnma@var{m}4} instruction pattern
5182 @item @samp{fnma@var{m}4}
5183 Like @code{fma@var{m}4} except that the intermediate product
5184 is negated before being added to operand 3.  This is represented
5185 in the rtl as
5187 @smallexample
5188 (fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} @var{op3})
5189 @end smallexample
5191 @cindex @code{fnms@var{m}4} instruction pattern
5192 @item @samp{fnms@var{m}4}
5193 Like @code{fms@var{m}4} except that the intermediate product
5194 is negated before subtracting operand 3.  This is represented
5195 in the rtl as
5197 @smallexample
5198 (fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} (neg:@var{m} @var{op3}))
5199 @end smallexample
5201 @cindex @code{min@var{m}3} instruction pattern
5202 @cindex @code{max@var{m}3} instruction pattern
5203 @item @samp{smin@var{m}3}, @samp{smax@var{m}3}
5204 Signed minimum and maximum operations.  When used with floating point,
5205 if both operands are zeros, or if either operand is @code{NaN}, then
5206 it is unspecified which of the two operands is returned as the result.
5208 @cindex @code{fmin@var{m}3} instruction pattern
5209 @cindex @code{fmax@var{m}3} instruction pattern
5210 @item @samp{fmin@var{m}3}, @samp{fmax@var{m}3}
5211 IEEE-conformant minimum and maximum operations.  If one operand is a quiet
5212 @code{NaN}, then the other operand is returned.  If both operands are quiet
5213 @code{NaN}, then a quiet @code{NaN} is returned.  In the case when gcc supports
5214 signaling @code{NaN} (-fsignaling-nans) an invalid floating point exception is
5215 raised and a quiet @code{NaN} is returned.
5217 All operands have mode @var{m}, which is a scalar or vector
5218 floating-point mode.  These patterns are not allowed to @code{FAIL}.
5220 @cindex @code{reduc_smin_scal_@var{m}} instruction pattern
5221 @cindex @code{reduc_smax_scal_@var{m}} instruction pattern
5222 @item @samp{reduc_smin_scal_@var{m}}, @samp{reduc_smax_scal_@var{m}}
5223 Find the signed minimum/maximum of the elements of a vector. The vector is
5224 operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5225 the elements of the input vector.
5227 @cindex @code{reduc_umin_scal_@var{m}} instruction pattern
5228 @cindex @code{reduc_umax_scal_@var{m}} instruction pattern
5229 @item @samp{reduc_umin_scal_@var{m}}, @samp{reduc_umax_scal_@var{m}}
5230 Find the unsigned minimum/maximum of the elements of a vector. The vector is
5231 operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5232 the elements of the input vector.
5234 @cindex @code{reduc_plus_scal_@var{m}} instruction pattern
5235 @item @samp{reduc_plus_scal_@var{m}}
5236 Compute the sum of the elements of a vector. The vector is operand 1, and
5237 operand 0 is the scalar result, with mode equal to the mode of the elements of
5238 the input vector.
5240 @cindex @code{reduc_and_scal_@var{m}} instruction pattern
5241 @item @samp{reduc_and_scal_@var{m}}
5242 @cindex @code{reduc_ior_scal_@var{m}} instruction pattern
5243 @itemx @samp{reduc_ior_scal_@var{m}}
5244 @cindex @code{reduc_xor_scal_@var{m}} instruction pattern
5245 @itemx @samp{reduc_xor_scal_@var{m}}
5246 Compute the bitwise @code{AND}/@code{IOR}/@code{XOR} reduction of the elements
5247 of a vector of mode @var{m}.  Operand 1 is the vector input and operand 0
5248 is the scalar result.  The mode of the scalar result is the same as one
5249 element of @var{m}.
5251 @cindex @code{extract_last_@var{m}} instruction pattern
5252 @item @code{extract_last_@var{m}}
5253 Find the last set bit in mask operand 1 and extract the associated element
5254 of vector operand 2.  Store the result in scalar operand 0.  Operand 2
5255 has vector mode @var{m} while operand 0 has the mode appropriate for one
5256 element of @var{m}.  Operand 1 has the usual mask mode for vectors of mode
5257 @var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5259 @cindex @code{fold_extract_last_@var{m}} instruction pattern
5260 @item @code{fold_extract_last_@var{m}}
5261 If any bits of mask operand 2 are set, find the last set bit, extract
5262 the associated element from vector operand 3, and store the result
5263 in operand 0.  Store operand 1 in operand 0 otherwise.  Operand 3
5264 has mode @var{m} and operands 0 and 1 have the mode appropriate for
5265 one element of @var{m}.  Operand 2 has the usual mask mode for vectors
5266 of mode @var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5268 @cindex @code{fold_left_plus_@var{m}} instruction pattern
5269 @item @code{fold_left_plus_@var{m}}
5270 Take scalar operand 1 and successively add each element from vector
5271 operand 2.  Store the result in scalar operand 0.  The vector has
5272 mode @var{m} and the scalars have the mode appropriate for one
5273 element of @var{m}.  The operation is strictly in-order: there is
5274 no reassociation.
5276 @cindex @code{sdot_prod@var{m}} instruction pattern
5277 @item @samp{sdot_prod@var{m}}
5278 @cindex @code{udot_prod@var{m}} instruction pattern
5279 @itemx @samp{udot_prod@var{m}}
5280 Compute the sum of the products of two signed/unsigned elements.
5281 Operand 1 and operand 2 are of the same mode. Their product, which is of a
5282 wider mode, is computed and added to operand 3. Operand 3 is of a mode equal or
5283 wider than the mode of the product. The result is placed in operand 0, which
5284 is of the same mode as operand 3.
5286 @cindex @code{ssad@var{m}} instruction pattern
5287 @item @samp{ssad@var{m}}
5288 @cindex @code{usad@var{m}} instruction pattern
5289 @item @samp{usad@var{m}}
5290 Compute the sum of absolute differences of two signed/unsigned elements.
5291 Operand 1 and operand 2 are of the same mode. Their absolute difference, which
5292 is of a wider mode, is computed and added to operand 3. Operand 3 is of a mode
5293 equal or wider than the mode of the absolute difference. The result is placed
5294 in operand 0, which is of the same mode as operand 3.
5296 @cindex @code{widen_ssum@var{m3}} instruction pattern
5297 @item @samp{widen_ssum@var{m3}}
5298 @cindex @code{widen_usum@var{m3}} instruction pattern
5299 @itemx @samp{widen_usum@var{m3}}
5300 Operands 0 and 2 are of the same mode, which is wider than the mode of
5301 operand 1. Add operand 1 to operand 2 and place the widened result in
5302 operand 0. (This is used express accumulation of elements into an accumulator
5303 of a wider mode.)
5305 @cindex @code{vec_shl_insert_@var{m}} instruction pattern
5306 @item @samp{vec_shl_insert_@var{m}}
5307 Shift the elements in vector input operand 1 left one element (i.e.
5308 away from element 0) and fill the vacated element 0 with the scalar
5309 in operand 2.  Store the result in vector output operand 0.  Operands
5310 0 and 1 have mode @var{m} and operand 2 has the mode appropriate for
5311 one element of @var{m}.
5313 @cindex @code{vec_shr_@var{m}} instruction pattern
5314 @item @samp{vec_shr_@var{m}}
5315 Whole vector right shift in bits, i.e. towards element 0.
5316 Operand 1 is a vector to be shifted.
5317 Operand 2 is an integer shift amount in bits.
5318 Operand 0 is where the resulting shifted vector is stored.
5319 The output and input vectors should have the same modes.
5321 @cindex @code{vec_pack_trunc_@var{m}} instruction pattern
5322 @item @samp{vec_pack_trunc_@var{m}}
5323 Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5324 are vectors of the same mode having N integral or floating point elements
5325 of size S@.  Operand 0 is the resulting vector in which 2*N elements of
5326 size N/2 are concatenated after narrowing them down using truncation.
5328 @cindex @code{vec_pack_ssat_@var{m}} instruction pattern
5329 @cindex @code{vec_pack_usat_@var{m}} instruction pattern
5330 @item @samp{vec_pack_ssat_@var{m}}, @samp{vec_pack_usat_@var{m}}
5331 Narrow (demote) and merge the elements of two vectors.  Operands 1 and 2
5332 are vectors of the same mode having N integral elements of size S.
5333 Operand 0 is the resulting vector in which the elements of the two input
5334 vectors are concatenated after narrowing them down using signed/unsigned
5335 saturating arithmetic.
5337 @cindex @code{vec_pack_sfix_trunc_@var{m}} instruction pattern
5338 @cindex @code{vec_pack_ufix_trunc_@var{m}} instruction pattern
5339 @item @samp{vec_pack_sfix_trunc_@var{m}}, @samp{vec_pack_ufix_trunc_@var{m}}
5340 Narrow, convert to signed/unsigned integral type and merge the elements
5341 of two vectors.  Operands 1 and 2 are vectors of the same mode having N
5342 floating point elements of size S@.  Operand 0 is the resulting vector
5343 in which 2*N elements of size N/2 are concatenated.
5345 @cindex @code{vec_unpacks_hi_@var{m}} instruction pattern
5346 @cindex @code{vec_unpacks_lo_@var{m}} instruction pattern
5347 @item @samp{vec_unpacks_hi_@var{m}}, @samp{vec_unpacks_lo_@var{m}}
5348 Extract and widen (promote) the high/low part of a vector of signed
5349 integral or floating point elements.  The input vector (operand 1) has N
5350 elements of size S@.  Widen (promote) the high/low elements of the vector
5351 using signed or floating point extension and place the resulting N/2
5352 values of size 2*S in the output vector (operand 0).
5354 @cindex @code{vec_unpacku_hi_@var{m}} instruction pattern
5355 @cindex @code{vec_unpacku_lo_@var{m}} instruction pattern
5356 @item @samp{vec_unpacku_hi_@var{m}}, @samp{vec_unpacku_lo_@var{m}}
5357 Extract and widen (promote) the high/low part of a vector of unsigned
5358 integral elements.  The input vector (operand 1) has N elements of size S.
5359 Widen (promote) the high/low elements of the vector using zero extension and
5360 place the resulting N/2 values of size 2*S in the output vector (operand 0).
5362 @cindex @code{vec_unpacks_float_hi_@var{m}} instruction pattern
5363 @cindex @code{vec_unpacks_float_lo_@var{m}} instruction pattern
5364 @cindex @code{vec_unpacku_float_hi_@var{m}} instruction pattern
5365 @cindex @code{vec_unpacku_float_lo_@var{m}} instruction pattern
5366 @item @samp{vec_unpacks_float_hi_@var{m}}, @samp{vec_unpacks_float_lo_@var{m}}
5367 @itemx @samp{vec_unpacku_float_hi_@var{m}}, @samp{vec_unpacku_float_lo_@var{m}}
5368 Extract, convert to floating point type and widen the high/low part of a
5369 vector of signed/unsigned integral elements.  The input vector (operand 1)
5370 has N elements of size S@.  Convert the high/low elements of the vector using
5371 floating point conversion and place the resulting N/2 values of size 2*S in
5372 the output vector (operand 0).
5374 @cindex @code{vec_widen_umult_hi_@var{m}} instruction pattern
5375 @cindex @code{vec_widen_umult_lo_@var{m}} instruction pattern
5376 @cindex @code{vec_widen_smult_hi_@var{m}} instruction pattern
5377 @cindex @code{vec_widen_smult_lo_@var{m}} instruction pattern
5378 @cindex @code{vec_widen_umult_even_@var{m}} instruction pattern
5379 @cindex @code{vec_widen_umult_odd_@var{m}} instruction pattern
5380 @cindex @code{vec_widen_smult_even_@var{m}} instruction pattern
5381 @cindex @code{vec_widen_smult_odd_@var{m}} instruction pattern
5382 @item @samp{vec_widen_umult_hi_@var{m}}, @samp{vec_widen_umult_lo_@var{m}}
5383 @itemx @samp{vec_widen_smult_hi_@var{m}}, @samp{vec_widen_smult_lo_@var{m}}
5384 @itemx @samp{vec_widen_umult_even_@var{m}}, @samp{vec_widen_umult_odd_@var{m}}
5385 @itemx @samp{vec_widen_smult_even_@var{m}}, @samp{vec_widen_smult_odd_@var{m}}
5386 Signed/Unsigned widening multiplication.  The two inputs (operands 1 and 2)
5387 are vectors with N signed/unsigned elements of size S@.  Multiply the high/low
5388 or even/odd elements of the two vectors, and put the N/2 products of size 2*S
5389 in the output vector (operand 0). A target shouldn't implement even/odd pattern
5390 pair if it is less efficient than lo/hi one.
5392 @cindex @code{vec_widen_ushiftl_hi_@var{m}} instruction pattern
5393 @cindex @code{vec_widen_ushiftl_lo_@var{m}} instruction pattern
5394 @cindex @code{vec_widen_sshiftl_hi_@var{m}} instruction pattern
5395 @cindex @code{vec_widen_sshiftl_lo_@var{m}} instruction pattern
5396 @item @samp{vec_widen_ushiftl_hi_@var{m}}, @samp{vec_widen_ushiftl_lo_@var{m}}
5397 @itemx @samp{vec_widen_sshiftl_hi_@var{m}}, @samp{vec_widen_sshiftl_lo_@var{m}}
5398 Signed/Unsigned widening shift left.  The first input (operand 1) is a vector
5399 with N signed/unsigned elements of size S@.  Operand 2 is a constant.  Shift
5400 the high/low elements of operand 1, and put the N/2 results of size 2*S in the
5401 output vector (operand 0).
5403 @cindex @code{mulhisi3} instruction pattern
5404 @item @samp{mulhisi3}
5405 Multiply operands 1 and 2, which have mode @code{HImode}, and store
5406 a @code{SImode} product in operand 0.
5408 @cindex @code{mulqihi3} instruction pattern
5409 @cindex @code{mulsidi3} instruction pattern
5410 @item @samp{mulqihi3}, @samp{mulsidi3}
5411 Similar widening-multiplication instructions of other widths.
5413 @cindex @code{umulqihi3} instruction pattern
5414 @cindex @code{umulhisi3} instruction pattern
5415 @cindex @code{umulsidi3} instruction pattern
5416 @item @samp{umulqihi3}, @samp{umulhisi3}, @samp{umulsidi3}
5417 Similar widening-multiplication instructions that do unsigned
5418 multiplication.
5420 @cindex @code{usmulqihi3} instruction pattern
5421 @cindex @code{usmulhisi3} instruction pattern
5422 @cindex @code{usmulsidi3} instruction pattern
5423 @item @samp{usmulqihi3}, @samp{usmulhisi3}, @samp{usmulsidi3}
5424 Similar widening-multiplication instructions that interpret the first
5425 operand as unsigned and the second operand as signed, then do a signed
5426 multiplication.
5428 @cindex @code{smul@var{m}3_highpart} instruction pattern
5429 @item @samp{smul@var{m}3_highpart}
5430 Perform a signed multiplication of operands 1 and 2, which have mode
5431 @var{m}, and store the most significant half of the product in operand 0.
5432 The least significant half of the product is discarded.
5434 @cindex @code{umul@var{m}3_highpart} instruction pattern
5435 @item @samp{umul@var{m}3_highpart}
5436 Similar, but the multiplication is unsigned.
5438 @cindex @code{madd@var{m}@var{n}4} instruction pattern
5439 @item @samp{madd@var{m}@var{n}4}
5440 Multiply operands 1 and 2, sign-extend them to mode @var{n}, add
5441 operand 3, and store the result in operand 0.  Operands 1 and 2
5442 have mode @var{m} and operands 0 and 3 have mode @var{n}.
5443 Both modes must be integer or fixed-point modes and @var{n} must be twice
5444 the size of @var{m}.
5446 In other words, @code{madd@var{m}@var{n}4} is like
5447 @code{mul@var{m}@var{n}3} except that it also adds operand 3.
5449 These instructions are not allowed to @code{FAIL}.
5451 @cindex @code{umadd@var{m}@var{n}4} instruction pattern
5452 @item @samp{umadd@var{m}@var{n}4}
5453 Like @code{madd@var{m}@var{n}4}, but zero-extend the multiplication
5454 operands instead of sign-extending them.
5456 @cindex @code{ssmadd@var{m}@var{n}4} instruction pattern
5457 @item @samp{ssmadd@var{m}@var{n}4}
5458 Like @code{madd@var{m}@var{n}4}, but all involved operations must be
5459 signed-saturating.
5461 @cindex @code{usmadd@var{m}@var{n}4} instruction pattern
5462 @item @samp{usmadd@var{m}@var{n}4}
5463 Like @code{umadd@var{m}@var{n}4}, but all involved operations must be
5464 unsigned-saturating.
5466 @cindex @code{msub@var{m}@var{n}4} instruction pattern
5467 @item @samp{msub@var{m}@var{n}4}
5468 Multiply operands 1 and 2, sign-extend them to mode @var{n}, subtract the
5469 result from operand 3, and store the result in operand 0.  Operands 1 and 2
5470 have mode @var{m} and operands 0 and 3 have mode @var{n}.
5471 Both modes must be integer or fixed-point modes and @var{n} must be twice
5472 the size of @var{m}.
5474 In other words, @code{msub@var{m}@var{n}4} is like
5475 @code{mul@var{m}@var{n}3} except that it also subtracts the result
5476 from operand 3.
5478 These instructions are not allowed to @code{FAIL}.
5480 @cindex @code{umsub@var{m}@var{n}4} instruction pattern
5481 @item @samp{umsub@var{m}@var{n}4}
5482 Like @code{msub@var{m}@var{n}4}, but zero-extend the multiplication
5483 operands instead of sign-extending them.
5485 @cindex @code{ssmsub@var{m}@var{n}4} instruction pattern
5486 @item @samp{ssmsub@var{m}@var{n}4}
5487 Like @code{msub@var{m}@var{n}4}, but all involved operations must be
5488 signed-saturating.
5490 @cindex @code{usmsub@var{m}@var{n}4} instruction pattern
5491 @item @samp{usmsub@var{m}@var{n}4}
5492 Like @code{umsub@var{m}@var{n}4}, but all involved operations must be
5493 unsigned-saturating.
5495 @cindex @code{divmod@var{m}4} instruction pattern
5496 @item @samp{divmod@var{m}4}
5497 Signed division that produces both a quotient and a remainder.
5498 Operand 1 is divided by operand 2 to produce a quotient stored
5499 in operand 0 and a remainder stored in operand 3.
5501 For machines with an instruction that produces both a quotient and a
5502 remainder, provide a pattern for @samp{divmod@var{m}4} but do not
5503 provide patterns for @samp{div@var{m}3} and @samp{mod@var{m}3}.  This
5504 allows optimization in the relatively common case when both the quotient
5505 and remainder are computed.
5507 If an instruction that just produces a quotient or just a remainder
5508 exists and is more efficient than the instruction that produces both,
5509 write the output routine of @samp{divmod@var{m}4} to call
5510 @code{find_reg_note} and look for a @code{REG_UNUSED} note on the
5511 quotient or remainder and generate the appropriate instruction.
5513 @cindex @code{udivmod@var{m}4} instruction pattern
5514 @item @samp{udivmod@var{m}4}
5515 Similar, but does unsigned division.
5517 @anchor{shift patterns}
5518 @cindex @code{ashl@var{m}3} instruction pattern
5519 @cindex @code{ssashl@var{m}3} instruction pattern
5520 @cindex @code{usashl@var{m}3} instruction pattern
5521 @item @samp{ashl@var{m}3}, @samp{ssashl@var{m}3}, @samp{usashl@var{m}3}
5522 Arithmetic-shift operand 1 left by a number of bits specified by operand
5523 2, and store the result in operand 0.  Here @var{m} is the mode of
5524 operand 0 and operand 1; operand 2's mode is specified by the
5525 instruction pattern, and the compiler will convert the operand to that
5526 mode before generating the instruction.  The shift or rotate expander
5527 or instruction pattern should explicitly specify the mode of the operand 2,
5528 it should never be @code{VOIDmode}.  The meaning of out-of-range shift
5529 counts can optionally be specified by @code{TARGET_SHIFT_TRUNCATION_MASK}.
5530 @xref{TARGET_SHIFT_TRUNCATION_MASK}.  Operand 2 is always a scalar type.
5532 @cindex @code{ashr@var{m}3} instruction pattern
5533 @cindex @code{lshr@var{m}3} instruction pattern
5534 @cindex @code{rotl@var{m}3} instruction pattern
5535 @cindex @code{rotr@var{m}3} instruction pattern
5536 @item @samp{ashr@var{m}3}, @samp{lshr@var{m}3}, @samp{rotl@var{m}3}, @samp{rotr@var{m}3}
5537 Other shift and rotate instructions, analogous to the
5538 @code{ashl@var{m}3} instructions.  Operand 2 is always a scalar type.
5540 @cindex @code{vashl@var{m}3} instruction pattern
5541 @cindex @code{vashr@var{m}3} instruction pattern
5542 @cindex @code{vlshr@var{m}3} instruction pattern
5543 @cindex @code{vrotl@var{m}3} instruction pattern
5544 @cindex @code{vrotr@var{m}3} instruction pattern
5545 @item @samp{vashl@var{m}3}, @samp{vashr@var{m}3}, @samp{vlshr@var{m}3}, @samp{vrotl@var{m}3}, @samp{vrotr@var{m}3}
5546 Vector shift and rotate instructions that take vectors as operand 2
5547 instead of a scalar type.
5549 @cindex @code{bswap@var{m}2} instruction pattern
5550 @item @samp{bswap@var{m}2}
5551 Reverse the order of bytes of operand 1 and store the result in operand 0.
5553 @cindex @code{neg@var{m}2} instruction pattern
5554 @cindex @code{ssneg@var{m}2} instruction pattern
5555 @cindex @code{usneg@var{m}2} instruction pattern
5556 @item @samp{neg@var{m}2}, @samp{ssneg@var{m}2}, @samp{usneg@var{m}2}
5557 Negate operand 1 and store the result in operand 0.
5559 @cindex @code{negv@var{m}3} instruction pattern
5560 @item @samp{negv@var{m}3}
5561 Like @code{neg@var{m}2} but takes a @code{code_label} as operand 2 and
5562 emits code to jump to it if signed overflow occurs during the negation.
5564 @cindex @code{abs@var{m}2} instruction pattern
5565 @item @samp{abs@var{m}2}
5566 Store the absolute value of operand 1 into operand 0.
5568 @cindex @code{sqrt@var{m}2} instruction pattern
5569 @item @samp{sqrt@var{m}2}
5570 Store the square root of operand 1 into operand 0.  Both operands have
5571 mode @var{m}, which is a scalar or vector floating-point mode.
5573 This pattern is not allowed to @code{FAIL}.
5575 @cindex @code{rsqrt@var{m}2} instruction pattern
5576 @item @samp{rsqrt@var{m}2}
5577 Store the reciprocal of the square root of operand 1 into operand 0.
5578 Both operands have mode @var{m}, which is a scalar or vector
5579 floating-point mode.
5581 On most architectures this pattern is only approximate, so either
5582 its C condition or the @code{TARGET_OPTAB_SUPPORTED_P} hook should
5583 check for the appropriate math flags.  (Using the C condition is
5584 more direct, but using @code{TARGET_OPTAB_SUPPORTED_P} can be useful
5585 if a target-specific built-in also uses the @samp{rsqrt@var{m}2}
5586 pattern.)
5588 This pattern is not allowed to @code{FAIL}.
5590 @cindex @code{fmod@var{m}3} instruction pattern
5591 @item @samp{fmod@var{m}3}
5592 Store the remainder of dividing operand 1 by operand 2 into
5593 operand 0, rounded towards zero to an integer.  All operands have
5594 mode @var{m}, which is a scalar or vector floating-point mode.
5596 This pattern is not allowed to @code{FAIL}.
5598 @cindex @code{remainder@var{m}3} instruction pattern
5599 @item @samp{remainder@var{m}3}
5600 Store the remainder of dividing operand 1 by operand 2 into
5601 operand 0, rounded to the nearest integer.  All operands have
5602 mode @var{m}, which is a scalar or vector floating-point mode.
5604 This pattern is not allowed to @code{FAIL}.
5606 @cindex @code{scalb@var{m}3} instruction pattern
5607 @item @samp{scalb@var{m}3}
5608 Raise @code{FLT_RADIX} to the power of operand 2, multiply it by
5609 operand 1, and store the result in operand 0.  All operands have
5610 mode @var{m}, which is a scalar or vector floating-point mode.
5612 This pattern is not allowed to @code{FAIL}.
5614 @cindex @code{ldexp@var{m}3} instruction pattern
5615 @item @samp{ldexp@var{m}3}
5616 Raise 2 to the power of operand 2, multiply it by operand 1, and store
5617 the result in operand 0.  Operands 0 and 1 have mode @var{m}, which is
5618 a scalar or vector floating-point mode.  Operand 2's mode has
5619 the same number of elements as @var{m} and each element is wide
5620 enough to store an @code{int}.  The integers are signed.
5622 This pattern is not allowed to @code{FAIL}.
5624 @cindex @code{cos@var{m}2} instruction pattern
5625 @item @samp{cos@var{m}2}
5626 Store the cosine of operand 1 into operand 0.  Both operands have
5627 mode @var{m}, which is a scalar or vector floating-point mode.
5629 This pattern is not allowed to @code{FAIL}.
5631 @cindex @code{sin@var{m}2} instruction pattern
5632 @item @samp{sin@var{m}2}
5633 Store the sine of operand 1 into operand 0.  Both operands have
5634 mode @var{m}, which is a scalar or vector floating-point mode.
5636 This pattern is not allowed to @code{FAIL}.
5638 @cindex @code{sincos@var{m}3} instruction pattern
5639 @item @samp{sincos@var{m}3}
5640 Store the cosine of operand 2 into operand 0 and the sine of
5641 operand 2 into operand 1.  All operands have mode @var{m},
5642 which is a scalar or vector floating-point mode.
5644 Targets that can calculate the sine and cosine simultaneously can
5645 implement this pattern as opposed to implementing individual
5646 @code{sin@var{m}2} and @code{cos@var{m}2} patterns.  The @code{sin}
5647 and @code{cos} built-in functions will then be expanded to the
5648 @code{sincos@var{m}3} pattern, with one of the output values
5649 left unused.
5651 @cindex @code{tan@var{m}2} instruction pattern
5652 @item @samp{tan@var{m}2}
5653 Store the tangent of operand 1 into operand 0.  Both operands have
5654 mode @var{m}, which is a scalar or vector floating-point mode.
5656 This pattern is not allowed to @code{FAIL}.
5658 @cindex @code{asin@var{m}2} instruction pattern
5659 @item @samp{asin@var{m}2}
5660 Store the arc sine of operand 1 into operand 0.  Both operands have
5661 mode @var{m}, which is a scalar or vector floating-point mode.
5663 This pattern is not allowed to @code{FAIL}.
5665 @cindex @code{acos@var{m}2} instruction pattern
5666 @item @samp{acos@var{m}2}
5667 Store the arc cosine of operand 1 into operand 0.  Both operands have
5668 mode @var{m}, which is a scalar or vector floating-point mode.
5670 This pattern is not allowed to @code{FAIL}.
5672 @cindex @code{atan@var{m}2} instruction pattern
5673 @item @samp{atan@var{m}2}
5674 Store the arc tangent of operand 1 into operand 0.  Both operands have
5675 mode @var{m}, which is a scalar or vector floating-point mode.
5677 This pattern is not allowed to @code{FAIL}.
5679 @cindex @code{exp@var{m}2} instruction pattern
5680 @item @samp{exp@var{m}2}
5681 Raise e (the base of natural logarithms) to the power of operand 1
5682 and store the result in operand 0.  Both operands have mode @var{m},
5683 which is a scalar or vector floating-point mode.
5685 This pattern is not allowed to @code{FAIL}.
5687 @cindex @code{expm1@var{m}2} instruction pattern
5688 @item @samp{expm1@var{m}2}
5689 Raise e (the base of natural logarithms) to the power of operand 1,
5690 subtract 1, and store the result in operand 0.  Both operands have
5691 mode @var{m}, which is a scalar or vector floating-point mode.
5693 For inputs close to zero, the pattern is expected to be more
5694 accurate than a separate @code{exp@var{m}2} and @code{sub@var{m}3}
5695 would be.
5697 This pattern is not allowed to @code{FAIL}.
5699 @cindex @code{exp10@var{m}2} instruction pattern
5700 @item @samp{exp10@var{m}2}
5701 Raise 10 to the power of operand 1 and store the result in operand 0.
5702 Both operands have mode @var{m}, which is a scalar or vector
5703 floating-point mode.
5705 This pattern is not allowed to @code{FAIL}.
5707 @cindex @code{exp2@var{m}2} instruction pattern
5708 @item @samp{exp2@var{m}2}
5709 Raise 2 to the power of operand 1 and store the result in operand 0.
5710 Both operands have mode @var{m}, which is a scalar or vector
5711 floating-point mode.
5713 This pattern is not allowed to @code{FAIL}.
5715 @cindex @code{log@var{m}2} instruction pattern
5716 @item @samp{log@var{m}2}
5717 Store the natural logarithm of operand 1 into operand 0.  Both operands
5718 have mode @var{m}, which is a scalar or vector floating-point mode.
5720 This pattern is not allowed to @code{FAIL}.
5722 @cindex @code{log1p@var{m}2} instruction pattern
5723 @item @samp{log1p@var{m}2}
5724 Add 1 to operand 1, compute the natural logarithm, and store
5725 the result in operand 0.  Both operands have mode @var{m}, which is
5726 a scalar or vector floating-point mode.
5728 For inputs close to zero, the pattern is expected to be more
5729 accurate than a separate @code{add@var{m}3} and @code{log@var{m}2}
5730 would be.
5732 This pattern is not allowed to @code{FAIL}.
5734 @cindex @code{log10@var{m}2} instruction pattern
5735 @item @samp{log10@var{m}2}
5736 Store the base-10 logarithm of operand 1 into operand 0.  Both operands
5737 have mode @var{m}, which is a scalar or vector floating-point mode.
5739 This pattern is not allowed to @code{FAIL}.
5741 @cindex @code{log2@var{m}2} instruction pattern
5742 @item @samp{log2@var{m}2}
5743 Store the base-2 logarithm of operand 1 into operand 0.  Both operands
5744 have mode @var{m}, which is a scalar or vector floating-point mode.
5746 This pattern is not allowed to @code{FAIL}.
5748 @cindex @code{logb@var{m}2} instruction pattern
5749 @item @samp{logb@var{m}2}
5750 Store the base-@code{FLT_RADIX} logarithm of operand 1 into operand 0.
5751 Both operands have mode @var{m}, which is a scalar or vector
5752 floating-point mode.
5754 This pattern is not allowed to @code{FAIL}.
5756 @cindex @code{significand@var{m}2} instruction pattern
5757 @item @samp{significand@var{m}2}
5758 Store the significand of floating-point operand 1 in operand 0.
5759 Both operands have mode @var{m}, which is a scalar or vector
5760 floating-point mode.
5762 This pattern is not allowed to @code{FAIL}.
5764 @cindex @code{pow@var{m}3} instruction pattern
5765 @item @samp{pow@var{m}3}
5766 Store the value of operand 1 raised to the exponent operand 2
5767 into operand 0.  All operands have mode @var{m}, which is a scalar
5768 or vector floating-point mode.
5770 This pattern is not allowed to @code{FAIL}.
5772 @cindex @code{atan2@var{m}3} instruction pattern
5773 @item @samp{atan2@var{m}3}
5774 Store the arc tangent (inverse tangent) of operand 1 divided by
5775 operand 2 into operand 0, using the signs of both arguments to
5776 determine the quadrant of the result.  All operands have mode
5777 @var{m}, which is a scalar or vector floating-point mode.
5779 This pattern is not allowed to @code{FAIL}.
5781 @cindex @code{floor@var{m}2} instruction pattern
5782 @item @samp{floor@var{m}2}
5783 Store the largest integral value not greater than operand 1 in operand 0.
5784 Both operands have mode @var{m}, which is a scalar or vector
5785 floating-point mode.  If @option{-ffp-int-builtin-inexact} is in
5786 effect, the ``inexact'' exception may be raised for noninteger
5787 operands; otherwise, it may not.
5789 This pattern is not allowed to @code{FAIL}.
5791 @cindex @code{btrunc@var{m}2} instruction pattern
5792 @item @samp{btrunc@var{m}2}
5793 Round operand 1 to an integer, towards zero, and store the result in
5794 operand 0.  Both operands have mode @var{m}, which is a scalar or
5795 vector floating-point mode.  If @option{-ffp-int-builtin-inexact} is
5796 in effect, the ``inexact'' exception may be raised for noninteger
5797 operands; otherwise, it may not.
5799 This pattern is not allowed to @code{FAIL}.
5801 @cindex @code{round@var{m}2} instruction pattern
5802 @item @samp{round@var{m}2}
5803 Round operand 1 to the nearest integer, rounding away from zero in the
5804 event of a tie, and store the result in operand 0.  Both operands have
5805 mode @var{m}, which is a scalar or vector floating-point mode.  If
5806 @option{-ffp-int-builtin-inexact} is in effect, the ``inexact''
5807 exception may be raised for noninteger operands; otherwise, it may
5808 not.
5810 This pattern is not allowed to @code{FAIL}.
5812 @cindex @code{ceil@var{m}2} instruction pattern
5813 @item @samp{ceil@var{m}2}
5814 Store the smallest integral value not less than operand 1 in operand 0.
5815 Both operands have mode @var{m}, which is a scalar or vector
5816 floating-point mode.  If @option{-ffp-int-builtin-inexact} is in
5817 effect, the ``inexact'' exception may be raised for noninteger
5818 operands; otherwise, it may not.
5820 This pattern is not allowed to @code{FAIL}.
5822 @cindex @code{nearbyint@var{m}2} instruction pattern
5823 @item @samp{nearbyint@var{m}2}
5824 Round operand 1 to an integer, using the current rounding mode, and
5825 store the result in operand 0.  Do not raise an inexact condition when
5826 the result is different from the argument.  Both operands have mode
5827 @var{m}, which is a scalar or vector floating-point mode.
5829 This pattern is not allowed to @code{FAIL}.
5831 @cindex @code{rint@var{m}2} instruction pattern
5832 @item @samp{rint@var{m}2}
5833 Round operand 1 to an integer, using the current rounding mode, and
5834 store the result in operand 0.  Raise an inexact condition when
5835 the result is different from the argument.  Both operands have mode
5836 @var{m}, which is a scalar or vector floating-point mode.
5838 This pattern is not allowed to @code{FAIL}.
5840 @cindex @code{lrint@var{m}@var{n}2}
5841 @item @samp{lrint@var{m}@var{n}2}
5842 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5843 point mode @var{n} as a signed number according to the current
5844 rounding mode and store in operand 0 (which has mode @var{n}).
5846 @cindex @code{lround@var{m}@var{n}2}
5847 @item @samp{lround@var{m}@var{n}2}
5848 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5849 point mode @var{n} as a signed number rounding to nearest and away
5850 from zero and store in operand 0 (which has mode @var{n}).
5852 @cindex @code{lfloor@var{m}@var{n}2}
5853 @item @samp{lfloor@var{m}@var{n}2}
5854 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5855 point mode @var{n} as a signed number rounding down and store in
5856 operand 0 (which has mode @var{n}).
5858 @cindex @code{lceil@var{m}@var{n}2}
5859 @item @samp{lceil@var{m}@var{n}2}
5860 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5861 point mode @var{n} as a signed number rounding up and store in
5862 operand 0 (which has mode @var{n}).
5864 @cindex @code{copysign@var{m}3} instruction pattern
5865 @item @samp{copysign@var{m}3}
5866 Store a value with the magnitude of operand 1 and the sign of operand
5867 2 into operand 0.  All operands have mode @var{m}, which is a scalar or
5868 vector floating-point mode.
5870 This pattern is not allowed to @code{FAIL}.
5872 @cindex @code{ffs@var{m}2} instruction pattern
5873 @item @samp{ffs@var{m}2}
5874 Store into operand 0 one plus the index of the least significant 1-bit
5875 of operand 1.  If operand 1 is zero, store zero.
5877 @var{m} is either a scalar or vector integer mode.  When it is a scalar,
5878 operand 1 has mode @var{m} but operand 0 can have whatever scalar
5879 integer mode is suitable for the target.  The compiler will insert
5880 conversion instructions as necessary (typically to convert the result
5881 to the same width as @code{int}).  When @var{m} is a vector, both
5882 operands must have mode @var{m}.
5884 This pattern is not allowed to @code{FAIL}.
5886 @cindex @code{clrsb@var{m}2} instruction pattern
5887 @item @samp{clrsb@var{m}2}
5888 Count leading redundant sign bits.
5889 Store into operand 0 the number of redundant sign bits in operand 1, starting
5890 at the most significant bit position.
5891 A redundant sign bit is defined as any sign bit after the first. As such,
5892 this count will be one less than the count of leading sign bits.
5894 @var{m} is either a scalar or vector integer mode.  When it is a scalar,
5895 operand 1 has mode @var{m} but operand 0 can have whatever scalar
5896 integer mode is suitable for the target.  The compiler will insert
5897 conversion instructions as necessary (typically to convert the result
5898 to the same width as @code{int}).  When @var{m} is a vector, both
5899 operands must have mode @var{m}.
5901 This pattern is not allowed to @code{FAIL}.
5903 @cindex @code{clz@var{m}2} instruction pattern
5904 @item @samp{clz@var{m}2}
5905 Store into operand 0 the number of leading 0-bits in operand 1, starting
5906 at the most significant bit position.  If operand 1 is 0, the
5907 @code{CLZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
5908 the result is undefined or has a useful value.
5910 @var{m} is either a scalar or vector integer mode.  When it is a scalar,
5911 operand 1 has mode @var{m} but operand 0 can have whatever scalar
5912 integer mode is suitable for the target.  The compiler will insert
5913 conversion instructions as necessary (typically to convert the result
5914 to the same width as @code{int}).  When @var{m} is a vector, both
5915 operands must have mode @var{m}.
5917 This pattern is not allowed to @code{FAIL}.
5919 @cindex @code{ctz@var{m}2} instruction pattern
5920 @item @samp{ctz@var{m}2}
5921 Store into operand 0 the number of trailing 0-bits in operand 1, starting
5922 at the least significant bit position.  If operand 1 is 0, the
5923 @code{CTZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
5924 the result is undefined or has a useful value.
5926 @var{m} is either a scalar or vector integer mode.  When it is a scalar,
5927 operand 1 has mode @var{m} but operand 0 can have whatever scalar
5928 integer mode is suitable for the target.  The compiler will insert
5929 conversion instructions as necessary (typically to convert the result
5930 to the same width as @code{int}).  When @var{m} is a vector, both
5931 operands must have mode @var{m}.
5933 This pattern is not allowed to @code{FAIL}.
5935 @cindex @code{popcount@var{m}2} instruction pattern
5936 @item @samp{popcount@var{m}2}
5937 Store into operand 0 the number of 1-bits in operand 1.
5939 @var{m} is either a scalar or vector integer mode.  When it is a scalar,
5940 operand 1 has mode @var{m} but operand 0 can have whatever scalar
5941 integer mode is suitable for the target.  The compiler will insert
5942 conversion instructions as necessary (typically to convert the result
5943 to the same width as @code{int}).  When @var{m} is a vector, both
5944 operands must have mode @var{m}.
5946 This pattern is not allowed to @code{FAIL}.
5948 @cindex @code{parity@var{m}2} instruction pattern
5949 @item @samp{parity@var{m}2}
5950 Store into operand 0 the parity of operand 1, i.e.@: the number of 1-bits
5951 in operand 1 modulo 2.
5953 @var{m} is either a scalar or vector integer mode.  When it is a scalar,
5954 operand 1 has mode @var{m} but operand 0 can have whatever scalar
5955 integer mode is suitable for the target.  The compiler will insert
5956 conversion instructions as necessary (typically to convert the result
5957 to the same width as @code{int}).  When @var{m} is a vector, both
5958 operands must have mode @var{m}.
5960 This pattern is not allowed to @code{FAIL}.
5962 @cindex @code{one_cmpl@var{m}2} instruction pattern
5963 @item @samp{one_cmpl@var{m}2}
5964 Store the bitwise-complement of operand 1 into operand 0.
5966 @cindex @code{movmem@var{m}} instruction pattern
5967 @item @samp{movmem@var{m}}
5968 Block move instruction.  The destination and source blocks of memory
5969 are the first two operands, and both are @code{mem:BLK}s with an
5970 address in mode @code{Pmode}.
5972 The number of bytes to move is the third operand, in mode @var{m}.
5973 Usually, you specify @code{Pmode} for @var{m}.  However, if you can
5974 generate better code knowing the range of valid lengths is smaller than
5975 those representable in a full Pmode pointer, you should provide
5976 a pattern with a
5977 mode corresponding to the range of values you can handle efficiently
5978 (e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
5979 that appear negative) and also a pattern with @code{Pmode}.
5981 The fourth operand is the known shared alignment of the source and
5982 destination, in the form of a @code{const_int} rtx.  Thus, if the
5983 compiler knows that both source and destination are word-aligned,
5984 it may provide the value 4 for this operand.
5986 Optional operands 5 and 6 specify expected alignment and size of block
5987 respectively.  The expected alignment differs from alignment in operand 4
5988 in a way that the blocks are not required to be aligned according to it in
5989 all cases. This expected alignment is also in bytes, just like operand 4.
5990 Expected size, when unknown, is set to @code{(const_int -1)}.
5992 Descriptions of multiple @code{movmem@var{m}} patterns can only be
5993 beneficial if the patterns for smaller modes have fewer restrictions
5994 on their first, second and fourth operands.  Note that the mode @var{m}
5995 in @code{movmem@var{m}} does not impose any restriction on the mode of
5996 individually moved data units in the block.
5998 These patterns need not give special consideration to the possibility
5999 that the source and destination strings might overlap.
6001 @cindex @code{movstr} instruction pattern
6002 @item @samp{movstr}
6003 String copy instruction, with @code{stpcpy} semantics.  Operand 0 is
6004 an output operand in mode @code{Pmode}.  The addresses of the
6005 destination and source strings are operands 1 and 2, and both are
6006 @code{mem:BLK}s with addresses in mode @code{Pmode}.  The execution of
6007 the expansion of this pattern should store in operand 0 the address in
6008 which the @code{NUL} terminator was stored in the destination string.
6010 This patern has also several optional operands that are same as in
6011 @code{setmem}.
6013 @cindex @code{setmem@var{m}} instruction pattern
6014 @item @samp{setmem@var{m}}
6015 Block set instruction.  The destination string is the first operand,
6016 given as a @code{mem:BLK} whose address is in mode @code{Pmode}.  The
6017 number of bytes to set is the second operand, in mode @var{m}.  The value to
6018 initialize the memory with is the third operand. Targets that only support the
6019 clearing of memory should reject any value that is not the constant 0.  See
6020 @samp{movmem@var{m}} for a discussion of the choice of mode.
6022 The fourth operand is the known alignment of the destination, in the form
6023 of a @code{const_int} rtx.  Thus, if the compiler knows that the
6024 destination is word-aligned, it may provide the value 4 for this
6025 operand.
6027 Optional operands 5 and 6 specify expected alignment and size of block
6028 respectively.  The expected alignment differs from alignment in operand 4
6029 in a way that the blocks are not required to be aligned according to it in
6030 all cases. This expected alignment is also in bytes, just like operand 4.
6031 Expected size, when unknown, is set to @code{(const_int -1)}.
6032 Operand 7 is the minimal size of the block and operand 8 is the
6033 maximal size of the block (NULL if it can not be represented as CONST_INT).
6034 Operand 9 is the probable maximal size (i.e. we can not rely on it for correctness,
6035 but it can be used for choosing proper code sequence for a given size).
6037 The use for multiple @code{setmem@var{m}} is as for @code{movmem@var{m}}.
6039 @cindex @code{cmpstrn@var{m}} instruction pattern
6040 @item @samp{cmpstrn@var{m}}
6041 String compare instruction, with five operands.  Operand 0 is the output;
6042 it has mode @var{m}.  The remaining four operands are like the operands
6043 of @samp{movmem@var{m}}.  The two memory blocks specified are compared
6044 byte by byte in lexicographic order starting at the beginning of each
6045 string.  The instruction is not allowed to prefetch more than one byte
6046 at a time since either string may end in the first byte and reading past
6047 that may access an invalid page or segment and cause a fault.  The
6048 comparison terminates early if the fetched bytes are different or if
6049 they are equal to zero.  The effect of the instruction is to store a
6050 value in operand 0 whose sign indicates the result of the comparison.
6052 @cindex @code{cmpstr@var{m}} instruction pattern
6053 @item @samp{cmpstr@var{m}}
6054 String compare instruction, without known maximum length.  Operand 0 is the
6055 output; it has mode @var{m}.  The second and third operand are the blocks of
6056 memory to be compared; both are @code{mem:BLK} with an address in mode
6057 @code{Pmode}.
6059 The fourth operand is the known shared alignment of the source and
6060 destination, in the form of a @code{const_int} rtx.  Thus, if the
6061 compiler knows that both source and destination are word-aligned,
6062 it may provide the value 4 for this operand.
6064 The two memory blocks specified are compared byte by byte in lexicographic
6065 order starting at the beginning of each string.  The instruction is not allowed
6066 to prefetch more than one byte at a time since either string may end in the
6067 first byte and reading past that may access an invalid page or segment and
6068 cause a fault.  The comparison will terminate when the fetched bytes
6069 are different or if they are equal to zero.  The effect of the
6070 instruction is to store a value in operand 0 whose sign indicates the
6071 result of the comparison.
6073 @cindex @code{cmpmem@var{m}} instruction pattern
6074 @item @samp{cmpmem@var{m}}
6075 Block compare instruction, with five operands like the operands
6076 of @samp{cmpstr@var{m}}.  The two memory blocks specified are compared
6077 byte by byte in lexicographic order starting at the beginning of each
6078 block.  Unlike @samp{cmpstr@var{m}} the instruction can prefetch
6079 any bytes in the two memory blocks.  Also unlike @samp{cmpstr@var{m}}
6080 the comparison will not stop if both bytes are zero.  The effect of
6081 the instruction is to store a value in operand 0 whose sign indicates
6082 the result of the comparison.
6084 @cindex @code{strlen@var{m}} instruction pattern
6085 @item @samp{strlen@var{m}}
6086 Compute the length of a string, with three operands.
6087 Operand 0 is the result (of mode @var{m}), operand 1 is
6088 a @code{mem} referring to the first character of the string,
6089 operand 2 is the character to search for (normally zero),
6090 and operand 3 is a constant describing the known alignment
6091 of the beginning of the string.
6093 @cindex @code{float@var{m}@var{n}2} instruction pattern
6094 @item @samp{float@var{m}@var{n}2}
6095 Convert signed integer operand 1 (valid for fixed point mode @var{m}) to
6096 floating point mode @var{n} and store in operand 0 (which has mode
6097 @var{n}).
6099 @cindex @code{floatuns@var{m}@var{n}2} instruction pattern
6100 @item @samp{floatuns@var{m}@var{n}2}
6101 Convert unsigned integer operand 1 (valid for fixed point mode @var{m})
6102 to floating point mode @var{n} and store in operand 0 (which has mode
6103 @var{n}).
6105 @cindex @code{fix@var{m}@var{n}2} instruction pattern
6106 @item @samp{fix@var{m}@var{n}2}
6107 Convert operand 1 (valid for floating point mode @var{m}) to fixed
6108 point mode @var{n} as a signed number and store in operand 0 (which
6109 has mode @var{n}).  This instruction's result is defined only when
6110 the value of operand 1 is an integer.
6112 If the machine description defines this pattern, it also needs to
6113 define the @code{ftrunc} pattern.
6115 @cindex @code{fixuns@var{m}@var{n}2} instruction pattern
6116 @item @samp{fixuns@var{m}@var{n}2}
6117 Convert operand 1 (valid for floating point mode @var{m}) to fixed
6118 point mode @var{n} as an unsigned number and store in operand 0 (which
6119 has mode @var{n}).  This instruction's result is defined only when the
6120 value of operand 1 is an integer.
6122 @cindex @code{ftrunc@var{m}2} instruction pattern
6123 @item @samp{ftrunc@var{m}2}
6124 Convert operand 1 (valid for floating point mode @var{m}) to an
6125 integer value, still represented in floating point mode @var{m}, and
6126 store it in operand 0 (valid for floating point mode @var{m}).
6128 @cindex @code{fix_trunc@var{m}@var{n}2} instruction pattern
6129 @item @samp{fix_trunc@var{m}@var{n}2}
6130 Like @samp{fix@var{m}@var{n}2} but works for any floating point value
6131 of mode @var{m} by converting the value to an integer.
6133 @cindex @code{fixuns_trunc@var{m}@var{n}2} instruction pattern
6134 @item @samp{fixuns_trunc@var{m}@var{n}2}
6135 Like @samp{fixuns@var{m}@var{n}2} but works for any floating point
6136 value of mode @var{m} by converting the value to an integer.
6138 @cindex @code{trunc@var{m}@var{n}2} instruction pattern
6139 @item @samp{trunc@var{m}@var{n}2}
6140 Truncate operand 1 (valid for mode @var{m}) to mode @var{n} and
6141 store in operand 0 (which has mode @var{n}).  Both modes must be fixed
6142 point or both floating point.
6144 @cindex @code{extend@var{m}@var{n}2} instruction pattern
6145 @item @samp{extend@var{m}@var{n}2}
6146 Sign-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6147 store in operand 0 (which has mode @var{n}).  Both modes must be fixed
6148 point or both floating point.
6150 @cindex @code{zero_extend@var{m}@var{n}2} instruction pattern
6151 @item @samp{zero_extend@var{m}@var{n}2}
6152 Zero-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6153 store in operand 0 (which has mode @var{n}).  Both modes must be fixed
6154 point.
6156 @cindex @code{fract@var{m}@var{n}2} instruction pattern
6157 @item @samp{fract@var{m}@var{n}2}
6158 Convert operand 1 of mode @var{m} to mode @var{n} and store in
6159 operand 0 (which has mode @var{n}).  Mode @var{m} and mode @var{n}
6160 could be fixed-point to fixed-point, signed integer to fixed-point,
6161 fixed-point to signed integer, floating-point to fixed-point,
6162 or fixed-point to floating-point.
6163 When overflows or underflows happen, the results are undefined.
6165 @cindex @code{satfract@var{m}@var{n}2} instruction pattern
6166 @item @samp{satfract@var{m}@var{n}2}
6167 Convert operand 1 of mode @var{m} to mode @var{n} and store in
6168 operand 0 (which has mode @var{n}).  Mode @var{m} and mode @var{n}
6169 could be fixed-point to fixed-point, signed integer to fixed-point,
6170 or floating-point to fixed-point.
6171 When overflows or underflows happen, the instruction saturates the
6172 results to the maximum or the minimum.
6174 @cindex @code{fractuns@var{m}@var{n}2} instruction pattern
6175 @item @samp{fractuns@var{m}@var{n}2}
6176 Convert operand 1 of mode @var{m} to mode @var{n} and store in
6177 operand 0 (which has mode @var{n}).  Mode @var{m} and mode @var{n}
6178 could be unsigned integer to fixed-point, or
6179 fixed-point to unsigned integer.
6180 When overflows or underflows happen, the results are undefined.
6182 @cindex @code{satfractuns@var{m}@var{n}2} instruction pattern
6183 @item @samp{satfractuns@var{m}@var{n}2}
6184 Convert unsigned integer operand 1 of mode @var{m} to fixed-point mode
6185 @var{n} and store in operand 0 (which has mode @var{n}).
6186 When overflows or underflows happen, the instruction saturates the
6187 results to the maximum or the minimum.
6189 @cindex @code{extv@var{m}} instruction pattern
6190 @item @samp{extv@var{m}}
6191 Extract a bit-field from register operand 1, sign-extend it, and store
6192 it in operand 0.  Operand 2 specifies the width of the field in bits
6193 and operand 3 the starting bit, which counts from the most significant
6194 bit if @samp{BITS_BIG_ENDIAN} is true and from the least significant bit
6195 otherwise.
6197 Operands 0 and 1 both have mode @var{m}.  Operands 2 and 3 have a
6198 target-specific mode.
6200 @cindex @code{extvmisalign@var{m}} instruction pattern
6201 @item @samp{extvmisalign@var{m}}
6202 Extract a bit-field from memory operand 1, sign extend it, and store
6203 it in operand 0.  Operand 2 specifies the width in bits and operand 3
6204 the starting bit.  The starting bit is always somewhere in the first byte of
6205 operand 1; it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6206 is true and from the least significant bit otherwise.
6208 Operand 0 has mode @var{m} while operand 1 has @code{BLK} mode.
6209 Operands 2 and 3 have a target-specific mode.
6211 The instruction must not read beyond the last byte of the bit-field.
6213 @cindex @code{extzv@var{m}} instruction pattern
6214 @item @samp{extzv@var{m}}
6215 Like @samp{extv@var{m}} except that the bit-field value is zero-extended.
6217 @cindex @code{extzvmisalign@var{m}} instruction pattern
6218 @item @samp{extzvmisalign@var{m}}
6219 Like @samp{extvmisalign@var{m}} except that the bit-field value is
6220 zero-extended.
6222 @cindex @code{insv@var{m}} instruction pattern
6223 @item @samp{insv@var{m}}
6224 Insert operand 3 into a bit-field of register operand 0.  Operand 1
6225 specifies the width of the field in bits and operand 2 the starting bit,
6226 which counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6227 is true and from the least significant bit otherwise.
6229 Operands 0 and 3 both have mode @var{m}.  Operands 1 and 2 have a
6230 target-specific mode.
6232 @cindex @code{insvmisalign@var{m}} instruction pattern
6233 @item @samp{insvmisalign@var{m}}
6234 Insert operand 3 into a bit-field of memory operand 0.  Operand 1
6235 specifies the width of the field in bits and operand 2 the starting bit.
6236 The starting bit is always somewhere in the first byte of operand 0;
6237 it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6238 is true and from the least significant bit otherwise.
6240 Operand 3 has mode @var{m} while operand 0 has @code{BLK} mode.
6241 Operands 1 and 2 have a target-specific mode.
6243 The instruction must not read or write beyond the last byte of the bit-field.
6245 @cindex @code{extv} instruction pattern
6246 @item @samp{extv}
6247 Extract a bit-field from operand 1 (a register or memory operand), where
6248 operand 2 specifies the width in bits and operand 3 the starting bit,
6249 and store it in operand 0.  Operand 0 must have mode @code{word_mode}.
6250 Operand 1 may have mode @code{byte_mode} or @code{word_mode}; often
6251 @code{word_mode} is allowed only for registers.  Operands 2 and 3 must
6252 be valid for @code{word_mode}.
6254 The RTL generation pass generates this instruction only with constants
6255 for operands 2 and 3 and the constant is never zero for operand 2.
6257 The bit-field value is sign-extended to a full word integer
6258 before it is stored in operand 0.
6260 This pattern is deprecated; please use @samp{extv@var{m}} and
6261 @code{extvmisalign@var{m}} instead.
6263 @cindex @code{extzv} instruction pattern
6264 @item @samp{extzv}
6265 Like @samp{extv} except that the bit-field value is zero-extended.
6267 This pattern is deprecated; please use @samp{extzv@var{m}} and
6268 @code{extzvmisalign@var{m}} instead.
6270 @cindex @code{insv} instruction pattern
6271 @item @samp{insv}
6272 Store operand 3 (which must be valid for @code{word_mode}) into a
6273 bit-field in operand 0, where operand 1 specifies the width in bits and
6274 operand 2 the starting bit.  Operand 0 may have mode @code{byte_mode} or
6275 @code{word_mode}; often @code{word_mode} is allowed only for registers.
6276 Operands 1 and 2 must be valid for @code{word_mode}.
6278 The RTL generation pass generates this instruction only with constants
6279 for operands 1 and 2 and the constant is never zero for operand 1.
6281 This pattern is deprecated; please use @samp{insv@var{m}} and
6282 @code{insvmisalign@var{m}} instead.
6284 @cindex @code{mov@var{mode}cc} instruction pattern
6285 @item @samp{mov@var{mode}cc}
6286 Conditionally move operand 2 or operand 3 into operand 0 according to the
6287 comparison in operand 1.  If the comparison is true, operand 2 is moved
6288 into operand 0, otherwise operand 3 is moved.
6290 The mode of the operands being compared need not be the same as the operands
6291 being moved.  Some machines, sparc64 for example, have instructions that
6292 conditionally move an integer value based on the floating point condition
6293 codes and vice versa.
6295 If the machine does not have conditional move instructions, do not
6296 define these patterns.
6298 @cindex @code{add@var{mode}cc} instruction pattern
6299 @item @samp{add@var{mode}cc}
6300 Similar to @samp{mov@var{mode}cc} but for conditional addition.  Conditionally
6301 move operand 2 or (operands 2 + operand 3) into operand 0 according to the
6302 comparison in operand 1.  If the comparison is false, operand 2 is moved into
6303 operand 0, otherwise (operand 2 + operand 3) is moved.
6305 @cindex @code{cond_add@var{mode}} instruction pattern
6306 @cindex @code{cond_sub@var{mode}} instruction pattern
6307 @cindex @code{cond_and@var{mode}} instruction pattern
6308 @cindex @code{cond_ior@var{mode}} instruction pattern
6309 @cindex @code{cond_xor@var{mode}} instruction pattern
6310 @cindex @code{cond_smin@var{mode}} instruction pattern
6311 @cindex @code{cond_smax@var{mode}} instruction pattern
6312 @cindex @code{cond_umin@var{mode}} instruction pattern
6313 @cindex @code{cond_umax@var{mode}} instruction pattern
6314 @item @samp{cond_add@var{mode}}
6315 @itemx @samp{cond_sub@var{mode}}
6316 @itemx @samp{cond_and@var{mode}}
6317 @itemx @samp{cond_ior@var{mode}}
6318 @itemx @samp{cond_xor@var{mode}}
6319 @itemx @samp{cond_smin@var{mode}}
6320 @itemx @samp{cond_smax@var{mode}}
6321 @itemx @samp{cond_umin@var{mode}}
6322 @itemx @samp{cond_umax@var{mode}}
6323 Perform an elementwise operation on vector operands 2 and 3,
6324 under the control of the vector mask in operand 1, and store the result
6325 in operand 0.  This is equivalent to:
6327 @smallexample
6328 for (i = 0; i < GET_MODE_NUNITS (@var{n}); i++)
6329   op0[i] = op1[i] ? op2[i] @var{op} op3[i] : op2[i];
6330 @end smallexample
6332 where, for example, @var{op} is @code{+} for @samp{cond_add@var{mode}}.
6334 When defined for floating-point modes, the contents of @samp{op3[i]}
6335 are not interpreted if @var{op1[i]} is false, just like they would not
6336 be in a normal C @samp{?:} condition.
6338 Operands 0, 2 and 3 all have mode @var{m}, while operand 1 has the mode
6339 returned by @code{TARGET_VECTORIZE_GET_MASK_MODE}.
6341 @cindex @code{neg@var{mode}cc} instruction pattern
6342 @item @samp{neg@var{mode}cc}
6343 Similar to @samp{mov@var{mode}cc} but for conditional negation.  Conditionally
6344 move the negation of operand 2 or the unchanged operand 3 into operand 0
6345 according to the comparison in operand 1.  If the comparison is true, the negation
6346 of operand 2 is moved into operand 0, otherwise operand 3 is moved.
6348 @cindex @code{not@var{mode}cc} instruction pattern
6349 @item @samp{not@var{mode}cc}
6350 Similar to @samp{neg@var{mode}cc} but for conditional complement.
6351 Conditionally move the bitwise complement of operand 2 or the unchanged
6352 operand 3 into operand 0 according to the comparison in operand 1.
6353 If the comparison is true, the complement of operand 2 is moved into
6354 operand 0, otherwise operand 3 is moved.
6356 @cindex @code{cstore@var{mode}4} instruction pattern
6357 @item @samp{cstore@var{mode}4}
6358 Store zero or nonzero in operand 0 according to whether a comparison
6359 is true.  Operand 1 is a comparison operator.  Operand 2 and operand 3
6360 are the first and second operand of the comparison, respectively.
6361 You specify the mode that operand 0 must have when you write the
6362 @code{match_operand} expression.  The compiler automatically sees which
6363 mode you have used and supplies an operand of that mode.
6365 The value stored for a true condition must have 1 as its low bit, or
6366 else must be negative.  Otherwise the instruction is not suitable and
6367 you should omit it from the machine description.  You describe to the
6368 compiler exactly which value is stored by defining the macro
6369 @code{STORE_FLAG_VALUE} (@pxref{Misc}).  If a description cannot be
6370 found that can be used for all the possible comparison operators, you
6371 should pick one and use a @code{define_expand} to map all results
6372 onto the one you chose.
6374 These operations may @code{FAIL}, but should do so only in relatively
6375 uncommon cases; if they would @code{FAIL} for common cases involving
6376 integer comparisons, it is best to restrict the predicates to not
6377 allow these operands.  Likewise if a given comparison operator will
6378 always fail, independent of the operands (for floating-point modes, the
6379 @code{ordered_comparison_operator} predicate is often useful in this case).
6381 If this pattern is omitted, the compiler will generate a conditional
6382 branch---for example, it may copy a constant one to the target and branching
6383 around an assignment of zero to the target---or a libcall.  If the predicate
6384 for operand 1 only rejects some operators, it will also try reordering the
6385 operands and/or inverting the result value (e.g.@: by an exclusive OR).
6386 These possibilities could be cheaper or equivalent to the instructions
6387 used for the @samp{cstore@var{mode}4} pattern followed by those required
6388 to convert a positive result from @code{STORE_FLAG_VALUE} to 1; in this
6389 case, you can and should make operand 1's predicate reject some operators
6390 in the @samp{cstore@var{mode}4} pattern, or remove the pattern altogether
6391 from the machine description.
6393 @cindex @code{cbranch@var{mode}4} instruction pattern
6394 @item @samp{cbranch@var{mode}4}
6395 Conditional branch instruction combined with a compare instruction.
6396 Operand 0 is a comparison operator.  Operand 1 and operand 2 are the
6397 first and second operands of the comparison, respectively.  Operand 3
6398 is the @code{code_label} to jump to.
6400 @cindex @code{jump} instruction pattern
6401 @item @samp{jump}
6402 A jump inside a function; an unconditional branch.  Operand 0 is the
6403 @code{code_label} to jump to.  This pattern name is mandatory on all
6404 machines.
6406 @cindex @code{call} instruction pattern
6407 @item @samp{call}
6408 Subroutine call instruction returning no value.  Operand 0 is the
6409 function to call; operand 1 is the number of bytes of arguments pushed
6410 as a @code{const_int}; operand 2 is the number of registers used as
6411 operands.
6413 On most machines, operand 2 is not actually stored into the RTL
6414 pattern.  It is supplied for the sake of some RISC machines which need
6415 to put this information into the assembler code; they can put it in
6416 the RTL instead of operand 1.
6418 Operand 0 should be a @code{mem} RTX whose address is the address of the
6419 function.  Note, however, that this address can be a @code{symbol_ref}
6420 expression even if it would not be a legitimate memory address on the
6421 target machine.  If it is also not a valid argument for a call
6422 instruction, the pattern for this operation should be a
6423 @code{define_expand} (@pxref{Expander Definitions}) that places the
6424 address into a register and uses that register in the call instruction.
6426 @cindex @code{call_value} instruction pattern
6427 @item @samp{call_value}
6428 Subroutine call instruction returning a value.  Operand 0 is the hard
6429 register in which the value is returned.  There are three more
6430 operands, the same as the three operands of the @samp{call}
6431 instruction (but with numbers increased by one).
6433 Subroutines that return @code{BLKmode} objects use the @samp{call}
6434 insn.
6436 @cindex @code{call_pop} instruction pattern
6437 @cindex @code{call_value_pop} instruction pattern
6438 @item @samp{call_pop}, @samp{call_value_pop}
6439 Similar to @samp{call} and @samp{call_value}, except used if defined and
6440 if @code{RETURN_POPS_ARGS} is nonzero.  They should emit a @code{parallel}
6441 that contains both the function call and a @code{set} to indicate the
6442 adjustment made to the frame pointer.
6444 For machines where @code{RETURN_POPS_ARGS} can be nonzero, the use of these
6445 patterns increases the number of functions for which the frame pointer
6446 can be eliminated, if desired.
6448 @cindex @code{untyped_call} instruction pattern
6449 @item @samp{untyped_call}
6450 Subroutine call instruction returning a value of any type.  Operand 0 is
6451 the function to call; operand 1 is a memory location where the result of
6452 calling the function is to be stored; operand 2 is a @code{parallel}
6453 expression where each element is a @code{set} expression that indicates
6454 the saving of a function return value into the result block.
6456 This instruction pattern should be defined to support
6457 @code{__builtin_apply} on machines where special instructions are needed
6458 to call a subroutine with arbitrary arguments or to save the value
6459 returned.  This instruction pattern is required on machines that have
6460 multiple registers that can hold a return value
6461 (i.e.@: @code{FUNCTION_VALUE_REGNO_P} is true for more than one register).
6463 @cindex @code{return} instruction pattern
6464 @item @samp{return}
6465 Subroutine return instruction.  This instruction pattern name should be
6466 defined only if a single instruction can do all the work of returning
6467 from a function.
6469 Like the @samp{mov@var{m}} patterns, this pattern is also used after the
6470 RTL generation phase.  In this case it is to support machines where
6471 multiple instructions are usually needed to return from a function, but
6472 some class of functions only requires one instruction to implement a
6473 return.  Normally, the applicable functions are those which do not need
6474 to save any registers or allocate stack space.
6476 It is valid for this pattern to expand to an instruction using
6477 @code{simple_return} if no epilogue is required.
6479 @cindex @code{simple_return} instruction pattern
6480 @item @samp{simple_return}
6481 Subroutine return instruction.  This instruction pattern name should be
6482 defined only if a single instruction can do all the work of returning
6483 from a function on a path where no epilogue is required.  This pattern
6484 is very similar to the @code{return} instruction pattern, but it is emitted
6485 only by the shrink-wrapping optimization on paths where the function
6486 prologue has not been executed, and a function return should occur without
6487 any of the effects of the epilogue.  Additional uses may be introduced on
6488 paths where both the prologue and the epilogue have executed.
6490 @findex reload_completed
6491 @findex leaf_function_p
6492 For such machines, the condition specified in this pattern should only
6493 be true when @code{reload_completed} is nonzero and the function's
6494 epilogue would only be a single instruction.  For machines with register
6495 windows, the routine @code{leaf_function_p} may be used to determine if
6496 a register window push is required.
6498 Machines that have conditional return instructions should define patterns
6499 such as
6501 @smallexample
6502 (define_insn ""
6503   [(set (pc)
6504         (if_then_else (match_operator
6505                          0 "comparison_operator"
6506                          [(cc0) (const_int 0)])
6507                       (return)
6508                       (pc)))]
6509   "@var{condition}"
6510   "@dots{}")
6511 @end smallexample
6513 where @var{condition} would normally be the same condition specified on the
6514 named @samp{return} pattern.
6516 @cindex @code{untyped_return} instruction pattern
6517 @item @samp{untyped_return}
6518 Untyped subroutine return instruction.  This instruction pattern should
6519 be defined to support @code{__builtin_return} on machines where special
6520 instructions are needed to return a value of any type.
6522 Operand 0 is a memory location where the result of calling a function
6523 with @code{__builtin_apply} is stored; operand 1 is a @code{parallel}
6524 expression where each element is a @code{set} expression that indicates
6525 the restoring of a function return value from the result block.
6527 @cindex @code{nop} instruction pattern
6528 @item @samp{nop}
6529 No-op instruction.  This instruction pattern name should always be defined
6530 to output a no-op in assembler code.  @code{(const_int 0)} will do as an
6531 RTL pattern.
6533 @cindex @code{indirect_jump} instruction pattern
6534 @item @samp{indirect_jump}
6535 An instruction to jump to an address which is operand zero.
6536 This pattern name is mandatory on all machines.
6538 @cindex @code{casesi} instruction pattern
6539 @item @samp{casesi}
6540 Instruction to jump through a dispatch table, including bounds checking.
6541 This instruction takes five operands:
6543 @enumerate
6544 @item
6545 The index to dispatch on, which has mode @code{SImode}.
6547 @item
6548 The lower bound for indices in the table, an integer constant.
6550 @item
6551 The total range of indices in the table---the largest index
6552 minus the smallest one (both inclusive).
6554 @item
6555 A label that precedes the table itself.
6557 @item
6558 A label to jump to if the index has a value outside the bounds.
6559 @end enumerate
6561 The table is an @code{addr_vec} or @code{addr_diff_vec} inside of a
6562 @code{jump_table_data}.  The number of elements in the table is one plus the
6563 difference between the upper bound and the lower bound.
6565 @cindex @code{tablejump} instruction pattern
6566 @item @samp{tablejump}
6567 Instruction to jump to a variable address.  This is a low-level
6568 capability which can be used to implement a dispatch table when there
6569 is no @samp{casesi} pattern.
6571 This pattern requires two operands: the address or offset, and a label
6572 which should immediately precede the jump table.  If the macro
6573 @code{CASE_VECTOR_PC_RELATIVE} evaluates to a nonzero value then the first
6574 operand is an offset which counts from the address of the table; otherwise,
6575 it is an absolute address to jump to.  In either case, the first operand has
6576 mode @code{Pmode}.
6578 The @samp{tablejump} insn is always the last insn before the jump
6579 table it uses.  Its assembler code normally has no need to use the
6580 second operand, but you should incorporate it in the RTL pattern so
6581 that the jump optimizer will not delete the table as unreachable code.
6584 @cindex @code{decrement_and_branch_until_zero} instruction pattern
6585 @item @samp{decrement_and_branch_until_zero}
6586 Conditional branch instruction that decrements a register and
6587 jumps if the register is nonzero.  Operand 0 is the register to
6588 decrement and test; operand 1 is the label to jump to if the
6589 register is nonzero.  @xref{Looping Patterns}.
6591 This optional instruction pattern is only used by the combiner,
6592 typically for loops reversed by the loop optimizer when strength
6593 reduction is enabled.
6595 @cindex @code{doloop_end} instruction pattern
6596 @item @samp{doloop_end}
6597 Conditional branch instruction that decrements a register and
6598 jumps if the register is nonzero.  Operand 0 is the register to
6599 decrement and test; operand 1 is the label to jump to if the
6600 register is nonzero.
6601 @xref{Looping Patterns}.
6603 This optional instruction pattern should be defined for machines with
6604 low-overhead looping instructions as the loop optimizer will try to
6605 modify suitable loops to utilize it.  The target hook
6606 @code{TARGET_CAN_USE_DOLOOP_P} controls the conditions under which
6607 low-overhead loops can be used.
6609 @cindex @code{doloop_begin} instruction pattern
6610 @item @samp{doloop_begin}
6611 Companion instruction to @code{doloop_end} required for machines that
6612 need to perform some initialization, such as loading a special counter
6613 register.  Operand 1 is the associated @code{doloop_end} pattern and
6614 operand 0 is the register that it decrements.
6616 If initialization insns do not always need to be emitted, use a
6617 @code{define_expand} (@pxref{Expander Definitions}) and make it fail.
6619 @cindex @code{canonicalize_funcptr_for_compare} instruction pattern
6620 @item @samp{canonicalize_funcptr_for_compare}
6621 Canonicalize the function pointer in operand 1 and store the result
6622 into operand 0.
6624 Operand 0 is always a @code{reg} and has mode @code{Pmode}; operand 1
6625 may be a @code{reg}, @code{mem}, @code{symbol_ref}, @code{const_int}, etc
6626 and also has mode @code{Pmode}.
6628 Canonicalization of a function pointer usually involves computing
6629 the address of the function which would be called if the function
6630 pointer were used in an indirect call.
6632 Only define this pattern if function pointers on the target machine
6633 can have different values but still call the same function when
6634 used in an indirect call.
6636 @cindex @code{save_stack_block} instruction pattern
6637 @cindex @code{save_stack_function} instruction pattern
6638 @cindex @code{save_stack_nonlocal} instruction pattern
6639 @cindex @code{restore_stack_block} instruction pattern
6640 @cindex @code{restore_stack_function} instruction pattern
6641 @cindex @code{restore_stack_nonlocal} instruction pattern
6642 @item @samp{save_stack_block}
6643 @itemx @samp{save_stack_function}
6644 @itemx @samp{save_stack_nonlocal}
6645 @itemx @samp{restore_stack_block}
6646 @itemx @samp{restore_stack_function}
6647 @itemx @samp{restore_stack_nonlocal}
6648 Most machines save and restore the stack pointer by copying it to or
6649 from an object of mode @code{Pmode}.  Do not define these patterns on
6650 such machines.
6652 Some machines require special handling for stack pointer saves and
6653 restores.  On those machines, define the patterns corresponding to the
6654 non-standard cases by using a @code{define_expand} (@pxref{Expander
6655 Definitions}) that produces the required insns.  The three types of
6656 saves and restores are:
6658 @enumerate
6659 @item
6660 @samp{save_stack_block} saves the stack pointer at the start of a block
6661 that allocates a variable-sized object, and @samp{restore_stack_block}
6662 restores the stack pointer when the block is exited.
6664 @item
6665 @samp{save_stack_function} and @samp{restore_stack_function} do a
6666 similar job for the outermost block of a function and are used when the
6667 function allocates variable-sized objects or calls @code{alloca}.  Only
6668 the epilogue uses the restored stack pointer, allowing a simpler save or
6669 restore sequence on some machines.
6671 @item
6672 @samp{save_stack_nonlocal} is used in functions that contain labels
6673 branched to by nested functions.  It saves the stack pointer in such a
6674 way that the inner function can use @samp{restore_stack_nonlocal} to
6675 restore the stack pointer.  The compiler generates code to restore the
6676 frame and argument pointer registers, but some machines require saving
6677 and restoring additional data such as register window information or
6678 stack backchains.  Place insns in these patterns to save and restore any
6679 such required data.
6680 @end enumerate
6682 When saving the stack pointer, operand 0 is the save area and operand 1
6683 is the stack pointer.  The mode used to allocate the save area defaults
6684 to @code{Pmode} but you can override that choice by defining the
6685 @code{STACK_SAVEAREA_MODE} macro (@pxref{Storage Layout}).  You must
6686 specify an integral mode, or @code{VOIDmode} if no save area is needed
6687 for a particular type of save (either because no save is needed or
6688 because a machine-specific save area can be used).  Operand 0 is the
6689 stack pointer and operand 1 is the save area for restore operations.  If
6690 @samp{save_stack_block} is defined, operand 0 must not be
6691 @code{VOIDmode} since these saves can be arbitrarily nested.
6693 A save area is a @code{mem} that is at a constant offset from
6694 @code{virtual_stack_vars_rtx} when the stack pointer is saved for use by
6695 nonlocal gotos and a @code{reg} in the other two cases.
6697 @cindex @code{allocate_stack} instruction pattern
6698 @item @samp{allocate_stack}
6699 Subtract (or add if @code{STACK_GROWS_DOWNWARD} is undefined) operand 1 from
6700 the stack pointer to create space for dynamically allocated data.
6702 Store the resultant pointer to this space into operand 0.  If you
6703 are allocating space from the main stack, do this by emitting a
6704 move insn to copy @code{virtual_stack_dynamic_rtx} to operand 0.
6705 If you are allocating the space elsewhere, generate code to copy the
6706 location of the space to operand 0.  In the latter case, you must
6707 ensure this space gets freed when the corresponding space on the main
6708 stack is free.
6710 Do not define this pattern if all that must be done is the subtraction.
6711 Some machines require other operations such as stack probes or
6712 maintaining the back chain.  Define this pattern to emit those
6713 operations in addition to updating the stack pointer.
6715 @cindex @code{check_stack} instruction pattern
6716 @item @samp{check_stack}
6717 If stack checking (@pxref{Stack Checking}) cannot be done on your system by
6718 probing the stack, define this pattern to perform the needed check and signal
6719 an error if the stack has overflowed.  The single operand is the address in
6720 the stack farthest from the current stack pointer that you need to validate.
6721 Normally, on platforms where this pattern is needed, you would obtain the
6722 stack limit from a global or thread-specific variable or register.
6724 @cindex @code{probe_stack_address} instruction pattern
6725 @item @samp{probe_stack_address}
6726 If stack checking (@pxref{Stack Checking}) can be done on your system by
6727 probing the stack but without the need to actually access it, define this
6728 pattern and signal an error if the stack has overflowed.  The single operand
6729 is the memory address in the stack that needs to be probed.
6731 @cindex @code{probe_stack} instruction pattern
6732 @item @samp{probe_stack}
6733 If stack checking (@pxref{Stack Checking}) can be done on your system by
6734 probing the stack but doing it with a ``store zero'' instruction is not valid
6735 or optimal, define this pattern to do the probing differently and signal an
6736 error if the stack has overflowed.  The single operand is the memory reference
6737 in the stack that needs to be probed.
6739 @cindex @code{nonlocal_goto} instruction pattern
6740 @item @samp{nonlocal_goto}
6741 Emit code to generate a non-local goto, e.g., a jump from one function
6742 to a label in an outer function.  This pattern has four arguments,
6743 each representing a value to be used in the jump.  The first
6744 argument is to be loaded into the frame pointer, the second is
6745 the address to branch to (code to dispatch to the actual label),
6746 the third is the address of a location where the stack is saved,
6747 and the last is the address of the label, to be placed in the
6748 location for the incoming static chain.
6750 On most machines you need not define this pattern, since GCC will
6751 already generate the correct code, which is to load the frame pointer
6752 and static chain, restore the stack (using the
6753 @samp{restore_stack_nonlocal} pattern, if defined), and jump indirectly
6754 to the dispatcher.  You need only define this pattern if this code will
6755 not work on your machine.
6757 @cindex @code{nonlocal_goto_receiver} instruction pattern
6758 @item @samp{nonlocal_goto_receiver}
6759 This pattern, if defined, contains code needed at the target of a
6760 nonlocal goto after the code already generated by GCC@.  You will not
6761 normally need to define this pattern.  A typical reason why you might
6762 need this pattern is if some value, such as a pointer to a global table,
6763 must be restored when the frame pointer is restored.  Note that a nonlocal
6764 goto only occurs within a unit-of-translation, so a global table pointer
6765 that is shared by all functions of a given module need not be restored.
6766 There are no arguments.
6768 @cindex @code{exception_receiver} instruction pattern
6769 @item @samp{exception_receiver}
6770 This pattern, if defined, contains code needed at the site of an
6771 exception handler that isn't needed at the site of a nonlocal goto.  You
6772 will not normally need to define this pattern.  A typical reason why you
6773 might need this pattern is if some value, such as a pointer to a global
6774 table, must be restored after control flow is branched to the handler of
6775 an exception.  There are no arguments.
6777 @cindex @code{builtin_setjmp_setup} instruction pattern
6778 @item @samp{builtin_setjmp_setup}
6779 This pattern, if defined, contains additional code needed to initialize
6780 the @code{jmp_buf}.  You will not normally need to define this pattern.
6781 A typical reason why you might need this pattern is if some value, such
6782 as a pointer to a global table, must be restored.  Though it is
6783 preferred that the pointer value be recalculated if possible (given the
6784 address of a label for instance).  The single argument is a pointer to
6785 the @code{jmp_buf}.  Note that the buffer is five words long and that
6786 the first three are normally used by the generic mechanism.
6788 @cindex @code{builtin_setjmp_receiver} instruction pattern
6789 @item @samp{builtin_setjmp_receiver}
6790 This pattern, if defined, contains code needed at the site of a
6791 built-in setjmp that isn't needed at the site of a nonlocal goto.  You
6792 will not normally need to define this pattern.  A typical reason why you
6793 might need this pattern is if some value, such as a pointer to a global
6794 table, must be restored.  It takes one argument, which is the label
6795 to which builtin_longjmp transferred control; this pattern may be emitted
6796 at a small offset from that label.
6798 @cindex @code{builtin_longjmp} instruction pattern
6799 @item @samp{builtin_longjmp}
6800 This pattern, if defined, performs the entire action of the longjmp.
6801 You will not normally need to define this pattern unless you also define
6802 @code{builtin_setjmp_setup}.  The single argument is a pointer to the
6803 @code{jmp_buf}.
6805 @cindex @code{eh_return} instruction pattern
6806 @item @samp{eh_return}
6807 This pattern, if defined, affects the way @code{__builtin_eh_return},
6808 and thence the call frame exception handling library routines, are
6809 built.  It is intended to handle non-trivial actions needed along
6810 the abnormal return path.
6812 The address of the exception handler to which the function should return
6813 is passed as operand to this pattern.  It will normally need to copied by
6814 the pattern to some special register or memory location.
6815 If the pattern needs to determine the location of the target call
6816 frame in order to do so, it may use @code{EH_RETURN_STACKADJ_RTX},
6817 if defined; it will have already been assigned.
6819 If this pattern is not defined, the default action will be to simply
6820 copy the return address to @code{EH_RETURN_HANDLER_RTX}.  Either
6821 that macro or this pattern needs to be defined if call frame exception
6822 handling is to be used.
6824 @cindex @code{prologue} instruction pattern
6825 @anchor{prologue instruction pattern}
6826 @item @samp{prologue}
6827 This pattern, if defined, emits RTL for entry to a function.  The function
6828 entry is responsible for setting up the stack frame, initializing the frame
6829 pointer register, saving callee saved registers, etc.
6831 Using a prologue pattern is generally preferred over defining
6832 @code{TARGET_ASM_FUNCTION_PROLOGUE} to emit assembly code for the prologue.
6834 The @code{prologue} pattern is particularly useful for targets which perform
6835 instruction scheduling.
6837 @cindex @code{window_save} instruction pattern
6838 @anchor{window_save instruction pattern}
6839 @item @samp{window_save}
6840 This pattern, if defined, emits RTL for a register window save.  It should
6841 be defined if the target machine has register windows but the window events
6842 are decoupled from calls to subroutines.  The canonical example is the SPARC
6843 architecture.
6845 @cindex @code{epilogue} instruction pattern
6846 @anchor{epilogue instruction pattern}
6847 @item @samp{epilogue}
6848 This pattern emits RTL for exit from a function.  The function
6849 exit is responsible for deallocating the stack frame, restoring callee saved
6850 registers and emitting the return instruction.
6852 Using an epilogue pattern is generally preferred over defining
6853 @code{TARGET_ASM_FUNCTION_EPILOGUE} to emit assembly code for the epilogue.
6855 The @code{epilogue} pattern is particularly useful for targets which perform
6856 instruction scheduling or which have delay slots for their return instruction.
6858 @cindex @code{sibcall_epilogue} instruction pattern
6859 @item @samp{sibcall_epilogue}
6860 This pattern, if defined, emits RTL for exit from a function without the final
6861 branch back to the calling function.  This pattern will be emitted before any
6862 sibling call (aka tail call) sites.
6864 The @code{sibcall_epilogue} pattern must not clobber any arguments used for
6865 parameter passing or any stack slots for arguments passed to the current
6866 function.
6868 @cindex @code{trap} instruction pattern
6869 @item @samp{trap}
6870 This pattern, if defined, signals an error, typically by causing some
6871 kind of signal to be raised.
6873 @cindex @code{ctrap@var{MM}4} instruction pattern
6874 @item @samp{ctrap@var{MM}4}
6875 Conditional trap instruction.  Operand 0 is a piece of RTL which
6876 performs a comparison, and operands 1 and 2 are the arms of the
6877 comparison.  Operand 3 is the trap code, an integer.
6879 A typical @code{ctrap} pattern looks like
6881 @smallexample
6882 (define_insn "ctrapsi4"
6883   [(trap_if (match_operator 0 "trap_operator"
6884              [(match_operand 1 "register_operand")
6885               (match_operand 2 "immediate_operand")])
6886             (match_operand 3 "const_int_operand" "i"))]
6887   ""
6888   "@dots{}")
6889 @end smallexample
6891 @cindex @code{prefetch} instruction pattern
6892 @item @samp{prefetch}
6893 This pattern, if defined, emits code for a non-faulting data prefetch
6894 instruction.  Operand 0 is the address of the memory to prefetch.  Operand 1
6895 is a constant 1 if the prefetch is preparing for a write to the memory
6896 address, or a constant 0 otherwise.  Operand 2 is the expected degree of
6897 temporal locality of the data and is a value between 0 and 3, inclusive; 0
6898 means that the data has no temporal locality, so it need not be left in the
6899 cache after the access; 3 means that the data has a high degree of temporal
6900 locality and should be left in all levels of cache possible;  1 and 2 mean,
6901 respectively, a low or moderate degree of temporal locality.
6903 Targets that do not support write prefetches or locality hints can ignore
6904 the values of operands 1 and 2.
6906 @cindex @code{blockage} instruction pattern
6907 @item @samp{blockage}
6908 This pattern defines a pseudo insn that prevents the instruction
6909 scheduler and other passes from moving instructions and using register
6910 equivalences across the boundary defined by the blockage insn.
6911 This needs to be an UNSPEC_VOLATILE pattern or a volatile ASM.
6913 @cindex @code{memory_blockage} instruction pattern
6914 @item @samp{memory_blockage}
6915 This pattern, if defined, represents a compiler memory barrier, and will be
6916 placed at points across which RTL passes may not propagate memory accesses.
6917 This instruction needs to read and write volatile BLKmode memory.  It does
6918 not need to generate any machine instruction.  If this pattern is not defined,
6919 the compiler falls back to emitting an instruction corresponding
6920 to @code{asm volatile ("" ::: "memory")}.
6922 @cindex @code{memory_barrier} instruction pattern
6923 @item @samp{memory_barrier}
6924 If the target memory model is not fully synchronous, then this pattern
6925 should be defined to an instruction that orders both loads and stores
6926 before the instruction with respect to loads and stores after the instruction.
6927 This pattern has no operands.
6929 @cindex @code{sync_compare_and_swap@var{mode}} instruction pattern
6930 @item @samp{sync_compare_and_swap@var{mode}}
6931 This pattern, if defined, emits code for an atomic compare-and-swap
6932 operation.  Operand 1 is the memory on which the atomic operation is
6933 performed.  Operand 2 is the ``old'' value to be compared against the
6934 current contents of the memory location.  Operand 3 is the ``new'' value
6935 to store in the memory if the compare succeeds.  Operand 0 is the result
6936 of the operation; it should contain the contents of the memory
6937 before the operation.  If the compare succeeds, this should obviously be
6938 a copy of operand 2.
6940 This pattern must show that both operand 0 and operand 1 are modified.
6942 This pattern must issue any memory barrier instructions such that all
6943 memory operations before the atomic operation occur before the atomic
6944 operation and all memory operations after the atomic operation occur
6945 after the atomic operation.
6947 For targets where the success or failure of the compare-and-swap
6948 operation is available via the status flags, it is possible to
6949 avoid a separate compare operation and issue the subsequent
6950 branch or store-flag operation immediately after the compare-and-swap.
6951 To this end, GCC will look for a @code{MODE_CC} set in the
6952 output of @code{sync_compare_and_swap@var{mode}}; if the machine
6953 description includes such a set, the target should also define special
6954 @code{cbranchcc4} and/or @code{cstorecc4} instructions.  GCC will then
6955 be able to take the destination of the @code{MODE_CC} set and pass it
6956 to the @code{cbranchcc4} or @code{cstorecc4} pattern as the first
6957 operand of the comparison (the second will be @code{(const_int 0)}).
6959 For targets where the operating system may provide support for this
6960 operation via library calls, the @code{sync_compare_and_swap_optab}
6961 may be initialized to a function with the same interface as the
6962 @code{__sync_val_compare_and_swap_@var{n}} built-in.  If the entire
6963 set of @var{__sync} builtins are supported via library calls, the
6964 target can initialize all of the optabs at once with
6965 @code{init_sync_libfuncs}.
6966 For the purposes of C++11 @code{std::atomic::is_lock_free}, it is
6967 assumed that these library calls do @emph{not} use any kind of
6968 interruptable locking.
6970 @cindex @code{sync_add@var{mode}} instruction pattern
6971 @cindex @code{sync_sub@var{mode}} instruction pattern
6972 @cindex @code{sync_ior@var{mode}} instruction pattern
6973 @cindex @code{sync_and@var{mode}} instruction pattern
6974 @cindex @code{sync_xor@var{mode}} instruction pattern
6975 @cindex @code{sync_nand@var{mode}} instruction pattern
6976 @item @samp{sync_add@var{mode}}, @samp{sync_sub@var{mode}}
6977 @itemx @samp{sync_ior@var{mode}}, @samp{sync_and@var{mode}}
6978 @itemx @samp{sync_xor@var{mode}}, @samp{sync_nand@var{mode}}
6979 These patterns emit code for an atomic operation on memory.
6980 Operand 0 is the memory on which the atomic operation is performed.
6981 Operand 1 is the second operand to the binary operator.
6983 This pattern must issue any memory barrier instructions such that all
6984 memory operations before the atomic operation occur before the atomic
6985 operation and all memory operations after the atomic operation occur
6986 after the atomic operation.
6988 If these patterns are not defined, the operation will be constructed
6989 from a compare-and-swap operation, if defined.
6991 @cindex @code{sync_old_add@var{mode}} instruction pattern
6992 @cindex @code{sync_old_sub@var{mode}} instruction pattern
6993 @cindex @code{sync_old_ior@var{mode}} instruction pattern
6994 @cindex @code{sync_old_and@var{mode}} instruction pattern
6995 @cindex @code{sync_old_xor@var{mode}} instruction pattern
6996 @cindex @code{sync_old_nand@var{mode}} instruction pattern
6997 @item @samp{sync_old_add@var{mode}}, @samp{sync_old_sub@var{mode}}
6998 @itemx @samp{sync_old_ior@var{mode}}, @samp{sync_old_and@var{mode}}
6999 @itemx @samp{sync_old_xor@var{mode}}, @samp{sync_old_nand@var{mode}}
7000 These patterns emit code for an atomic operation on memory,
7001 and return the value that the memory contained before the operation.
7002 Operand 0 is the result value, operand 1 is the memory on which the
7003 atomic operation is performed, and operand 2 is the second operand
7004 to the binary operator.
7006 This pattern must issue any memory barrier instructions such that all
7007 memory operations before the atomic operation occur before the atomic
7008 operation and all memory operations after the atomic operation occur
7009 after the atomic operation.
7011 If these patterns are not defined, the operation will be constructed
7012 from a compare-and-swap operation, if defined.
7014 @cindex @code{sync_new_add@var{mode}} instruction pattern
7015 @cindex @code{sync_new_sub@var{mode}} instruction pattern
7016 @cindex @code{sync_new_ior@var{mode}} instruction pattern
7017 @cindex @code{sync_new_and@var{mode}} instruction pattern
7018 @cindex @code{sync_new_xor@var{mode}} instruction pattern
7019 @cindex @code{sync_new_nand@var{mode}} instruction pattern
7020 @item @samp{sync_new_add@var{mode}}, @samp{sync_new_sub@var{mode}}
7021 @itemx @samp{sync_new_ior@var{mode}}, @samp{sync_new_and@var{mode}}
7022 @itemx @samp{sync_new_xor@var{mode}}, @samp{sync_new_nand@var{mode}}
7023 These patterns are like their @code{sync_old_@var{op}} counterparts,
7024 except that they return the value that exists in the memory location
7025 after the operation, rather than before the operation.
7027 @cindex @code{sync_lock_test_and_set@var{mode}} instruction pattern
7028 @item @samp{sync_lock_test_and_set@var{mode}}
7029 This pattern takes two forms, based on the capabilities of the target.
7030 In either case, operand 0 is the result of the operand, operand 1 is
7031 the memory on which the atomic operation is performed, and operand 2
7032 is the value to set in the lock.
7034 In the ideal case, this operation is an atomic exchange operation, in
7035 which the previous value in memory operand is copied into the result
7036 operand, and the value operand is stored in the memory operand.
7038 For less capable targets, any value operand that is not the constant 1
7039 should be rejected with @code{FAIL}.  In this case the target may use
7040 an atomic test-and-set bit operation.  The result operand should contain
7041 1 if the bit was previously set and 0 if the bit was previously clear.
7042 The true contents of the memory operand are implementation defined.
7044 This pattern must issue any memory barrier instructions such that the
7045 pattern as a whole acts as an acquire barrier, that is all memory
7046 operations after the pattern do not occur until the lock is acquired.
7048 If this pattern is not defined, the operation will be constructed from
7049 a compare-and-swap operation, if defined.
7051 @cindex @code{sync_lock_release@var{mode}} instruction pattern
7052 @item @samp{sync_lock_release@var{mode}}
7053 This pattern, if defined, releases a lock set by
7054 @code{sync_lock_test_and_set@var{mode}}.  Operand 0 is the memory
7055 that contains the lock; operand 1 is the value to store in the lock.
7057 If the target doesn't implement full semantics for
7058 @code{sync_lock_test_and_set@var{mode}}, any value operand which is not
7059 the constant 0 should be rejected with @code{FAIL}, and the true contents
7060 of the memory operand are implementation defined.
7062 This pattern must issue any memory barrier instructions such that the
7063 pattern as a whole acts as a release barrier, that is the lock is
7064 released only after all previous memory operations have completed.
7066 If this pattern is not defined, then a @code{memory_barrier} pattern
7067 will be emitted, followed by a store of the value to the memory operand.
7069 @cindex @code{atomic_compare_and_swap@var{mode}} instruction pattern
7070 @item @samp{atomic_compare_and_swap@var{mode}} 
7071 This pattern, if defined, emits code for an atomic compare-and-swap
7072 operation with memory model semantics.  Operand 2 is the memory on which
7073 the atomic operation is performed.  Operand 0 is an output operand which
7074 is set to true or false based on whether the operation succeeded.  Operand
7075 1 is an output operand which is set to the contents of the memory before
7076 the operation was attempted.  Operand 3 is the value that is expected to
7077 be in memory.  Operand 4 is the value to put in memory if the expected
7078 value is found there.  Operand 5 is set to 1 if this compare and swap is to
7079 be treated as a weak operation.  Operand 6 is the memory model to be used
7080 if the operation is a success.  Operand 7 is the memory model to be used
7081 if the operation fails.
7083 If memory referred to in operand 2 contains the value in operand 3, then
7084 operand 4 is stored in memory pointed to by operand 2 and fencing based on
7085 the memory model in operand 6 is issued.  
7087 If memory referred to in operand 2 does not contain the value in operand 3,
7088 then fencing based on the memory model in operand 7 is issued.
7090 If a target does not support weak compare-and-swap operations, or the port
7091 elects not to implement weak operations, the argument in operand 5 can be
7092 ignored.  Note a strong implementation must be provided.
7094 If this pattern is not provided, the @code{__atomic_compare_exchange}
7095 built-in functions will utilize the legacy @code{sync_compare_and_swap}
7096 pattern with an @code{__ATOMIC_SEQ_CST} memory model.
7098 @cindex @code{atomic_load@var{mode}} instruction pattern
7099 @item @samp{atomic_load@var{mode}}
7100 This pattern implements an atomic load operation with memory model
7101 semantics.  Operand 1 is the memory address being loaded from.  Operand 0
7102 is the result of the load.  Operand 2 is the memory model to be used for
7103 the load operation.
7105 If not present, the @code{__atomic_load} built-in function will either
7106 resort to a normal load with memory barriers, or a compare-and-swap
7107 operation if a normal load would not be atomic.
7109 @cindex @code{atomic_store@var{mode}} instruction pattern
7110 @item @samp{atomic_store@var{mode}}
7111 This pattern implements an atomic store operation with memory model
7112 semantics.  Operand 0 is the memory address being stored to.  Operand 1
7113 is the value to be written.  Operand 2 is the memory model to be used for
7114 the operation.
7116 If not present, the @code{__atomic_store} built-in function will attempt to
7117 perform a normal store and surround it with any required memory fences.  If
7118 the store would not be atomic, then an @code{__atomic_exchange} is
7119 attempted with the result being ignored.
7121 @cindex @code{atomic_exchange@var{mode}} instruction pattern
7122 @item @samp{atomic_exchange@var{mode}}
7123 This pattern implements an atomic exchange operation with memory model
7124 semantics.  Operand 1 is the memory location the operation is performed on.
7125 Operand 0 is an output operand which is set to the original value contained
7126 in the memory pointed to by operand 1.  Operand 2 is the value to be
7127 stored.  Operand 3 is the memory model to be used.
7129 If this pattern is not present, the built-in function
7130 @code{__atomic_exchange} will attempt to preform the operation with a
7131 compare and swap loop.
7133 @cindex @code{atomic_add@var{mode}} instruction pattern
7134 @cindex @code{atomic_sub@var{mode}} instruction pattern
7135 @cindex @code{atomic_or@var{mode}} instruction pattern
7136 @cindex @code{atomic_and@var{mode}} instruction pattern
7137 @cindex @code{atomic_xor@var{mode}} instruction pattern
7138 @cindex @code{atomic_nand@var{mode}} instruction pattern
7139 @item @samp{atomic_add@var{mode}}, @samp{atomic_sub@var{mode}}
7140 @itemx @samp{atomic_or@var{mode}}, @samp{atomic_and@var{mode}}
7141 @itemx @samp{atomic_xor@var{mode}}, @samp{atomic_nand@var{mode}}
7142 These patterns emit code for an atomic operation on memory with memory
7143 model semantics. Operand 0 is the memory on which the atomic operation is
7144 performed.  Operand 1 is the second operand to the binary operator.
7145 Operand 2 is the memory model to be used by the operation.
7147 If these patterns are not defined, attempts will be made to use legacy
7148 @code{sync} patterns, or equivalent patterns which return a result.  If
7149 none of these are available a compare-and-swap loop will be used.
7151 @cindex @code{atomic_fetch_add@var{mode}} instruction pattern
7152 @cindex @code{atomic_fetch_sub@var{mode}} instruction pattern
7153 @cindex @code{atomic_fetch_or@var{mode}} instruction pattern
7154 @cindex @code{atomic_fetch_and@var{mode}} instruction pattern
7155 @cindex @code{atomic_fetch_xor@var{mode}} instruction pattern
7156 @cindex @code{atomic_fetch_nand@var{mode}} instruction pattern
7157 @item @samp{atomic_fetch_add@var{mode}}, @samp{atomic_fetch_sub@var{mode}}
7158 @itemx @samp{atomic_fetch_or@var{mode}}, @samp{atomic_fetch_and@var{mode}}
7159 @itemx @samp{atomic_fetch_xor@var{mode}}, @samp{atomic_fetch_nand@var{mode}}
7160 These patterns emit code for an atomic operation on memory with memory
7161 model semantics, and return the original value. Operand 0 is an output 
7162 operand which contains the value of the memory location before the 
7163 operation was performed.  Operand 1 is the memory on which the atomic 
7164 operation is performed.  Operand 2 is the second operand to the binary
7165 operator.  Operand 3 is the memory model to be used by the operation.
7167 If these patterns are not defined, attempts will be made to use legacy
7168 @code{sync} patterns.  If none of these are available a compare-and-swap
7169 loop will be used.
7171 @cindex @code{atomic_add_fetch@var{mode}} instruction pattern
7172 @cindex @code{atomic_sub_fetch@var{mode}} instruction pattern
7173 @cindex @code{atomic_or_fetch@var{mode}} instruction pattern
7174 @cindex @code{atomic_and_fetch@var{mode}} instruction pattern
7175 @cindex @code{atomic_xor_fetch@var{mode}} instruction pattern
7176 @cindex @code{atomic_nand_fetch@var{mode}} instruction pattern
7177 @item @samp{atomic_add_fetch@var{mode}}, @samp{atomic_sub_fetch@var{mode}}
7178 @itemx @samp{atomic_or_fetch@var{mode}}, @samp{atomic_and_fetch@var{mode}}
7179 @itemx @samp{atomic_xor_fetch@var{mode}}, @samp{atomic_nand_fetch@var{mode}}
7180 These patterns emit code for an atomic operation on memory with memory
7181 model semantics and return the result after the operation is performed.
7182 Operand 0 is an output operand which contains the value after the
7183 operation.  Operand 1 is the memory on which the atomic operation is
7184 performed.  Operand 2 is the second operand to the binary operator.
7185 Operand 3 is the memory model to be used by the operation.
7187 If these patterns are not defined, attempts will be made to use legacy
7188 @code{sync} patterns, or equivalent patterns which return the result before
7189 the operation followed by the arithmetic operation required to produce the
7190 result.  If none of these are available a compare-and-swap loop will be
7191 used.
7193 @cindex @code{atomic_test_and_set} instruction pattern
7194 @item @samp{atomic_test_and_set}
7195 This pattern emits code for @code{__builtin_atomic_test_and_set}.
7196 Operand 0 is an output operand which is set to true if the previous
7197 previous contents of the byte was "set", and false otherwise.  Operand 1
7198 is the @code{QImode} memory to be modified.  Operand 2 is the memory
7199 model to be used.
7201 The specific value that defines "set" is implementation defined, and
7202 is normally based on what is performed by the native atomic test and set
7203 instruction.
7205 @cindex @code{atomic_bit_test_and_set@var{mode}} instruction pattern
7206 @cindex @code{atomic_bit_test_and_complement@var{mode}} instruction pattern
7207 @cindex @code{atomic_bit_test_and_reset@var{mode}} instruction pattern
7208 @item @samp{atomic_bit_test_and_set@var{mode}}
7209 @itemx @samp{atomic_bit_test_and_complement@var{mode}}
7210 @itemx @samp{atomic_bit_test_and_reset@var{mode}}
7211 These patterns emit code for an atomic bitwise operation on memory with memory
7212 model semantics, and return the original value of the specified bit.
7213 Operand 0 is an output operand which contains the value of the specified bit
7214 from the memory location before the operation was performed.  Operand 1 is the
7215 memory on which the atomic operation is performed.  Operand 2 is the bit within
7216 the operand, starting with least significant bit.  Operand 3 is the memory model
7217 to be used by the operation.  Operand 4 is a flag - it is @code{const1_rtx}
7218 if operand 0 should contain the original value of the specified bit in the
7219 least significant bit of the operand, and @code{const0_rtx} if the bit should
7220 be in its original position in the operand.
7221 @code{atomic_bit_test_and_set@var{mode}} atomically sets the specified bit after
7222 remembering its original value, @code{atomic_bit_test_and_complement@var{mode}}
7223 inverts the specified bit and @code{atomic_bit_test_and_reset@var{mode}} clears
7224 the specified bit.
7226 If these patterns are not defined, attempts will be made to use
7227 @code{atomic_fetch_or@var{mode}}, @code{atomic_fetch_xor@var{mode}} or
7228 @code{atomic_fetch_and@var{mode}} instruction patterns, or their @code{sync}
7229 counterparts.  If none of these are available a compare-and-swap
7230 loop will be used.
7232 @cindex @code{mem_thread_fence} instruction pattern
7233 @item @samp{mem_thread_fence}
7234 This pattern emits code required to implement a thread fence with
7235 memory model semantics.  Operand 0 is the memory model to be used.
7237 For the @code{__ATOMIC_RELAXED} model no instructions need to be issued
7238 and this expansion is not invoked.
7240 The compiler always emits a compiler memory barrier regardless of what
7241 expanding this pattern produced.
7243 If this pattern is not defined, the compiler falls back to expanding the
7244 @code{memory_barrier} pattern, then to emitting @code{__sync_synchronize}
7245 library call, and finally to just placing a compiler memory barrier.
7247 @cindex @code{get_thread_pointer@var{mode}} instruction pattern
7248 @cindex @code{set_thread_pointer@var{mode}} instruction pattern
7249 @item @samp{get_thread_pointer@var{mode}}
7250 @itemx @samp{set_thread_pointer@var{mode}}
7251 These patterns emit code that reads/sets the TLS thread pointer. Currently,
7252 these are only needed if the target needs to support the
7253 @code{__builtin_thread_pointer} and @code{__builtin_set_thread_pointer}
7254 builtins.
7256 The get/set patterns have a single output/input operand respectively,
7257 with @var{mode} intended to be @code{Pmode}.
7259 @cindex @code{stack_protect_set} instruction pattern
7260 @item @samp{stack_protect_set}
7261 This pattern, if defined, moves a @code{ptr_mode} value from the memory
7262 in operand 1 to the memory in operand 0 without leaving the value in
7263 a register afterward.  This is to avoid leaking the value some place
7264 that an attacker might use to rewrite the stack guard slot after
7265 having clobbered it.
7267 If this pattern is not defined, then a plain move pattern is generated.
7269 @cindex @code{stack_protect_test} instruction pattern
7270 @item @samp{stack_protect_test}
7271 This pattern, if defined, compares a @code{ptr_mode} value from the
7272 memory in operand 1 with the memory in operand 0 without leaving the
7273 value in a register afterward and branches to operand 2 if the values
7274 were equal.
7276 If this pattern is not defined, then a plain compare pattern and
7277 conditional branch pattern is used.
7279 @cindex @code{clear_cache} instruction pattern
7280 @item @samp{clear_cache}
7281 This pattern, if defined, flushes the instruction cache for a region of
7282 memory.  The region is bounded to by the Pmode pointers in operand 0
7283 inclusive and operand 1 exclusive.
7285 If this pattern is not defined, a call to the library function
7286 @code{__clear_cache} is used.
7288 @end table
7290 @end ifset
7291 @c Each of the following nodes are wrapped in separate
7292 @c "@ifset INTERNALS" to work around memory limits for the default
7293 @c configuration in older tetex distributions.  Known to not work:
7294 @c tetex-1.0.7, known to work: tetex-2.0.2.
7295 @ifset INTERNALS
7296 @node Pattern Ordering
7297 @section When the Order of Patterns Matters
7298 @cindex Pattern Ordering
7299 @cindex Ordering of Patterns
7301 Sometimes an insn can match more than one instruction pattern.  Then the
7302 pattern that appears first in the machine description is the one used.
7303 Therefore, more specific patterns (patterns that will match fewer things)
7304 and faster instructions (those that will produce better code when they
7305 do match) should usually go first in the description.
7307 In some cases the effect of ordering the patterns can be used to hide
7308 a pattern when it is not valid.  For example, the 68000 has an
7309 instruction for converting a fullword to floating point and another
7310 for converting a byte to floating point.  An instruction converting
7311 an integer to floating point could match either one.  We put the
7312 pattern to convert the fullword first to make sure that one will
7313 be used rather than the other.  (Otherwise a large integer might
7314 be generated as a single-byte immediate quantity, which would not work.)
7315 Instead of using this pattern ordering it would be possible to make the
7316 pattern for convert-a-byte smart enough to deal properly with any
7317 constant value.
7319 @end ifset
7320 @ifset INTERNALS
7321 @node Dependent Patterns
7322 @section Interdependence of Patterns
7323 @cindex Dependent Patterns
7324 @cindex Interdependence of Patterns
7326 In some cases machines support instructions identical except for the
7327 machine mode of one or more operands.  For example, there may be
7328 ``sign-extend halfword'' and ``sign-extend byte'' instructions whose
7329 patterns are
7331 @smallexample
7332 (set (match_operand:SI 0 @dots{})
7333      (extend:SI (match_operand:HI 1 @dots{})))
7335 (set (match_operand:SI 0 @dots{})
7336      (extend:SI (match_operand:QI 1 @dots{})))
7337 @end smallexample
7339 @noindent
7340 Constant integers do not specify a machine mode, so an instruction to
7341 extend a constant value could match either pattern.  The pattern it
7342 actually will match is the one that appears first in the file.  For correct
7343 results, this must be the one for the widest possible mode (@code{HImode},
7344 here).  If the pattern matches the @code{QImode} instruction, the results
7345 will be incorrect if the constant value does not actually fit that mode.
7347 Such instructions to extend constants are rarely generated because they are
7348 optimized away, but they do occasionally happen in nonoptimized
7349 compilations.
7351 If a constraint in a pattern allows a constant, the reload pass may
7352 replace a register with a constant permitted by the constraint in some
7353 cases.  Similarly for memory references.  Because of this substitution,
7354 you should not provide separate patterns for increment and decrement
7355 instructions.  Instead, they should be generated from the same pattern
7356 that supports register-register add insns by examining the operands and
7357 generating the appropriate machine instruction.
7359 @end ifset
7360 @ifset INTERNALS
7361 @node Jump Patterns
7362 @section Defining Jump Instruction Patterns
7363 @cindex jump instruction patterns
7364 @cindex defining jump instruction patterns
7366 GCC does not assume anything about how the machine realizes jumps.
7367 The machine description should define a single pattern, usually
7368 a @code{define_expand}, which expands to all the required insns.
7370 Usually, this would be a comparison insn to set the condition code
7371 and a separate branch insn testing the condition code and branching
7372 or not according to its value.  For many machines, however,
7373 separating compares and branches is limiting, which is why the
7374 more flexible approach with one @code{define_expand} is used in GCC.
7375 The machine description becomes clearer for architectures that
7376 have compare-and-branch instructions but no condition code.  It also
7377 works better when different sets of comparison operators are supported
7378 by different kinds of conditional branches (e.g. integer vs. floating-point),
7379 or by conditional branches with respect to conditional stores.
7381 Two separate insns are always used if the machine description represents
7382 a condition code register using the legacy RTL expression @code{(cc0)},
7383 and on most machines that use a separate condition code register
7384 (@pxref{Condition Code}).  For machines that use @code{(cc0)}, in
7385 fact, the set and use of the condition code must be separate and
7386 adjacent@footnote{@code{note} insns can separate them, though.}, thus
7387 allowing flags in @code{cc_status} to be used (@pxref{Condition Code}) and
7388 so that the comparison and branch insns could be located from each other
7389 by using the functions @code{prev_cc0_setter} and @code{next_cc0_user}.
7391 Even in this case having a single entry point for conditional branches
7392 is advantageous, because it handles equally well the case where a single
7393 comparison instruction records the results of both signed and unsigned
7394 comparison of the given operands (with the branch insns coming in distinct
7395 signed and unsigned flavors) as in the x86 or SPARC, and the case where
7396 there are distinct signed and unsigned compare instructions and only
7397 one set of conditional branch instructions as in the PowerPC.
7399 @end ifset
7400 @ifset INTERNALS
7401 @node Looping Patterns
7402 @section Defining Looping Instruction Patterns
7403 @cindex looping instruction patterns
7404 @cindex defining looping instruction patterns
7406 Some machines have special jump instructions that can be utilized to
7407 make loops more efficient.  A common example is the 68000 @samp{dbra}
7408 instruction which performs a decrement of a register and a branch if the
7409 result was greater than zero.  Other machines, in particular digital
7410 signal processors (DSPs), have special block repeat instructions to
7411 provide low-overhead loop support.  For example, the TI TMS320C3x/C4x
7412 DSPs have a block repeat instruction that loads special registers to
7413 mark the top and end of a loop and to count the number of loop
7414 iterations.  This avoids the need for fetching and executing a
7415 @samp{dbra}-like instruction and avoids pipeline stalls associated with
7416 the jump.
7418 GCC has three special named patterns to support low overhead looping.
7419 They are @samp{decrement_and_branch_until_zero}, @samp{doloop_begin},
7420 and @samp{doloop_end}.  The first pattern,
7421 @samp{decrement_and_branch_until_zero}, is not emitted during RTL
7422 generation but may be emitted during the instruction combination phase.
7423 This requires the assistance of the loop optimizer, using information
7424 collected during strength reduction, to reverse a loop to count down to
7425 zero.  Some targets also require the loop optimizer to add a
7426 @code{REG_NONNEG} note to indicate that the iteration count is always
7427 positive.  This is needed if the target performs a signed loop
7428 termination test.  For example, the 68000 uses a pattern similar to the
7429 following for its @code{dbra} instruction:
7431 @smallexample
7432 @group
7433 (define_insn "decrement_and_branch_until_zero"
7434   [(set (pc)
7435         (if_then_else
7436           (ge (plus:SI (match_operand:SI 0 "general_operand" "+d*am")
7437                        (const_int -1))
7438               (const_int 0))
7439           (label_ref (match_operand 1 "" ""))
7440           (pc)))
7441    (set (match_dup 0)
7442         (plus:SI (match_dup 0)
7443                  (const_int -1)))]
7444   "find_reg_note (insn, REG_NONNEG, 0)"
7445   "@dots{}")
7446 @end group
7447 @end smallexample
7449 Note that since the insn is both a jump insn and has an output, it must
7450 deal with its own reloads, hence the `m' constraints.  Also note that
7451 since this insn is generated by the instruction combination phase
7452 combining two sequential insns together into an implicit parallel insn,
7453 the iteration counter needs to be biased by the same amount as the
7454 decrement operation, in this case @minus{}1.  Note that the following similar
7455 pattern will not be matched by the combiner.
7457 @smallexample
7458 @group
7459 (define_insn "decrement_and_branch_until_zero"
7460   [(set (pc)
7461         (if_then_else
7462           (ge (match_operand:SI 0 "general_operand" "+d*am")
7463               (const_int 1))
7464           (label_ref (match_operand 1 "" ""))
7465           (pc)))
7466    (set (match_dup 0)
7467         (plus:SI (match_dup 0)
7468                  (const_int -1)))]
7469   "find_reg_note (insn, REG_NONNEG, 0)"
7470   "@dots{}")
7471 @end group
7472 @end smallexample
7474 The other two special looping patterns, @samp{doloop_begin} and
7475 @samp{doloop_end}, are emitted by the loop optimizer for certain
7476 well-behaved loops with a finite number of loop iterations using
7477 information collected during strength reduction.
7479 The @samp{doloop_end} pattern describes the actual looping instruction
7480 (or the implicit looping operation) and the @samp{doloop_begin} pattern
7481 is an optional companion pattern that can be used for initialization
7482 needed for some low-overhead looping instructions.
7484 Note that some machines require the actual looping instruction to be
7485 emitted at the top of the loop (e.g., the TMS320C3x/C4x DSPs).  Emitting
7486 the true RTL for a looping instruction at the top of the loop can cause
7487 problems with flow analysis.  So instead, a dummy @code{doloop} insn is
7488 emitted at the end of the loop.  The machine dependent reorg pass checks
7489 for the presence of this @code{doloop} insn and then searches back to
7490 the top of the loop, where it inserts the true looping insn (provided
7491 there are no instructions in the loop which would cause problems).  Any
7492 additional labels can be emitted at this point.  In addition, if the
7493 desired special iteration counter register was not allocated, this
7494 machine dependent reorg pass could emit a traditional compare and jump
7495 instruction pair.
7497 The essential difference between the
7498 @samp{decrement_and_branch_until_zero} and the @samp{doloop_end}
7499 patterns is that the loop optimizer allocates an additional pseudo
7500 register for the latter as an iteration counter.  This pseudo register
7501 cannot be used within the loop (i.e., general induction variables cannot
7502 be derived from it), however, in many cases the loop induction variable
7503 may become redundant and removed by the flow pass.
7506 @end ifset
7507 @ifset INTERNALS
7508 @node Insn Canonicalizations
7509 @section Canonicalization of Instructions
7510 @cindex canonicalization of instructions
7511 @cindex insn canonicalization
7513 There are often cases where multiple RTL expressions could represent an
7514 operation performed by a single machine instruction.  This situation is
7515 most commonly encountered with logical, branch, and multiply-accumulate
7516 instructions.  In such cases, the compiler attempts to convert these
7517 multiple RTL expressions into a single canonical form to reduce the
7518 number of insn patterns required.
7520 In addition to algebraic simplifications, following canonicalizations
7521 are performed:
7523 @itemize @bullet
7524 @item
7525 For commutative and comparison operators, a constant is always made the
7526 second operand.  If a machine only supports a constant as the second
7527 operand, only patterns that match a constant in the second operand need
7528 be supplied.
7530 @item
7531 For associative operators, a sequence of operators will always chain
7532 to the left; for instance, only the left operand of an integer @code{plus}
7533 can itself be a @code{plus}.  @code{and}, @code{ior}, @code{xor},
7534 @code{plus}, @code{mult}, @code{smin}, @code{smax}, @code{umin}, and
7535 @code{umax} are associative when applied to integers, and sometimes to
7536 floating-point.
7538 @item
7539 @cindex @code{neg}, canonicalization of
7540 @cindex @code{not}, canonicalization of
7541 @cindex @code{mult}, canonicalization of
7542 @cindex @code{plus}, canonicalization of
7543 @cindex @code{minus}, canonicalization of
7544 For these operators, if only one operand is a @code{neg}, @code{not},
7545 @code{mult}, @code{plus}, or @code{minus} expression, it will be the
7546 first operand.
7548 @item
7549 In combinations of @code{neg}, @code{mult}, @code{plus}, and
7550 @code{minus}, the @code{neg} operations (if any) will be moved inside
7551 the operations as far as possible.  For instance,
7552 @code{(neg (mult A B))} is canonicalized as @code{(mult (neg A) B)}, but
7553 @code{(plus (mult (neg B) C) A)} is canonicalized as
7554 @code{(minus A (mult B C))}.
7556 @cindex @code{compare}, canonicalization of
7557 @item
7558 For the @code{compare} operator, a constant is always the second operand
7559 if the first argument is a condition code register or @code{(cc0)}.
7561 @item
7562 For instructions that inherently set a condition code register, the
7563 @code{compare} operator is always written as the first RTL expression of
7564 the @code{parallel} instruction pattern.  For example,
7566 @smallexample
7567 (define_insn ""
7568   [(set (reg:CCZ FLAGS_REG)
7569         (compare:CCZ
7570           (plus:SI
7571             (match_operand:SI 1 "register_operand" "%r")
7572             (match_operand:SI 2 "register_operand" "r"))
7573           (const_int 0)))
7574    (set (match_operand:SI 0 "register_operand" "=r")
7575         (plus:SI (match_dup 1) (match_dup 2)))]
7576   ""
7577   "addl %0, %1, %2")
7578 @end smallexample
7580 @item
7581 An operand of @code{neg}, @code{not}, @code{mult}, @code{plus}, or
7582 @code{minus} is made the first operand under the same conditions as
7583 above.
7585 @item
7586 @code{(ltu (plus @var{a} @var{b}) @var{b})} is converted to
7587 @code{(ltu (plus @var{a} @var{b}) @var{a})}. Likewise with @code{geu} instead
7588 of @code{ltu}.
7590 @item
7591 @code{(minus @var{x} (const_int @var{n}))} is converted to
7592 @code{(plus @var{x} (const_int @var{-n}))}.
7594 @item
7595 Within address computations (i.e., inside @code{mem}), a left shift is
7596 converted into the appropriate multiplication by a power of two.
7598 @cindex @code{ior}, canonicalization of
7599 @cindex @code{and}, canonicalization of
7600 @cindex De Morgan's law
7601 @item
7602 De Morgan's Law is used to move bitwise negation inside a bitwise
7603 logical-and or logical-or operation.  If this results in only one
7604 operand being a @code{not} expression, it will be the first one.
7606 A machine that has an instruction that performs a bitwise logical-and of one
7607 operand with the bitwise negation of the other should specify the pattern
7608 for that instruction as
7610 @smallexample
7611 (define_insn ""
7612   [(set (match_operand:@var{m} 0 @dots{})
7613         (and:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7614                      (match_operand:@var{m} 2 @dots{})))]
7615   "@dots{}"
7616   "@dots{}")
7617 @end smallexample
7619 @noindent
7620 Similarly, a pattern for a ``NAND'' instruction should be written
7622 @smallexample
7623 (define_insn ""
7624   [(set (match_operand:@var{m} 0 @dots{})
7625         (ior:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7626                      (not:@var{m} (match_operand:@var{m} 2 @dots{}))))]
7627   "@dots{}"
7628   "@dots{}")
7629 @end smallexample
7631 In both cases, it is not necessary to include patterns for the many
7632 logically equivalent RTL expressions.
7634 @cindex @code{xor}, canonicalization of
7635 @item
7636 The only possible RTL expressions involving both bitwise exclusive-or
7637 and bitwise negation are @code{(xor:@var{m} @var{x} @var{y})}
7638 and @code{(not:@var{m} (xor:@var{m} @var{x} @var{y}))}.
7640 @item
7641 The sum of three items, one of which is a constant, will only appear in
7642 the form
7644 @smallexample
7645 (plus:@var{m} (plus:@var{m} @var{x} @var{y}) @var{constant})
7646 @end smallexample
7648 @cindex @code{zero_extract}, canonicalization of
7649 @cindex @code{sign_extract}, canonicalization of
7650 @item
7651 Equality comparisons of a group of bits (usually a single bit) with zero
7652 will be written using @code{zero_extract} rather than the equivalent
7653 @code{and} or @code{sign_extract} operations.
7655 @cindex @code{mult}, canonicalization of
7656 @item
7657 @code{(sign_extend:@var{m1} (mult:@var{m2} (sign_extend:@var{m2} @var{x})
7658 (sign_extend:@var{m2} @var{y})))} is converted to @code{(mult:@var{m1}
7659 (sign_extend:@var{m1} @var{x}) (sign_extend:@var{m1} @var{y}))}, and likewise
7660 for @code{zero_extend}.
7662 @item
7663 @code{(sign_extend:@var{m1} (mult:@var{m2} (ashiftrt:@var{m2}
7664 @var{x} @var{s}) (sign_extend:@var{m2} @var{y})))} is converted
7665 to @code{(mult:@var{m1} (sign_extend:@var{m1} (ashiftrt:@var{m2}
7666 @var{x} @var{s})) (sign_extend:@var{m1} @var{y}))}, and likewise for
7667 patterns using @code{zero_extend} and @code{lshiftrt}.  If the second
7668 operand of @code{mult} is also a shift, then that is extended also.
7669 This transformation is only applied when it can be proven that the
7670 original operation had sufficient precision to prevent overflow.
7672 @end itemize
7674 Further canonicalization rules are defined in the function
7675 @code{commutative_operand_precedence} in @file{gcc/rtlanal.c}.
7677 @end ifset
7678 @ifset INTERNALS
7679 @node Expander Definitions
7680 @section Defining RTL Sequences for Code Generation
7681 @cindex expander definitions
7682 @cindex code generation RTL sequences
7683 @cindex defining RTL sequences for code generation
7685 On some target machines, some standard pattern names for RTL generation
7686 cannot be handled with single insn, but a sequence of RTL insns can
7687 represent them.  For these target machines, you can write a
7688 @code{define_expand} to specify how to generate the sequence of RTL@.
7690 @findex define_expand
7691 A @code{define_expand} is an RTL expression that looks almost like a
7692 @code{define_insn}; but, unlike the latter, a @code{define_expand} is used
7693 only for RTL generation and it can produce more than one RTL insn.
7695 A @code{define_expand} RTX has four operands:
7697 @itemize @bullet
7698 @item
7699 The name.  Each @code{define_expand} must have a name, since the only
7700 use for it is to refer to it by name.
7702 @item
7703 The RTL template.  This is a vector of RTL expressions representing
7704 a sequence of separate instructions.  Unlike @code{define_insn}, there
7705 is no implicit surrounding @code{PARALLEL}.
7707 @item
7708 The condition, a string containing a C expression.  This expression is
7709 used to express how the availability of this pattern depends on
7710 subclasses of target machine, selected by command-line options when GCC
7711 is run.  This is just like the condition of a @code{define_insn} that
7712 has a standard name.  Therefore, the condition (if present) may not
7713 depend on the data in the insn being matched, but only the
7714 target-machine-type flags.  The compiler needs to test these conditions
7715 during initialization in order to learn exactly which named instructions
7716 are available in a particular run.
7718 @item
7719 The preparation statements, a string containing zero or more C
7720 statements which are to be executed before RTL code is generated from
7721 the RTL template.
7723 Usually these statements prepare temporary registers for use as
7724 internal operands in the RTL template, but they can also generate RTL
7725 insns directly by calling routines such as @code{emit_insn}, etc.
7726 Any such insns precede the ones that come from the RTL template.
7728 @item
7729 Optionally, a vector containing the values of attributes. @xref{Insn
7730 Attributes}.
7731 @end itemize
7733 Every RTL insn emitted by a @code{define_expand} must match some
7734 @code{define_insn} in the machine description.  Otherwise, the compiler
7735 will crash when trying to generate code for the insn or trying to optimize
7738 The RTL template, in addition to controlling generation of RTL insns,
7739 also describes the operands that need to be specified when this pattern
7740 is used.  In particular, it gives a predicate for each operand.
7742 A true operand, which needs to be specified in order to generate RTL from
7743 the pattern, should be described with a @code{match_operand} in its first
7744 occurrence in the RTL template.  This enters information on the operand's
7745 predicate into the tables that record such things.  GCC uses the
7746 information to preload the operand into a register if that is required for
7747 valid RTL code.  If the operand is referred to more than once, subsequent
7748 references should use @code{match_dup}.
7750 The RTL template may also refer to internal ``operands'' which are
7751 temporary registers or labels used only within the sequence made by the
7752 @code{define_expand}.  Internal operands are substituted into the RTL
7753 template with @code{match_dup}, never with @code{match_operand}.  The
7754 values of the internal operands are not passed in as arguments by the
7755 compiler when it requests use of this pattern.  Instead, they are computed
7756 within the pattern, in the preparation statements.  These statements
7757 compute the values and store them into the appropriate elements of
7758 @code{operands} so that @code{match_dup} can find them.
7760 There are two special macros defined for use in the preparation statements:
7761 @code{DONE} and @code{FAIL}.  Use them with a following semicolon,
7762 as a statement.
7764 @table @code
7766 @findex DONE
7767 @item DONE
7768 Use the @code{DONE} macro to end RTL generation for the pattern.  The
7769 only RTL insns resulting from the pattern on this occasion will be
7770 those already emitted by explicit calls to @code{emit_insn} within the
7771 preparation statements; the RTL template will not be generated.
7773 @findex FAIL
7774 @item FAIL
7775 Make the pattern fail on this occasion.  When a pattern fails, it means
7776 that the pattern was not truly available.  The calling routines in the
7777 compiler will try other strategies for code generation using other patterns.
7779 Failure is currently supported only for binary (addition, multiplication,
7780 shifting, etc.) and bit-field (@code{extv}, @code{extzv}, and @code{insv})
7781 operations.
7782 @end table
7784 If the preparation falls through (invokes neither @code{DONE} nor
7785 @code{FAIL}), then the @code{define_expand} acts like a
7786 @code{define_insn} in that the RTL template is used to generate the
7787 insn.
7789 The RTL template is not used for matching, only for generating the
7790 initial insn list.  If the preparation statement always invokes
7791 @code{DONE} or @code{FAIL}, the RTL template may be reduced to a simple
7792 list of operands, such as this example:
7794 @smallexample
7795 @group
7796 (define_expand "addsi3"
7797   [(match_operand:SI 0 "register_operand" "")
7798    (match_operand:SI 1 "register_operand" "")
7799    (match_operand:SI 2 "register_operand" "")]
7800 @end group
7801 @group
7802   ""
7803   "
7805   handle_add (operands[0], operands[1], operands[2]);
7806   DONE;
7807 @}")
7808 @end group
7809 @end smallexample
7811 Here is an example, the definition of left-shift for the SPUR chip:
7813 @smallexample
7814 @group
7815 (define_expand "ashlsi3"
7816   [(set (match_operand:SI 0 "register_operand" "")
7817         (ashift:SI
7818 @end group
7819 @group
7820           (match_operand:SI 1 "register_operand" "")
7821           (match_operand:SI 2 "nonmemory_operand" "")))]
7822   ""
7823   "
7824 @end group
7825 @end smallexample
7827 @smallexample
7828 @group
7830   if (GET_CODE (operands[2]) != CONST_INT
7831       || (unsigned) INTVAL (operands[2]) > 3)
7832     FAIL;
7833 @}")
7834 @end group
7835 @end smallexample
7837 @noindent
7838 This example uses @code{define_expand} so that it can generate an RTL insn
7839 for shifting when the shift-count is in the supported range of 0 to 3 but
7840 fail in other cases where machine insns aren't available.  When it fails,
7841 the compiler tries another strategy using different patterns (such as, a
7842 library call).
7844 If the compiler were able to handle nontrivial condition-strings in
7845 patterns with names, then it would be possible to use a
7846 @code{define_insn} in that case.  Here is another case (zero-extension
7847 on the 68000) which makes more use of the power of @code{define_expand}:
7849 @smallexample
7850 (define_expand "zero_extendhisi2"
7851   [(set (match_operand:SI 0 "general_operand" "")
7852         (const_int 0))
7853    (set (strict_low_part
7854           (subreg:HI
7855             (match_dup 0)
7856             0))
7857         (match_operand:HI 1 "general_operand" ""))]
7858   ""
7859   "operands[1] = make_safe_from (operands[1], operands[0]);")
7860 @end smallexample
7862 @noindent
7863 @findex make_safe_from
7864 Here two RTL insns are generated, one to clear the entire output operand
7865 and the other to copy the input operand into its low half.  This sequence
7866 is incorrect if the input operand refers to [the old value of] the output
7867 operand, so the preparation statement makes sure this isn't so.  The
7868 function @code{make_safe_from} copies the @code{operands[1]} into a
7869 temporary register if it refers to @code{operands[0]}.  It does this
7870 by emitting another RTL insn.
7872 Finally, a third example shows the use of an internal operand.
7873 Zero-extension on the SPUR chip is done by @code{and}-ing the result
7874 against a halfword mask.  But this mask cannot be represented by a
7875 @code{const_int} because the constant value is too large to be legitimate
7876 on this machine.  So it must be copied into a register with
7877 @code{force_reg} and then the register used in the @code{and}.
7879 @smallexample
7880 (define_expand "zero_extendhisi2"
7881   [(set (match_operand:SI 0 "register_operand" "")
7882         (and:SI (subreg:SI
7883                   (match_operand:HI 1 "register_operand" "")
7884                   0)
7885                 (match_dup 2)))]
7886   ""
7887   "operands[2]
7888      = force_reg (SImode, GEN_INT (65535)); ")
7889 @end smallexample
7891 @emph{Note:} If the @code{define_expand} is used to serve a
7892 standard binary or unary arithmetic operation or a bit-field operation,
7893 then the last insn it generates must not be a @code{code_label},
7894 @code{barrier} or @code{note}.  It must be an @code{insn},
7895 @code{jump_insn} or @code{call_insn}.  If you don't need a real insn
7896 at the end, emit an insn to copy the result of the operation into
7897 itself.  Such an insn will generate no code, but it can avoid problems
7898 in the compiler.
7900 @end ifset
7901 @ifset INTERNALS
7902 @node Insn Splitting
7903 @section Defining How to Split Instructions
7904 @cindex insn splitting
7905 @cindex instruction splitting
7906 @cindex splitting instructions
7908 There are two cases where you should specify how to split a pattern
7909 into multiple insns.  On machines that have instructions requiring
7910 delay slots (@pxref{Delay Slots}) or that have instructions whose
7911 output is not available for multiple cycles (@pxref{Processor pipeline
7912 description}), the compiler phases that optimize these cases need to
7913 be able to move insns into one-instruction delay slots.  However, some
7914 insns may generate more than one machine instruction.  These insns
7915 cannot be placed into a delay slot.
7917 Often you can rewrite the single insn as a list of individual insns,
7918 each corresponding to one machine instruction.  The disadvantage of
7919 doing so is that it will cause the compilation to be slower and require
7920 more space.  If the resulting insns are too complex, it may also
7921 suppress some optimizations.  The compiler splits the insn if there is a
7922 reason to believe that it might improve instruction or delay slot
7923 scheduling.
7925 The insn combiner phase also splits putative insns.  If three insns are
7926 merged into one insn with a complex expression that cannot be matched by
7927 some @code{define_insn} pattern, the combiner phase attempts to split
7928 the complex pattern into two insns that are recognized.  Usually it can
7929 break the complex pattern into two patterns by splitting out some
7930 subexpression.  However, in some other cases, such as performing an
7931 addition of a large constant in two insns on a RISC machine, the way to
7932 split the addition into two insns is machine-dependent.
7934 @findex define_split
7935 The @code{define_split} definition tells the compiler how to split a
7936 complex insn into several simpler insns.  It looks like this:
7938 @smallexample
7939 (define_split
7940   [@var{insn-pattern}]
7941   "@var{condition}"
7942   [@var{new-insn-pattern-1}
7943    @var{new-insn-pattern-2}
7944    @dots{}]
7945   "@var{preparation-statements}")
7946 @end smallexample
7948 @var{insn-pattern} is a pattern that needs to be split and
7949 @var{condition} is the final condition to be tested, as in a
7950 @code{define_insn}.  When an insn matching @var{insn-pattern} and
7951 satisfying @var{condition} is found, it is replaced in the insn list
7952 with the insns given by @var{new-insn-pattern-1},
7953 @var{new-insn-pattern-2}, etc.
7955 The @var{preparation-statements} are similar to those statements that
7956 are specified for @code{define_expand} (@pxref{Expander Definitions})
7957 and are executed before the new RTL is generated to prepare for the
7958 generated code or emit some insns whose pattern is not fixed.  Unlike
7959 those in @code{define_expand}, however, these statements must not
7960 generate any new pseudo-registers.  Once reload has completed, they also
7961 must not allocate any space in the stack frame.
7963 Patterns are matched against @var{insn-pattern} in two different
7964 circumstances.  If an insn needs to be split for delay slot scheduling
7965 or insn scheduling, the insn is already known to be valid, which means
7966 that it must have been matched by some @code{define_insn} and, if
7967 @code{reload_completed} is nonzero, is known to satisfy the constraints
7968 of that @code{define_insn}.  In that case, the new insn patterns must
7969 also be insns that are matched by some @code{define_insn} and, if
7970 @code{reload_completed} is nonzero, must also satisfy the constraints
7971 of those definitions.
7973 As an example of this usage of @code{define_split}, consider the following
7974 example from @file{a29k.md}, which splits a @code{sign_extend} from
7975 @code{HImode} to @code{SImode} into a pair of shift insns:
7977 @smallexample
7978 (define_split
7979   [(set (match_operand:SI 0 "gen_reg_operand" "")
7980         (sign_extend:SI (match_operand:HI 1 "gen_reg_operand" "")))]
7981   ""
7982   [(set (match_dup 0)
7983         (ashift:SI (match_dup 1)
7984                    (const_int 16)))
7985    (set (match_dup 0)
7986         (ashiftrt:SI (match_dup 0)
7987                      (const_int 16)))]
7988   "
7989 @{ operands[1] = gen_lowpart (SImode, operands[1]); @}")
7990 @end smallexample
7992 When the combiner phase tries to split an insn pattern, it is always the
7993 case that the pattern is @emph{not} matched by any @code{define_insn}.
7994 The combiner pass first tries to split a single @code{set} expression
7995 and then the same @code{set} expression inside a @code{parallel}, but
7996 followed by a @code{clobber} of a pseudo-reg to use as a scratch
7997 register.  In these cases, the combiner expects exactly two new insn
7998 patterns to be generated.  It will verify that these patterns match some
7999 @code{define_insn} definitions, so you need not do this test in the
8000 @code{define_split} (of course, there is no point in writing a
8001 @code{define_split} that will never produce insns that match).
8003 Here is an example of this use of @code{define_split}, taken from
8004 @file{rs6000.md}:
8006 @smallexample
8007 (define_split
8008   [(set (match_operand:SI 0 "gen_reg_operand" "")
8009         (plus:SI (match_operand:SI 1 "gen_reg_operand" "")
8010                  (match_operand:SI 2 "non_add_cint_operand" "")))]
8011   ""
8012   [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
8013    (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
8016   int low = INTVAL (operands[2]) & 0xffff;
8017   int high = (unsigned) INTVAL (operands[2]) >> 16;
8019   if (low & 0x8000)
8020     high++, low |= 0xffff0000;
8022   operands[3] = GEN_INT (high << 16);
8023   operands[4] = GEN_INT (low);
8024 @}")
8025 @end smallexample
8027 Here the predicate @code{non_add_cint_operand} matches any
8028 @code{const_int} that is @emph{not} a valid operand of a single add
8029 insn.  The add with the smaller displacement is written so that it
8030 can be substituted into the address of a subsequent operation.
8032 An example that uses a scratch register, from the same file, generates
8033 an equality comparison of a register and a large constant:
8035 @smallexample
8036 (define_split
8037   [(set (match_operand:CC 0 "cc_reg_operand" "")
8038         (compare:CC (match_operand:SI 1 "gen_reg_operand" "")
8039                     (match_operand:SI 2 "non_short_cint_operand" "")))
8040    (clobber (match_operand:SI 3 "gen_reg_operand" ""))]
8041   "find_single_use (operands[0], insn, 0)
8042    && (GET_CODE (*find_single_use (operands[0], insn, 0)) == EQ
8043        || GET_CODE (*find_single_use (operands[0], insn, 0)) == NE)"
8044   [(set (match_dup 3) (xor:SI (match_dup 1) (match_dup 4)))
8045    (set (match_dup 0) (compare:CC (match_dup 3) (match_dup 5)))]
8046   "
8048   /* @r{Get the constant we are comparing against, C, and see what it
8049      looks like sign-extended to 16 bits.  Then see what constant
8050      could be XOR'ed with C to get the sign-extended value.}  */
8052   int c = INTVAL (operands[2]);
8053   int sextc = (c << 16) >> 16;
8054   int xorv = c ^ sextc;
8056   operands[4] = GEN_INT (xorv);
8057   operands[5] = GEN_INT (sextc);
8058 @}")
8059 @end smallexample
8061 To avoid confusion, don't write a single @code{define_split} that
8062 accepts some insns that match some @code{define_insn} as well as some
8063 insns that don't.  Instead, write two separate @code{define_split}
8064 definitions, one for the insns that are valid and one for the insns that
8065 are not valid.
8067 The splitter is allowed to split jump instructions into sequence of
8068 jumps or create new jumps in while splitting non-jump instructions.  As
8069 the control flow graph and branch prediction information needs to be updated,
8070 several restriction apply.
8072 Splitting of jump instruction into sequence that over by another jump
8073 instruction is always valid, as compiler expect identical behavior of new
8074 jump.  When new sequence contains multiple jump instructions or new labels,
8075 more assistance is needed.  Splitter is required to create only unconditional
8076 jumps, or simple conditional jump instructions.  Additionally it must attach a
8077 @code{REG_BR_PROB} note to each conditional jump.  A global variable
8078 @code{split_branch_probability} holds the probability of the original branch in case
8079 it was a simple conditional jump, @minus{}1 otherwise.  To simplify
8080 recomputing of edge frequencies, the new sequence is required to have only
8081 forward jumps to the newly created labels.
8083 @findex define_insn_and_split
8084 For the common case where the pattern of a define_split exactly matches the
8085 pattern of a define_insn, use @code{define_insn_and_split}.  It looks like
8086 this:
8088 @smallexample
8089 (define_insn_and_split
8090   [@var{insn-pattern}]
8091   "@var{condition}"
8092   "@var{output-template}"
8093   "@var{split-condition}"
8094   [@var{new-insn-pattern-1}
8095    @var{new-insn-pattern-2}
8096    @dots{}]
8097   "@var{preparation-statements}"
8098   [@var{insn-attributes}])
8100 @end smallexample
8102 @var{insn-pattern}, @var{condition}, @var{output-template}, and
8103 @var{insn-attributes} are used as in @code{define_insn}.  The
8104 @var{new-insn-pattern} vector and the @var{preparation-statements} are used as
8105 in a @code{define_split}.  The @var{split-condition} is also used as in
8106 @code{define_split}, with the additional behavior that if the condition starts
8107 with @samp{&&}, the condition used for the split will be the constructed as a
8108 logical ``and'' of the split condition with the insn condition.  For example,
8109 from i386.md:
8111 @smallexample
8112 (define_insn_and_split "zero_extendhisi2_and"
8113   [(set (match_operand:SI 0 "register_operand" "=r")
8114      (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))
8115    (clobber (reg:CC 17))]
8116   "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size"
8117   "#"
8118   "&& reload_completed"
8119   [(parallel [(set (match_dup 0)
8120                    (and:SI (match_dup 0) (const_int 65535)))
8121               (clobber (reg:CC 17))])]
8122   ""
8123   [(set_attr "type" "alu1")])
8125 @end smallexample
8127 In this case, the actual split condition will be
8128 @samp{TARGET_ZERO_EXTEND_WITH_AND && !optimize_size && reload_completed}.
8130 The @code{define_insn_and_split} construction provides exactly the same
8131 functionality as two separate @code{define_insn} and @code{define_split}
8132 patterns.  It exists for compactness, and as a maintenance tool to prevent
8133 having to ensure the two patterns' templates match.
8135 @end ifset
8136 @ifset INTERNALS
8137 @node Including Patterns
8138 @section Including Patterns in Machine Descriptions.
8139 @cindex insn includes
8141 @findex include
8142 The @code{include} pattern tells the compiler tools where to
8143 look for patterns that are in files other than in the file
8144 @file{.md}.  This is used only at build time and there is no preprocessing allowed.
8146 It looks like:
8148 @smallexample
8150 (include
8151   @var{pathname})
8152 @end smallexample
8154 For example:
8156 @smallexample
8158 (include "filestuff")
8160 @end smallexample
8162 Where @var{pathname} is a string that specifies the location of the file,
8163 specifies the include file to be in @file{gcc/config/target/filestuff}.  The
8164 directory @file{gcc/config/target} is regarded as the default directory.
8167 Machine descriptions may be split up into smaller more manageable subsections
8168 and placed into subdirectories.
8170 By specifying:
8172 @smallexample
8174 (include "BOGUS/filestuff")
8176 @end smallexample
8178 the include file is specified to be in @file{gcc/config/@var{target}/BOGUS/filestuff}.
8180 Specifying an absolute path for the include file such as;
8181 @smallexample
8183 (include "/u2/BOGUS/filestuff")
8185 @end smallexample
8186 is permitted but is not encouraged.
8188 @subsection RTL Generation Tool Options for Directory Search
8189 @cindex directory options .md
8190 @cindex options, directory search
8191 @cindex search options
8193 The @option{-I@var{dir}} option specifies directories to search for machine descriptions.
8194 For example:
8196 @smallexample
8198 genrecog -I/p1/abc/proc1 -I/p2/abcd/pro2 target.md
8200 @end smallexample
8203 Add the directory @var{dir} to the head of the list of directories to be
8204 searched for header files.  This can be used to override a system machine definition
8205 file, substituting your own version, since these directories are
8206 searched before the default machine description file directories.  If you use more than
8207 one @option{-I} option, the directories are scanned in left-to-right
8208 order; the standard default directory come after.
8211 @end ifset
8212 @ifset INTERNALS
8213 @node Peephole Definitions
8214 @section Machine-Specific Peephole Optimizers
8215 @cindex peephole optimizer definitions
8216 @cindex defining peephole optimizers
8218 In addition to instruction patterns the @file{md} file may contain
8219 definitions of machine-specific peephole optimizations.
8221 The combiner does not notice certain peephole optimizations when the data
8222 flow in the program does not suggest that it should try them.  For example,
8223 sometimes two consecutive insns related in purpose can be combined even
8224 though the second one does not appear to use a register computed in the
8225 first one.  A machine-specific peephole optimizer can detect such
8226 opportunities.
8228 There are two forms of peephole definitions that may be used.  The
8229 original @code{define_peephole} is run at assembly output time to
8230 match insns and substitute assembly text.  Use of @code{define_peephole}
8231 is deprecated.
8233 A newer @code{define_peephole2} matches insns and substitutes new
8234 insns.  The @code{peephole2} pass is run after register allocation
8235 but before scheduling, which may result in much better code for
8236 targets that do scheduling.
8238 @menu
8239 * define_peephole::     RTL to Text Peephole Optimizers
8240 * define_peephole2::    RTL to RTL Peephole Optimizers
8241 @end menu
8243 @end ifset
8244 @ifset INTERNALS
8245 @node define_peephole
8246 @subsection RTL to Text Peephole Optimizers
8247 @findex define_peephole
8249 @need 1000
8250 A definition looks like this:
8252 @smallexample
8253 (define_peephole
8254   [@var{insn-pattern-1}
8255    @var{insn-pattern-2}
8256    @dots{}]
8257   "@var{condition}"
8258   "@var{template}"
8259   "@var{optional-insn-attributes}")
8260 @end smallexample
8262 @noindent
8263 The last string operand may be omitted if you are not using any
8264 machine-specific information in this machine description.  If present,
8265 it must obey the same rules as in a @code{define_insn}.
8267 In this skeleton, @var{insn-pattern-1} and so on are patterns to match
8268 consecutive insns.  The optimization applies to a sequence of insns when
8269 @var{insn-pattern-1} matches the first one, @var{insn-pattern-2} matches
8270 the next, and so on.
8272 Each of the insns matched by a peephole must also match a
8273 @code{define_insn}.  Peepholes are checked only at the last stage just
8274 before code generation, and only optionally.  Therefore, any insn which
8275 would match a peephole but no @code{define_insn} will cause a crash in code
8276 generation in an unoptimized compilation, or at various optimization
8277 stages.
8279 The operands of the insns are matched with @code{match_operands},
8280 @code{match_operator}, and @code{match_dup}, as usual.  What is not
8281 usual is that the operand numbers apply to all the insn patterns in the
8282 definition.  So, you can check for identical operands in two insns by
8283 using @code{match_operand} in one insn and @code{match_dup} in the
8284 other.
8286 The operand constraints used in @code{match_operand} patterns do not have
8287 any direct effect on the applicability of the peephole, but they will
8288 be validated afterward, so make sure your constraints are general enough
8289 to apply whenever the peephole matches.  If the peephole matches
8290 but the constraints are not satisfied, the compiler will crash.
8292 It is safe to omit constraints in all the operands of the peephole; or
8293 you can write constraints which serve as a double-check on the criteria
8294 previously tested.
8296 Once a sequence of insns matches the patterns, the @var{condition} is
8297 checked.  This is a C expression which makes the final decision whether to
8298 perform the optimization (we do so if the expression is nonzero).  If
8299 @var{condition} is omitted (in other words, the string is empty) then the
8300 optimization is applied to every sequence of insns that matches the
8301 patterns.
8303 The defined peephole optimizations are applied after register allocation
8304 is complete.  Therefore, the peephole definition can check which
8305 operands have ended up in which kinds of registers, just by looking at
8306 the operands.
8308 @findex prev_active_insn
8309 The way to refer to the operands in @var{condition} is to write
8310 @code{operands[@var{i}]} for operand number @var{i} (as matched by
8311 @code{(match_operand @var{i} @dots{})}).  Use the variable @code{insn}
8312 to refer to the last of the insns being matched; use
8313 @code{prev_active_insn} to find the preceding insns.
8315 @findex dead_or_set_p
8316 When optimizing computations with intermediate results, you can use
8317 @var{condition} to match only when the intermediate results are not used
8318 elsewhere.  Use the C expression @code{dead_or_set_p (@var{insn},
8319 @var{op})}, where @var{insn} is the insn in which you expect the value
8320 to be used for the last time (from the value of @code{insn}, together
8321 with use of @code{prev_nonnote_insn}), and @var{op} is the intermediate
8322 value (from @code{operands[@var{i}]}).
8324 Applying the optimization means replacing the sequence of insns with one
8325 new insn.  The @var{template} controls ultimate output of assembler code
8326 for this combined insn.  It works exactly like the template of a
8327 @code{define_insn}.  Operand numbers in this template are the same ones
8328 used in matching the original sequence of insns.
8330 The result of a defined peephole optimizer does not need to match any of
8331 the insn patterns in the machine description; it does not even have an
8332 opportunity to match them.  The peephole optimizer definition itself serves
8333 as the insn pattern to control how the insn is output.
8335 Defined peephole optimizers are run as assembler code is being output,
8336 so the insns they produce are never combined or rearranged in any way.
8338 Here is an example, taken from the 68000 machine description:
8340 @smallexample
8341 (define_peephole
8342   [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
8343    (set (match_operand:DF 0 "register_operand" "=f")
8344         (match_operand:DF 1 "register_operand" "ad"))]
8345   "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
8347   rtx xoperands[2];
8348   xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
8349 #ifdef MOTOROLA
8350   output_asm_insn ("move.l %1,(sp)", xoperands);
8351   output_asm_insn ("move.l %1,-(sp)", operands);
8352   return "fmove.d (sp)+,%0";
8353 #else
8354   output_asm_insn ("movel %1,sp@@", xoperands);
8355   output_asm_insn ("movel %1,sp@@-", operands);
8356   return "fmoved sp@@+,%0";
8357 #endif
8359 @end smallexample
8361 @need 1000
8362 The effect of this optimization is to change
8364 @smallexample
8365 @group
8366 jbsr _foobar
8367 addql #4,sp
8368 movel d1,sp@@-
8369 movel d0,sp@@-
8370 fmoved sp@@+,fp0
8371 @end group
8372 @end smallexample
8374 @noindent
8375 into
8377 @smallexample
8378 @group
8379 jbsr _foobar
8380 movel d1,sp@@
8381 movel d0,sp@@-
8382 fmoved sp@@+,fp0
8383 @end group
8384 @end smallexample
8386 @ignore
8387 @findex CC_REVERSED
8388 If a peephole matches a sequence including one or more jump insns, you must
8389 take account of the flags such as @code{CC_REVERSED} which specify that the
8390 condition codes are represented in an unusual manner.  The compiler
8391 automatically alters any ordinary conditional jumps which occur in such
8392 situations, but the compiler cannot alter jumps which have been replaced by
8393 peephole optimizations.  So it is up to you to alter the assembler code
8394 that the peephole produces.  Supply C code to write the assembler output,
8395 and in this C code check the condition code status flags and change the
8396 assembler code as appropriate.
8397 @end ignore
8399 @var{insn-pattern-1} and so on look @emph{almost} like the second
8400 operand of @code{define_insn}.  There is one important difference: the
8401 second operand of @code{define_insn} consists of one or more RTX's
8402 enclosed in square brackets.  Usually, there is only one: then the same
8403 action can be written as an element of a @code{define_peephole}.  But
8404 when there are multiple actions in a @code{define_insn}, they are
8405 implicitly enclosed in a @code{parallel}.  Then you must explicitly
8406 write the @code{parallel}, and the square brackets within it, in the
8407 @code{define_peephole}.  Thus, if an insn pattern looks like this,
8409 @smallexample
8410 (define_insn "divmodsi4"
8411   [(set (match_operand:SI 0 "general_operand" "=d")
8412         (div:SI (match_operand:SI 1 "general_operand" "0")
8413                 (match_operand:SI 2 "general_operand" "dmsK")))
8414    (set (match_operand:SI 3 "general_operand" "=d")
8415         (mod:SI (match_dup 1) (match_dup 2)))]
8416   "TARGET_68020"
8417   "divsl%.l %2,%3:%0")
8418 @end smallexample
8420 @noindent
8421 then the way to mention this insn in a peephole is as follows:
8423 @smallexample
8424 (define_peephole
8425   [@dots{}
8426    (parallel
8427     [(set (match_operand:SI 0 "general_operand" "=d")
8428           (div:SI (match_operand:SI 1 "general_operand" "0")
8429                   (match_operand:SI 2 "general_operand" "dmsK")))
8430      (set (match_operand:SI 3 "general_operand" "=d")
8431           (mod:SI (match_dup 1) (match_dup 2)))])
8432    @dots{}]
8433   @dots{})
8434 @end smallexample
8436 @end ifset
8437 @ifset INTERNALS
8438 @node define_peephole2
8439 @subsection RTL to RTL Peephole Optimizers
8440 @findex define_peephole2
8442 The @code{define_peephole2} definition tells the compiler how to
8443 substitute one sequence of instructions for another sequence,
8444 what additional scratch registers may be needed and what their
8445 lifetimes must be.
8447 @smallexample
8448 (define_peephole2
8449   [@var{insn-pattern-1}
8450    @var{insn-pattern-2}
8451    @dots{}]
8452   "@var{condition}"
8453   [@var{new-insn-pattern-1}
8454    @var{new-insn-pattern-2}
8455    @dots{}]
8456   "@var{preparation-statements}")
8457 @end smallexample
8459 The definition is almost identical to @code{define_split}
8460 (@pxref{Insn Splitting}) except that the pattern to match is not a
8461 single instruction, but a sequence of instructions.
8463 It is possible to request additional scratch registers for use in the
8464 output template.  If appropriate registers are not free, the pattern
8465 will simply not match.
8467 @findex match_scratch
8468 @findex match_dup
8469 Scratch registers are requested with a @code{match_scratch} pattern at
8470 the top level of the input pattern.  The allocated register (initially) will
8471 be dead at the point requested within the original sequence.  If the scratch
8472 is used at more than a single point, a @code{match_dup} pattern at the
8473 top level of the input pattern marks the last position in the input sequence
8474 at which the register must be available.
8476 Here is an example from the IA-32 machine description:
8478 @smallexample
8479 (define_peephole2
8480   [(match_scratch:SI 2 "r")
8481    (parallel [(set (match_operand:SI 0 "register_operand" "")
8482                    (match_operator:SI 3 "arith_or_logical_operator"
8483                      [(match_dup 0)
8484                       (match_operand:SI 1 "memory_operand" "")]))
8485               (clobber (reg:CC 17))])]
8486   "! optimize_size && ! TARGET_READ_MODIFY"
8487   [(set (match_dup 2) (match_dup 1))
8488    (parallel [(set (match_dup 0)
8489                    (match_op_dup 3 [(match_dup 0) (match_dup 2)]))
8490               (clobber (reg:CC 17))])]
8491   "")
8492 @end smallexample
8494 @noindent
8495 This pattern tries to split a load from its use in the hopes that we'll be
8496 able to schedule around the memory load latency.  It allocates a single
8497 @code{SImode} register of class @code{GENERAL_REGS} (@code{"r"}) that needs
8498 to be live only at the point just before the arithmetic.
8500 A real example requiring extended scratch lifetimes is harder to come by,
8501 so here's a silly made-up example:
8503 @smallexample
8504 (define_peephole2
8505   [(match_scratch:SI 4 "r")
8506    (set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))
8507    (set (match_operand:SI 2 "" "") (match_dup 1))
8508    (match_dup 4)
8509    (set (match_operand:SI 3 "" "") (match_dup 1))]
8510   "/* @r{determine 1 does not overlap 0 and 2} */"
8511   [(set (match_dup 4) (match_dup 1))
8512    (set (match_dup 0) (match_dup 4))
8513    (set (match_dup 2) (match_dup 4))
8514    (set (match_dup 3) (match_dup 4))]
8515   "")
8516 @end smallexample
8518 @noindent
8519 If we had not added the @code{(match_dup 4)} in the middle of the input
8520 sequence, it might have been the case that the register we chose at the
8521 beginning of the sequence is killed by the first or second @code{set}.
8523 @end ifset
8524 @ifset INTERNALS
8525 @node Insn Attributes
8526 @section Instruction Attributes
8527 @cindex insn attributes
8528 @cindex instruction attributes
8530 In addition to describing the instruction supported by the target machine,
8531 the @file{md} file also defines a group of @dfn{attributes} and a set of
8532 values for each.  Every generated insn is assigned a value for each attribute.
8533 One possible attribute would be the effect that the insn has on the machine's
8534 condition code.  This attribute can then be used by @code{NOTICE_UPDATE_CC}
8535 to track the condition codes.
8537 @menu
8538 * Defining Attributes:: Specifying attributes and their values.
8539 * Expressions::         Valid expressions for attribute values.
8540 * Tagging Insns::       Assigning attribute values to insns.
8541 * Attr Example::        An example of assigning attributes.
8542 * Insn Lengths::        Computing the length of insns.
8543 * Constant Attributes:: Defining attributes that are constant.
8544 * Mnemonic Attribute::  Obtain the instruction mnemonic as attribute value.
8545 * Delay Slots::         Defining delay slots required for a machine.
8546 * Processor pipeline description:: Specifying information for insn scheduling.
8547 @end menu
8549 @end ifset
8550 @ifset INTERNALS
8551 @node Defining Attributes
8552 @subsection Defining Attributes and their Values
8553 @cindex defining attributes and their values
8554 @cindex attributes, defining
8556 @findex define_attr
8557 The @code{define_attr} expression is used to define each attribute required
8558 by the target machine.  It looks like:
8560 @smallexample
8561 (define_attr @var{name} @var{list-of-values} @var{default})
8562 @end smallexample
8564 @var{name} is a string specifying the name of the attribute being
8565 defined.  Some attributes are used in a special way by the rest of the
8566 compiler. The @code{enabled} attribute can be used to conditionally
8567 enable or disable insn alternatives (@pxref{Disable Insn
8568 Alternatives}). The @code{predicable} attribute, together with a
8569 suitable @code{define_cond_exec} (@pxref{Conditional Execution}), can
8570 be used to automatically generate conditional variants of instruction
8571 patterns. The @code{mnemonic} attribute can be used to check for the
8572 instruction mnemonic (@pxref{Mnemonic Attribute}).  The compiler
8573 internally uses the names @code{ce_enabled} and @code{nonce_enabled},
8574 so they should not be used elsewhere as alternative names.
8576 @var{list-of-values} is either a string that specifies a comma-separated
8577 list of values that can be assigned to the attribute, or a null string to
8578 indicate that the attribute takes numeric values.
8580 @var{default} is an attribute expression that gives the value of this
8581 attribute for insns that match patterns whose definition does not include
8582 an explicit value for this attribute.  @xref{Attr Example}, for more
8583 information on the handling of defaults.  @xref{Constant Attributes},
8584 for information on attributes that do not depend on any particular insn.
8586 @findex insn-attr.h
8587 For each defined attribute, a number of definitions are written to the
8588 @file{insn-attr.h} file.  For cases where an explicit set of values is
8589 specified for an attribute, the following are defined:
8591 @itemize @bullet
8592 @item
8593 A @samp{#define} is written for the symbol @samp{HAVE_ATTR_@var{name}}.
8595 @item
8596 An enumerated class is defined for @samp{attr_@var{name}} with
8597 elements of the form @samp{@var{upper-name}_@var{upper-value}} where
8598 the attribute name and value are first converted to uppercase.
8600 @item
8601 A function @samp{get_attr_@var{name}} is defined that is passed an insn and
8602 returns the attribute value for that insn.
8603 @end itemize
8605 For example, if the following is present in the @file{md} file:
8607 @smallexample
8608 (define_attr "type" "branch,fp,load,store,arith" @dots{})
8609 @end smallexample
8611 @noindent
8612 the following lines will be written to the file @file{insn-attr.h}.
8614 @smallexample
8615 #define HAVE_ATTR_type 1
8616 enum attr_type @{TYPE_BRANCH, TYPE_FP, TYPE_LOAD,
8617                  TYPE_STORE, TYPE_ARITH@};
8618 extern enum attr_type get_attr_type ();
8619 @end smallexample
8621 If the attribute takes numeric values, no @code{enum} type will be
8622 defined and the function to obtain the attribute's value will return
8623 @code{int}.
8625 There are attributes which are tied to a specific meaning.  These
8626 attributes are not free to use for other purposes:
8628 @table @code
8629 @item length
8630 The @code{length} attribute is used to calculate the length of emitted
8631 code chunks.  This is especially important when verifying branch
8632 distances. @xref{Insn Lengths}.
8634 @item enabled
8635 The @code{enabled} attribute can be defined to prevent certain
8636 alternatives of an insn definition from being used during code
8637 generation. @xref{Disable Insn Alternatives}.
8639 @item mnemonic
8640 The @code{mnemonic} attribute can be defined to implement instruction
8641 specific checks in e.g. the pipeline description.
8642 @xref{Mnemonic Attribute}.
8643 @end table
8645 For each of these special attributes, the corresponding
8646 @samp{HAVE_ATTR_@var{name}} @samp{#define} is also written when the
8647 attribute is not defined; in that case, it is defined as @samp{0}.
8649 @findex define_enum_attr
8650 @anchor{define_enum_attr}
8651 Another way of defining an attribute is to use:
8653 @smallexample
8654 (define_enum_attr "@var{attr}" "@var{enum}" @var{default})
8655 @end smallexample
8657 This works in just the same way as @code{define_attr}, except that
8658 the list of values is taken from a separate enumeration called
8659 @var{enum} (@pxref{define_enum}).  This form allows you to use
8660 the same list of values for several attributes without having to
8661 repeat the list each time.  For example:
8663 @smallexample
8664 (define_enum "processor" [
8665   model_a
8666   model_b
8667   @dots{}
8669 (define_enum_attr "arch" "processor"
8670   (const (symbol_ref "target_arch")))
8671 (define_enum_attr "tune" "processor"
8672   (const (symbol_ref "target_tune")))
8673 @end smallexample
8675 defines the same attributes as:
8677 @smallexample
8678 (define_attr "arch" "model_a,model_b,@dots{}"
8679   (const (symbol_ref "target_arch")))
8680 (define_attr "tune" "model_a,model_b,@dots{}"
8681   (const (symbol_ref "target_tune")))
8682 @end smallexample
8684 but without duplicating the processor list.  The second example defines two
8685 separate C enums (@code{attr_arch} and @code{attr_tune}) whereas the first
8686 defines a single C enum (@code{processor}).
8687 @end ifset
8688 @ifset INTERNALS
8689 @node Expressions
8690 @subsection Attribute Expressions
8691 @cindex attribute expressions
8693 RTL expressions used to define attributes use the codes described above
8694 plus a few specific to attribute definitions, to be discussed below.
8695 Attribute value expressions must have one of the following forms:
8697 @table @code
8698 @cindex @code{const_int} and attributes
8699 @item (const_int @var{i})
8700 The integer @var{i} specifies the value of a numeric attribute.  @var{i}
8701 must be non-negative.
8703 The value of a numeric attribute can be specified either with a
8704 @code{const_int}, or as an integer represented as a string in
8705 @code{const_string}, @code{eq_attr} (see below), @code{attr},
8706 @code{symbol_ref}, simple arithmetic expressions, and @code{set_attr}
8707 overrides on specific instructions (@pxref{Tagging Insns}).
8709 @cindex @code{const_string} and attributes
8710 @item (const_string @var{value})
8711 The string @var{value} specifies a constant attribute value.
8712 If @var{value} is specified as @samp{"*"}, it means that the default value of
8713 the attribute is to be used for the insn containing this expression.
8714 @samp{"*"} obviously cannot be used in the @var{default} expression
8715 of a @code{define_attr}.
8717 If the attribute whose value is being specified is numeric, @var{value}
8718 must be a string containing a non-negative integer (normally
8719 @code{const_int} would be used in this case).  Otherwise, it must
8720 contain one of the valid values for the attribute.
8722 @cindex @code{if_then_else} and attributes
8723 @item (if_then_else @var{test} @var{true-value} @var{false-value})
8724 @var{test} specifies an attribute test, whose format is defined below.
8725 The value of this expression is @var{true-value} if @var{test} is true,
8726 otherwise it is @var{false-value}.
8728 @cindex @code{cond} and attributes
8729 @item (cond [@var{test1} @var{value1} @dots{}] @var{default})
8730 The first operand of this expression is a vector containing an even
8731 number of expressions and consisting of pairs of @var{test} and @var{value}
8732 expressions.  The value of the @code{cond} expression is that of the
8733 @var{value} corresponding to the first true @var{test} expression.  If
8734 none of the @var{test} expressions are true, the value of the @code{cond}
8735 expression is that of the @var{default} expression.
8736 @end table
8738 @var{test} expressions can have one of the following forms:
8740 @table @code
8741 @cindex @code{const_int} and attribute tests
8742 @item (const_int @var{i})
8743 This test is true if @var{i} is nonzero and false otherwise.
8745 @cindex @code{not} and attributes
8746 @cindex @code{ior} and attributes
8747 @cindex @code{and} and attributes
8748 @item (not @var{test})
8749 @itemx (ior @var{test1} @var{test2})
8750 @itemx (and @var{test1} @var{test2})
8751 These tests are true if the indicated logical function is true.
8753 @cindex @code{match_operand} and attributes
8754 @item (match_operand:@var{m} @var{n} @var{pred} @var{constraints})
8755 This test is true if operand @var{n} of the insn whose attribute value
8756 is being determined has mode @var{m} (this part of the test is ignored
8757 if @var{m} is @code{VOIDmode}) and the function specified by the string
8758 @var{pred} returns a nonzero value when passed operand @var{n} and mode
8759 @var{m} (this part of the test is ignored if @var{pred} is the null
8760 string).
8762 The @var{constraints} operand is ignored and should be the null string.
8764 @cindex @code{match_test} and attributes
8765 @item (match_test @var{c-expr})
8766 The test is true if C expression @var{c-expr} is true.  In non-constant
8767 attributes, @var{c-expr} has access to the following variables:
8769 @table @var
8770 @item insn
8771 The rtl instruction under test.
8772 @item which_alternative
8773 The @code{define_insn} alternative that @var{insn} matches.
8774 @xref{Output Statement}.
8775 @item operands
8776 An array of @var{insn}'s rtl operands.
8777 @end table
8779 @var{c-expr} behaves like the condition in a C @code{if} statement,
8780 so there is no need to explicitly convert the expression into a boolean
8781 0 or 1 value.  For example, the following two tests are equivalent:
8783 @smallexample
8784 (match_test "x & 2")
8785 (match_test "(x & 2) != 0")
8786 @end smallexample
8788 @cindex @code{le} and attributes
8789 @cindex @code{leu} and attributes
8790 @cindex @code{lt} and attributes
8791 @cindex @code{gt} and attributes
8792 @cindex @code{gtu} and attributes
8793 @cindex @code{ge} and attributes
8794 @cindex @code{geu} and attributes
8795 @cindex @code{ne} and attributes
8796 @cindex @code{eq} and attributes
8797 @cindex @code{plus} and attributes
8798 @cindex @code{minus} and attributes
8799 @cindex @code{mult} and attributes
8800 @cindex @code{div} and attributes
8801 @cindex @code{mod} and attributes
8802 @cindex @code{abs} and attributes
8803 @cindex @code{neg} and attributes
8804 @cindex @code{ashift} and attributes
8805 @cindex @code{lshiftrt} and attributes
8806 @cindex @code{ashiftrt} and attributes
8807 @item (le @var{arith1} @var{arith2})
8808 @itemx (leu @var{arith1} @var{arith2})
8809 @itemx (lt @var{arith1} @var{arith2})
8810 @itemx (ltu @var{arith1} @var{arith2})
8811 @itemx (gt @var{arith1} @var{arith2})
8812 @itemx (gtu @var{arith1} @var{arith2})
8813 @itemx (ge @var{arith1} @var{arith2})
8814 @itemx (geu @var{arith1} @var{arith2})
8815 @itemx (ne @var{arith1} @var{arith2})
8816 @itemx (eq @var{arith1} @var{arith2})
8817 These tests are true if the indicated comparison of the two arithmetic
8818 expressions is true.  Arithmetic expressions are formed with
8819 @code{plus}, @code{minus}, @code{mult}, @code{div}, @code{mod},
8820 @code{abs}, @code{neg}, @code{and}, @code{ior}, @code{xor}, @code{not},
8821 @code{ashift}, @code{lshiftrt}, and @code{ashiftrt} expressions.
8823 @findex get_attr
8824 @code{const_int} and @code{symbol_ref} are always valid terms (@pxref{Insn
8825 Lengths},for additional forms).  @code{symbol_ref} is a string
8826 denoting a C expression that yields an @code{int} when evaluated by the
8827 @samp{get_attr_@dots{}} routine.  It should normally be a global
8828 variable.
8830 @findex eq_attr
8831 @item (eq_attr @var{name} @var{value})
8832 @var{name} is a string specifying the name of an attribute.
8834 @var{value} is a string that is either a valid value for attribute
8835 @var{name}, a comma-separated list of values, or @samp{!} followed by a
8836 value or list.  If @var{value} does not begin with a @samp{!}, this
8837 test is true if the value of the @var{name} attribute of the current
8838 insn is in the list specified by @var{value}.  If @var{value} begins
8839 with a @samp{!}, this test is true if the attribute's value is
8840 @emph{not} in the specified list.
8842 For example,
8844 @smallexample
8845 (eq_attr "type" "load,store")
8846 @end smallexample
8848 @noindent
8849 is equivalent to
8851 @smallexample
8852 (ior (eq_attr "type" "load") (eq_attr "type" "store"))
8853 @end smallexample
8855 If @var{name} specifies an attribute of @samp{alternative}, it refers to the
8856 value of the compiler variable @code{which_alternative}
8857 (@pxref{Output Statement}) and the values must be small integers.  For
8858 example,
8860 @smallexample
8861 (eq_attr "alternative" "2,3")
8862 @end smallexample
8864 @noindent
8865 is equivalent to
8867 @smallexample
8868 (ior (eq (symbol_ref "which_alternative") (const_int 2))
8869      (eq (symbol_ref "which_alternative") (const_int 3)))
8870 @end smallexample
8872 Note that, for most attributes, an @code{eq_attr} test is simplified in cases
8873 where the value of the attribute being tested is known for all insns matching
8874 a particular pattern.  This is by far the most common case.
8876 @findex attr_flag
8877 @item (attr_flag @var{name})
8878 The value of an @code{attr_flag} expression is true if the flag
8879 specified by @var{name} is true for the @code{insn} currently being
8880 scheduled.
8882 @var{name} is a string specifying one of a fixed set of flags to test.
8883 Test the flags @code{forward} and @code{backward} to determine the
8884 direction of a conditional branch.
8886 This example describes a conditional branch delay slot which
8887 can be nullified for forward branches that are taken (annul-true) or
8888 for backward branches which are not taken (annul-false).
8890 @smallexample
8891 (define_delay (eq_attr "type" "cbranch")
8892   [(eq_attr "in_branch_delay" "true")
8893    (and (eq_attr "in_branch_delay" "true")
8894         (attr_flag "forward"))
8895    (and (eq_attr "in_branch_delay" "true")
8896         (attr_flag "backward"))])
8897 @end smallexample
8899 The @code{forward} and @code{backward} flags are false if the current
8900 @code{insn} being scheduled is not a conditional branch.
8902 @code{attr_flag} is only used during delay slot scheduling and has no
8903 meaning to other passes of the compiler.
8905 @findex attr
8906 @item (attr @var{name})
8907 The value of another attribute is returned.  This is most useful
8908 for numeric attributes, as @code{eq_attr} and @code{attr_flag}
8909 produce more efficient code for non-numeric attributes.
8910 @end table
8912 @end ifset
8913 @ifset INTERNALS
8914 @node Tagging Insns
8915 @subsection Assigning Attribute Values to Insns
8916 @cindex tagging insns
8917 @cindex assigning attribute values to insns
8919 The value assigned to an attribute of an insn is primarily determined by
8920 which pattern is matched by that insn (or which @code{define_peephole}
8921 generated it).  Every @code{define_insn} and @code{define_peephole} can
8922 have an optional last argument to specify the values of attributes for
8923 matching insns.  The value of any attribute not specified in a particular
8924 insn is set to the default value for that attribute, as specified in its
8925 @code{define_attr}.  Extensive use of default values for attributes
8926 permits the specification of the values for only one or two attributes
8927 in the definition of most insn patterns, as seen in the example in the
8928 next section.
8930 The optional last argument of @code{define_insn} and
8931 @code{define_peephole} is a vector of expressions, each of which defines
8932 the value for a single attribute.  The most general way of assigning an
8933 attribute's value is to use a @code{set} expression whose first operand is an
8934 @code{attr} expression giving the name of the attribute being set.  The
8935 second operand of the @code{set} is an attribute expression
8936 (@pxref{Expressions}) giving the value of the attribute.
8938 When the attribute value depends on the @samp{alternative} attribute
8939 (i.e., which is the applicable alternative in the constraint of the
8940 insn), the @code{set_attr_alternative} expression can be used.  It
8941 allows the specification of a vector of attribute expressions, one for
8942 each alternative.
8944 @findex set_attr
8945 When the generality of arbitrary attribute expressions is not required,
8946 the simpler @code{set_attr} expression can be used, which allows
8947 specifying a string giving either a single attribute value or a list
8948 of attribute values, one for each alternative.
8950 The form of each of the above specifications is shown below.  In each case,
8951 @var{name} is a string specifying the attribute to be set.
8953 @table @code
8954 @item (set_attr @var{name} @var{value-string})
8955 @var{value-string} is either a string giving the desired attribute value,
8956 or a string containing a comma-separated list giving the values for
8957 succeeding alternatives.  The number of elements must match the number
8958 of alternatives in the constraint of the insn pattern.
8960 Note that it may be useful to specify @samp{*} for some alternative, in
8961 which case the attribute will assume its default value for insns matching
8962 that alternative.
8964 @findex set_attr_alternative
8965 @item (set_attr_alternative @var{name} [@var{value1} @var{value2} @dots{}])
8966 Depending on the alternative of the insn, the value will be one of the
8967 specified values.  This is a shorthand for using a @code{cond} with
8968 tests on the @samp{alternative} attribute.
8970 @findex attr
8971 @item (set (attr @var{name}) @var{value})
8972 The first operand of this @code{set} must be the special RTL expression
8973 @code{attr}, whose sole operand is a string giving the name of the
8974 attribute being set.  @var{value} is the value of the attribute.
8975 @end table
8977 The following shows three different ways of representing the same
8978 attribute value specification:
8980 @smallexample
8981 (set_attr "type" "load,store,arith")
8983 (set_attr_alternative "type"
8984                       [(const_string "load") (const_string "store")
8985                        (const_string "arith")])
8987 (set (attr "type")
8988      (cond [(eq_attr "alternative" "1") (const_string "load")
8989             (eq_attr "alternative" "2") (const_string "store")]
8990            (const_string "arith")))
8991 @end smallexample
8993 @need 1000
8994 @findex define_asm_attributes
8995 The @code{define_asm_attributes} expression provides a mechanism to
8996 specify the attributes assigned to insns produced from an @code{asm}
8997 statement.  It has the form:
8999 @smallexample
9000 (define_asm_attributes [@var{attr-sets}])
9001 @end smallexample
9003 @noindent
9004 where @var{attr-sets} is specified the same as for both the
9005 @code{define_insn} and the @code{define_peephole} expressions.
9007 These values will typically be the ``worst case'' attribute values.  For
9008 example, they might indicate that the condition code will be clobbered.
9010 A specification for a @code{length} attribute is handled specially.  The
9011 way to compute the length of an @code{asm} insn is to multiply the
9012 length specified in the expression @code{define_asm_attributes} by the
9013 number of machine instructions specified in the @code{asm} statement,
9014 determined by counting the number of semicolons and newlines in the
9015 string.  Therefore, the value of the @code{length} attribute specified
9016 in a @code{define_asm_attributes} should be the maximum possible length
9017 of a single machine instruction.
9019 @end ifset
9020 @ifset INTERNALS
9021 @node Attr Example
9022 @subsection Example of Attribute Specifications
9023 @cindex attribute specifications example
9024 @cindex attribute specifications
9026 The judicious use of defaulting is important in the efficient use of
9027 insn attributes.  Typically, insns are divided into @dfn{types} and an
9028 attribute, customarily called @code{type}, is used to represent this
9029 value.  This attribute is normally used only to define the default value
9030 for other attributes.  An example will clarify this usage.
9032 Assume we have a RISC machine with a condition code and in which only
9033 full-word operations are performed in registers.  Let us assume that we
9034 can divide all insns into loads, stores, (integer) arithmetic
9035 operations, floating point operations, and branches.
9037 Here we will concern ourselves with determining the effect of an insn on
9038 the condition code and will limit ourselves to the following possible
9039 effects:  The condition code can be set unpredictably (clobbered), not
9040 be changed, be set to agree with the results of the operation, or only
9041 changed if the item previously set into the condition code has been
9042 modified.
9044 Here is part of a sample @file{md} file for such a machine:
9046 @smallexample
9047 (define_attr "type" "load,store,arith,fp,branch" (const_string "arith"))
9049 (define_attr "cc" "clobber,unchanged,set,change0"
9050              (cond [(eq_attr "type" "load")
9051                         (const_string "change0")
9052                     (eq_attr "type" "store,branch")
9053                         (const_string "unchanged")
9054                     (eq_attr "type" "arith")
9055                         (if_then_else (match_operand:SI 0 "" "")
9056                                       (const_string "set")
9057                                       (const_string "clobber"))]
9058                    (const_string "clobber")))
9060 (define_insn ""
9061   [(set (match_operand:SI 0 "general_operand" "=r,r,m")
9062         (match_operand:SI 1 "general_operand" "r,m,r"))]
9063   ""
9064   "@@
9065    move %0,%1
9066    load %0,%1
9067    store %0,%1"
9068   [(set_attr "type" "arith,load,store")])
9069 @end smallexample
9071 Note that we assume in the above example that arithmetic operations
9072 performed on quantities smaller than a machine word clobber the condition
9073 code since they will set the condition code to a value corresponding to the
9074 full-word result.
9076 @end ifset
9077 @ifset INTERNALS
9078 @node Insn Lengths
9079 @subsection Computing the Length of an Insn
9080 @cindex insn lengths, computing
9081 @cindex computing the length of an insn
9083 For many machines, multiple types of branch instructions are provided, each
9084 for different length branch displacements.  In most cases, the assembler
9085 will choose the correct instruction to use.  However, when the assembler
9086 cannot do so, GCC can when a special attribute, the @code{length}
9087 attribute, is defined.  This attribute must be defined to have numeric
9088 values by specifying a null string in its @code{define_attr}.
9090 In the case of the @code{length} attribute, two additional forms of
9091 arithmetic terms are allowed in test expressions:
9093 @table @code
9094 @cindex @code{match_dup} and attributes
9095 @item (match_dup @var{n})
9096 This refers to the address of operand @var{n} of the current insn, which
9097 must be a @code{label_ref}.
9099 @cindex @code{pc} and attributes
9100 @item (pc)
9101 For non-branch instructions and backward branch instructions, this refers
9102 to the address of the current insn.  But for forward branch instructions,
9103 this refers to the address of the next insn, because the length of the
9104 current insn is to be computed.
9105 @end table
9107 @cindex @code{addr_vec}, length of
9108 @cindex @code{addr_diff_vec}, length of
9109 For normal insns, the length will be determined by value of the
9110 @code{length} attribute.  In the case of @code{addr_vec} and
9111 @code{addr_diff_vec} insn patterns, the length is computed as
9112 the number of vectors multiplied by the size of each vector.
9114 Lengths are measured in addressable storage units (bytes).
9116 Note that it is possible to call functions via the @code{symbol_ref}
9117 mechanism to compute the length of an insn.  However, if you use this
9118 mechanism you must provide dummy clauses to express the maximum length
9119 without using the function call.  You can an example of this in the
9120 @code{pa} machine description for the @code{call_symref} pattern.
9122 The following macros can be used to refine the length computation:
9124 @table @code
9125 @findex ADJUST_INSN_LENGTH
9126 @item ADJUST_INSN_LENGTH (@var{insn}, @var{length})
9127 If defined, modifies the length assigned to instruction @var{insn} as a
9128 function of the context in which it is used.  @var{length} is an lvalue
9129 that contains the initially computed length of the insn and should be
9130 updated with the correct length of the insn.
9132 This macro will normally not be required.  A case in which it is
9133 required is the ROMP@.  On this machine, the size of an @code{addr_vec}
9134 insn must be increased by two to compensate for the fact that alignment
9135 may be required.
9136 @end table
9138 @findex get_attr_length
9139 The routine that returns @code{get_attr_length} (the value of the
9140 @code{length} attribute) can be used by the output routine to
9141 determine the form of the branch instruction to be written, as the
9142 example below illustrates.
9144 As an example of the specification of variable-length branches, consider
9145 the IBM 360.  If we adopt the convention that a register will be set to
9146 the starting address of a function, we can jump to labels within 4k of
9147 the start using a four-byte instruction.  Otherwise, we need a six-byte
9148 sequence to load the address from memory and then branch to it.
9150 On such a machine, a pattern for a branch instruction might be specified
9151 as follows:
9153 @smallexample
9154 (define_insn "jump"
9155   [(set (pc)
9156         (label_ref (match_operand 0 "" "")))]
9157   ""
9159    return (get_attr_length (insn) == 4
9160            ? "b %l0" : "l r15,=a(%l0); br r15");
9162   [(set (attr "length")
9163         (if_then_else (lt (match_dup 0) (const_int 4096))
9164                       (const_int 4)
9165                       (const_int 6)))])
9166 @end smallexample
9168 @end ifset
9169 @ifset INTERNALS
9170 @node Constant Attributes
9171 @subsection Constant Attributes
9172 @cindex constant attributes
9174 A special form of @code{define_attr}, where the expression for the
9175 default value is a @code{const} expression, indicates an attribute that
9176 is constant for a given run of the compiler.  Constant attributes may be
9177 used to specify which variety of processor is used.  For example,
9179 @smallexample
9180 (define_attr "cpu" "m88100,m88110,m88000"
9181  (const
9182   (cond [(symbol_ref "TARGET_88100") (const_string "m88100")
9183          (symbol_ref "TARGET_88110") (const_string "m88110")]
9184         (const_string "m88000"))))
9186 (define_attr "memory" "fast,slow"
9187  (const
9188   (if_then_else (symbol_ref "TARGET_FAST_MEM")
9189                 (const_string "fast")
9190                 (const_string "slow"))))
9191 @end smallexample
9193 The routine generated for constant attributes has no parameters as it
9194 does not depend on any particular insn.  RTL expressions used to define
9195 the value of a constant attribute may use the @code{symbol_ref} form,
9196 but may not use either the @code{match_operand} form or @code{eq_attr}
9197 forms involving insn attributes.
9199 @end ifset
9200 @ifset INTERNALS
9201 @node Mnemonic Attribute
9202 @subsection Mnemonic Attribute
9203 @cindex mnemonic attribute
9205 The @code{mnemonic} attribute is a string type attribute holding the
9206 instruction mnemonic for an insn alternative.  The attribute values
9207 will automatically be generated by the machine description parser if
9208 there is an attribute definition in the md file:
9210 @smallexample
9211 (define_attr "mnemonic" "unknown" (const_string "unknown"))
9212 @end smallexample
9214 The default value can be freely chosen as long as it does not collide
9215 with any of the instruction mnemonics.  This value will be used
9216 whenever the machine description parser is not able to determine the
9217 mnemonic string.  This might be the case for output templates
9218 containing more than a single instruction as in
9219 @code{"mvcle\t%0,%1,0\;jo\t.-4"}.
9221 The @code{mnemonic} attribute set is not generated automatically if the
9222 instruction string is generated via C code.
9224 An existing @code{mnemonic} attribute set in an insn definition will not
9225 be overriden by the md file parser.  That way it is possible to
9226 manually set the instruction mnemonics for the cases where the md file
9227 parser fails to determine it automatically.
9229 The @code{mnemonic} attribute is useful for dealing with instruction
9230 specific properties in the pipeline description without defining
9231 additional insn attributes.
9233 @smallexample
9234 (define_attr "ooo_expanded" ""
9235   (cond [(eq_attr "mnemonic" "dlr,dsgr,d,dsgf,stam,dsgfr,dlgr")
9236          (const_int 1)]
9237         (const_int 0)))
9238 @end smallexample
9240 @end ifset
9241 @ifset INTERNALS
9242 @node Delay Slots
9243 @subsection Delay Slot Scheduling
9244 @cindex delay slots, defining
9246 The insn attribute mechanism can be used to specify the requirements for
9247 delay slots, if any, on a target machine.  An instruction is said to
9248 require a @dfn{delay slot} if some instructions that are physically
9249 after the instruction are executed as if they were located before it.
9250 Classic examples are branch and call instructions, which often execute
9251 the following instruction before the branch or call is performed.
9253 On some machines, conditional branch instructions can optionally
9254 @dfn{annul} instructions in the delay slot.  This means that the
9255 instruction will not be executed for certain branch outcomes.  Both
9256 instructions that annul if the branch is true and instructions that
9257 annul if the branch is false are supported.
9259 Delay slot scheduling differs from instruction scheduling in that
9260 determining whether an instruction needs a delay slot is dependent only
9261 on the type of instruction being generated, not on data flow between the
9262 instructions.  See the next section for a discussion of data-dependent
9263 instruction scheduling.
9265 @findex define_delay
9266 The requirement of an insn needing one or more delay slots is indicated
9267 via the @code{define_delay} expression.  It has the following form:
9269 @smallexample
9270 (define_delay @var{test}
9271               [@var{delay-1} @var{annul-true-1} @var{annul-false-1}
9272                @var{delay-2} @var{annul-true-2} @var{annul-false-2}
9273                @dots{}])
9274 @end smallexample
9276 @var{test} is an attribute test that indicates whether this
9277 @code{define_delay} applies to a particular insn.  If so, the number of
9278 required delay slots is determined by the length of the vector specified
9279 as the second argument.  An insn placed in delay slot @var{n} must
9280 satisfy attribute test @var{delay-n}.  @var{annul-true-n} is an
9281 attribute test that specifies which insns may be annulled if the branch
9282 is true.  Similarly, @var{annul-false-n} specifies which insns in the
9283 delay slot may be annulled if the branch is false.  If annulling is not
9284 supported for that delay slot, @code{(nil)} should be coded.
9286 For example, in the common case where branch and call insns require
9287 a single delay slot, which may contain any insn other than a branch or
9288 call, the following would be placed in the @file{md} file:
9290 @smallexample
9291 (define_delay (eq_attr "type" "branch,call")
9292               [(eq_attr "type" "!branch,call") (nil) (nil)])
9293 @end smallexample
9295 Multiple @code{define_delay} expressions may be specified.  In this
9296 case, each such expression specifies different delay slot requirements
9297 and there must be no insn for which tests in two @code{define_delay}
9298 expressions are both true.
9300 For example, if we have a machine that requires one delay slot for branches
9301 but two for calls,  no delay slot can contain a branch or call insn,
9302 and any valid insn in the delay slot for the branch can be annulled if the
9303 branch is true, we might represent this as follows:
9305 @smallexample
9306 (define_delay (eq_attr "type" "branch")
9307    [(eq_attr "type" "!branch,call")
9308     (eq_attr "type" "!branch,call")
9309     (nil)])
9311 (define_delay (eq_attr "type" "call")
9312               [(eq_attr "type" "!branch,call") (nil) (nil)
9313                (eq_attr "type" "!branch,call") (nil) (nil)])
9314 @end smallexample
9315 @c the above is *still* too long.  --mew 4feb93
9317 @end ifset
9318 @ifset INTERNALS
9319 @node Processor pipeline description
9320 @subsection Specifying processor pipeline description
9321 @cindex processor pipeline description
9322 @cindex processor functional units
9323 @cindex instruction latency time
9324 @cindex interlock delays
9325 @cindex data dependence delays
9326 @cindex reservation delays
9327 @cindex pipeline hazard recognizer
9328 @cindex automaton based pipeline description
9329 @cindex regular expressions
9330 @cindex deterministic finite state automaton
9331 @cindex automaton based scheduler
9332 @cindex RISC
9333 @cindex VLIW
9335 To achieve better performance, most modern processors
9336 (super-pipelined, superscalar @acronym{RISC}, and @acronym{VLIW}
9337 processors) have many @dfn{functional units} on which several
9338 instructions can be executed simultaneously.  An instruction starts
9339 execution if its issue conditions are satisfied.  If not, the
9340 instruction is stalled until its conditions are satisfied.  Such
9341 @dfn{interlock (pipeline) delay} causes interruption of the fetching
9342 of successor instructions (or demands nop instructions, e.g.@: for some
9343 MIPS processors).
9345 There are two major kinds of interlock delays in modern processors.
9346 The first one is a data dependence delay determining @dfn{instruction
9347 latency time}.  The instruction execution is not started until all
9348 source data have been evaluated by prior instructions (there are more
9349 complex cases when the instruction execution starts even when the data
9350 are not available but will be ready in given time after the
9351 instruction execution start).  Taking the data dependence delays into
9352 account is simple.  The data dependence (true, output, and
9353 anti-dependence) delay between two instructions is given by a
9354 constant.  In most cases this approach is adequate.  The second kind
9355 of interlock delays is a reservation delay.  The reservation delay
9356 means that two instructions under execution will be in need of shared
9357 processors resources, i.e.@: buses, internal registers, and/or
9358 functional units, which are reserved for some time.  Taking this kind
9359 of delay into account is complex especially for modern @acronym{RISC}
9360 processors.
9362 The task of exploiting more processor parallelism is solved by an
9363 instruction scheduler.  For a better solution to this problem, the
9364 instruction scheduler has to have an adequate description of the
9365 processor parallelism (or @dfn{pipeline description}).  GCC
9366 machine descriptions describe processor parallelism and functional
9367 unit reservations for groups of instructions with the aid of
9368 @dfn{regular expressions}.
9370 The GCC instruction scheduler uses a @dfn{pipeline hazard recognizer} to
9371 figure out the possibility of the instruction issue by the processor
9372 on a given simulated processor cycle.  The pipeline hazard recognizer is
9373 automatically generated from the processor pipeline description.  The
9374 pipeline hazard recognizer generated from the machine description
9375 is based on a deterministic finite state automaton (@acronym{DFA}):
9376 the instruction issue is possible if there is a transition from one
9377 automaton state to another one.  This algorithm is very fast, and
9378 furthermore, its speed is not dependent on processor
9379 complexity@footnote{However, the size of the automaton depends on
9380 processor complexity.  To limit this effect, machine descriptions
9381 can split orthogonal parts of the machine description among several
9382 automata: but then, since each of these must be stepped independently,
9383 this does cause a small decrease in the algorithm's performance.}.
9385 @cindex automaton based pipeline description
9386 The rest of this section describes the directives that constitute
9387 an automaton-based processor pipeline description.  The order of
9388 these constructions within the machine description file is not
9389 important.
9391 @findex define_automaton
9392 @cindex pipeline hazard recognizer
9393 The following optional construction describes names of automata
9394 generated and used for the pipeline hazards recognition.  Sometimes
9395 the generated finite state automaton used by the pipeline hazard
9396 recognizer is large.  If we use more than one automaton and bind functional
9397 units to the automata, the total size of the automata is usually
9398 less than the size of the single automaton.  If there is no one such
9399 construction, only one finite state automaton is generated.
9401 @smallexample
9402 (define_automaton @var{automata-names})
9403 @end smallexample
9405 @var{automata-names} is a string giving names of the automata.  The
9406 names are separated by commas.  All the automata should have unique names.
9407 The automaton name is used in the constructions @code{define_cpu_unit} and
9408 @code{define_query_cpu_unit}.
9410 @findex define_cpu_unit
9411 @cindex processor functional units
9412 Each processor functional unit used in the description of instruction
9413 reservations should be described by the following construction.
9415 @smallexample
9416 (define_cpu_unit @var{unit-names} [@var{automaton-name}])
9417 @end smallexample
9419 @var{unit-names} is a string giving the names of the functional units
9420 separated by commas.  Don't use name @samp{nothing}, it is reserved
9421 for other goals.
9423 @var{automaton-name} is a string giving the name of the automaton with
9424 which the unit is bound.  The automaton should be described in
9425 construction @code{define_automaton}.  You should give
9426 @dfn{automaton-name}, if there is a defined automaton.
9428 The assignment of units to automata are constrained by the uses of the
9429 units in insn reservations.  The most important constraint is: if a
9430 unit reservation is present on a particular cycle of an alternative
9431 for an insn reservation, then some unit from the same automaton must
9432 be present on the same cycle for the other alternatives of the insn
9433 reservation.  The rest of the constraints are mentioned in the
9434 description of the subsequent constructions.
9436 @findex define_query_cpu_unit
9437 @cindex querying function unit reservations
9438 The following construction describes CPU functional units analogously
9439 to @code{define_cpu_unit}.  The reservation of such units can be
9440 queried for an automaton state.  The instruction scheduler never
9441 queries reservation of functional units for given automaton state.  So
9442 as a rule, you don't need this construction.  This construction could
9443 be used for future code generation goals (e.g.@: to generate
9444 @acronym{VLIW} insn templates).
9446 @smallexample
9447 (define_query_cpu_unit @var{unit-names} [@var{automaton-name}])
9448 @end smallexample
9450 @var{unit-names} is a string giving names of the functional units
9451 separated by commas.
9453 @var{automaton-name} is a string giving the name of the automaton with
9454 which the unit is bound.
9456 @findex define_insn_reservation
9457 @cindex instruction latency time
9458 @cindex regular expressions
9459 @cindex data bypass
9460 The following construction is the major one to describe pipeline
9461 characteristics of an instruction.
9463 @smallexample
9464 (define_insn_reservation @var{insn-name} @var{default_latency}
9465                          @var{condition} @var{regexp})
9466 @end smallexample
9468 @var{default_latency} is a number giving latency time of the
9469 instruction.  There is an important difference between the old
9470 description and the automaton based pipeline description.  The latency
9471 time is used for all dependencies when we use the old description.  In
9472 the automaton based pipeline description, the given latency time is only
9473 used for true dependencies.  The cost of anti-dependencies is always
9474 zero and the cost of output dependencies is the difference between
9475 latency times of the producing and consuming insns (if the difference
9476 is negative, the cost is considered to be zero).  You can always
9477 change the default costs for any description by using the target hook
9478 @code{TARGET_SCHED_ADJUST_COST} (@pxref{Scheduling}).
9480 @var{insn-name} is a string giving the internal name of the insn.  The
9481 internal names are used in constructions @code{define_bypass} and in
9482 the automaton description file generated for debugging.  The internal
9483 name has nothing in common with the names in @code{define_insn}.  It is a
9484 good practice to use insn classes described in the processor manual.
9486 @var{condition} defines what RTL insns are described by this
9487 construction.  You should remember that you will be in trouble if
9488 @var{condition} for two or more different
9489 @code{define_insn_reservation} constructions is TRUE for an insn.  In
9490 this case what reservation will be used for the insn is not defined.
9491 Such cases are not checked during generation of the pipeline hazards
9492 recognizer because in general recognizing that two conditions may have
9493 the same value is quite difficult (especially if the conditions
9494 contain @code{symbol_ref}).  It is also not checked during the
9495 pipeline hazard recognizer work because it would slow down the
9496 recognizer considerably.
9498 @var{regexp} is a string describing the reservation of the cpu's functional
9499 units by the instruction.  The reservations are described by a regular
9500 expression according to the following syntax:
9502 @smallexample
9503        regexp = regexp "," oneof
9504               | oneof
9506        oneof = oneof "|" allof
9507              | allof
9509        allof = allof "+" repeat
9510              | repeat
9512        repeat = element "*" number
9513               | element
9515        element = cpu_function_unit_name
9516                | reservation_name
9517                | result_name
9518                | "nothing"
9519                | "(" regexp ")"
9520 @end smallexample
9522 @itemize @bullet
9523 @item
9524 @samp{,} is used for describing the start of the next cycle in
9525 the reservation.
9527 @item
9528 @samp{|} is used for describing a reservation described by the first
9529 regular expression @strong{or} a reservation described by the second
9530 regular expression @strong{or} etc.
9532 @item
9533 @samp{+} is used for describing a reservation described by the first
9534 regular expression @strong{and} a reservation described by the
9535 second regular expression @strong{and} etc.
9537 @item
9538 @samp{*} is used for convenience and simply means a sequence in which
9539 the regular expression are repeated @var{number} times with cycle
9540 advancing (see @samp{,}).
9542 @item
9543 @samp{cpu_function_unit_name} denotes reservation of the named
9544 functional unit.
9546 @item
9547 @samp{reservation_name} --- see description of construction
9548 @samp{define_reservation}.
9550 @item
9551 @samp{nothing} denotes no unit reservations.
9552 @end itemize
9554 @findex define_reservation
9555 Sometimes unit reservations for different insns contain common parts.
9556 In such case, you can simplify the pipeline description by describing
9557 the common part by the following construction
9559 @smallexample
9560 (define_reservation @var{reservation-name} @var{regexp})
9561 @end smallexample
9563 @var{reservation-name} is a string giving name of @var{regexp}.
9564 Functional unit names and reservation names are in the same name
9565 space.  So the reservation names should be different from the
9566 functional unit names and can not be the reserved name @samp{nothing}.
9568 @findex define_bypass
9569 @cindex instruction latency time
9570 @cindex data bypass
9571 The following construction is used to describe exceptions in the
9572 latency time for given instruction pair.  This is so called bypasses.
9574 @smallexample
9575 (define_bypass @var{number} @var{out_insn_names} @var{in_insn_names}
9576                [@var{guard}])
9577 @end smallexample
9579 @var{number} defines when the result generated by the instructions
9580 given in string @var{out_insn_names} will be ready for the
9581 instructions given in string @var{in_insn_names}.  Each of these
9582 strings is a comma-separated list of filename-style globs and
9583 they refer to the names of @code{define_insn_reservation}s.
9584 For example:
9585 @smallexample
9586 (define_bypass 1 "cpu1_load_*, cpu1_store_*" "cpu1_load_*")
9587 @end smallexample
9588 defines a bypass between instructions that start with
9589 @samp{cpu1_load_} or @samp{cpu1_store_} and those that start with
9590 @samp{cpu1_load_}.
9592 @var{guard} is an optional string giving the name of a C function which
9593 defines an additional guard for the bypass.  The function will get the
9594 two insns as parameters.  If the function returns zero the bypass will
9595 be ignored for this case.  The additional guard is necessary to
9596 recognize complicated bypasses, e.g.@: when the consumer is only an address
9597 of insn @samp{store} (not a stored value).
9599 If there are more one bypass with the same output and input insns, the
9600 chosen bypass is the first bypass with a guard in description whose
9601 guard function returns nonzero.  If there is no such bypass, then
9602 bypass without the guard function is chosen.
9604 @findex exclusion_set
9605 @findex presence_set
9606 @findex final_presence_set
9607 @findex absence_set
9608 @findex final_absence_set
9609 @cindex VLIW
9610 @cindex RISC
9611 The following five constructions are usually used to describe
9612 @acronym{VLIW} processors, or more precisely, to describe a placement
9613 of small instructions into @acronym{VLIW} instruction slots.  They
9614 can be used for @acronym{RISC} processors, too.
9616 @smallexample
9617 (exclusion_set @var{unit-names} @var{unit-names})
9618 (presence_set @var{unit-names} @var{patterns})
9619 (final_presence_set @var{unit-names} @var{patterns})
9620 (absence_set @var{unit-names} @var{patterns})
9621 (final_absence_set @var{unit-names} @var{patterns})
9622 @end smallexample
9624 @var{unit-names} is a string giving names of functional units
9625 separated by commas.
9627 @var{patterns} is a string giving patterns of functional units
9628 separated by comma.  Currently pattern is one unit or units
9629 separated by white-spaces.
9631 The first construction (@samp{exclusion_set}) means that each
9632 functional unit in the first string can not be reserved simultaneously
9633 with a unit whose name is in the second string and vice versa.  For
9634 example, the construction is useful for describing processors
9635 (e.g.@: some SPARC processors) with a fully pipelined floating point
9636 functional unit which can execute simultaneously only single floating
9637 point insns or only double floating point insns.
9639 The second construction (@samp{presence_set}) means that each
9640 functional unit in the first string can not be reserved unless at
9641 least one of pattern of units whose names are in the second string is
9642 reserved.  This is an asymmetric relation.  For example, it is useful
9643 for description that @acronym{VLIW} @samp{slot1} is reserved after
9644 @samp{slot0} reservation.  We could describe it by the following
9645 construction
9647 @smallexample
9648 (presence_set "slot1" "slot0")
9649 @end smallexample
9651 Or @samp{slot1} is reserved only after @samp{slot0} and unit @samp{b0}
9652 reservation.  In this case we could write
9654 @smallexample
9655 (presence_set "slot1" "slot0 b0")
9656 @end smallexample
9658 The third construction (@samp{final_presence_set}) is analogous to
9659 @samp{presence_set}.  The difference between them is when checking is
9660 done.  When an instruction is issued in given automaton state
9661 reflecting all current and planned unit reservations, the automaton
9662 state is changed.  The first state is a source state, the second one
9663 is a result state.  Checking for @samp{presence_set} is done on the
9664 source state reservation, checking for @samp{final_presence_set} is
9665 done on the result reservation.  This construction is useful to
9666 describe a reservation which is actually two subsequent reservations.
9667 For example, if we use
9669 @smallexample
9670 (presence_set "slot1" "slot0")
9671 @end smallexample
9673 the following insn will be never issued (because @samp{slot1} requires
9674 @samp{slot0} which is absent in the source state).
9676 @smallexample
9677 (define_reservation "insn_and_nop" "slot0 + slot1")
9678 @end smallexample
9680 but it can be issued if we use analogous @samp{final_presence_set}.
9682 The forth construction (@samp{absence_set}) means that each functional
9683 unit in the first string can be reserved only if each pattern of units
9684 whose names are in the second string is not reserved.  This is an
9685 asymmetric relation (actually @samp{exclusion_set} is analogous to
9686 this one but it is symmetric).  For example it might be useful in a
9687 @acronym{VLIW} description to say that @samp{slot0} cannot be reserved
9688 after either @samp{slot1} or @samp{slot2} have been reserved.  This
9689 can be described as:
9691 @smallexample
9692 (absence_set "slot0" "slot1, slot2")
9693 @end smallexample
9695 Or @samp{slot2} can not be reserved if @samp{slot0} and unit @samp{b0}
9696 are reserved or @samp{slot1} and unit @samp{b1} are reserved.  In
9697 this case we could write
9699 @smallexample
9700 (absence_set "slot2" "slot0 b0, slot1 b1")
9701 @end smallexample
9703 All functional units mentioned in a set should belong to the same
9704 automaton.
9706 The last construction (@samp{final_absence_set}) is analogous to
9707 @samp{absence_set} but checking is done on the result (state)
9708 reservation.  See comments for @samp{final_presence_set}.
9710 @findex automata_option
9711 @cindex deterministic finite state automaton
9712 @cindex nondeterministic finite state automaton
9713 @cindex finite state automaton minimization
9714 You can control the generator of the pipeline hazard recognizer with
9715 the following construction.
9717 @smallexample
9718 (automata_option @var{options})
9719 @end smallexample
9721 @var{options} is a string giving options which affect the generated
9722 code.  Currently there are the following options:
9724 @itemize @bullet
9725 @item
9726 @dfn{no-minimization} makes no minimization of the automaton.  This is
9727 only worth to do when we are debugging the description and need to
9728 look more accurately at reservations of states.
9730 @item
9731 @dfn{time} means printing time statistics about the generation of
9732 automata.
9734 @item
9735 @dfn{stats} means printing statistics about the generated automata
9736 such as the number of DFA states, NDFA states and arcs.
9738 @item
9739 @dfn{v} means a generation of the file describing the result automata.
9740 The file has suffix @samp{.dfa} and can be used for the description
9741 verification and debugging.
9743 @item
9744 @dfn{w} means a generation of warning instead of error for
9745 non-critical errors.
9747 @item
9748 @dfn{no-comb-vect} prevents the automaton generator from generating
9749 two data structures and comparing them for space efficiency.  Using
9750 a comb vector to represent transitions may be better, but it can be
9751 very expensive to construct.  This option is useful if the build
9752 process spends an unacceptably long time in genautomata.
9754 @item
9755 @dfn{ndfa} makes nondeterministic finite state automata.  This affects
9756 the treatment of operator @samp{|} in the regular expressions.  The
9757 usual treatment of the operator is to try the first alternative and,
9758 if the reservation is not possible, the second alternative.  The
9759 nondeterministic treatment means trying all alternatives, some of them
9760 may be rejected by reservations in the subsequent insns.
9762 @item
9763 @dfn{collapse-ndfa} modifies the behavior of the generator when
9764 producing an automaton.  An additional state transition to collapse a
9765 nondeterministic @acronym{NDFA} state to a deterministic @acronym{DFA}
9766 state is generated.  It can be triggered by passing @code{const0_rtx} to
9767 state_transition.  In such an automaton, cycle advance transitions are
9768 available only for these collapsed states.  This option is useful for
9769 ports that want to use the @code{ndfa} option, but also want to use
9770 @code{define_query_cpu_unit} to assign units to insns issued in a cycle.
9772 @item
9773 @dfn{progress} means output of a progress bar showing how many states
9774 were generated so far for automaton being processed.  This is useful
9775 during debugging a @acronym{DFA} description.  If you see too many
9776 generated states, you could interrupt the generator of the pipeline
9777 hazard recognizer and try to figure out a reason for generation of the
9778 huge automaton.
9779 @end itemize
9781 As an example, consider a superscalar @acronym{RISC} machine which can
9782 issue three insns (two integer insns and one floating point insn) on
9783 the cycle but can finish only two insns.  To describe this, we define
9784 the following functional units.
9786 @smallexample
9787 (define_cpu_unit "i0_pipeline, i1_pipeline, f_pipeline")
9788 (define_cpu_unit "port0, port1")
9789 @end smallexample
9791 All simple integer insns can be executed in any integer pipeline and
9792 their result is ready in two cycles.  The simple integer insns are
9793 issued into the first pipeline unless it is reserved, otherwise they
9794 are issued into the second pipeline.  Integer division and
9795 multiplication insns can be executed only in the second integer
9796 pipeline and their results are ready correspondingly in 9 and 4
9797 cycles.  The integer division is not pipelined, i.e.@: the subsequent
9798 integer division insn can not be issued until the current division
9799 insn finished.  Floating point insns are fully pipelined and their
9800 results are ready in 3 cycles.  Where the result of a floating point
9801 insn is used by an integer insn, an additional delay of one cycle is
9802 incurred.  To describe all of this we could specify
9804 @smallexample
9805 (define_cpu_unit "div")
9807 (define_insn_reservation "simple" 2 (eq_attr "type" "int")
9808                          "(i0_pipeline | i1_pipeline), (port0 | port1)")
9810 (define_insn_reservation "mult" 4 (eq_attr "type" "mult")
9811                          "i1_pipeline, nothing*2, (port0 | port1)")
9813 (define_insn_reservation "div" 9 (eq_attr "type" "div")
9814                          "i1_pipeline, div*7, div + (port0 | port1)")
9816 (define_insn_reservation "float" 3 (eq_attr "type" "float")
9817                          "f_pipeline, nothing, (port0 | port1))
9819 (define_bypass 4 "float" "simple,mult,div")
9820 @end smallexample
9822 To simplify the description we could describe the following reservation
9824 @smallexample
9825 (define_reservation "finish" "port0|port1")
9826 @end smallexample
9828 and use it in all @code{define_insn_reservation} as in the following
9829 construction
9831 @smallexample
9832 (define_insn_reservation "simple" 2 (eq_attr "type" "int")
9833                          "(i0_pipeline | i1_pipeline), finish")
9834 @end smallexample
9837 @end ifset
9838 @ifset INTERNALS
9839 @node Conditional Execution
9840 @section Conditional Execution
9841 @cindex conditional execution
9842 @cindex predication
9844 A number of architectures provide for some form of conditional
9845 execution, or predication.  The hallmark of this feature is the
9846 ability to nullify most of the instructions in the instruction set.
9847 When the instruction set is large and not entirely symmetric, it
9848 can be quite tedious to describe these forms directly in the
9849 @file{.md} file.  An alternative is the @code{define_cond_exec} template.
9851 @findex define_cond_exec
9852 @smallexample
9853 (define_cond_exec
9854   [@var{predicate-pattern}]
9855   "@var{condition}"
9856   "@var{output-template}"
9857   "@var{optional-insn-attribues}")
9858 @end smallexample
9860 @var{predicate-pattern} is the condition that must be true for the
9861 insn to be executed at runtime and should match a relational operator.
9862 One can use @code{match_operator} to match several relational operators
9863 at once.  Any @code{match_operand} operands must have no more than one
9864 alternative.
9866 @var{condition} is a C expression that must be true for the generated
9867 pattern to match.
9869 @findex current_insn_predicate
9870 @var{output-template} is a string similar to the @code{define_insn}
9871 output template (@pxref{Output Template}), except that the @samp{*}
9872 and @samp{@@} special cases do not apply.  This is only useful if the
9873 assembly text for the predicate is a simple prefix to the main insn.
9874 In order to handle the general case, there is a global variable
9875 @code{current_insn_predicate} that will contain the entire predicate
9876 if the current insn is predicated, and will otherwise be @code{NULL}.
9878 @var{optional-insn-attributes} is an optional vector of attributes that gets
9879 appended to the insn attributes of the produced cond_exec rtx. It can
9880 be used to add some distinguishing attribute to cond_exec rtxs produced
9881 that way. An example usage would be to use this attribute in conjunction
9882 with attributes on the main pattern to disable particular alternatives under
9883 certain conditions.
9885 When @code{define_cond_exec} is used, an implicit reference to
9886 the @code{predicable} instruction attribute is made.
9887 @xref{Insn Attributes}.  This attribute must be a boolean (i.e.@: have
9888 exactly two elements in its @var{list-of-values}), with the possible
9889 values being @code{no} and @code{yes}.  The default and all uses in
9890 the insns must be a simple constant, not a complex expressions.  It
9891 may, however, depend on the alternative, by using a comma-separated
9892 list of values.  If that is the case, the port should also define an
9893 @code{enabled} attribute (@pxref{Disable Insn Alternatives}), which
9894 should also allow only @code{no} and @code{yes} as its values.
9896 For each @code{define_insn} for which the @code{predicable}
9897 attribute is true, a new @code{define_insn} pattern will be
9898 generated that matches a predicated version of the instruction.
9899 For example,
9901 @smallexample
9902 (define_insn "addsi"
9903   [(set (match_operand:SI 0 "register_operand" "r")
9904         (plus:SI (match_operand:SI 1 "register_operand" "r")
9905                  (match_operand:SI 2 "register_operand" "r")))]
9906   "@var{test1}"
9907   "add %2,%1,%0")
9909 (define_cond_exec
9910   [(ne (match_operand:CC 0 "register_operand" "c")
9911        (const_int 0))]
9912   "@var{test2}"
9913   "(%0)")
9914 @end smallexample
9916 @noindent
9917 generates a new pattern
9919 @smallexample
9920 (define_insn ""
9921   [(cond_exec
9922      (ne (match_operand:CC 3 "register_operand" "c") (const_int 0))
9923      (set (match_operand:SI 0 "register_operand" "r")
9924           (plus:SI (match_operand:SI 1 "register_operand" "r")
9925                    (match_operand:SI 2 "register_operand" "r"))))]
9926   "(@var{test2}) && (@var{test1})"
9927   "(%3) add %2,%1,%0")
9928 @end smallexample
9930 @end ifset
9931 @ifset INTERNALS
9932 @node Define Subst
9933 @section RTL Templates Transformations
9934 @cindex define_subst
9936 For some hardware architectures there are common cases when the RTL
9937 templates for the instructions can be derived from the other RTL
9938 templates using simple transformations.  E.g., @file{i386.md} contains
9939 an RTL template for the ordinary @code{sub} instruction---
9940 @code{*subsi_1}, and for the @code{sub} instruction with subsequent
9941 zero-extension---@code{*subsi_1_zext}.  Such cases can be easily
9942 implemented by a single meta-template capable of generating a modified
9943 case based on the initial one:
9945 @findex define_subst
9946 @smallexample
9947 (define_subst "@var{name}"
9948   [@var{input-template}]
9949   "@var{condition}"
9950   [@var{output-template}])
9951 @end smallexample
9952 @var{input-template} is a pattern describing the source RTL template,
9953 which will be transformed.
9955 @var{condition} is a C expression that is conjunct with the condition
9956 from the input-template to generate a condition to be used in the
9957 output-template.
9959 @var{output-template} is a pattern that will be used in the resulting
9960 template.
9962 @code{define_subst} mechanism is tightly coupled with the notion of the
9963 subst attribute (@pxref{Subst Iterators}).  The use of
9964 @code{define_subst} is triggered by a reference to a subst attribute in
9965 the transforming RTL template.  This reference initiates duplication of
9966 the source RTL template and substitution of the attributes with their
9967 values.  The source RTL template is left unchanged, while the copy is
9968 transformed by @code{define_subst}.  This transformation can fail in the
9969 case when the source RTL template is not matched against the
9970 input-template of the @code{define_subst}.  In such case the copy is
9971 deleted.
9973 @code{define_subst} can be used only in @code{define_insn} and
9974 @code{define_expand}, it cannot be used in other expressions (e.g. in
9975 @code{define_insn_and_split}).
9977 @menu
9978 * Define Subst Example::            Example of @code{define_subst} work.
9979 * Define Subst Pattern Matching::   Process of template comparison.
9980 * Define Subst Output Template::    Generation of output template.
9981 @end menu
9983 @node Define Subst Example
9984 @subsection @code{define_subst} Example
9985 @cindex define_subst
9987 To illustrate how @code{define_subst} works, let us examine a simple
9988 template transformation.
9990 Suppose there are two kinds of instructions: one that touches flags and
9991 the other that does not.  The instructions of the second type could be
9992 generated with the following @code{define_subst}:
9994 @smallexample
9995 (define_subst "add_clobber_subst"
9996   [(set (match_operand:SI 0 "" "")
9997         (match_operand:SI 1 "" ""))]
9998   ""
9999   [(set (match_dup 0)
10000         (match_dup 1))
10001    (clobber (reg:CC FLAGS_REG))]
10002 @end smallexample
10004 This @code{define_subst} can be applied to any RTL pattern containing
10005 @code{set} of mode SI and generates a copy with clobber when it is
10006 applied.
10008 Assume there is an RTL template for a @code{max} instruction to be used
10009 in @code{define_subst} mentioned above:
10011 @smallexample
10012 (define_insn "maxsi"
10013   [(set (match_operand:SI 0 "register_operand" "=r")
10014         (max:SI
10015           (match_operand:SI 1 "register_operand" "r")
10016           (match_operand:SI 2 "register_operand" "r")))]
10017   ""
10018   "max\t@{%2, %1, %0|%0, %1, %2@}"
10019  [@dots{}])
10020 @end smallexample
10022 To mark the RTL template for @code{define_subst} application,
10023 subst-attributes are used.  They should be declared in advance:
10025 @smallexample
10026 (define_subst_attr "add_clobber_name" "add_clobber_subst" "_noclobber" "_clobber")
10027 @end smallexample
10029 Here @samp{add_clobber_name} is the attribute name,
10030 @samp{add_clobber_subst} is the name of the corresponding
10031 @code{define_subst}, the third argument (@samp{_noclobber}) is the
10032 attribute value that would be substituted into the unchanged version of
10033 the source RTL template, and the last argument (@samp{_clobber}) is the
10034 value that would be substituted into the second, transformed,
10035 version of the RTL template.
10037 Once the subst-attribute has been defined, it should be used in RTL
10038 templates which need to be processed by the @code{define_subst}.  So,
10039 the original RTL template should be changed:
10041 @smallexample
10042 (define_insn "maxsi<add_clobber_name>"
10043   [(set (match_operand:SI 0 "register_operand" "=r")
10044         (max:SI
10045           (match_operand:SI 1 "register_operand" "r")
10046           (match_operand:SI 2 "register_operand" "r")))]
10047   ""
10048   "max\t@{%2, %1, %0|%0, %1, %2@}"
10049  [@dots{}])
10050 @end smallexample
10052 The result of the @code{define_subst} usage would look like the following:
10054 @smallexample
10055 (define_insn "maxsi_noclobber"
10056   [(set (match_operand:SI 0 "register_operand" "=r")
10057         (max:SI
10058           (match_operand:SI 1 "register_operand" "r")
10059           (match_operand:SI 2 "register_operand" "r")))]
10060   ""
10061   "max\t@{%2, %1, %0|%0, %1, %2@}"
10062  [@dots{}])
10063 (define_insn "maxsi_clobber"
10064   [(set (match_operand:SI 0 "register_operand" "=r")
10065         (max:SI
10066           (match_operand:SI 1 "register_operand" "r")
10067           (match_operand:SI 2 "register_operand" "r")))
10068    (clobber (reg:CC FLAGS_REG))]
10069   ""
10070   "max\t@{%2, %1, %0|%0, %1, %2@}"
10071  [@dots{}])
10072 @end smallexample
10074 @node Define Subst Pattern Matching
10075 @subsection Pattern Matching in @code{define_subst}
10076 @cindex define_subst
10078 All expressions, allowed in @code{define_insn} or @code{define_expand},
10079 are allowed in the input-template of @code{define_subst}, except
10080 @code{match_par_dup}, @code{match_scratch}, @code{match_parallel}. The
10081 meanings of expressions in the input-template were changed:
10083 @code{match_operand} matches any expression (possibly, a subtree in
10084 RTL-template), if modes of the @code{match_operand} and this expression
10085 are the same, or mode of the @code{match_operand} is @code{VOIDmode}, or
10086 this expression is @code{match_dup}, @code{match_op_dup}.  If the
10087 expression is @code{match_operand} too, and predicate of
10088 @code{match_operand} from the input pattern is not empty, then the
10089 predicates are compared.  That can be used for more accurate filtering
10090 of accepted RTL-templates.
10092 @code{match_operator} matches common operators (like @code{plus},
10093 @code{minus}), @code{unspec}, @code{unspec_volatile} operators and
10094 @code{match_operator}s from the original pattern if the modes match and
10095 @code{match_operator} from the input pattern has the same number of
10096 operands as the operator from the original pattern.
10098 @node Define Subst Output Template
10099 @subsection Generation of output template in @code{define_subst}
10100 @cindex define_subst
10102 If all necessary checks for @code{define_subst} application pass, a new
10103 RTL-pattern, based on the output-template, is created to replace the old
10104 template.  Like in input-patterns, meanings of some RTL expressions are
10105 changed when they are used in output-patterns of a @code{define_subst}.
10106 Thus, @code{match_dup} is used for copying the whole expression from the
10107 original pattern, which matched corresponding @code{match_operand} from
10108 the input pattern.
10110 @code{match_dup N} is used in the output template to be replaced with
10111 the expression from the original pattern, which matched
10112 @code{match_operand N} from the input pattern.  As a consequence,
10113 @code{match_dup} cannot be used to point to @code{match_operand}s from
10114 the output pattern, it should always refer to a @code{match_operand}
10115 from the input pattern.
10117 In the output template one can refer to the expressions from the
10118 original pattern and create new ones.  For instance, some operands could
10119 be added by means of standard @code{match_operand}.
10121 After replacing @code{match_dup} with some RTL-subtree from the original
10122 pattern, it could happen that several @code{match_operand}s in the
10123 output pattern have the same indexes.  It is unknown, how many and what
10124 indexes would be used in the expression which would replace
10125 @code{match_dup}, so such conflicts in indexes are inevitable.  To
10126 overcome this issue, @code{match_operands} and @code{match_operators},
10127 which were introduced into the output pattern, are renumerated when all
10128 @code{match_dup}s are replaced.
10130 Number of alternatives in @code{match_operand}s introduced into the
10131 output template @code{M} could differ from the number of alternatives in
10132 the original pattern @code{N}, so in the resultant pattern there would
10133 be @code{N*M} alternatives.  Thus, constraints from the original pattern
10134 would be duplicated @code{N} times, constraints from the output pattern
10135 would be duplicated @code{M} times, producing all possible combinations.
10136 @end ifset
10138 @ifset INTERNALS
10139 @node Constant Definitions
10140 @section Constant Definitions
10141 @cindex constant definitions
10142 @findex define_constants
10144 Using literal constants inside instruction patterns reduces legibility and
10145 can be a maintenance problem.
10147 To overcome this problem, you may use the @code{define_constants}
10148 expression.  It contains a vector of name-value pairs.  From that
10149 point on, wherever any of the names appears in the MD file, it is as
10150 if the corresponding value had been written instead.  You may use
10151 @code{define_constants} multiple times; each appearance adds more
10152 constants to the table.  It is an error to redefine a constant with
10153 a different value.
10155 To come back to the a29k load multiple example, instead of
10157 @smallexample
10158 (define_insn ""
10159   [(match_parallel 0 "load_multiple_operation"
10160      [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10161            (match_operand:SI 2 "memory_operand" "m"))
10162       (use (reg:SI 179))
10163       (clobber (reg:SI 179))])]
10164   ""
10165   "loadm 0,0,%1,%2")
10166 @end smallexample
10168 You could write:
10170 @smallexample
10171 (define_constants [
10172     (R_BP 177)
10173     (R_FC 178)
10174     (R_CR 179)
10175     (R_Q  180)
10178 (define_insn ""
10179   [(match_parallel 0 "load_multiple_operation"
10180      [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10181            (match_operand:SI 2 "memory_operand" "m"))
10182       (use (reg:SI R_CR))
10183       (clobber (reg:SI R_CR))])]
10184   ""
10185   "loadm 0,0,%1,%2")
10186 @end smallexample
10188 The constants that are defined with a define_constant are also output
10189 in the insn-codes.h header file as #defines.
10191 @cindex enumerations
10192 @findex define_c_enum
10193 You can also use the machine description file to define enumerations.
10194 Like the constants defined by @code{define_constant}, these enumerations
10195 are visible to both the machine description file and the main C code.
10197 The syntax is as follows:
10199 @smallexample
10200 (define_c_enum "@var{name}" [
10201   @var{value0}
10202   @var{value1}
10203   @dots{}
10204   @var{valuen}
10206 @end smallexample
10208 This definition causes the equivalent of the following C code to appear
10209 in @file{insn-constants.h}:
10211 @smallexample
10212 enum @var{name} @{
10213   @var{value0} = 0,
10214   @var{value1} = 1,
10215   @dots{}
10216   @var{valuen} = @var{n}
10218 #define NUM_@var{cname}_VALUES (@var{n} + 1)
10219 @end smallexample
10221 where @var{cname} is the capitalized form of @var{name}.
10222 It also makes each @var{valuei} available in the machine description
10223 file, just as if it had been declared with:
10225 @smallexample
10226 (define_constants [(@var{valuei} @var{i})])
10227 @end smallexample
10229 Each @var{valuei} is usually an upper-case identifier and usually
10230 begins with @var{cname}.
10232 You can split the enumeration definition into as many statements as
10233 you like.  The above example is directly equivalent to:
10235 @smallexample
10236 (define_c_enum "@var{name}" [@var{value0}])
10237 (define_c_enum "@var{name}" [@var{value1}])
10238 @dots{}
10239 (define_c_enum "@var{name}" [@var{valuen}])
10240 @end smallexample
10242 Splitting the enumeration helps to improve the modularity of each
10243 individual @code{.md} file.  For example, if a port defines its
10244 synchronization instructions in a separate @file{sync.md} file,
10245 it is convenient to define all synchronization-specific enumeration
10246 values in @file{sync.md} rather than in the main @file{.md} file.
10248 Some enumeration names have special significance to GCC:
10250 @table @code
10251 @item unspecv
10252 @findex unspec_volatile
10253 If an enumeration called @code{unspecv} is defined, GCC will use it
10254 when printing out @code{unspec_volatile} expressions.  For example:
10256 @smallexample
10257 (define_c_enum "unspecv" [
10258   UNSPECV_BLOCKAGE
10260 @end smallexample
10262 causes GCC to print @samp{(unspec_volatile @dots{} 0)} as:
10264 @smallexample
10265 (unspec_volatile ... UNSPECV_BLOCKAGE)
10266 @end smallexample
10268 @item unspec
10269 @findex unspec
10270 If an enumeration called @code{unspec} is defined, GCC will use
10271 it when printing out @code{unspec} expressions.  GCC will also use
10272 it when printing out @code{unspec_volatile} expressions unless an
10273 @code{unspecv} enumeration is also defined.  You can therefore
10274 decide whether to keep separate enumerations for volatile and
10275 non-volatile expressions or whether to use the same enumeration
10276 for both.
10277 @end table
10279 @findex define_enum
10280 @anchor{define_enum}
10281 Another way of defining an enumeration is to use @code{define_enum}:
10283 @smallexample
10284 (define_enum "@var{name}" [
10285   @var{value0}
10286   @var{value1}
10287   @dots{}
10288   @var{valuen}
10290 @end smallexample
10292 This directive implies:
10294 @smallexample
10295 (define_c_enum "@var{name}" [
10296   @var{cname}_@var{cvalue0}
10297   @var{cname}_@var{cvalue1}
10298   @dots{}
10299   @var{cname}_@var{cvaluen}
10301 @end smallexample
10303 @findex define_enum_attr
10304 where @var{cvaluei} is the capitalized form of @var{valuei}.
10305 However, unlike @code{define_c_enum}, the enumerations defined
10306 by @code{define_enum} can be used in attribute specifications
10307 (@pxref{define_enum_attr}).
10308 @end ifset
10309 @ifset INTERNALS
10310 @node Iterators
10311 @section Iterators
10312 @cindex iterators in @file{.md} files
10314 Ports often need to define similar patterns for more than one machine
10315 mode or for more than one rtx code.  GCC provides some simple iterator
10316 facilities to make this process easier.
10318 @menu
10319 * Mode Iterators::         Generating variations of patterns for different modes.
10320 * Code Iterators::         Doing the same for codes.
10321 * Int Iterators::          Doing the same for integers.
10322 * Subst Iterators::        Generating variations of patterns for define_subst.
10323 @end menu
10325 @node Mode Iterators
10326 @subsection Mode Iterators
10327 @cindex mode iterators in @file{.md} files
10329 Ports often need to define similar patterns for two or more different modes.
10330 For example:
10332 @itemize @bullet
10333 @item
10334 If a processor has hardware support for both single and double
10335 floating-point arithmetic, the @code{SFmode} patterns tend to be
10336 very similar to the @code{DFmode} ones.
10338 @item
10339 If a port uses @code{SImode} pointers in one configuration and
10340 @code{DImode} pointers in another, it will usually have very similar
10341 @code{SImode} and @code{DImode} patterns for manipulating pointers.
10342 @end itemize
10344 Mode iterators allow several patterns to be instantiated from one
10345 @file{.md} file template.  They can be used with any type of
10346 rtx-based construct, such as a @code{define_insn},
10347 @code{define_split}, or @code{define_peephole2}.
10349 @menu
10350 * Defining Mode Iterators:: Defining a new mode iterator.
10351 * Substitutions::           Combining mode iterators with substitutions
10352 * Examples::                Examples
10353 @end menu
10355 @node Defining Mode Iterators
10356 @subsubsection Defining Mode Iterators
10357 @findex define_mode_iterator
10359 The syntax for defining a mode iterator is:
10361 @smallexample
10362 (define_mode_iterator @var{name} [(@var{mode1} "@var{cond1}") @dots{} (@var{moden} "@var{condn}")])
10363 @end smallexample
10365 This allows subsequent @file{.md} file constructs to use the mode suffix
10366 @code{:@var{name}}.  Every construct that does so will be expanded
10367 @var{n} times, once with every use of @code{:@var{name}} replaced by
10368 @code{:@var{mode1}}, once with every use replaced by @code{:@var{mode2}},
10369 and so on.  In the expansion for a particular @var{modei}, every
10370 C condition will also require that @var{condi} be true.
10372 For example:
10374 @smallexample
10375 (define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
10376 @end smallexample
10378 defines a new mode suffix @code{:P}.  Every construct that uses
10379 @code{:P} will be expanded twice, once with every @code{:P} replaced
10380 by @code{:SI} and once with every @code{:P} replaced by @code{:DI}.
10381 The @code{:SI} version will only apply if @code{Pmode == SImode} and
10382 the @code{:DI} version will only apply if @code{Pmode == DImode}.
10384 As with other @file{.md} conditions, an empty string is treated
10385 as ``always true''.  @code{(@var{mode} "")} can also be abbreviated
10386 to @code{@var{mode}}.  For example:
10388 @smallexample
10389 (define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
10390 @end smallexample
10392 means that the @code{:DI} expansion only applies if @code{TARGET_64BIT}
10393 but that the @code{:SI} expansion has no such constraint.
10395 Iterators are applied in the order they are defined.  This can be
10396 significant if two iterators are used in a construct that requires
10397 substitutions.  @xref{Substitutions}.
10399 @node Substitutions
10400 @subsubsection Substitution in Mode Iterators
10401 @findex define_mode_attr
10403 If an @file{.md} file construct uses mode iterators, each version of the
10404 construct will often need slightly different strings or modes.  For
10405 example:
10407 @itemize @bullet
10408 @item
10409 When a @code{define_expand} defines several @code{add@var{m}3} patterns
10410 (@pxref{Standard Names}), each expander will need to use the
10411 appropriate mode name for @var{m}.
10413 @item
10414 When a @code{define_insn} defines several instruction patterns,
10415 each instruction will often use a different assembler mnemonic.
10417 @item
10418 When a @code{define_insn} requires operands with different modes,
10419 using an iterator for one of the operand modes usually requires a specific
10420 mode for the other operand(s).
10421 @end itemize
10423 GCC supports such variations through a system of ``mode attributes''.
10424 There are two standard attributes: @code{mode}, which is the name of
10425 the mode in lower case, and @code{MODE}, which is the same thing in
10426 upper case.  You can define other attributes using:
10428 @smallexample
10429 (define_mode_attr @var{name} [(@var{mode1} "@var{value1}") @dots{} (@var{moden} "@var{valuen}")])
10430 @end smallexample
10432 where @var{name} is the name of the attribute and @var{valuei}
10433 is the value associated with @var{modei}.
10435 When GCC replaces some @var{:iterator} with @var{:mode}, it will scan
10436 each string and mode in the pattern for sequences of the form
10437 @code{<@var{iterator}:@var{attr}>}, where @var{attr} is the name of a
10438 mode attribute.  If the attribute is defined for @var{mode}, the whole
10439 @code{<@dots{}>} sequence will be replaced by the appropriate attribute
10440 value.
10442 For example, suppose an @file{.md} file has:
10444 @smallexample
10445 (define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
10446 (define_mode_attr load [(SI "lw") (DI "ld")])
10447 @end smallexample
10449 If one of the patterns that uses @code{:P} contains the string
10450 @code{"<P:load>\t%0,%1"}, the @code{SI} version of that pattern
10451 will use @code{"lw\t%0,%1"} and the @code{DI} version will use
10452 @code{"ld\t%0,%1"}.
10454 Here is an example of using an attribute for a mode:
10456 @smallexample
10457 (define_mode_iterator LONG [SI DI])
10458 (define_mode_attr SHORT [(SI "HI") (DI "SI")])
10459 (define_insn @dots{}
10460   (sign_extend:LONG (match_operand:<LONG:SHORT> @dots{})) @dots{})
10461 @end smallexample
10463 The @code{@var{iterator}:} prefix may be omitted, in which case the
10464 substitution will be attempted for every iterator expansion.
10466 @node Examples
10467 @subsubsection Mode Iterator Examples
10469 Here is an example from the MIPS port.  It defines the following
10470 modes and attributes (among others):
10472 @smallexample
10473 (define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
10474 (define_mode_attr d [(SI "") (DI "d")])
10475 @end smallexample
10477 and uses the following template to define both @code{subsi3}
10478 and @code{subdi3}:
10480 @smallexample
10481 (define_insn "sub<mode>3"
10482   [(set (match_operand:GPR 0 "register_operand" "=d")
10483         (minus:GPR (match_operand:GPR 1 "register_operand" "d")
10484                    (match_operand:GPR 2 "register_operand" "d")))]
10485   ""
10486   "<d>subu\t%0,%1,%2"
10487   [(set_attr "type" "arith")
10488    (set_attr "mode" "<MODE>")])
10489 @end smallexample
10491 This is exactly equivalent to:
10493 @smallexample
10494 (define_insn "subsi3"
10495   [(set (match_operand:SI 0 "register_operand" "=d")
10496         (minus:SI (match_operand:SI 1 "register_operand" "d")
10497                   (match_operand:SI 2 "register_operand" "d")))]
10498   ""
10499   "subu\t%0,%1,%2"
10500   [(set_attr "type" "arith")
10501    (set_attr "mode" "SI")])
10503 (define_insn "subdi3"
10504   [(set (match_operand:DI 0 "register_operand" "=d")
10505         (minus:DI (match_operand:DI 1 "register_operand" "d")
10506                   (match_operand:DI 2 "register_operand" "d")))]
10507   ""
10508   "dsubu\t%0,%1,%2"
10509   [(set_attr "type" "arith")
10510    (set_attr "mode" "DI")])
10511 @end smallexample
10513 @node Code Iterators
10514 @subsection Code Iterators
10515 @cindex code iterators in @file{.md} files
10516 @findex define_code_iterator
10517 @findex define_code_attr
10519 Code iterators operate in a similar way to mode iterators.  @xref{Mode Iterators}.
10521 The construct:
10523 @smallexample
10524 (define_code_iterator @var{name} [(@var{code1} "@var{cond1}") @dots{} (@var{coden} "@var{condn}")])
10525 @end smallexample
10527 defines a pseudo rtx code @var{name} that can be instantiated as
10528 @var{codei} if condition @var{condi} is true.  Each @var{codei}
10529 must have the same rtx format.  @xref{RTL Classes}.
10531 As with mode iterators, each pattern that uses @var{name} will be
10532 expanded @var{n} times, once with all uses of @var{name} replaced by
10533 @var{code1}, once with all uses replaced by @var{code2}, and so on.
10534 @xref{Defining Mode Iterators}.
10536 It is possible to define attributes for codes as well as for modes.
10537 There are two standard code attributes: @code{code}, the name of the
10538 code in lower case, and @code{CODE}, the name of the code in upper case.
10539 Other attributes are defined using:
10541 @smallexample
10542 (define_code_attr @var{name} [(@var{code1} "@var{value1}") @dots{} (@var{coden} "@var{valuen}")])
10543 @end smallexample
10545 Here's an example of code iterators in action, taken from the MIPS port:
10547 @smallexample
10548 (define_code_iterator any_cond [unordered ordered unlt unge uneq ltgt unle ungt
10549                                 eq ne gt ge lt le gtu geu ltu leu])
10551 (define_expand "b<code>"
10552   [(set (pc)
10553         (if_then_else (any_cond:CC (cc0)
10554                                    (const_int 0))
10555                       (label_ref (match_operand 0 ""))
10556                       (pc)))]
10557   ""
10559   gen_conditional_branch (operands, <CODE>);
10560   DONE;
10562 @end smallexample
10564 This is equivalent to:
10566 @smallexample
10567 (define_expand "bunordered"
10568   [(set (pc)
10569         (if_then_else (unordered:CC (cc0)
10570                                     (const_int 0))
10571                       (label_ref (match_operand 0 ""))
10572                       (pc)))]
10573   ""
10575   gen_conditional_branch (operands, UNORDERED);
10576   DONE;
10579 (define_expand "bordered"
10580   [(set (pc)
10581         (if_then_else (ordered:CC (cc0)
10582                                   (const_int 0))
10583                       (label_ref (match_operand 0 ""))
10584                       (pc)))]
10585   ""
10587   gen_conditional_branch (operands, ORDERED);
10588   DONE;
10591 @dots{}
10592 @end smallexample
10594 @node Int Iterators
10595 @subsection Int Iterators
10596 @cindex int iterators in @file{.md} files
10597 @findex define_int_iterator
10598 @findex define_int_attr
10600 Int iterators operate in a similar way to code iterators.  @xref{Code Iterators}.
10602 The construct:
10604 @smallexample
10605 (define_int_iterator @var{name} [(@var{int1} "@var{cond1}") @dots{} (@var{intn} "@var{condn}")])
10606 @end smallexample
10608 defines a pseudo integer constant @var{name} that can be instantiated as
10609 @var{inti} if condition @var{condi} is true.  Each @var{int}
10610 must have the same rtx format.  @xref{RTL Classes}. Int iterators can appear
10611 in only those rtx fields that have 'i' as the specifier. This means that
10612 each @var{int} has to be a constant defined using define_constant or
10613 define_c_enum.
10615 As with mode and code iterators, each pattern that uses @var{name} will be
10616 expanded @var{n} times, once with all uses of @var{name} replaced by
10617 @var{int1}, once with all uses replaced by @var{int2}, and so on.
10618 @xref{Defining Mode Iterators}.
10620 It is possible to define attributes for ints as well as for codes and modes.
10621 Attributes are defined using:
10623 @smallexample
10624 (define_int_attr @var{name} [(@var{int1} "@var{value1}") @dots{} (@var{intn} "@var{valuen}")])
10625 @end smallexample
10627 Here's an example of int iterators in action, taken from the ARM port:
10629 @smallexample
10630 (define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
10632 (define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
10634 (define_insn "neon_vq<absneg><mode>"
10635   [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10636         (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10637                        (match_operand:SI 2 "immediate_operand" "i")]
10638                       QABSNEG))]
10639   "TARGET_NEON"
10640   "vq<absneg>.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
10641   [(set_attr "type" "neon_vqneg_vqabs")]
10644 @end smallexample
10646 This is equivalent to:
10648 @smallexample
10649 (define_insn "neon_vqabs<mode>"
10650   [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10651         (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10652                        (match_operand:SI 2 "immediate_operand" "i")]
10653                       UNSPEC_VQABS))]
10654   "TARGET_NEON"
10655   "vqabs.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
10656   [(set_attr "type" "neon_vqneg_vqabs")]
10659 (define_insn "neon_vqneg<mode>"
10660   [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10661         (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10662                        (match_operand:SI 2 "immediate_operand" "i")]
10663                       UNSPEC_VQNEG))]
10664   "TARGET_NEON"
10665   "vqneg.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
10666   [(set_attr "type" "neon_vqneg_vqabs")]
10669 @end smallexample
10671 @node Subst Iterators
10672 @subsection Subst Iterators
10673 @cindex subst iterators in @file{.md} files
10674 @findex define_subst
10675 @findex define_subst_attr
10677 Subst iterators are special type of iterators with the following
10678 restrictions: they could not be declared explicitly, they always have
10679 only two values, and they do not have explicit dedicated name.
10680 Subst-iterators are triggered only when corresponding subst-attribute is
10681 used in RTL-pattern.
10683 Subst iterators transform templates in the following way: the templates
10684 are duplicated, the subst-attributes in these templates are replaced
10685 with the corresponding values, and a new attribute is implicitly added
10686 to the given @code{define_insn}/@code{define_expand}.  The name of the
10687 added attribute matches the name of @code{define_subst}.  Such
10688 attributes are declared implicitly, and it is not allowed to have a
10689 @code{define_attr} named as a @code{define_subst}.
10691 Each subst iterator is linked to a @code{define_subst}.  It is declared
10692 implicitly by the first appearance of the corresponding
10693 @code{define_subst_attr}, and it is not allowed to define it explicitly.
10695 Declarations of subst-attributes have the following syntax:
10697 @findex define_subst_attr
10698 @smallexample
10699 (define_subst_attr "@var{name}"
10700   "@var{subst-name}"
10701   "@var{no-subst-value}"
10702   "@var{subst-applied-value}")
10703 @end smallexample
10705 @var{name} is a string with which the given subst-attribute could be
10706 referred to.
10708 @var{subst-name} shows which @code{define_subst} should be applied to an
10709 RTL-template if the given subst-attribute is present in the
10710 RTL-template.
10712 @var{no-subst-value} is a value with which subst-attribute would be
10713 replaced in the first copy of the original RTL-template.
10715 @var{subst-applied-value} is a value with which subst-attribute would be
10716 replaced in the second copy of the original RTL-template.
10718 @end ifset