extend jump thread for finite state automata
[official-gcc.git] / gcc / doc / md.texi
blob1c70a77399ab22cc727fd406cabde4b4cce5e49e
1 @c Copyright (C) 1988-2014 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 Each instruction pattern contains an incomplete RTL expression, with pieces
109 to be filled in later, operand constraints that restrict how the pieces can
110 be filled in, and an output pattern or C code to generate the assembler
111 output, all wrapped up in a @code{define_insn} expression.
113 A @code{define_insn} is an RTL expression containing four or five operands:
115 @enumerate
116 @item
117 An optional name.  The presence of a name indicate that this instruction
118 pattern can perform a certain standard job for the RTL-generation
119 pass of the compiler.  This pass knows certain names and will use
120 the instruction patterns with those names, if the names are defined
121 in the machine description.
123 The absence of a name is indicated by writing an empty string
124 where the name should go.  Nameless instruction patterns are never
125 used for generating RTL code, but they may permit several simpler insns
126 to be combined later on.
128 Names that are not thus known and used in RTL-generation have no
129 effect; they are equivalent to no name at all.
131 For the purpose of debugging the compiler, you may also specify a
132 name beginning with the @samp{*} character.  Such a name is used only
133 for identifying the instruction in RTL dumps; it is entirely equivalent
134 to having a nameless pattern for all other purposes.
136 @item
137 The @dfn{RTL template} (@pxref{RTL Template}) is a vector of incomplete
138 RTL expressions which show what the instruction should look like.  It is
139 incomplete because it may contain @code{match_operand},
140 @code{match_operator}, and @code{match_dup} expressions that stand for
141 operands of the instruction.
143 If the vector has only one element, that element is the template for the
144 instruction pattern.  If the vector has multiple elements, then the
145 instruction pattern is a @code{parallel} expression containing the
146 elements described.
148 @item
149 @cindex pattern conditions
150 @cindex conditions, in patterns
151 A condition.  This is a string which contains a C expression that is
152 the final test to decide whether an insn body matches this pattern.
154 @cindex named patterns and conditions
155 For a named pattern, the condition (if present) may not depend on
156 the data in the insn being matched, but only the target-machine-type
157 flags.  The compiler needs to test these conditions during
158 initialization in order to learn exactly which named instructions are
159 available in a particular run.
161 @findex operands
162 For nameless patterns, the condition is applied only when matching an
163 individual insn, and only after the insn has matched the pattern's
164 recognition template.  The insn's operands may be found in the vector
165 @code{operands}.  For an insn where the condition has once matched, it
166 can't be used to control register allocation, for example by excluding
167 certain hard registers or hard register combinations.
169 @item
170 The @dfn{output template}: a string that says how to output matching
171 insns as assembler code.  @samp{%} in this string specifies where
172 to substitute the value of an operand.  @xref{Output Template}.
174 When simple substitution isn't general enough, you can specify a piece
175 of C code to compute the output.  @xref{Output Statement}.
177 @item
178 Optionally, a vector containing the values of attributes for insns matching
179 this pattern.  @xref{Insn Attributes}.
180 @end enumerate
182 @node Example
183 @section Example of @code{define_insn}
184 @cindex @code{define_insn} example
186 Here is an actual example of an instruction pattern, for the 68000/68020.
188 @smallexample
189 (define_insn "tstsi"
190   [(set (cc0)
191         (match_operand:SI 0 "general_operand" "rm"))]
192   ""
193   "*
195   if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
196     return \"tstl %0\";
197   return \"cmpl #0,%0\";
198 @}")
199 @end smallexample
201 @noindent
202 This can also be written using braced strings:
204 @smallexample
205 (define_insn "tstsi"
206   [(set (cc0)
207         (match_operand:SI 0 "general_operand" "rm"))]
208   ""
210   if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
211     return "tstl %0";
212   return "cmpl #0,%0";
214 @end smallexample
216 This is an instruction that sets the condition codes based on the value of
217 a general operand.  It has no condition, so any insn whose RTL description
218 has the form shown may be handled according to this pattern.  The name
219 @samp{tstsi} means ``test a @code{SImode} value'' and tells the RTL generation
220 pass that, when it is necessary to test such a value, an insn to do so
221 can be constructed using this pattern.
223 The output control string is a piece of C code which chooses which
224 output template to return based on the kind of operand and the specific
225 type of CPU for which code is being generated.
227 @samp{"rm"} is an operand constraint.  Its meaning is explained below.
229 @node RTL Template
230 @section RTL Template
231 @cindex RTL insn template
232 @cindex generating insns
233 @cindex insns, generating
234 @cindex recognizing insns
235 @cindex insns, recognizing
237 The RTL template is used to define which insns match the particular pattern
238 and how to find their operands.  For named patterns, the RTL template also
239 says how to construct an insn from specified operands.
241 Construction involves substituting specified operands into a copy of the
242 template.  Matching involves determining the values that serve as the
243 operands in the insn being matched.  Both of these activities are
244 controlled by special expression types that direct matching and
245 substitution of the operands.
247 @table @code
248 @findex match_operand
249 @item (match_operand:@var{m} @var{n} @var{predicate} @var{constraint})
250 This expression is a placeholder for operand number @var{n} of
251 the insn.  When constructing an insn, operand number @var{n}
252 will be substituted at this point.  When matching an insn, whatever
253 appears at this position in the insn will be taken as operand
254 number @var{n}; but it must satisfy @var{predicate} or this instruction
255 pattern will not match at all.
257 Operand numbers must be chosen consecutively counting from zero in
258 each instruction pattern.  There may be only one @code{match_operand}
259 expression in the pattern for each operand number.  Usually operands
260 are numbered in the order of appearance in @code{match_operand}
261 expressions.  In the case of a @code{define_expand}, any operand numbers
262 used only in @code{match_dup} expressions have higher values than all
263 other operand numbers.
265 @var{predicate} is a string that is the name of a function that
266 accepts two arguments, an expression and a machine mode.
267 @xref{Predicates}.  During matching, the function will be called with
268 the putative operand as the expression and @var{m} as the mode
269 argument (if @var{m} is not specified, @code{VOIDmode} will be used,
270 which normally causes @var{predicate} to accept any mode).  If it
271 returns zero, this instruction pattern fails to match.
272 @var{predicate} may be an empty string; then it means no test is to be
273 done on the operand, so anything which occurs in this position is
274 valid.
276 Most of the time, @var{predicate} will reject modes other than @var{m}---but
277 not always.  For example, the predicate @code{address_operand} uses
278 @var{m} as the mode of memory ref that the address should be valid for.
279 Many predicates accept @code{const_int} nodes even though their mode is
280 @code{VOIDmode}.
282 @var{constraint} controls reloading and the choice of the best register
283 class to use for a value, as explained later (@pxref{Constraints}).
284 If the constraint would be an empty string, it can be omitted.
286 People are often unclear on the difference between the constraint and the
287 predicate.  The predicate helps decide whether a given insn matches the
288 pattern.  The constraint plays no role in this decision; instead, it
289 controls various decisions in the case of an insn which does match.
291 @findex match_scratch
292 @item (match_scratch:@var{m} @var{n} @var{constraint})
293 This expression is also a placeholder for operand number @var{n}
294 and indicates that operand must be a @code{scratch} or @code{reg}
295 expression.
297 When matching patterns, this is equivalent to
299 @smallexample
300 (match_operand:@var{m} @var{n} "scratch_operand" @var{constraint})
301 @end smallexample
303 but, when generating RTL, it produces a (@code{scratch}:@var{m})
304 expression.
306 If the last few expressions in a @code{parallel} are @code{clobber}
307 expressions whose operands are either a hard register or
308 @code{match_scratch}, the combiner can add or delete them when
309 necessary.  @xref{Side Effects}.
311 @findex match_dup
312 @item (match_dup @var{n})
313 This expression is also a placeholder for operand number @var{n}.
314 It is used when the operand needs to appear more than once in the
315 insn.
317 In construction, @code{match_dup} acts just like @code{match_operand}:
318 the operand is substituted into the insn being constructed.  But in
319 matching, @code{match_dup} behaves differently.  It assumes that operand
320 number @var{n} has already been determined by a @code{match_operand}
321 appearing earlier in the recognition template, and it matches only an
322 identical-looking expression.
324 Note that @code{match_dup} should not be used to tell the compiler that
325 a particular register is being used for two operands (example:
326 @code{add} that adds one register to another; the second register is
327 both an input operand and the output operand).  Use a matching
328 constraint (@pxref{Simple Constraints}) for those.  @code{match_dup} is for the cases where one
329 operand is used in two places in the template, such as an instruction
330 that computes both a quotient and a remainder, where the opcode takes
331 two input operands but the RTL template has to refer to each of those
332 twice; once for the quotient pattern and once for the remainder pattern.
334 @findex match_operator
335 @item (match_operator:@var{m} @var{n} @var{predicate} [@var{operands}@dots{}])
336 This pattern is a kind of placeholder for a variable RTL expression
337 code.
339 When constructing an insn, it stands for an RTL expression whose
340 expression code is taken from that of operand @var{n}, and whose
341 operands are constructed from the patterns @var{operands}.
343 When matching an expression, it matches an expression if the function
344 @var{predicate} returns nonzero on that expression @emph{and} the
345 patterns @var{operands} match the operands of the expression.
347 Suppose that the function @code{commutative_operator} is defined as
348 follows, to match any expression whose operator is one of the
349 commutative arithmetic operators of RTL and whose mode is @var{mode}:
351 @smallexample
353 commutative_integer_operator (x, mode)
354      rtx x;
355      machine_mode mode;
357   enum rtx_code code = GET_CODE (x);
358   if (GET_MODE (x) != mode)
359     return 0;
360   return (GET_RTX_CLASS (code) == RTX_COMM_ARITH
361           || code == EQ || code == NE);
363 @end smallexample
365 Then the following pattern will match any RTL expression consisting
366 of a commutative operator applied to two general operands:
368 @smallexample
369 (match_operator:SI 3 "commutative_operator"
370   [(match_operand:SI 1 "general_operand" "g")
371    (match_operand:SI 2 "general_operand" "g")])
372 @end smallexample
374 Here the vector @code{[@var{operands}@dots{}]} contains two patterns
375 because the expressions to be matched all contain two operands.
377 When this pattern does match, the two operands of the commutative
378 operator are recorded as operands 1 and 2 of the insn.  (This is done
379 by the two instances of @code{match_operand}.)  Operand 3 of the insn
380 will be the entire commutative expression: use @code{GET_CODE
381 (operands[3])} to see which commutative operator was used.
383 The machine mode @var{m} of @code{match_operator} works like that of
384 @code{match_operand}: it is passed as the second argument to the
385 predicate function, and that function is solely responsible for
386 deciding whether the expression to be matched ``has'' that mode.
388 When constructing an insn, argument 3 of the gen-function will specify
389 the operation (i.e.@: the expression code) for the expression to be
390 made.  It should be an RTL expression, whose expression code is copied
391 into a new expression whose operands are arguments 1 and 2 of the
392 gen-function.  The subexpressions of argument 3 are not used;
393 only its expression code matters.
395 When @code{match_operator} is used in a pattern for matching an insn,
396 it usually best if the operand number of the @code{match_operator}
397 is higher than that of the actual operands of the insn.  This improves
398 register allocation because the register allocator often looks at
399 operands 1 and 2 of insns to see if it can do register tying.
401 There is no way to specify constraints in @code{match_operator}.  The
402 operand of the insn which corresponds to the @code{match_operator}
403 never has any constraints because it is never reloaded as a whole.
404 However, if parts of its @var{operands} are matched by
405 @code{match_operand} patterns, those parts may have constraints of
406 their own.
408 @findex match_op_dup
409 @item (match_op_dup:@var{m} @var{n}[@var{operands}@dots{}])
410 Like @code{match_dup}, except that it applies to operators instead of
411 operands.  When constructing an insn, operand number @var{n} will be
412 substituted at this point.  But in matching, @code{match_op_dup} behaves
413 differently.  It assumes that operand number @var{n} has already been
414 determined by a @code{match_operator} appearing earlier in the
415 recognition template, and it matches only an identical-looking
416 expression.
418 @findex match_parallel
419 @item (match_parallel @var{n} @var{predicate} [@var{subpat}@dots{}])
420 This pattern is a placeholder for an insn that consists of a
421 @code{parallel} expression with a variable number of elements.  This
422 expression should only appear at the top level of an insn pattern.
424 When constructing an insn, operand number @var{n} will be substituted at
425 this point.  When matching an insn, it matches if the body of the insn
426 is a @code{parallel} expression with at least as many elements as the
427 vector of @var{subpat} expressions in the @code{match_parallel}, if each
428 @var{subpat} matches the corresponding element of the @code{parallel},
429 @emph{and} the function @var{predicate} returns nonzero on the
430 @code{parallel} that is the body of the insn.  It is the responsibility
431 of the predicate to validate elements of the @code{parallel} beyond
432 those listed in the @code{match_parallel}.
434 A typical use of @code{match_parallel} is to match load and store
435 multiple expressions, which can contain a variable number of elements
436 in a @code{parallel}.  For example,
438 @smallexample
439 (define_insn ""
440   [(match_parallel 0 "load_multiple_operation"
441      [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
442            (match_operand:SI 2 "memory_operand" "m"))
443       (use (reg:SI 179))
444       (clobber (reg:SI 179))])]
445   ""
446   "loadm 0,0,%1,%2")
447 @end smallexample
449 This example comes from @file{a29k.md}.  The function
450 @code{load_multiple_operation} is defined in @file{a29k.c} and checks
451 that subsequent elements in the @code{parallel} are the same as the
452 @code{set} in the pattern, except that they are referencing subsequent
453 registers and memory locations.
455 An insn that matches this pattern might look like:
457 @smallexample
458 (parallel
459  [(set (reg:SI 20) (mem:SI (reg:SI 100)))
460   (use (reg:SI 179))
461   (clobber (reg:SI 179))
462   (set (reg:SI 21)
463        (mem:SI (plus:SI (reg:SI 100)
464                         (const_int 4))))
465   (set (reg:SI 22)
466        (mem:SI (plus:SI (reg:SI 100)
467                         (const_int 8))))])
468 @end smallexample
470 @findex match_par_dup
471 @item (match_par_dup @var{n} [@var{subpat}@dots{}])
472 Like @code{match_op_dup}, but for @code{match_parallel} instead of
473 @code{match_operator}.
475 @end table
477 @node Output Template
478 @section Output Templates and Operand Substitution
479 @cindex output templates
480 @cindex operand substitution
482 @cindex @samp{%} in template
483 @cindex percent sign
484 The @dfn{output template} is a string which specifies how to output the
485 assembler code for an instruction pattern.  Most of the template is a
486 fixed string which is output literally.  The character @samp{%} is used
487 to specify where to substitute an operand; it can also be used to
488 identify places where different variants of the assembler require
489 different syntax.
491 In the simplest case, a @samp{%} followed by a digit @var{n} says to output
492 operand @var{n} at that point in the string.
494 @samp{%} followed by a letter and a digit says to output an operand in an
495 alternate fashion.  Four letters have standard, built-in meanings described
496 below.  The machine description macro @code{PRINT_OPERAND} can define
497 additional letters with nonstandard meanings.
499 @samp{%c@var{digit}} can be used to substitute an operand that is a
500 constant value without the syntax that normally indicates an immediate
501 operand.
503 @samp{%n@var{digit}} is like @samp{%c@var{digit}} except that the value of
504 the constant is negated before printing.
506 @samp{%a@var{digit}} can be used to substitute an operand as if it were a
507 memory reference, with the actual operand treated as the address.  This may
508 be useful when outputting a ``load address'' instruction, because often the
509 assembler syntax for such an instruction requires you to write the operand
510 as if it were a memory reference.
512 @samp{%l@var{digit}} is used to substitute a @code{label_ref} into a jump
513 instruction.
515 @samp{%=} outputs a number which is unique to each instruction in the
516 entire compilation.  This is useful for making local labels to be
517 referred to more than once in a single template that generates multiple
518 assembler instructions.
520 @samp{%} followed by a punctuation character specifies a substitution that
521 does not use an operand.  Only one case is standard: @samp{%%} outputs a
522 @samp{%} into the assembler code.  Other nonstandard cases can be
523 defined in the @code{PRINT_OPERAND} macro.  You must also define
524 which punctuation characters are valid with the
525 @code{PRINT_OPERAND_PUNCT_VALID_P} macro.
527 @cindex \
528 @cindex backslash
529 The template may generate multiple assembler instructions.  Write the text
530 for the instructions, with @samp{\;} between them.
532 @cindex matching operands
533 When the RTL contains two operands which are required by constraint to match
534 each other, the output template must refer only to the lower-numbered operand.
535 Matching operands are not always identical, and the rest of the compiler
536 arranges to put the proper RTL expression for printing into the lower-numbered
537 operand.
539 One use of nonstandard letters or punctuation following @samp{%} is to
540 distinguish between different assembler languages for the same machine; for
541 example, Motorola syntax versus MIT syntax for the 68000.  Motorola syntax
542 requires periods in most opcode names, while MIT syntax does not.  For
543 example, the opcode @samp{movel} in MIT syntax is @samp{move.l} in Motorola
544 syntax.  The same file of patterns is used for both kinds of output syntax,
545 but the character sequence @samp{%.} is used in each place where Motorola
546 syntax wants a period.  The @code{PRINT_OPERAND} macro for Motorola syntax
547 defines the sequence to output a period; the macro for MIT syntax defines
548 it to do nothing.
550 @cindex @code{#} in template
551 As a special case, a template consisting of the single character @code{#}
552 instructs the compiler to first split the insn, and then output the
553 resulting instructions separately.  This helps eliminate redundancy in the
554 output templates.   If you have a @code{define_insn} that needs to emit
555 multiple assembler instructions, and there is a matching @code{define_split}
556 already defined, then you can simply use @code{#} as the output template
557 instead of writing an output template that emits the multiple assembler
558 instructions.
560 If the macro @code{ASSEMBLER_DIALECT} is defined, you can use construct
561 of the form @samp{@{option0|option1|option2@}} in the templates.  These
562 describe multiple variants of assembler language syntax.
563 @xref{Instruction Output}.
565 @node Output Statement
566 @section C Statements for Assembler Output
567 @cindex output statements
568 @cindex C statements for assembler output
569 @cindex generating assembler output
571 Often a single fixed template string cannot produce correct and efficient
572 assembler code for all the cases that are recognized by a single
573 instruction pattern.  For example, the opcodes may depend on the kinds of
574 operands; or some unfortunate combinations of operands may require extra
575 machine instructions.
577 If the output control string starts with a @samp{@@}, then it is actually
578 a series of templates, each on a separate line.  (Blank lines and
579 leading spaces and tabs are ignored.)  The templates correspond to the
580 pattern's constraint alternatives (@pxref{Multi-Alternative}).  For example,
581 if a target machine has a two-address add instruction @samp{addr} to add
582 into a register and another @samp{addm} to add a register to memory, you
583 might write this pattern:
585 @smallexample
586 (define_insn "addsi3"
587   [(set (match_operand:SI 0 "general_operand" "=r,m")
588         (plus:SI (match_operand:SI 1 "general_operand" "0,0")
589                  (match_operand:SI 2 "general_operand" "g,r")))]
590   ""
591   "@@
592    addr %2,%0
593    addm %2,%0")
594 @end smallexample
596 @cindex @code{*} in template
597 @cindex asterisk in template
598 If the output control string starts with a @samp{*}, then it is not an
599 output template but rather a piece of C program that should compute a
600 template.  It should execute a @code{return} statement to return the
601 template-string you want.  Most such templates use C string literals, which
602 require doublequote characters to delimit them.  To include these
603 doublequote characters in the string, prefix each one with @samp{\}.
605 If the output control string is written as a brace block instead of a
606 double-quoted string, it is automatically assumed to be C code.  In that
607 case, it is not necessary to put in a leading asterisk, or to escape the
608 doublequotes surrounding C string literals.
610 The operands may be found in the array @code{operands}, whose C data type
611 is @code{rtx []}.
613 It is very common to select different ways of generating assembler code
614 based on whether an immediate operand is within a certain range.  Be
615 careful when doing this, because the result of @code{INTVAL} is an
616 integer on the host machine.  If the host machine has more bits in an
617 @code{int} than the target machine has in the mode in which the constant
618 will be used, then some of the bits you get from @code{INTVAL} will be
619 superfluous.  For proper results, you must carefully disregard the
620 values of those bits.
622 @findex output_asm_insn
623 It is possible to output an assembler instruction and then go on to output
624 or compute more of them, using the subroutine @code{output_asm_insn}.  This
625 receives two arguments: a template-string and a vector of operands.  The
626 vector may be @code{operands}, or it may be another array of @code{rtx}
627 that you declare locally and initialize yourself.
629 @findex which_alternative
630 When an insn pattern has multiple alternatives in its constraints, often
631 the appearance of the assembler code is determined mostly by which alternative
632 was matched.  When this is so, the C code can test the variable
633 @code{which_alternative}, which is the ordinal number of the alternative
634 that was actually satisfied (0 for the first, 1 for the second alternative,
635 etc.).
637 For example, suppose there are two opcodes for storing zero, @samp{clrreg}
638 for registers and @samp{clrmem} for memory locations.  Here is how
639 a pattern could use @code{which_alternative} to choose between them:
641 @smallexample
642 (define_insn ""
643   [(set (match_operand:SI 0 "general_operand" "=r,m")
644         (const_int 0))]
645   ""
646   @{
647   return (which_alternative == 0
648           ? "clrreg %0" : "clrmem %0");
649   @})
650 @end smallexample
652 The example above, where the assembler code to generate was
653 @emph{solely} determined by the alternative, could also have been specified
654 as follows, having the output control string start with a @samp{@@}:
656 @smallexample
657 @group
658 (define_insn ""
659   [(set (match_operand:SI 0 "general_operand" "=r,m")
660         (const_int 0))]
661   ""
662   "@@
663    clrreg %0
664    clrmem %0")
665 @end group
666 @end smallexample
668 If you just need a little bit of C code in one (or a few) alternatives,
669 you can use @samp{*} inside of a @samp{@@} multi-alternative template:
671 @smallexample
672 @group
673 (define_insn ""
674   [(set (match_operand:SI 0 "general_operand" "=r,<,m")
675         (const_int 0))]
676   ""
677   "@@
678    clrreg %0
679    * return stack_mem_p (operands[0]) ? \"push 0\" : \"clrmem %0\";
680    clrmem %0")
681 @end group
682 @end smallexample
684 @node Predicates
685 @section Predicates
686 @cindex predicates
687 @cindex operand predicates
688 @cindex operator predicates
690 A predicate determines whether a @code{match_operand} or
691 @code{match_operator} expression matches, and therefore whether the
692 surrounding instruction pattern will be used for that combination of
693 operands.  GCC has a number of machine-independent predicates, and you
694 can define machine-specific predicates as needed.  By convention,
695 predicates used with @code{match_operand} have names that end in
696 @samp{_operand}, and those used with @code{match_operator} have names
697 that end in @samp{_operator}.
699 All predicates are Boolean functions (in the mathematical sense) of
700 two arguments: the RTL expression that is being considered at that
701 position in the instruction pattern, and the machine mode that the
702 @code{match_operand} or @code{match_operator} specifies.  In this
703 section, the first argument is called @var{op} and the second argument
704 @var{mode}.  Predicates can be called from C as ordinary two-argument
705 functions; this can be useful in output templates or other
706 machine-specific code.
708 Operand predicates can allow operands that are not actually acceptable
709 to the hardware, as long as the constraints give reload the ability to
710 fix them up (@pxref{Constraints}).  However, GCC will usually generate
711 better code if the predicates specify the requirements of the machine
712 instructions as closely as possible.  Reload cannot fix up operands
713 that must be constants (``immediate operands''); you must use a
714 predicate that allows only constants, or else enforce the requirement
715 in the extra condition.
717 @cindex predicates and machine modes
718 @cindex normal predicates
719 @cindex special predicates
720 Most predicates handle their @var{mode} argument in a uniform manner.
721 If @var{mode} is @code{VOIDmode} (unspecified), then @var{op} can have
722 any mode.  If @var{mode} is anything else, then @var{op} must have the
723 same mode, unless @var{op} is a @code{CONST_INT} or integer
724 @code{CONST_DOUBLE}.  These RTL expressions always have
725 @code{VOIDmode}, so it would be counterproductive to check that their
726 mode matches.  Instead, predicates that accept @code{CONST_INT} and/or
727 integer @code{CONST_DOUBLE} check that the value stored in the
728 constant will fit in the requested mode.
730 Predicates with this behavior are called @dfn{normal}.
731 @command{genrecog} can optimize the instruction recognizer based on
732 knowledge of how normal predicates treat modes.  It can also diagnose
733 certain kinds of common errors in the use of normal predicates; for
734 instance, it is almost always an error to use a normal predicate
735 without specifying a mode.
737 Predicates that do something different with their @var{mode} argument
738 are called @dfn{special}.  The generic predicates
739 @code{address_operand} and @code{pmode_register_operand} are special
740 predicates.  @command{genrecog} does not do any optimizations or
741 diagnosis when special predicates are used.
743 @menu
744 * Machine-Independent Predicates::  Predicates available to all back ends.
745 * Defining Predicates::             How to write machine-specific predicate
746                                     functions.
747 @end menu
749 @node Machine-Independent Predicates
750 @subsection Machine-Independent Predicates
751 @cindex machine-independent predicates
752 @cindex generic predicates
754 These are the generic predicates available to all back ends.  They are
755 defined in @file{recog.c}.  The first category of predicates allow
756 only constant, or @dfn{immediate}, operands.
758 @defun immediate_operand
759 This predicate allows any sort of constant that fits in @var{mode}.
760 It is an appropriate choice for instructions that take operands that
761 must be constant.
762 @end defun
764 @defun const_int_operand
765 This predicate allows any @code{CONST_INT} expression that fits in
766 @var{mode}.  It is an appropriate choice for an immediate operand that
767 does not allow a symbol or label.
768 @end defun
770 @defun const_double_operand
771 This predicate accepts any @code{CONST_DOUBLE} expression that has
772 exactly @var{mode}.  If @var{mode} is @code{VOIDmode}, it will also
773 accept @code{CONST_INT}.  It is intended for immediate floating point
774 constants.
775 @end defun
777 @noindent
778 The second category of predicates allow only some kind of machine
779 register.
781 @defun register_operand
782 This predicate allows any @code{REG} or @code{SUBREG} expression that
783 is valid for @var{mode}.  It is often suitable for arithmetic
784 instruction operands on a RISC machine.
785 @end defun
787 @defun pmode_register_operand
788 This is a slight variant on @code{register_operand} which works around
789 a limitation in the machine-description reader.
791 @smallexample
792 (match_operand @var{n} "pmode_register_operand" @var{constraint})
793 @end smallexample
795 @noindent
796 means exactly what
798 @smallexample
799 (match_operand:P @var{n} "register_operand" @var{constraint})
800 @end smallexample
802 @noindent
803 would mean, if the machine-description reader accepted @samp{:P}
804 mode suffixes.  Unfortunately, it cannot, because @code{Pmode} is an
805 alias for some other mode, and might vary with machine-specific
806 options.  @xref{Misc}.
807 @end defun
809 @defun scratch_operand
810 This predicate allows hard registers and @code{SCRATCH} expressions,
811 but not pseudo-registers.  It is used internally by @code{match_scratch};
812 it should not be used directly.
813 @end defun
815 @noindent
816 The third category of predicates allow only some kind of memory reference.
818 @defun memory_operand
819 This predicate allows any valid reference to a quantity of mode
820 @var{mode} in memory, as determined by the weak form of
821 @code{GO_IF_LEGITIMATE_ADDRESS} (@pxref{Addressing Modes}).
822 @end defun
824 @defun address_operand
825 This predicate is a little unusual; it allows any operand that is a
826 valid expression for the @emph{address} of a quantity of mode
827 @var{mode}, again determined by the weak form of
828 @code{GO_IF_LEGITIMATE_ADDRESS}.  To first order, if
829 @samp{@w{(mem:@var{mode} (@var{exp}))}} is acceptable to
830 @code{memory_operand}, then @var{exp} is acceptable to
831 @code{address_operand}.  Note that @var{exp} does not necessarily have
832 the mode @var{mode}.
833 @end defun
835 @defun indirect_operand
836 This is a stricter form of @code{memory_operand} which allows only
837 memory references with a @code{general_operand} as the address
838 expression.  New uses of this predicate are discouraged, because
839 @code{general_operand} is very permissive, so it's hard to tell what
840 an @code{indirect_operand} does or does not allow.  If a target has
841 different requirements for memory operands for different instructions,
842 it is better to define target-specific predicates which enforce the
843 hardware's requirements explicitly.
844 @end defun
846 @defun push_operand
847 This predicate allows a memory reference suitable for pushing a value
848 onto the stack.  This will be a @code{MEM} which refers to
849 @code{stack_pointer_rtx}, with a side-effect in its address expression
850 (@pxref{Incdec}); which one is determined by the
851 @code{STACK_PUSH_CODE} macro (@pxref{Frame Layout}).
852 @end defun
854 @defun pop_operand
855 This predicate allows a memory reference suitable for popping a value
856 off the stack.  Again, this will be a @code{MEM} referring to
857 @code{stack_pointer_rtx}, with a side-effect in its address
858 expression.  However, this time @code{STACK_POP_CODE} is expected.
859 @end defun
861 @noindent
862 The fourth category of predicates allow some combination of the above
863 operands.
865 @defun nonmemory_operand
866 This predicate allows any immediate or register operand valid for @var{mode}.
867 @end defun
869 @defun nonimmediate_operand
870 This predicate allows any register or memory operand valid for @var{mode}.
871 @end defun
873 @defun general_operand
874 This predicate allows any immediate, register, or memory operand
875 valid for @var{mode}.
876 @end defun
878 @noindent
879 Finally, there are two generic operator predicates.
881 @defun comparison_operator
882 This predicate matches any expression which performs an arithmetic
883 comparison in @var{mode}; that is, @code{COMPARISON_P} is true for the
884 expression code.
885 @end defun
887 @defun ordered_comparison_operator
888 This predicate matches any expression which performs an arithmetic
889 comparison in @var{mode} and whose expression code is valid for integer
890 modes; that is, the expression code will be one of @code{eq}, @code{ne},
891 @code{lt}, @code{ltu}, @code{le}, @code{leu}, @code{gt}, @code{gtu},
892 @code{ge}, @code{geu}.
893 @end defun
895 @node Defining Predicates
896 @subsection Defining Machine-Specific Predicates
897 @cindex defining predicates
898 @findex define_predicate
899 @findex define_special_predicate
901 Many machines have requirements for their operands that cannot be
902 expressed precisely using the generic predicates.  You can define
903 additional predicates using @code{define_predicate} and
904 @code{define_special_predicate} expressions.  These expressions have
905 three operands:
907 @itemize @bullet
908 @item
909 The name of the predicate, as it will be referred to in
910 @code{match_operand} or @code{match_operator} expressions.
912 @item
913 An RTL expression which evaluates to true if the predicate allows the
914 operand @var{op}, false if it does not.  This expression can only use
915 the following RTL codes:
917 @table @code
918 @item MATCH_OPERAND
919 When written inside a predicate expression, a @code{MATCH_OPERAND}
920 expression evaluates to true if the predicate it names would allow
921 @var{op}.  The operand number and constraint are ignored.  Due to
922 limitations in @command{genrecog}, you can only refer to generic
923 predicates and predicates that have already been defined.
925 @item MATCH_CODE
926 This expression evaluates to true if @var{op} or a specified
927 subexpression of @var{op} has one of a given list of RTX codes.
929 The first operand of this expression is a string constant containing a
930 comma-separated list of RTX code names (in lower case).  These are the
931 codes for which the @code{MATCH_CODE} will be true.
933 The second operand is a string constant which indicates what
934 subexpression of @var{op} to examine.  If it is absent or the empty
935 string, @var{op} itself is examined.  Otherwise, the string constant
936 must be a sequence of digits and/or lowercase letters.  Each character
937 indicates a subexpression to extract from the current expression; for
938 the first character this is @var{op}, for the second and subsequent
939 characters it is the result of the previous character.  A digit
940 @var{n} extracts @samp{@w{XEXP (@var{e}, @var{n})}}; a letter @var{l}
941 extracts @samp{@w{XVECEXP (@var{e}, 0, @var{n})}} where @var{n} is the
942 alphabetic ordinal of @var{l} (0 for `a', 1 for 'b', and so on).  The
943 @code{MATCH_CODE} then examines the RTX code of the subexpression
944 extracted by the complete string.  It is not possible to extract
945 components of an @code{rtvec} that is not at position 0 within its RTX
946 object.
948 @item MATCH_TEST
949 This expression has one operand, a string constant containing a C
950 expression.  The predicate's arguments, @var{op} and @var{mode}, are
951 available with those names in the C expression.  The @code{MATCH_TEST}
952 evaluates to true if the C expression evaluates to a nonzero value.
953 @code{MATCH_TEST} expressions must not have side effects.
955 @item  AND
956 @itemx IOR
957 @itemx NOT
958 @itemx IF_THEN_ELSE
959 The basic @samp{MATCH_} expressions can be combined using these
960 logical operators, which have the semantics of the C operators
961 @samp{&&}, @samp{||}, @samp{!}, and @samp{@w{? :}} respectively.  As
962 in Common Lisp, you may give an @code{AND} or @code{IOR} expression an
963 arbitrary number of arguments; this has exactly the same effect as
964 writing a chain of two-argument @code{AND} or @code{IOR} expressions.
965 @end table
967 @item
968 An optional block of C code, which should execute
969 @samp{@w{return true}} if the predicate is found to match and
970 @samp{@w{return false}} if it does not.  It must not have any side
971 effects.  The predicate arguments, @var{op} and @var{mode}, are
972 available with those names.
974 If a code block is present in a predicate definition, then the RTL
975 expression must evaluate to true @emph{and} the code block must
976 execute @samp{@w{return true}} for the predicate to allow the operand.
977 The RTL expression is evaluated first; do not re-check anything in the
978 code block that was checked in the RTL expression.
979 @end itemize
981 The program @command{genrecog} scans @code{define_predicate} and
982 @code{define_special_predicate} expressions to determine which RTX
983 codes are possibly allowed.  You should always make this explicit in
984 the RTL predicate expression, using @code{MATCH_OPERAND} and
985 @code{MATCH_CODE}.
987 Here is an example of a simple predicate definition, from the IA64
988 machine description:
990 @smallexample
991 @group
992 ;; @r{True if @var{op} is a @code{SYMBOL_REF} which refers to the sdata section.}
993 (define_predicate "small_addr_symbolic_operand"
994   (and (match_code "symbol_ref")
995        (match_test "SYMBOL_REF_SMALL_ADDR_P (op)")))
996 @end group
997 @end smallexample
999 @noindent
1000 And here is another, showing the use of the C block.
1002 @smallexample
1003 @group
1004 ;; @r{True if @var{op} is a register operand that is (or could be) a GR reg.}
1005 (define_predicate "gr_register_operand"
1006   (match_operand 0 "register_operand")
1008   unsigned int regno;
1009   if (GET_CODE (op) == SUBREG)
1010     op = SUBREG_REG (op);
1012   regno = REGNO (op);
1013   return (regno >= FIRST_PSEUDO_REGISTER || GENERAL_REGNO_P (regno));
1015 @end group
1016 @end smallexample
1018 Predicates written with @code{define_predicate} automatically include
1019 a test that @var{mode} is @code{VOIDmode}, or @var{op} has the same
1020 mode as @var{mode}, or @var{op} is a @code{CONST_INT} or
1021 @code{CONST_DOUBLE}.  They do @emph{not} check specifically for
1022 integer @code{CONST_DOUBLE}, nor do they test that the value of either
1023 kind of constant fits in the requested mode.  This is because
1024 target-specific predicates that take constants usually have to do more
1025 stringent value checks anyway.  If you need the exact same treatment
1026 of @code{CONST_INT} or @code{CONST_DOUBLE} that the generic predicates
1027 provide, use a @code{MATCH_OPERAND} subexpression to call
1028 @code{const_int_operand}, @code{const_double_operand}, or
1029 @code{immediate_operand}.
1031 Predicates written with @code{define_special_predicate} do not get any
1032 automatic mode checks, and are treated as having special mode handling
1033 by @command{genrecog}.
1035 The program @command{genpreds} is responsible for generating code to
1036 test predicates.  It also writes a header file containing function
1037 declarations for all machine-specific predicates.  It is not necessary
1038 to declare these predicates in @file{@var{cpu}-protos.h}.
1039 @end ifset
1041 @c Most of this node appears by itself (in a different place) even
1042 @c when the INTERNALS flag is clear.  Passages that require the internals
1043 @c manual's context are conditionalized to appear only in the internals manual.
1044 @ifset INTERNALS
1045 @node Constraints
1046 @section Operand Constraints
1047 @cindex operand constraints
1048 @cindex constraints
1050 Each @code{match_operand} in an instruction pattern can specify
1051 constraints for the operands allowed.  The constraints allow you to
1052 fine-tune matching within the set of operands allowed by the
1053 predicate.
1055 @end ifset
1056 @ifclear INTERNALS
1057 @node Constraints
1058 @section Constraints for @code{asm} Operands
1059 @cindex operand constraints, @code{asm}
1060 @cindex constraints, @code{asm}
1061 @cindex @code{asm} constraints
1063 Here are specific details on what constraint letters you can use with
1064 @code{asm} operands.
1065 @end ifclear
1066 Constraints can say whether
1067 an operand may be in a register, and which kinds of register; whether the
1068 operand can be a memory reference, and which kinds of address; whether the
1069 operand may be an immediate constant, and which possible values it may
1070 have.  Constraints can also require two operands to match.
1071 Side-effects aren't allowed in operands of inline @code{asm}, unless
1072 @samp{<} or @samp{>} constraints are used, because there is no guarantee
1073 that the side-effects will happen exactly once in an instruction that can update
1074 the addressing register.
1076 @ifset INTERNALS
1077 @menu
1078 * Simple Constraints::  Basic use of constraints.
1079 * Multi-Alternative::   When an insn has two alternative constraint-patterns.
1080 * Class Preferences::   Constraints guide which hard register to put things in.
1081 * Modifiers::           More precise control over effects of constraints.
1082 * Machine Constraints:: Existing constraints for some particular machines.
1083 * Disable Insn Alternatives:: Disable insn alternatives using attributes.
1084 * Define Constraints::  How to define machine-specific constraints.
1085 * C Constraint Interface:: How to test constraints from C code.
1086 @end menu
1087 @end ifset
1089 @ifclear INTERNALS
1090 @menu
1091 * Simple Constraints::  Basic use of constraints.
1092 * Multi-Alternative::   When an insn has two alternative constraint-patterns.
1093 * Modifiers::           More precise control over effects of constraints.
1094 * Machine Constraints:: Special constraints for some particular machines.
1095 @end menu
1096 @end ifclear
1098 @node Simple Constraints
1099 @subsection Simple Constraints
1100 @cindex simple constraints
1102 The simplest kind of constraint is a string full of letters, each of
1103 which describes one kind of operand that is permitted.  Here are
1104 the letters that are allowed:
1106 @table @asis
1107 @item whitespace
1108 Whitespace characters are ignored and can be inserted at any position
1109 except the first.  This enables each alternative for different operands to
1110 be visually aligned in the machine description even if they have different
1111 number of constraints and modifiers.
1113 @cindex @samp{m} in constraint
1114 @cindex memory references in constraints
1115 @item @samp{m}
1116 A memory operand is allowed, with any kind of address that the machine
1117 supports in general.
1118 Note that the letter used for the general memory constraint can be
1119 re-defined by a back end using the @code{TARGET_MEM_CONSTRAINT} macro.
1121 @cindex offsettable address
1122 @cindex @samp{o} in constraint
1123 @item @samp{o}
1124 A memory operand is allowed, but only if the address is
1125 @dfn{offsettable}.  This means that adding a small integer (actually,
1126 the width in bytes of the operand, as determined by its machine mode)
1127 may be added to the address and the result is also a valid memory
1128 address.
1130 @cindex autoincrement/decrement addressing
1131 For example, an address which is constant is offsettable; so is an
1132 address that is the sum of a register and a constant (as long as a
1133 slightly larger constant is also within the range of address-offsets
1134 supported by the machine); but an autoincrement or autodecrement
1135 address is not offsettable.  More complicated indirect/indexed
1136 addresses may or may not be offsettable depending on the other
1137 addressing modes that the machine supports.
1139 Note that in an output operand which can be matched by another
1140 operand, the constraint letter @samp{o} is valid only when accompanied
1141 by both @samp{<} (if the target machine has predecrement addressing)
1142 and @samp{>} (if the target machine has preincrement addressing).
1144 @cindex @samp{V} in constraint
1145 @item @samp{V}
1146 A memory operand that is not offsettable.  In other words, anything that
1147 would fit the @samp{m} constraint but not the @samp{o} constraint.
1149 @cindex @samp{<} in constraint
1150 @item @samp{<}
1151 A memory operand with autodecrement addressing (either predecrement or
1152 postdecrement) is allowed.  In inline @code{asm} this constraint is only
1153 allowed if the operand is used exactly once in an instruction that can
1154 handle the side-effects.  Not using an operand with @samp{<} in constraint
1155 string in the inline @code{asm} pattern at all or using it in multiple
1156 instructions isn't valid, because the side-effects wouldn't be performed
1157 or would be performed more than once.  Furthermore, on some targets
1158 the operand with @samp{<} in constraint string must be accompanied by
1159 special instruction suffixes like @code{%U0} instruction suffix on PowerPC
1160 or @code{%P0} on IA-64.
1162 @cindex @samp{>} in constraint
1163 @item @samp{>}
1164 A memory operand with autoincrement addressing (either preincrement or
1165 postincrement) is allowed.  In inline @code{asm} the same restrictions
1166 as for @samp{<} apply.
1168 @cindex @samp{r} in constraint
1169 @cindex registers in constraints
1170 @item @samp{r}
1171 A register operand is allowed provided that it is in a general
1172 register.
1174 @cindex constants in constraints
1175 @cindex @samp{i} in constraint
1176 @item @samp{i}
1177 An immediate integer operand (one with constant value) is allowed.
1178 This includes symbolic constants whose values will be known only at
1179 assembly time or later.
1181 @cindex @samp{n} in constraint
1182 @item @samp{n}
1183 An immediate integer operand with a known numeric value is allowed.
1184 Many systems cannot support assembly-time constants for operands less
1185 than a word wide.  Constraints for these operands should use @samp{n}
1186 rather than @samp{i}.
1188 @cindex @samp{I} in constraint
1189 @item @samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}
1190 Other letters in the range @samp{I} through @samp{P} may be defined in
1191 a machine-dependent fashion to permit immediate integer operands with
1192 explicit integer values in specified ranges.  For example, on the
1193 68000, @samp{I} is defined to stand for the range of values 1 to 8.
1194 This is the range permitted as a shift count in the shift
1195 instructions.
1197 @cindex @samp{E} in constraint
1198 @item @samp{E}
1199 An immediate floating operand (expression code @code{const_double}) is
1200 allowed, but only if the target floating point format is the same as
1201 that of the host machine (on which the compiler is running).
1203 @cindex @samp{F} in constraint
1204 @item @samp{F}
1205 An immediate floating operand (expression code @code{const_double} or
1206 @code{const_vector}) is allowed.
1208 @cindex @samp{G} in constraint
1209 @cindex @samp{H} in constraint
1210 @item @samp{G}, @samp{H}
1211 @samp{G} and @samp{H} may be defined in a machine-dependent fashion to
1212 permit immediate floating operands in particular ranges of values.
1214 @cindex @samp{s} in constraint
1215 @item @samp{s}
1216 An immediate integer operand whose value is not an explicit integer is
1217 allowed.
1219 This might appear strange; if an insn allows a constant operand with a
1220 value not known at compile time, it certainly must allow any known
1221 value.  So why use @samp{s} instead of @samp{i}?  Sometimes it allows
1222 better code to be generated.
1224 For example, on the 68000 in a fullword instruction it is possible to
1225 use an immediate operand; but if the immediate value is between @minus{}128
1226 and 127, better code results from loading the value into a register and
1227 using the register.  This is because the load into the register can be
1228 done with a @samp{moveq} instruction.  We arrange for this to happen
1229 by defining the letter @samp{K} to mean ``any integer outside the
1230 range @minus{}128 to 127'', and then specifying @samp{Ks} in the operand
1231 constraints.
1233 @cindex @samp{g} in constraint
1234 @item @samp{g}
1235 Any register, memory or immediate integer operand is allowed, except for
1236 registers that are not general registers.
1238 @cindex @samp{X} in constraint
1239 @item @samp{X}
1240 @ifset INTERNALS
1241 Any operand whatsoever is allowed, even if it does not satisfy
1242 @code{general_operand}.  This is normally used in the constraint of
1243 a @code{match_scratch} when certain alternatives will not actually
1244 require a scratch register.
1245 @end ifset
1246 @ifclear INTERNALS
1247 Any operand whatsoever is allowed.
1248 @end ifclear
1250 @cindex @samp{0} in constraint
1251 @cindex digits in constraint
1252 @item @samp{0}, @samp{1}, @samp{2}, @dots{} @samp{9}
1253 An operand that matches the specified operand number is allowed.  If a
1254 digit is used together with letters within the same alternative, the
1255 digit should come last.
1257 This number is allowed to be more than a single digit.  If multiple
1258 digits are encountered consecutively, they are interpreted as a single
1259 decimal integer.  There is scant chance for ambiguity, since to-date
1260 it has never been desirable that @samp{10} be interpreted as matching
1261 either operand 1 @emph{or} operand 0.  Should this be desired, one
1262 can use multiple alternatives instead.
1264 @cindex matching constraint
1265 @cindex constraint, matching
1266 This is called a @dfn{matching constraint} and what it really means is
1267 that the assembler has only a single operand that fills two roles
1268 @ifset INTERNALS
1269 considered separate in the RTL insn.  For example, an add insn has two
1270 input operands and one output operand in the RTL, but on most CISC
1271 @end ifset
1272 @ifclear INTERNALS
1273 which @code{asm} distinguishes.  For example, an add instruction uses
1274 two input operands and an output operand, but on most CISC
1275 @end ifclear
1276 machines an add instruction really has only two operands, one of them an
1277 input-output operand:
1279 @smallexample
1280 addl #35,r12
1281 @end smallexample
1283 Matching constraints are used in these circumstances.
1284 More precisely, the two operands that match must include one input-only
1285 operand and one output-only operand.  Moreover, the digit must be a
1286 smaller number than the number of the operand that uses it in the
1287 constraint.
1289 @ifset INTERNALS
1290 For operands to match in a particular case usually means that they
1291 are identical-looking RTL expressions.  But in a few special cases
1292 specific kinds of dissimilarity are allowed.  For example, @code{*x}
1293 as an input operand will match @code{*x++} as an output operand.
1294 For proper results in such cases, the output template should always
1295 use the output-operand's number when printing the operand.
1296 @end ifset
1298 @cindex load address instruction
1299 @cindex push address instruction
1300 @cindex address constraints
1301 @cindex @samp{p} in constraint
1302 @item @samp{p}
1303 An operand that is a valid memory address is allowed.  This is
1304 for ``load address'' and ``push address'' instructions.
1306 @findex address_operand
1307 @samp{p} in the constraint must be accompanied by @code{address_operand}
1308 as the predicate in the @code{match_operand}.  This predicate interprets
1309 the mode specified in the @code{match_operand} as the mode of the memory
1310 reference for which the address would be valid.
1312 @cindex other register constraints
1313 @cindex extensible constraints
1314 @item @var{other-letters}
1315 Other letters can be defined in machine-dependent fashion to stand for
1316 particular classes of registers or other arbitrary operand types.
1317 @samp{d}, @samp{a} and @samp{f} are defined on the 68000/68020 to stand
1318 for data, address and floating point registers.
1319 @end table
1321 @ifset INTERNALS
1322 In order to have valid assembler code, each operand must satisfy
1323 its constraint.  But a failure to do so does not prevent the pattern
1324 from applying to an insn.  Instead, it directs the compiler to modify
1325 the code so that the constraint will be satisfied.  Usually this is
1326 done by copying an operand into a register.
1328 Contrast, therefore, the two instruction patterns that follow:
1330 @smallexample
1331 (define_insn ""
1332   [(set (match_operand:SI 0 "general_operand" "=r")
1333         (plus:SI (match_dup 0)
1334                  (match_operand:SI 1 "general_operand" "r")))]
1335   ""
1336   "@dots{}")
1337 @end smallexample
1339 @noindent
1340 which has two operands, one of which must appear in two places, and
1342 @smallexample
1343 (define_insn ""
1344   [(set (match_operand:SI 0 "general_operand" "=r")
1345         (plus:SI (match_operand:SI 1 "general_operand" "0")
1346                  (match_operand:SI 2 "general_operand" "r")))]
1347   ""
1348   "@dots{}")
1349 @end smallexample
1351 @noindent
1352 which has three operands, two of which are required by a constraint to be
1353 identical.  If we are considering an insn of the form
1355 @smallexample
1356 (insn @var{n} @var{prev} @var{next}
1357   (set (reg:SI 3)
1358        (plus:SI (reg:SI 6) (reg:SI 109)))
1359   @dots{})
1360 @end smallexample
1362 @noindent
1363 the first pattern would not apply at all, because this insn does not
1364 contain two identical subexpressions in the right place.  The pattern would
1365 say, ``That does not look like an add instruction; try other patterns''.
1366 The second pattern would say, ``Yes, that's an add instruction, but there
1367 is something wrong with it''.  It would direct the reload pass of the
1368 compiler to generate additional insns to make the constraint true.  The
1369 results might look like this:
1371 @smallexample
1372 (insn @var{n2} @var{prev} @var{n}
1373   (set (reg:SI 3) (reg:SI 6))
1374   @dots{})
1376 (insn @var{n} @var{n2} @var{next}
1377   (set (reg:SI 3)
1378        (plus:SI (reg:SI 3) (reg:SI 109)))
1379   @dots{})
1380 @end smallexample
1382 It is up to you to make sure that each operand, in each pattern, has
1383 constraints that can handle any RTL expression that could be present for
1384 that operand.  (When multiple alternatives are in use, each pattern must,
1385 for each possible combination of operand expressions, have at least one
1386 alternative which can handle that combination of operands.)  The
1387 constraints don't need to @emph{allow} any possible operand---when this is
1388 the case, they do not constrain---but they must at least point the way to
1389 reloading any possible operand so that it will fit.
1391 @itemize @bullet
1392 @item
1393 If the constraint accepts whatever operands the predicate permits,
1394 there is no problem: reloading is never necessary for this operand.
1396 For example, an operand whose constraints permit everything except
1397 registers is safe provided its predicate rejects registers.
1399 An operand whose predicate accepts only constant values is safe
1400 provided its constraints include the letter @samp{i}.  If any possible
1401 constant value is accepted, then nothing less than @samp{i} will do;
1402 if the predicate is more selective, then the constraints may also be
1403 more selective.
1405 @item
1406 Any operand expression can be reloaded by copying it into a register.
1407 So if an operand's constraints allow some kind of register, it is
1408 certain to be safe.  It need not permit all classes of registers; the
1409 compiler knows how to copy a register into another register of the
1410 proper class in order to make an instruction valid.
1412 @cindex nonoffsettable memory reference
1413 @cindex memory reference, nonoffsettable
1414 @item
1415 A nonoffsettable memory reference can be reloaded by copying the
1416 address into a register.  So if the constraint uses the letter
1417 @samp{o}, all memory references are taken care of.
1419 @item
1420 A constant operand can be reloaded by allocating space in memory to
1421 hold it as preinitialized data.  Then the memory reference can be used
1422 in place of the constant.  So if the constraint uses the letters
1423 @samp{o} or @samp{m}, constant operands are not a problem.
1425 @item
1426 If the constraint permits a constant and a pseudo register used in an insn
1427 was not allocated to a hard register and is equivalent to a constant,
1428 the register will be replaced with the constant.  If the predicate does
1429 not permit a constant and the insn is re-recognized for some reason, the
1430 compiler will crash.  Thus the predicate must always recognize any
1431 objects allowed by the constraint.
1432 @end itemize
1434 If the operand's predicate can recognize registers, but the constraint does
1435 not permit them, it can make the compiler crash.  When this operand happens
1436 to be a register, the reload pass will be stymied, because it does not know
1437 how to copy a register temporarily into memory.
1439 If the predicate accepts a unary operator, the constraint applies to the
1440 operand.  For example, the MIPS processor at ISA level 3 supports an
1441 instruction which adds two registers in @code{SImode} to produce a
1442 @code{DImode} result, but only if the registers are correctly sign
1443 extended.  This predicate for the input operands accepts a
1444 @code{sign_extend} of an @code{SImode} register.  Write the constraint
1445 to indicate the type of register that is required for the operand of the
1446 @code{sign_extend}.
1447 @end ifset
1449 @node Multi-Alternative
1450 @subsection Multiple Alternative Constraints
1451 @cindex multiple alternative constraints
1453 Sometimes a single instruction has multiple alternative sets of possible
1454 operands.  For example, on the 68000, a logical-or instruction can combine
1455 register or an immediate value into memory, or it can combine any kind of
1456 operand into a register; but it cannot combine one memory location into
1457 another.
1459 These constraints are represented as multiple alternatives.  An alternative
1460 can be described by a series of letters for each operand.  The overall
1461 constraint for an operand is made from the letters for this operand
1462 from the first alternative, a comma, the letters for this operand from
1463 the second alternative, a comma, and so on until the last alternative.
1464 @ifset INTERNALS
1465 Here is how it is done for fullword logical-or on the 68000:
1467 @smallexample
1468 (define_insn "iorsi3"
1469   [(set (match_operand:SI 0 "general_operand" "=m,d")
1470         (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
1471                 (match_operand:SI 2 "general_operand" "dKs,dmKs")))]
1472   @dots{})
1473 @end smallexample
1475 The first alternative has @samp{m} (memory) for operand 0, @samp{0} for
1476 operand 1 (meaning it must match operand 0), and @samp{dKs} for operand
1477 2.  The second alternative has @samp{d} (data register) for operand 0,
1478 @samp{0} for operand 1, and @samp{dmKs} for operand 2.  The @samp{=} and
1479 @samp{%} in the constraints apply to all the alternatives; their
1480 meaning is explained in the next section (@pxref{Class Preferences}).
1481 @end ifset
1483 @c FIXME Is this ? and ! stuff of use in asm()?  If not, hide unless INTERNAL
1484 If all the operands fit any one alternative, the instruction is valid.
1485 Otherwise, for each alternative, the compiler counts how many instructions
1486 must be added to copy the operands so that that alternative applies.
1487 The alternative requiring the least copying is chosen.  If two alternatives
1488 need the same amount of copying, the one that comes first is chosen.
1489 These choices can be altered with the @samp{?} and @samp{!} characters:
1491 @table @code
1492 @cindex @samp{?} in constraint
1493 @cindex question mark
1494 @item ?
1495 Disparage slightly the alternative that the @samp{?} appears in,
1496 as a choice when no alternative applies exactly.  The compiler regards
1497 this alternative as one unit more costly for each @samp{?} that appears
1498 in it.
1500 @cindex @samp{!} in constraint
1501 @cindex exclamation point
1502 @item !
1503 Disparage severely the alternative that the @samp{!} appears in.
1504 This alternative can still be used if it fits without reloading,
1505 but if reloading is needed, some other alternative will be used.
1506 @end table
1508 @ifset INTERNALS
1509 When an insn pattern has multiple alternatives in its constraints, often
1510 the appearance of the assembler code is determined mostly by which
1511 alternative was matched.  When this is so, the C code for writing the
1512 assembler code can use the variable @code{which_alternative}, which is
1513 the ordinal number of the alternative that was actually satisfied (0 for
1514 the first, 1 for the second alternative, etc.).  @xref{Output Statement}.
1515 @end ifset
1517 @ifset INTERNALS
1518 @node Class Preferences
1519 @subsection Register Class Preferences
1520 @cindex class preference constraints
1521 @cindex register class preference constraints
1523 @cindex voting between constraint alternatives
1524 The operand constraints have another function: they enable the compiler
1525 to decide which kind of hardware register a pseudo register is best
1526 allocated to.  The compiler examines the constraints that apply to the
1527 insns that use the pseudo register, looking for the machine-dependent
1528 letters such as @samp{d} and @samp{a} that specify classes of registers.
1529 The pseudo register is put in whichever class gets the most ``votes''.
1530 The constraint letters @samp{g} and @samp{r} also vote: they vote in
1531 favor of a general register.  The machine description says which registers
1532 are considered general.
1534 Of course, on some machines all registers are equivalent, and no register
1535 classes are defined.  Then none of this complexity is relevant.
1536 @end ifset
1538 @node Modifiers
1539 @subsection Constraint Modifier Characters
1540 @cindex modifiers in constraints
1541 @cindex constraint modifier characters
1543 @c prevent bad page break with this line
1544 Here are constraint modifier characters.
1546 @table @samp
1547 @cindex @samp{=} in constraint
1548 @item =
1549 Means that this operand is written to by this instruction:
1550 the previous value is discarded and replaced by new data.
1552 @cindex @samp{+} in constraint
1553 @item +
1554 Means that this operand is both read and written by the instruction.
1556 When the compiler fixes up the operands to satisfy the constraints,
1557 it needs to know which operands are read by the instruction and
1558 which are written by it.  @samp{=} identifies an operand which is only
1559 written; @samp{+} identifies an operand that is both read and written; all
1560 other operands are assumed to only be read.
1562 If you specify @samp{=} or @samp{+} in a constraint, you put it in the
1563 first character of the constraint string.
1565 @cindex @samp{&} in constraint
1566 @cindex earlyclobber operand
1567 @item &
1568 Means (in a particular alternative) that this operand is an
1569 @dfn{earlyclobber} operand, which is written before the instruction is
1570 finished using the input operands.  Therefore, this operand may not lie
1571 in a register that is read by the instruction or as part of any memory
1572 address.
1574 @samp{&} applies only to the alternative in which it is written.  In
1575 constraints with multiple alternatives, sometimes one alternative
1576 requires @samp{&} while others do not.  See, for example, the
1577 @samp{movdf} insn of the 68000.
1579 A operand which is read by the instruction can be tied to an earlyclobber
1580 operand if its only use as an input occurs before the early result is
1581 written.  Adding alternatives of this form often allows GCC to produce
1582 better code when only some of the read operands can be affected by the
1583 earlyclobber. See, for example, the @samp{mulsi3} insn of the ARM@.
1585 Furthermore, if the @dfn{earlyclobber} operand is also a read/write
1586 operand, then that operand is written only after it's used.
1588 @samp{&} does not obviate the need to write @samp{=} or @samp{+}.  As
1589 @dfn{earlyclobber} operands are always written, a read-only
1590 @dfn{earlyclobber} operand is ill-formed and will be rejected by the
1591 compiler.
1593 @cindex @samp{%} in constraint
1594 @item %
1595 Declares the instruction to be commutative for this operand and the
1596 following operand.  This means that the compiler may interchange the
1597 two operands if that is the cheapest way to make all operands fit the
1598 constraints.  @samp{%} applies to all alternatives and must appear as
1599 the first character in the constraint.  Only read-only operands can use
1600 @samp{%}.
1602 @ifset INTERNALS
1603 This is often used in patterns for addition instructions
1604 that really have only two operands: the result must go in one of the
1605 arguments.  Here for example, is how the 68000 halfword-add
1606 instruction is defined:
1608 @smallexample
1609 (define_insn "addhi3"
1610   [(set (match_operand:HI 0 "general_operand" "=m,r")
1611      (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
1612               (match_operand:HI 2 "general_operand" "di,g")))]
1613   @dots{})
1614 @end smallexample
1615 @end ifset
1616 GCC can only handle one commutative pair in an asm; if you use more,
1617 the compiler may fail.  Note that you need not use the modifier if
1618 the two alternatives are strictly identical; this would only waste
1619 time in the reload pass.  The modifier is not operational after
1620 register allocation, so the result of @code{define_peephole2}
1621 and @code{define_split}s performed after reload cannot rely on
1622 @samp{%} to make the intended insn match.
1624 @cindex @samp{#} in constraint
1625 @item #
1626 Says that all following characters, up to the next comma, are to be
1627 ignored as a constraint.  They are significant only for choosing
1628 register preferences.
1630 @cindex @samp{*} in constraint
1631 @item *
1632 Says that the following character should be ignored when choosing
1633 register preferences.  @samp{*} has no effect on the meaning of the
1634 constraint as a constraint, and no effect on reloading.  For LRA
1635 @samp{*} additionally disparages slightly the alternative if the
1636 following character matches the operand.
1638 @ifset INTERNALS
1639 Here is an example: the 68000 has an instruction to sign-extend a
1640 halfword in a data register, and can also sign-extend a value by
1641 copying it into an address register.  While either kind of register is
1642 acceptable, the constraints on an address-register destination are
1643 less strict, so it is best if register allocation makes an address
1644 register its goal.  Therefore, @samp{*} is used so that the @samp{d}
1645 constraint letter (for data register) is ignored when computing
1646 register preferences.
1648 @smallexample
1649 (define_insn "extendhisi2"
1650   [(set (match_operand:SI 0 "general_operand" "=*d,a")
1651         (sign_extend:SI
1652          (match_operand:HI 1 "general_operand" "0,g")))]
1653   @dots{})
1654 @end smallexample
1655 @end ifset
1656 @end table
1658 @node Machine Constraints
1659 @subsection Constraints for Particular Machines
1660 @cindex machine specific constraints
1661 @cindex constraints, machine specific
1663 Whenever possible, you should use the general-purpose constraint letters
1664 in @code{asm} arguments, since they will convey meaning more readily to
1665 people reading your code.  Failing that, use the constraint letters
1666 that usually have very similar meanings across architectures.  The most
1667 commonly used constraints are @samp{m} and @samp{r} (for memory and
1668 general-purpose registers respectively; @pxref{Simple Constraints}), and
1669 @samp{I}, usually the letter indicating the most common
1670 immediate-constant format.
1672 Each architecture defines additional constraints.  These constraints
1673 are used by the compiler itself for instruction generation, as well as
1674 for @code{asm} statements; therefore, some of the constraints are not
1675 particularly useful for @code{asm}.  Here is a summary of some of the
1676 machine-dependent constraints available on some particular machines;
1677 it includes both constraints that are useful for @code{asm} and
1678 constraints that aren't.  The compiler source file mentioned in the
1679 table heading for each architecture is the definitive reference for
1680 the meanings of that architecture's constraints.
1682 @table @emph
1683 @item AArch64 family---@file{config/aarch64/constraints.md}
1684 @table @code
1685 @item k
1686 The stack pointer register (@code{SP})
1688 @item w
1689 Floating point or SIMD vector register
1691 @item I
1692 Integer constant that is valid as an immediate operand in an @code{ADD}
1693 instruction
1695 @item J
1696 Integer constant that is valid as an immediate operand in a @code{SUB}
1697 instruction (once negated)
1699 @item K
1700 Integer constant that can be used with a 32-bit logical instruction
1702 @item L
1703 Integer constant that can be used with a 64-bit logical instruction
1705 @item M
1706 Integer constant that is valid as an immediate operand in a 32-bit @code{MOV}
1707 pseudo instruction. The @code{MOV} may be assembled to one of several different
1708 machine instructions depending on the value
1710 @item N
1711 Integer constant that is valid as an immediate operand in a 64-bit @code{MOV}
1712 pseudo instruction
1714 @item S
1715 An absolute symbolic address or a label reference
1717 @item Y
1718 Floating point constant zero
1720 @item Z
1721 Integer constant zero
1723 @item Ush
1724 The high part (bits 12 and upwards) of the pc-relative address of a symbol
1725 within 4GB of the instruction
1727 @item Q
1728 A memory address which uses a single base register with no offset
1730 @item Ump
1731 A memory address suitable for a load/store pair instruction in SI, DI, SF and
1732 DF modes
1734 @end table
1737 @item ARC ---@file{config/arc/constraints.md}
1738 @table @code
1739 @item q
1740 Registers usable in ARCompact 16-bit instructions: @code{r0}-@code{r3},
1741 @code{r12}-@code{r15}.  This constraint can only match when the @option{-mq}
1742 option is in effect.
1744 @item e
1745 Registers usable as base-regs of memory addresses in ARCompact 16-bit memory
1746 instructions: @code{r0}-@code{r3}, @code{r12}-@code{r15}, @code{sp}.
1747 This constraint can only match when the @option{-mq}
1748 option is in effect.
1749 @item D
1750 ARC FPX (dpfp) 64-bit registers. @code{D0}, @code{D1}.
1752 @item I
1753 A signed 12-bit integer constant.
1755 @item Cal
1756 constant for arithmetic/logical operations.  This might be any constant
1757 that can be put into a long immediate by the assmbler or linker without
1758 involving a PIC relocation.
1760 @item K
1761 A 3-bit unsigned integer constant.
1763 @item L
1764 A 6-bit unsigned integer constant.
1766 @item CnL
1767 One's complement of a 6-bit unsigned integer constant.
1769 @item CmL
1770 Two's complement of a 6-bit unsigned integer constant.
1772 @item M
1773 A 5-bit unsigned integer constant.
1775 @item O
1776 A 7-bit unsigned integer constant.
1778 @item P
1779 A 8-bit unsigned integer constant.
1781 @item H
1782 Any const_double value.
1783 @end table
1785 @item ARM family---@file{config/arm/constraints.md}
1786 @table @code
1787 @item w
1788 VFP floating-point register
1790 @item G
1791 The floating-point constant 0.0
1793 @item I
1794 Integer that is valid as an immediate operand in a data processing
1795 instruction.  That is, an integer in the range 0 to 255 rotated by a
1796 multiple of 2
1798 @item J
1799 Integer in the range @minus{}4095 to 4095
1801 @item K
1802 Integer that satisfies constraint @samp{I} when inverted (ones complement)
1804 @item L
1805 Integer that satisfies constraint @samp{I} when negated (twos complement)
1807 @item M
1808 Integer in the range 0 to 32
1810 @item Q
1811 A memory reference where the exact address is in a single register
1812 (`@samp{m}' is preferable for @code{asm} statements)
1814 @item R
1815 An item in the constant pool
1817 @item S
1818 A symbol in the text segment of the current file
1820 @item Uv
1821 A memory reference suitable for VFP load/store insns (reg+constant offset)
1823 @item Uy
1824 A memory reference suitable for iWMMXt load/store instructions.
1826 @item Uq
1827 A memory reference suitable for the ARMv4 ldrsb instruction.
1828 @end table
1830 @item AVR family---@file{config/avr/constraints.md}
1831 @table @code
1832 @item l
1833 Registers from r0 to r15
1835 @item a
1836 Registers from r16 to r23
1838 @item d
1839 Registers from r16 to r31
1841 @item w
1842 Registers from r24 to r31.  These registers can be used in @samp{adiw} command
1844 @item e
1845 Pointer register (r26--r31)
1847 @item b
1848 Base pointer register (r28--r31)
1850 @item q
1851 Stack pointer register (SPH:SPL)
1853 @item t
1854 Temporary register r0
1856 @item x
1857 Register pair X (r27:r26)
1859 @item y
1860 Register pair Y (r29:r28)
1862 @item z
1863 Register pair Z (r31:r30)
1865 @item I
1866 Constant greater than @minus{}1, less than 64
1868 @item J
1869 Constant greater than @minus{}64, less than 1
1871 @item K
1872 Constant integer 2
1874 @item L
1875 Constant integer 0
1877 @item M
1878 Constant that fits in 8 bits
1880 @item N
1881 Constant integer @minus{}1
1883 @item O
1884 Constant integer 8, 16, or 24
1886 @item P
1887 Constant integer 1
1889 @item G
1890 A floating point constant 0.0
1892 @item Q
1893 A memory address based on Y or Z pointer with displacement.
1894 @end table
1896 @item Epiphany---@file{config/epiphany/constraints.md}
1897 @table @code
1898 @item U16
1899 An unsigned 16-bit constant.
1901 @item K
1902 An unsigned 5-bit constant.
1904 @item L
1905 A signed 11-bit constant.
1907 @item Cm1
1908 A signed 11-bit constant added to @minus{}1.
1909 Can only match when the @option{-m1reg-@var{reg}} option is active.
1911 @item Cl1
1912 Left-shift of @minus{}1, i.e., a bit mask with a block of leading ones, the rest
1913 being a block of trailing zeroes.
1914 Can only match when the @option{-m1reg-@var{reg}} option is active.
1916 @item Cr1
1917 Right-shift of @minus{}1, i.e., a bit mask with a trailing block of ones, the
1918 rest being zeroes.  Or to put it another way, one less than a power of two.
1919 Can only match when the @option{-m1reg-@var{reg}} option is active.
1921 @item Cal
1922 Constant for arithmetic/logical operations.
1923 This is like @code{i}, except that for position independent code,
1924 no symbols / expressions needing relocations are allowed.
1926 @item Csy
1927 Symbolic constant for call/jump instruction.
1929 @item Rcs
1930 The register class usable in short insns.  This is a register class
1931 constraint, and can thus drive register allocation.
1932 This constraint won't match unless @option{-mprefer-short-insn-regs} is
1933 in effect.
1935 @item Rsc
1936 The the register class of registers that can be used to hold a
1937 sibcall call address.  I.e., a caller-saved register.
1939 @item Rct
1940 Core control register class.
1942 @item Rgs
1943 The register group usable in short insns.
1944 This constraint does not use a register class, so that it only
1945 passively matches suitable registers, and doesn't drive register allocation.
1947 @ifset INTERNALS
1948 @item Car
1949 Constant suitable for the addsi3_r pattern.  This is a valid offset
1950 For byte, halfword, or word addressing.
1951 @end ifset
1953 @item Rra
1954 Matches the return address if it can be replaced with the link register.
1956 @item Rcc
1957 Matches the integer condition code register.
1959 @item Sra
1960 Matches the return address if it is in a stack slot.
1962 @item Cfm
1963 Matches control register values to switch fp mode, which are encapsulated in
1964 @code{UNSPEC_FP_MODE}.
1965 @end table
1967 @item CR16 Architecture---@file{config/cr16/cr16.h}
1968 @table @code
1970 @item b
1971 Registers from r0 to r14 (registers without stack pointer)
1973 @item t
1974 Register from r0 to r11 (all 16-bit registers)
1976 @item p
1977 Register from r12 to r15 (all 32-bit registers)
1979 @item I
1980 Signed constant that fits in 4 bits
1982 @item J
1983 Signed constant that fits in 5 bits
1985 @item K
1986 Signed constant that fits in 6 bits
1988 @item L
1989 Unsigned constant that fits in 4 bits
1991 @item M
1992 Signed constant that fits in 32 bits
1994 @item N
1995 Check for 64 bits wide constants for add/sub instructions
1997 @item G
1998 Floating point constant that is legal for store immediate
1999 @end table
2001 @item Hewlett-Packard PA-RISC---@file{config/pa/pa.h}
2002 @table @code
2003 @item a
2004 General register 1
2006 @item f
2007 Floating point register
2009 @item q
2010 Shift amount register
2012 @item x
2013 Floating point register (deprecated)
2015 @item y
2016 Upper floating point register (32-bit), floating point register (64-bit)
2018 @item Z
2019 Any register
2021 @item I
2022 Signed 11-bit integer constant
2024 @item J
2025 Signed 14-bit integer constant
2027 @item K
2028 Integer constant that can be deposited with a @code{zdepi} instruction
2030 @item L
2031 Signed 5-bit integer constant
2033 @item M
2034 Integer constant 0
2036 @item N
2037 Integer constant that can be loaded with a @code{ldil} instruction
2039 @item O
2040 Integer constant whose value plus one is a power of 2
2042 @item P
2043 Integer constant that can be used for @code{and} operations in @code{depi}
2044 and @code{extru} instructions
2046 @item S
2047 Integer constant 31
2049 @item U
2050 Integer constant 63
2052 @item G
2053 Floating-point constant 0.0
2055 @item A
2056 A @code{lo_sum} data-linkage-table memory operand
2058 @item Q
2059 A memory operand that can be used as the destination operand of an
2060 integer store instruction
2062 @item R
2063 A scaled or unscaled indexed memory operand
2065 @item T
2066 A memory operand for floating-point loads and stores
2068 @item W
2069 A register indirect memory operand
2070 @end table
2072 @item PowerPC and IBM RS6000---@file{config/rs6000/constraints.md}
2073 @table @code
2074 @item b
2075 Address base register
2077 @item d
2078 Floating point register (containing 64-bit value)
2080 @item f
2081 Floating point register (containing 32-bit value)
2083 @item v
2084 Altivec vector register
2086 @item wa
2087 Any VSX register if the -mvsx option was used or NO_REGS.
2089 @item wd
2090 VSX vector register to hold vector double data or NO_REGS.
2092 @item wf
2093 VSX vector register to hold vector float data or NO_REGS.
2095 @item wg
2096 If @option{-mmfpgpr} was used, a floating point register or NO_REGS.
2098 @item wh
2099 Floating point register if direct moves are available, or NO_REGS.
2101 @item wi
2102 FP or VSX register to hold 64-bit integers for VSX insns or NO_REGS.
2104 @item wj
2105 FP or VSX register to hold 64-bit integers for direct moves or NO_REGS.
2107 @item wk
2108 FP or VSX register to hold 64-bit doubles for direct moves or NO_REGS.
2110 @item wl
2111 Floating point register if the LFIWAX instruction is enabled or NO_REGS.
2113 @item wm
2114 VSX register if direct move instructions are enabled, or NO_REGS.
2116 @item wn
2117 No register (NO_REGS).
2119 @item wr
2120 General purpose register if 64-bit instructions are enabled or NO_REGS.
2122 @item ws
2123 VSX vector register to hold scalar double values or NO_REGS.
2125 @item wt
2126 VSX vector register to hold 128 bit integer or NO_REGS.
2128 @item wu
2129 Altivec register to use for float/32-bit int loads/stores  or NO_REGS.
2131 @item wv
2132 Altivec register to use for double loads/stores  or NO_REGS.
2134 @item ww
2135 FP or VSX register to perform float operations under @option{-mvsx} or NO_REGS.
2137 @item wx
2138 Floating point register if the STFIWX instruction is enabled or NO_REGS.
2140 @item wy
2141 FP or VSX register to perform ISA 2.07 float ops or NO_REGS.
2143 @item wz
2144 Floating point register if the LFIWZX instruction is enabled or NO_REGS.
2146 @item wD
2147 Int constant that is the element number of the 64-bit scalar in a vector.
2149 @item wQ
2150 A memory address that will work with the @code{lq} and @code{stq}
2151 instructions.
2153 @item h
2154 @samp{MQ}, @samp{CTR}, or @samp{LINK} register
2156 @item q
2157 @samp{MQ} register
2159 @item c
2160 @samp{CTR} register
2162 @item l
2163 @samp{LINK} register
2165 @item x
2166 @samp{CR} register (condition register) number 0
2168 @item y
2169 @samp{CR} register (condition register)
2171 @item z
2172 @samp{XER[CA]} carry bit (part of the XER register)
2174 @item I
2175 Signed 16-bit constant
2177 @item J
2178 Unsigned 16-bit constant shifted left 16 bits (use @samp{L} instead for
2179 @code{SImode} constants)
2181 @item K
2182 Unsigned 16-bit constant
2184 @item L
2185 Signed 16-bit constant shifted left 16 bits
2187 @item M
2188 Constant larger than 31
2190 @item N
2191 Exact power of 2
2193 @item O
2194 Zero
2196 @item P
2197 Constant whose negation is a signed 16-bit constant
2199 @item G
2200 Floating point constant that can be loaded into a register with one
2201 instruction per word
2203 @item H
2204 Integer/Floating point constant that can be loaded into a register using
2205 three instructions
2207 @item m
2208 Memory operand.
2209 Normally, @code{m} does not allow addresses that update the base register.
2210 If @samp{<} or @samp{>} constraint is also used, they are allowed and
2211 therefore on PowerPC targets in that case it is only safe
2212 to use @samp{m<>} in an @code{asm} statement if that @code{asm} statement
2213 accesses the operand exactly once.  The @code{asm} statement must also
2214 use @samp{%U@var{<opno>}} as a placeholder for the ``update'' flag in the
2215 corresponding load or store instruction.  For example:
2217 @smallexample
2218 asm ("st%U0 %1,%0" : "=m<>" (mem) : "r" (val));
2219 @end smallexample
2221 is correct but:
2223 @smallexample
2224 asm ("st %1,%0" : "=m<>" (mem) : "r" (val));
2225 @end smallexample
2227 is not.
2229 @item es
2230 A ``stable'' memory operand; that is, one which does not include any
2231 automodification of the base register.  This used to be useful when
2232 @samp{m} allowed automodification of the base register, but as those are now only
2233 allowed when @samp{<} or @samp{>} is used, @samp{es} is basically the same
2234 as @samp{m} without @samp{<} and @samp{>}.
2236 @item Q
2237 Memory operand that is an offset from a register (it is usually better
2238 to use @samp{m} or @samp{es} in @code{asm} statements)
2240 @item Z
2241 Memory operand that is an indexed or indirect from a register (it is
2242 usually better to use @samp{m} or @samp{es} in @code{asm} statements)
2244 @item R
2245 AIX TOC entry
2247 @item a
2248 Address operand that is an indexed or indirect from a register (@samp{p} is
2249 preferable for @code{asm} statements)
2251 @item S
2252 Constant suitable as a 64-bit mask operand
2254 @item T
2255 Constant suitable as a 32-bit mask operand
2257 @item U
2258 System V Release 4 small data area reference
2260 @item t
2261 AND masks that can be performed by two rldic@{l, r@} instructions
2263 @item W
2264 Vector constant that does not require memory
2266 @item j
2267 Vector constant that is all zeros.
2269 @end table
2271 @item Intel 386---@file{config/i386/constraints.md}
2272 @table @code
2273 @item R
2274 Legacy register---the eight integer registers available on all
2275 i386 processors (@code{a}, @code{b}, @code{c}, @code{d},
2276 @code{si}, @code{di}, @code{bp}, @code{sp}).
2278 @item q
2279 Any register accessible as @code{@var{r}l}.  In 32-bit mode, @code{a},
2280 @code{b}, @code{c}, and @code{d}; in 64-bit mode, any integer register.
2282 @item Q
2283 Any register accessible as @code{@var{r}h}: @code{a}, @code{b},
2284 @code{c}, and @code{d}.
2286 @ifset INTERNALS
2287 @item l
2288 Any register that can be used as the index in a base+index memory
2289 access: that is, any general register except the stack pointer.
2290 @end ifset
2292 @item a
2293 The @code{a} register.
2295 @item b
2296 The @code{b} register.
2298 @item c
2299 The @code{c} register.
2301 @item d
2302 The @code{d} register.
2304 @item S
2305 The @code{si} register.
2307 @item D
2308 The @code{di} register.
2310 @item A
2311 The @code{a} and @code{d} registers.  This class is used for instructions
2312 that return double word results in the @code{ax:dx} register pair.  Single
2313 word values will be allocated either in @code{ax} or @code{dx}.
2314 For example on i386 the following implements @code{rdtsc}:
2316 @smallexample
2317 unsigned long long rdtsc (void)
2319   unsigned long long tick;
2320   __asm__ __volatile__("rdtsc":"=A"(tick));
2321   return tick;
2323 @end smallexample
2325 This is not correct on x86_64 as it would allocate tick in either @code{ax}
2326 or @code{dx}.  You have to use the following variant instead:
2328 @smallexample
2329 unsigned long long rdtsc (void)
2331   unsigned int tickl, tickh;
2332   __asm__ __volatile__("rdtsc":"=a"(tickl),"=d"(tickh));
2333   return ((unsigned long long)tickh << 32)|tickl;
2335 @end smallexample
2338 @item f
2339 Any 80387 floating-point (stack) register.
2341 @item t
2342 Top of 80387 floating-point stack (@code{%st(0)}).
2344 @item u
2345 Second from top of 80387 floating-point stack (@code{%st(1)}).
2347 @item y
2348 Any MMX register.
2350 @item x
2351 Any SSE register.
2353 @item Yz
2354 First SSE register (@code{%xmm0}).
2356 @ifset INTERNALS
2357 @item Y2
2358 Any SSE register, when SSE2 is enabled.
2360 @item Yi
2361 Any SSE register, when SSE2 and inter-unit moves are enabled.
2363 @item Ym
2364 Any MMX register, when inter-unit moves are enabled.
2365 @end ifset
2367 @item I
2368 Integer constant in the range 0 @dots{} 31, for 32-bit shifts.
2370 @item J
2371 Integer constant in the range 0 @dots{} 63, for 64-bit shifts.
2373 @item K
2374 Signed 8-bit integer constant.
2376 @item L
2377 @code{0xFF} or @code{0xFFFF}, for andsi as a zero-extending move.
2379 @item M
2380 0, 1, 2, or 3 (shifts for the @code{lea} instruction).
2382 @item N
2383 Unsigned 8-bit integer constant (for @code{in} and @code{out}
2384 instructions).
2386 @ifset INTERNALS
2387 @item O
2388 Integer constant in the range 0 @dots{} 127, for 128-bit shifts.
2389 @end ifset
2391 @item G
2392 Standard 80387 floating point constant.
2394 @item C
2395 Standard SSE floating point constant.
2397 @item e
2398 32-bit signed integer constant, or a symbolic reference known
2399 to fit that range (for immediate operands in sign-extending x86-64
2400 instructions).
2402 @item Z
2403 32-bit unsigned integer constant, or a symbolic reference known
2404 to fit that range (for immediate operands in zero-extending x86-64
2405 instructions).
2407 @end table
2409 @item Intel IA-64---@file{config/ia64/ia64.h}
2410 @table @code
2411 @item a
2412 General register @code{r0} to @code{r3} for @code{addl} instruction
2414 @item b
2415 Branch register
2417 @item c
2418 Predicate register (@samp{c} as in ``conditional'')
2420 @item d
2421 Application register residing in M-unit
2423 @item e
2424 Application register residing in I-unit
2426 @item f
2427 Floating-point register
2429 @item m
2430 Memory operand.  If used together with @samp{<} or @samp{>},
2431 the operand can have postincrement and postdecrement which
2432 require printing with @samp{%Pn} on IA-64.
2434 @item G
2435 Floating-point constant 0.0 or 1.0
2437 @item I
2438 14-bit signed integer constant
2440 @item J
2441 22-bit signed integer constant
2443 @item K
2444 8-bit signed integer constant for logical instructions
2446 @item L
2447 8-bit adjusted signed integer constant for compare pseudo-ops
2449 @item M
2450 6-bit unsigned integer constant for shift counts
2452 @item N
2453 9-bit signed integer constant for load and store postincrements
2455 @item O
2456 The constant zero
2458 @item P
2459 0 or @minus{}1 for @code{dep} instruction
2461 @item Q
2462 Non-volatile memory for floating-point loads and stores
2464 @item R
2465 Integer constant in the range 1 to 4 for @code{shladd} instruction
2467 @item S
2468 Memory operand except postincrement and postdecrement.  This is
2469 now roughly the same as @samp{m} when not used together with @samp{<}
2470 or @samp{>}.
2471 @end table
2473 @item FRV---@file{config/frv/frv.h}
2474 @table @code
2475 @item a
2476 Register in the class @code{ACC_REGS} (@code{acc0} to @code{acc7}).
2478 @item b
2479 Register in the class @code{EVEN_ACC_REGS} (@code{acc0} to @code{acc7}).
2481 @item c
2482 Register in the class @code{CC_REGS} (@code{fcc0} to @code{fcc3} and
2483 @code{icc0} to @code{icc3}).
2485 @item d
2486 Register in the class @code{GPR_REGS} (@code{gr0} to @code{gr63}).
2488 @item e
2489 Register in the class @code{EVEN_REGS} (@code{gr0} to @code{gr63}).
2490 Odd registers are excluded not in the class but through the use of a machine
2491 mode larger than 4 bytes.
2493 @item f
2494 Register in the class @code{FPR_REGS} (@code{fr0} to @code{fr63}).
2496 @item h
2497 Register in the class @code{FEVEN_REGS} (@code{fr0} to @code{fr63}).
2498 Odd registers are excluded not in the class but through the use of a machine
2499 mode larger than 4 bytes.
2501 @item l
2502 Register in the class @code{LR_REG} (the @code{lr} register).
2504 @item q
2505 Register in the class @code{QUAD_REGS} (@code{gr2} to @code{gr63}).
2506 Register numbers not divisible by 4 are excluded not in the class but through
2507 the use of a machine mode larger than 8 bytes.
2509 @item t
2510 Register in the class @code{ICC_REGS} (@code{icc0} to @code{icc3}).
2512 @item u
2513 Register in the class @code{FCC_REGS} (@code{fcc0} to @code{fcc3}).
2515 @item v
2516 Register in the class @code{ICR_REGS} (@code{cc4} to @code{cc7}).
2518 @item w
2519 Register in the class @code{FCR_REGS} (@code{cc0} to @code{cc3}).
2521 @item x
2522 Register in the class @code{QUAD_FPR_REGS} (@code{fr0} to @code{fr63}).
2523 Register numbers not divisible by 4 are excluded not in the class but through
2524 the use of a machine mode larger than 8 bytes.
2526 @item z
2527 Register in the class @code{SPR_REGS} (@code{lcr} and @code{lr}).
2529 @item A
2530 Register in the class @code{QUAD_ACC_REGS} (@code{acc0} to @code{acc7}).
2532 @item B
2533 Register in the class @code{ACCG_REGS} (@code{accg0} to @code{accg7}).
2535 @item C
2536 Register in the class @code{CR_REGS} (@code{cc0} to @code{cc7}).
2538 @item G
2539 Floating point constant zero
2541 @item I
2542 6-bit signed integer constant
2544 @item J
2545 10-bit signed integer constant
2547 @item L
2548 16-bit signed integer constant
2550 @item M
2551 16-bit unsigned integer constant
2553 @item N
2554 12-bit signed integer constant that is negative---i.e.@: in the
2555 range of @minus{}2048 to @minus{}1
2557 @item O
2558 Constant zero
2560 @item P
2561 12-bit signed integer constant that is greater than zero---i.e.@: in the
2562 range of 1 to 2047.
2564 @end table
2566 @item Blackfin family---@file{config/bfin/constraints.md}
2567 @table @code
2568 @item a
2569 P register
2571 @item d
2572 D register
2574 @item z
2575 A call clobbered P register.
2577 @item q@var{n}
2578 A single register.  If @var{n} is in the range 0 to 7, the corresponding D
2579 register.  If it is @code{A}, then the register P0.
2581 @item D
2582 Even-numbered D register
2584 @item W
2585 Odd-numbered D register
2587 @item e
2588 Accumulator register.
2590 @item A
2591 Even-numbered accumulator register.
2593 @item B
2594 Odd-numbered accumulator register.
2596 @item b
2597 I register
2599 @item v
2600 B register
2602 @item f
2603 M register
2605 @item c
2606 Registers used for circular buffering, i.e. I, B, or L registers.
2608 @item C
2609 The CC register.
2611 @item t
2612 LT0 or LT1.
2614 @item k
2615 LC0 or LC1.
2617 @item u
2618 LB0 or LB1.
2620 @item x
2621 Any D, P, B, M, I or L register.
2623 @item y
2624 Additional registers typically used only in prologues and epilogues: RETS,
2625 RETN, RETI, RETX, RETE, ASTAT, SEQSTAT and USP.
2627 @item w
2628 Any register except accumulators or CC.
2630 @item Ksh
2631 Signed 16 bit integer (in the range @minus{}32768 to 32767)
2633 @item Kuh
2634 Unsigned 16 bit integer (in the range 0 to 65535)
2636 @item Ks7
2637 Signed 7 bit integer (in the range @minus{}64 to 63)
2639 @item Ku7
2640 Unsigned 7 bit integer (in the range 0 to 127)
2642 @item Ku5
2643 Unsigned 5 bit integer (in the range 0 to 31)
2645 @item Ks4
2646 Signed 4 bit integer (in the range @minus{}8 to 7)
2648 @item Ks3
2649 Signed 3 bit integer (in the range @minus{}3 to 4)
2651 @item Ku3
2652 Unsigned 3 bit integer (in the range 0 to 7)
2654 @item P@var{n}
2655 Constant @var{n}, where @var{n} is a single-digit constant in the range 0 to 4.
2657 @item PA
2658 An integer equal to one of the MACFLAG_XXX constants that is suitable for
2659 use with either accumulator.
2661 @item PB
2662 An integer equal to one of the MACFLAG_XXX constants that is suitable for
2663 use only with accumulator A1.
2665 @item M1
2666 Constant 255.
2668 @item M2
2669 Constant 65535.
2671 @item J
2672 An integer constant with exactly a single bit set.
2674 @item L
2675 An integer constant with all bits set except exactly one.
2677 @item H
2679 @item Q
2680 Any SYMBOL_REF.
2681 @end table
2683 @item M32C---@file{config/m32c/m32c.c}
2684 @table @code
2685 @item Rsp
2686 @itemx Rfb
2687 @itemx Rsb
2688 @samp{$sp}, @samp{$fb}, @samp{$sb}.
2690 @item Rcr
2691 Any control register, when they're 16 bits wide (nothing if control
2692 registers are 24 bits wide)
2694 @item Rcl
2695 Any control register, when they're 24 bits wide.
2697 @item R0w
2698 @itemx R1w
2699 @itemx R2w
2700 @itemx R3w
2701 $r0, $r1, $r2, $r3.
2703 @item R02
2704 $r0 or $r2, or $r2r0 for 32 bit values.
2706 @item R13
2707 $r1 or $r3, or $r3r1 for 32 bit values.
2709 @item Rdi
2710 A register that can hold a 64 bit value.
2712 @item Rhl
2713 $r0 or $r1 (registers with addressable high/low bytes)
2715 @item R23
2716 $r2 or $r3
2718 @item Raa
2719 Address registers
2721 @item Raw
2722 Address registers when they're 16 bits wide.
2724 @item Ral
2725 Address registers when they're 24 bits wide.
2727 @item Rqi
2728 Registers that can hold QI values.
2730 @item Rad
2731 Registers that can be used with displacements ($a0, $a1, $sb).
2733 @item Rsi
2734 Registers that can hold 32 bit values.
2736 @item Rhi
2737 Registers that can hold 16 bit values.
2739 @item Rhc
2740 Registers chat can hold 16 bit values, including all control
2741 registers.
2743 @item Rra
2744 $r0 through R1, plus $a0 and $a1.
2746 @item Rfl
2747 The flags register.
2749 @item Rmm
2750 The memory-based pseudo-registers $mem0 through $mem15.
2752 @item Rpi
2753 Registers that can hold pointers (16 bit registers for r8c, m16c; 24
2754 bit registers for m32cm, m32c).
2756 @item Rpa
2757 Matches multiple registers in a PARALLEL to form a larger register.
2758 Used to match function return values.
2760 @item Is3
2761 @minus{}8 @dots{} 7
2763 @item IS1
2764 @minus{}128 @dots{} 127
2766 @item IS2
2767 @minus{}32768 @dots{} 32767
2769 @item IU2
2770 0 @dots{} 65535
2772 @item In4
2773 @minus{}8 @dots{} @minus{}1 or 1 @dots{} 8
2775 @item In5
2776 @minus{}16 @dots{} @minus{}1 or 1 @dots{} 16
2778 @item In6
2779 @minus{}32 @dots{} @minus{}1 or 1 @dots{} 32
2781 @item IM2
2782 @minus{}65536 @dots{} @minus{}1
2784 @item Ilb
2785 An 8 bit value with exactly one bit set.
2787 @item Ilw
2788 A 16 bit value with exactly one bit set.
2790 @item Sd
2791 The common src/dest memory addressing modes.
2793 @item Sa
2794 Memory addressed using $a0 or $a1.
2796 @item Si
2797 Memory addressed with immediate addresses.
2799 @item Ss
2800 Memory addressed using the stack pointer ($sp).
2802 @item Sf
2803 Memory addressed using the frame base register ($fb).
2805 @item Ss
2806 Memory addressed using the small base register ($sb).
2808 @item S1
2809 $r1h
2810 @end table
2812 @item MeP---@file{config/mep/constraints.md}
2813 @table @code
2815 @item a
2816 The $sp register.
2818 @item b
2819 The $tp register.
2821 @item c
2822 Any control register.
2824 @item d
2825 Either the $hi or the $lo register.
2827 @item em
2828 Coprocessor registers that can be directly loaded ($c0-$c15).
2830 @item ex
2831 Coprocessor registers that can be moved to each other.
2833 @item er
2834 Coprocessor registers that can be moved to core registers.
2836 @item h
2837 The $hi register.
2839 @item j
2840 The $rpc register.
2842 @item l
2843 The $lo register.
2845 @item t
2846 Registers which can be used in $tp-relative addressing.
2848 @item v
2849 The $gp register.
2851 @item x
2852 The coprocessor registers.
2854 @item y
2855 The coprocessor control registers.
2857 @item z
2858 The $0 register.
2860 @item A
2861 User-defined register set A.
2863 @item B
2864 User-defined register set B.
2866 @item C
2867 User-defined register set C.
2869 @item D
2870 User-defined register set D.
2872 @item I
2873 Offsets for $gp-rel addressing.
2875 @item J
2876 Constants that can be used directly with boolean insns.
2878 @item K
2879 Constants that can be moved directly to registers.
2881 @item L
2882 Small constants that can be added to registers.
2884 @item M
2885 Long shift counts.
2887 @item N
2888 Small constants that can be compared to registers.
2890 @item O
2891 Constants that can be loaded into the top half of registers.
2893 @item S
2894 Signed 8-bit immediates.
2896 @item T
2897 Symbols encoded for $tp-rel or $gp-rel addressing.
2899 @item U
2900 Non-constant addresses for loading/saving coprocessor registers.
2902 @item W
2903 The top half of a symbol's value.
2905 @item Y
2906 A register indirect address without offset.
2908 @item Z
2909 Symbolic references to the control bus.
2911 @end table
2913 @item MicroBlaze---@file{config/microblaze/constraints.md}
2914 @table @code
2915 @item d
2916 A general register (@code{r0} to @code{r31}).
2918 @item z
2919 A status register (@code{rmsr}, @code{$fcc1} to @code{$fcc7}).
2921 @end table
2923 @item MIPS---@file{config/mips/constraints.md}
2924 @table @code
2925 @item d
2926 An address register.  This is equivalent to @code{r} unless
2927 generating MIPS16 code.
2929 @item f
2930 A floating-point register (if available).
2932 @item h
2933 Formerly the @code{hi} register.  This constraint is no longer supported.
2935 @item l
2936 The @code{lo} register.  Use this register to store values that are
2937 no bigger than a word.
2939 @item x
2940 The concatenated @code{hi} and @code{lo} registers.  Use this register
2941 to store doubleword values.
2943 @item c
2944 A register suitable for use in an indirect jump.  This will always be
2945 @code{$25} for @option{-mabicalls}.
2947 @item v
2948 Register @code{$3}.  Do not use this constraint in new code;
2949 it is retained only for compatibility with glibc.
2951 @item y
2952 Equivalent to @code{r}; retained for backwards compatibility.
2954 @item z
2955 A floating-point condition code register.
2957 @item I
2958 A signed 16-bit constant (for arithmetic instructions).
2960 @item J
2961 Integer zero.
2963 @item K
2964 An unsigned 16-bit constant (for logic instructions).
2966 @item L
2967 A signed 32-bit constant in which the lower 16 bits are zero.
2968 Such constants can be loaded using @code{lui}.
2970 @item M
2971 A constant that cannot be loaded using @code{lui}, @code{addiu}
2972 or @code{ori}.
2974 @item N
2975 A constant in the range @minus{}65535 to @minus{}1 (inclusive).
2977 @item O
2978 A signed 15-bit constant.
2980 @item P
2981 A constant in the range 1 to 65535 (inclusive).
2983 @item G
2984 Floating-point zero.
2986 @item R
2987 An address that can be used in a non-macro load or store.
2989 @item ZC
2990 When compiling microMIPS code, this constraint matches a memory operand
2991 whose address is formed from a base register and a 12-bit offset.  These
2992 operands can be used for microMIPS instructions such as @code{ll} and
2993 @code{sc}.  When not compiling for microMIPS code, @code{ZC} is
2994 equivalent to @code{R}.
2996 @item ZD
2997 When compiling microMIPS code, this constraint matches an address operand
2998 that is formed from a base register and a 12-bit offset.  These operands
2999 can be used for microMIPS instructions such as @code{prefetch}.  When
3000 not compiling for microMIPS code, @code{ZD} is equivalent to @code{p}.
3001 @end table
3003 @item Motorola 680x0---@file{config/m68k/constraints.md}
3004 @table @code
3005 @item a
3006 Address register
3008 @item d
3009 Data register
3011 @item f
3012 68881 floating-point register, if available
3014 @item I
3015 Integer in the range 1 to 8
3017 @item J
3018 16-bit signed number
3020 @item K
3021 Signed number whose magnitude is greater than 0x80
3023 @item L
3024 Integer in the range @minus{}8 to @minus{}1
3026 @item M
3027 Signed number whose magnitude is greater than 0x100
3029 @item N
3030 Range 24 to 31, rotatert:SI 8 to 1 expressed as rotate
3032 @item O
3033 16 (for rotate using swap)
3035 @item P
3036 Range 8 to 15, rotatert:HI 8 to 1 expressed as rotate
3038 @item R
3039 Numbers that mov3q can handle
3041 @item G
3042 Floating point constant that is not a 68881 constant
3044 @item S
3045 Operands that satisfy 'm' when -mpcrel is in effect
3047 @item T
3048 Operands that satisfy 's' when -mpcrel is not in effect
3050 @item Q
3051 Address register indirect addressing mode
3053 @item U
3054 Register offset addressing
3056 @item W
3057 const_call_operand
3059 @item Cs
3060 symbol_ref or const
3062 @item Ci
3063 const_int
3065 @item C0
3066 const_int 0
3068 @item Cj
3069 Range of signed numbers that don't fit in 16 bits
3071 @item Cmvq
3072 Integers valid for mvq
3074 @item Capsw
3075 Integers valid for a moveq followed by a swap
3077 @item Cmvz
3078 Integers valid for mvz
3080 @item Cmvs
3081 Integers valid for mvs
3083 @item Ap
3084 push_operand
3086 @item Ac
3087 Non-register operands allowed in clr
3089 @end table
3091 @item Moxie---@file{config/moxie/constraints.md}
3092 @table @code
3093 @item A
3094 An absolute address
3096 @item B
3097 An offset address
3099 @item W
3100 A register indirect memory operand
3102 @item I
3103 A constant in the range of 0 to 255.
3105 @item N
3106 A constant in the range of 0 to @minus{}255.
3108 @end table
3110 @item MSP430--@file{config/msp430/constraints.md}
3111 @table @code
3113 @item R12
3114 Register R12.
3116 @item R13
3117 Register R13.
3119 @item K
3120 Integer constant 1.
3122 @item L
3123 Integer constant -1^20..1^19.
3125 @item M
3126 Integer constant 1-4.
3128 @item Ya
3129 Memory references which do not require an extended MOVX instruction.
3131 @item Yl
3132 Memory reference, labels only.
3134 @item Ys
3135 Memory reference, stack only.
3137 @end table
3139 @item NDS32---@file{config/nds32/constraints.md}
3140 @table @code
3141 @item w
3142 LOW register class $r0 to $r7 constraint for V3/V3M ISA.
3143 @item l
3144 LOW register class $r0 to $r7.
3145 @item d
3146 MIDDLE register class $r0 to $r11, $r16 to $r19.
3147 @item h
3148 HIGH register class $r12 to $r14, $r20 to $r31.
3149 @item t
3150 Temporary assist register $ta (i.e.@: $r15).
3151 @item k
3152 Stack register $sp.
3153 @item Iu03
3154 Unsigned immediate 3-bit value.
3155 @item In03
3156 Negative immediate 3-bit value in the range of @minus{}7--0.
3157 @item Iu04
3158 Unsigned immediate 4-bit value.
3159 @item Is05
3160 Signed immediate 5-bit value.
3161 @item Iu05
3162 Unsigned immediate 5-bit value.
3163 @item In05
3164 Negative immediate 5-bit value in the range of @minus{}31--0.
3165 @item Ip05
3166 Unsigned immediate 5-bit value for movpi45 instruction with range 16--47.
3167 @item Iu06
3168 Unsigned immediate 6-bit value constraint for addri36.sp instruction.
3169 @item Iu08
3170 Unsigned immediate 8-bit value.
3171 @item Iu09
3172 Unsigned immediate 9-bit value.
3173 @item Is10
3174 Signed immediate 10-bit value.
3175 @item Is11
3176 Signed immediate 11-bit value.
3177 @item Is15
3178 Signed immediate 15-bit value.
3179 @item Iu15
3180 Unsigned immediate 15-bit value.
3181 @item Ic15
3182 A constant which is not in the range of imm15u but ok for bclr instruction.
3183 @item Ie15
3184 A constant which is not in the range of imm15u but ok for bset instruction.
3185 @item It15
3186 A constant which is not in the range of imm15u but ok for btgl instruction.
3187 @item Ii15
3188 A constant whose compliment value is in the range of imm15u
3189 and ok for bitci instruction.
3190 @item Is16
3191 Signed immediate 16-bit value.
3192 @item Is17
3193 Signed immediate 17-bit value.
3194 @item Is19
3195 Signed immediate 19-bit value.
3196 @item Is20
3197 Signed immediate 20-bit value.
3198 @item Ihig
3199 The immediate value that can be simply set high 20-bit.
3200 @item Izeb
3201 The immediate value 0xff.
3202 @item Izeh
3203 The immediate value 0xffff.
3204 @item Ixls
3205 The immediate value 0x01.
3206 @item Ix11
3207 The immediate value 0x7ff.
3208 @item Ibms
3209 The immediate value with power of 2.
3210 @item Ifex
3211 The immediate value with power of 2 minus 1.
3212 @item U33
3213 Memory constraint for 333 format.
3214 @item U45
3215 Memory constraint for 45 format.
3216 @item U37
3217 Memory constraint for 37 format.
3218 @end table
3220 @item Nios II family---@file{config/nios2/constraints.md}
3221 @table @code
3223 @item I
3224 Integer that is valid as an immediate operand in an
3225 instruction taking a signed 16-bit number. Range
3226 @minus{}32768 to 32767.
3228 @item J
3229 Integer that is valid as an immediate operand in an
3230 instruction taking an unsigned 16-bit number. Range
3231 0 to 65535.
3233 @item K
3234 Integer that is valid as an immediate operand in an
3235 instruction taking only the upper 16-bits of a
3236 32-bit number. Range 32-bit numbers with the lower
3237 16-bits being 0.
3239 @item L
3240 Integer that is valid as an immediate operand for a 
3241 shift instruction. Range 0 to 31.
3243 @item M
3244 Integer that is valid as an immediate operand for
3245 only the value 0. Can be used in conjunction with
3246 the format modifier @code{z} to use @code{r0}
3247 instead of @code{0} in the assembly output.
3249 @item N
3250 Integer that is valid as an immediate operand for
3251 a custom instruction opcode. Range 0 to 255.
3253 @item S
3254 Matches immediates which are addresses in the small
3255 data section and therefore can be added to @code{gp}
3256 as a 16-bit immediate to re-create their 32-bit value.
3258 @ifset INTERNALS
3259 @item T
3260 A @code{const} wrapped @code{UNSPEC} expression,
3261 representing a supported PIC or TLS relocation.
3262 @end ifset
3264 @end table
3266 @item PDP-11---@file{config/pdp11/constraints.md}
3267 @table @code
3268 @item a
3269 Floating point registers AC0 through AC3.  These can be loaded from/to
3270 memory with a single instruction.
3272 @item d
3273 Odd numbered general registers (R1, R3, R5).  These are used for
3274 16-bit multiply operations.
3276 @item f
3277 Any of the floating point registers (AC0 through AC5).
3279 @item G
3280 Floating point constant 0.
3282 @item I
3283 An integer constant that fits in 16 bits.
3285 @item J
3286 An integer constant whose low order 16 bits are zero.
3288 @item K
3289 An integer constant that does not meet the constraints for codes
3290 @samp{I} or @samp{J}.
3292 @item L
3293 The integer constant 1.
3295 @item M
3296 The integer constant @minus{}1.
3298 @item N
3299 The integer constant 0.
3301 @item O
3302 Integer constants @minus{}4 through @minus{}1 and 1 through 4; shifts by these
3303 amounts are handled as multiple single-bit shifts rather than a single
3304 variable-length shift.
3306 @item Q
3307 A memory reference which requires an additional word (address or
3308 offset) after the opcode.
3310 @item R
3311 A memory reference that is encoded within the opcode.
3313 @end table
3315 @item RL78---@file{config/rl78/constraints.md}
3316 @table @code
3318 @item Int3
3319 An integer constant in the range 1 @dots{} 7.
3320 @item Int8
3321 An integer constant in the range 0 @dots{} 255.
3322 @item J
3323 An integer constant in the range @minus{}255 @dots{} 0
3324 @item K
3325 The integer constant 1.
3326 @item L
3327 The integer constant -1.
3328 @item M
3329 The integer constant 0.
3330 @item N
3331 The integer constant 2.
3332 @item O
3333 The integer constant -2.
3334 @item P
3335 An integer constant in the range 1 @dots{} 15.
3336 @item Qbi
3337 The built-in compare types--eq, ne, gtu, ltu, geu, and leu.
3338 @item Qsc
3339 The synthetic compare types--gt, lt, ge, and le.
3340 @item Wab
3341 A memory reference with an absolute address.
3342 @item Wbc
3343 A memory reference using @code{BC} as a base register, with an optional offset.
3344 @item Wca
3345 A memory reference using @code{AX}, @code{BC}, @code{DE}, or @code{HL} for the address, for calls.
3346 @item Wcv
3347 A memory reference using any 16-bit register pair for the address, for calls.
3348 @item Wd2
3349 A memory reference using @code{DE} as a base register, with an optional offset.
3350 @item Wde
3351 A memory reference using @code{DE} as a base register, without any offset.
3352 @item Wfr
3353 Any memory reference to an address in the far address space.
3354 @item Wh1
3355 A memory reference using @code{HL} as a base register, with an optional one-byte offset.
3356 @item Whb
3357 A memory reference using @code{HL} as a base register, with @code{B} or @code{C} as the index register.
3358 @item Whl
3359 A memory reference using @code{HL} as a base register, without any offset.
3360 @item Ws1
3361 A memory reference using @code{SP} as a base register, with an optional one-byte offset.
3362 @item Y
3363 Any memory reference to an address in the near address space.
3364 @item A
3365 The @code{AX} register.
3366 @item B
3367 The @code{BC} register.
3368 @item D
3369 The @code{DE} register.
3370 @item R
3371 @code{A} through @code{L} registers.
3372 @item S
3373 The @code{SP} register.
3374 @item T
3375 The @code{HL} register.
3376 @item Z08W
3377 The 16-bit @code{R8} register.
3378 @item Z10W
3379 The 16-bit @code{R10} register.
3380 @item Zint
3381 The registers reserved for interrupts (@code{R24} to @code{R31}).
3382 @item a
3383 The @code{A} register.
3384 @item b
3385 The @code{B} register.
3386 @item c
3387 The @code{C} register.
3388 @item d
3389 The @code{D} register.
3390 @item e
3391 The @code{E} register.
3392 @item h
3393 The @code{H} register.
3394 @item l
3395 The @code{L} register.
3396 @item v
3397 The virtual registers.
3398 @item w
3399 The @code{PSW} register.
3400 @item x
3401 The @code{X} register.
3403 @end table
3405 @item RX---@file{config/rx/constraints.md}
3406 @table @code
3407 @item Q
3408 An address which does not involve register indirect addressing or
3409 pre/post increment/decrement addressing.
3411 @item Symbol
3412 A symbol reference.
3414 @item Int08
3415 A constant in the range @minus{}256 to 255, inclusive.
3417 @item Sint08
3418 A constant in the range @minus{}128 to 127, inclusive.
3420 @item Sint16
3421 A constant in the range @minus{}32768 to 32767, inclusive.
3423 @item Sint24
3424 A constant in the range @minus{}8388608 to 8388607, inclusive.
3426 @item Uint04
3427 A constant in the range 0 to 15, inclusive.
3429 @end table
3431 @need 1000
3432 @item SPARC---@file{config/sparc/sparc.h}
3433 @table @code
3434 @item f
3435 Floating-point register on the SPARC-V8 architecture and
3436 lower floating-point register on the SPARC-V9 architecture.
3438 @item e
3439 Floating-point register.  It is equivalent to @samp{f} on the
3440 SPARC-V8 architecture and contains both lower and upper
3441 floating-point registers on the SPARC-V9 architecture.
3443 @item c
3444 Floating-point condition code register.
3446 @item d
3447 Lower floating-point register.  It is only valid on the SPARC-V9
3448 architecture when the Visual Instruction Set is available.
3450 @item b
3451 Floating-point register.  It is only valid on the SPARC-V9 architecture
3452 when the Visual Instruction Set is available.
3454 @item h
3455 64-bit global or out register for the SPARC-V8+ architecture.
3457 @item C
3458 The constant all-ones, for floating-point.
3460 @item A
3461 Signed 5-bit constant
3463 @item D
3464 A vector constant
3466 @item I
3467 Signed 13-bit constant
3469 @item J
3470 Zero
3472 @item K
3473 32-bit constant with the low 12 bits clear (a constant that can be
3474 loaded with the @code{sethi} instruction)
3476 @item L
3477 A constant in the range supported by @code{movcc} instructions (11-bit
3478 signed immediate)
3480 @item M
3481 A constant in the range supported by @code{movrcc} instructions (10-bit
3482 signed immediate)
3484 @item N
3485 Same as @samp{K}, except that it verifies that bits that are not in the
3486 lower 32-bit range are all zero.  Must be used instead of @samp{K} for
3487 modes wider than @code{SImode}
3489 @item O
3490 The constant 4096
3492 @item G
3493 Floating-point zero
3495 @item H
3496 Signed 13-bit constant, sign-extended to 32 or 64 bits
3498 @item P
3499 The constant -1
3501 @item Q
3502 Floating-point constant whose integral representation can
3503 be moved into an integer register using a single sethi
3504 instruction
3506 @item R
3507 Floating-point constant whose integral representation can
3508 be moved into an integer register using a single mov
3509 instruction
3511 @item S
3512 Floating-point constant whose integral representation can
3513 be moved into an integer register using a high/lo_sum
3514 instruction sequence
3516 @item T
3517 Memory address aligned to an 8-byte boundary
3519 @item U
3520 Even register
3522 @item W
3523 Memory address for @samp{e} constraint registers
3525 @item w
3526 Memory address with only a base register
3528 @item Y
3529 Vector zero
3531 @end table
3533 @item SPU---@file{config/spu/spu.h}
3534 @table @code
3535 @item a
3536 An immediate which can be loaded with the il/ila/ilh/ilhu instructions.  const_int is treated as a 64 bit value.
3538 @item c
3539 An immediate for and/xor/or instructions.  const_int is treated as a 64 bit value.
3541 @item d
3542 An immediate for the @code{iohl} instruction.  const_int is treated as a 64 bit value.
3544 @item f
3545 An immediate which can be loaded with @code{fsmbi}.
3547 @item A
3548 An immediate which can be loaded with the il/ila/ilh/ilhu instructions.  const_int is treated as a 32 bit value.
3550 @item B
3551 An immediate for most arithmetic instructions.  const_int is treated as a 32 bit value.
3553 @item C
3554 An immediate for and/xor/or instructions.  const_int is treated as a 32 bit value.
3556 @item D
3557 An immediate for the @code{iohl} instruction.  const_int is treated as a 32 bit value.
3559 @item I
3560 A constant in the range [@minus{}64, 63] for shift/rotate instructions.
3562 @item J
3563 An unsigned 7-bit constant for conversion/nop/channel instructions.
3565 @item K
3566 A signed 10-bit constant for most arithmetic instructions.
3568 @item M
3569 A signed 16 bit immediate for @code{stop}.
3571 @item N
3572 An unsigned 16-bit constant for @code{iohl} and @code{fsmbi}.
3574 @item O
3575 An unsigned 7-bit constant whose 3 least significant bits are 0.
3577 @item P
3578 An unsigned 3-bit constant for 16-byte rotates and shifts
3580 @item R
3581 Call operand, reg, for indirect calls
3583 @item S
3584 Call operand, symbol, for relative calls.
3586 @item T
3587 Call operand, const_int, for absolute calls.
3589 @item U
3590 An immediate which can be loaded with the il/ila/ilh/ilhu instructions.  const_int is sign extended to 128 bit.
3592 @item W
3593 An immediate for shift and rotate instructions.  const_int is treated as a 32 bit value.
3595 @item Y
3596 An immediate for and/xor/or instructions.  const_int is sign extended as a 128 bit.
3598 @item Z
3599 An immediate for the @code{iohl} instruction.  const_int is sign extended to 128 bit.
3601 @end table
3603 @item S/390 and zSeries---@file{config/s390/s390.h}
3604 @table @code
3605 @item a
3606 Address register (general purpose register except r0)
3608 @item c
3609 Condition code register
3611 @item d
3612 Data register (arbitrary general purpose register)
3614 @item f
3615 Floating-point register
3617 @item I
3618 Unsigned 8-bit constant (0--255)
3620 @item J
3621 Unsigned 12-bit constant (0--4095)
3623 @item K
3624 Signed 16-bit constant (@minus{}32768--32767)
3626 @item L
3627 Value appropriate as displacement.
3628 @table @code
3629 @item (0..4095)
3630 for short displacement
3631 @item (@minus{}524288..524287)
3632 for long displacement
3633 @end table
3635 @item M
3636 Constant integer with a value of 0x7fffffff.
3638 @item N
3639 Multiple letter constraint followed by 4 parameter letters.
3640 @table @code
3641 @item 0..9:
3642 number of the part counting from most to least significant
3643 @item H,Q:
3644 mode of the part
3645 @item D,S,H:
3646 mode of the containing operand
3647 @item 0,F:
3648 value of the other parts (F---all bits set)
3649 @end table
3650 The constraint matches if the specified part of a constant
3651 has a value different from its other parts.
3653 @item Q
3654 Memory reference without index register and with short displacement.
3656 @item R
3657 Memory reference with index register and short displacement.
3659 @item S
3660 Memory reference without index register but with long displacement.
3662 @item T
3663 Memory reference with index register and long displacement.
3665 @item U
3666 Pointer with short displacement.
3668 @item W
3669 Pointer with long displacement.
3671 @item Y
3672 Shift count operand.
3674 @end table
3676 @item Xstormy16---@file{config/stormy16/stormy16.h}
3677 @table @code
3678 @item a
3679 Register r0.
3681 @item b
3682 Register r1.
3684 @item c
3685 Register r2.
3687 @item d
3688 Register r8.
3690 @item e
3691 Registers r0 through r7.
3693 @item t
3694 Registers r0 and r1.
3696 @item y
3697 The carry register.
3699 @item z
3700 Registers r8 and r9.
3702 @item I
3703 A constant between 0 and 3 inclusive.
3705 @item J
3706 A constant that has exactly one bit set.
3708 @item K
3709 A constant that has exactly one bit clear.
3711 @item L
3712 A constant between 0 and 255 inclusive.
3714 @item M
3715 A constant between @minus{}255 and 0 inclusive.
3717 @item N
3718 A constant between @minus{}3 and 0 inclusive.
3720 @item O
3721 A constant between 1 and 4 inclusive.
3723 @item P
3724 A constant between @minus{}4 and @minus{}1 inclusive.
3726 @item Q
3727 A memory reference that is a stack push.
3729 @item R
3730 A memory reference that is a stack pop.
3732 @item S
3733 A memory reference that refers to a constant address of known value.
3735 @item T
3736 The register indicated by Rx (not implemented yet).
3738 @item U
3739 A constant that is not between 2 and 15 inclusive.
3741 @item Z
3742 The constant 0.
3744 @end table
3746 @item TI C6X family---@file{config/c6x/constraints.md}
3747 @table @code
3748 @item a
3749 Register file A (A0--A31).
3751 @item b
3752 Register file B (B0--B31).
3754 @item A
3755 Predicate registers in register file A (A0--A2 on C64X and
3756 higher, A1 and A2 otherwise).
3758 @item B
3759 Predicate registers in register file B (B0--B2).
3761 @item C
3762 A call-used register in register file B (B0--B9, B16--B31).
3764 @item Da
3765 Register file A, excluding predicate registers (A3--A31,
3766 plus A0 if not C64X or higher).
3768 @item Db
3769 Register file B, excluding predicate registers (B3--B31).
3771 @item Iu4
3772 Integer constant in the range 0 @dots{} 15.
3774 @item Iu5
3775 Integer constant in the range 0 @dots{} 31.
3777 @item In5
3778 Integer constant in the range @minus{}31 @dots{} 0.
3780 @item Is5
3781 Integer constant in the range @minus{}16 @dots{} 15.
3783 @item I5x
3784 Integer constant that can be the operand of an ADDA or a SUBA insn.
3786 @item IuB
3787 Integer constant in the range 0 @dots{} 65535.
3789 @item IsB
3790 Integer constant in the range @minus{}32768 @dots{} 32767.
3792 @item IsC
3793 Integer constant in the range @math{-2^{20}} @dots{} @math{2^{20} - 1}.
3795 @item Jc
3796 Integer constant that is a valid mask for the clr instruction.
3798 @item Js
3799 Integer constant that is a valid mask for the set instruction.
3801 @item Q
3802 Memory location with A base register.
3804 @item R
3805 Memory location with B base register.
3807 @ifset INTERNALS
3808 @item S0
3809 On C64x+ targets, a GP-relative small data reference.
3811 @item S1
3812 Any kind of @code{SYMBOL_REF}, for use in a call address.
3814 @item Si
3815 Any kind of immediate operand, unless it matches the S0 constraint.
3817 @item T
3818 Memory location with B base register, but not using a long offset.
3820 @item W
3821 A memory operand with an address that can't be used in an unaligned access.
3823 @end ifset
3824 @item Z
3825 Register B14 (aka DP).
3827 @end table
3829 @item TILE-Gx---@file{config/tilegx/constraints.md}
3830 @table @code
3831 @item R00
3832 @itemx R01
3833 @itemx R02
3834 @itemx R03
3835 @itemx R04
3836 @itemx R05
3837 @itemx R06
3838 @itemx R07
3839 @itemx R08
3840 @itemx R09
3841 @itemx R10
3842 Each of these represents a register constraint for an individual
3843 register, from r0 to r10.
3845 @item I
3846 Signed 8-bit integer constant.
3848 @item J
3849 Signed 16-bit integer constant.
3851 @item K
3852 Unsigned 16-bit integer constant.
3854 @item L
3855 Integer constant that fits in one signed byte when incremented by one
3856 (@minus{}129 @dots{} 126).
3858 @item m
3859 Memory operand.  If used together with @samp{<} or @samp{>}, the
3860 operand can have postincrement which requires printing with @samp{%In}
3861 and @samp{%in} on TILE-Gx.  For example:
3863 @smallexample
3864 asm ("st_add %I0,%1,%i0" : "=m<>" (*mem) : "r" (val));
3865 @end smallexample
3867 @item M
3868 A bit mask suitable for the BFINS instruction.
3870 @item N
3871 Integer constant that is a byte tiled out eight times.
3873 @item O
3874 The integer zero constant.
3876 @item P
3877 Integer constant that is a sign-extended byte tiled out as four shorts.
3879 @item Q
3880 Integer constant that fits in one signed byte when incremented
3881 (@minus{}129 @dots{} 126), but excluding -1.
3883 @item S
3884 Integer constant that has all 1 bits consecutive and starting at bit 0.
3886 @item T
3887 A 16-bit fragment of a got, tls, or pc-relative reference.
3889 @item U
3890 Memory operand except postincrement.  This is roughly the same as
3891 @samp{m} when not used together with @samp{<} or @samp{>}.
3893 @item W
3894 An 8-element vector constant with identical elements.
3896 @item Y
3897 A 4-element vector constant with identical elements.
3899 @item Z0
3900 The integer constant 0xffffffff.
3902 @item Z1
3903 The integer constant 0xffffffff00000000.
3905 @end table
3907 @item TILEPro---@file{config/tilepro/constraints.md}
3908 @table @code
3909 @item R00
3910 @itemx R01
3911 @itemx R02
3912 @itemx R03
3913 @itemx R04
3914 @itemx R05
3915 @itemx R06
3916 @itemx R07
3917 @itemx R08
3918 @itemx R09
3919 @itemx R10
3920 Each of these represents a register constraint for an individual
3921 register, from r0 to r10.
3923 @item I
3924 Signed 8-bit integer constant.
3926 @item J
3927 Signed 16-bit integer constant.
3929 @item K
3930 Nonzero integer constant with low 16 bits zero.
3932 @item L
3933 Integer constant that fits in one signed byte when incremented by one
3934 (@minus{}129 @dots{} 126).
3936 @item m
3937 Memory operand.  If used together with @samp{<} or @samp{>}, the
3938 operand can have postincrement which requires printing with @samp{%In}
3939 and @samp{%in} on TILEPro.  For example:
3941 @smallexample
3942 asm ("swadd %I0,%1,%i0" : "=m<>" (mem) : "r" (val));
3943 @end smallexample
3945 @item M
3946 A bit mask suitable for the MM instruction.
3948 @item N
3949 Integer constant that is a byte tiled out four times.
3951 @item O
3952 The integer zero constant.
3954 @item P
3955 Integer constant that is a sign-extended byte tiled out as two shorts.
3957 @item Q
3958 Integer constant that fits in one signed byte when incremented
3959 (@minus{}129 @dots{} 126), but excluding -1.
3961 @item T
3962 A symbolic operand, or a 16-bit fragment of a got, tls, or pc-relative
3963 reference.
3965 @item U
3966 Memory operand except postincrement.  This is roughly the same as
3967 @samp{m} when not used together with @samp{<} or @samp{>}.
3969 @item W
3970 A 4-element vector constant with identical elements.
3972 @item Y
3973 A 2-element vector constant with identical elements.
3975 @end table
3977 @item Xtensa---@file{config/xtensa/constraints.md}
3978 @table @code
3979 @item a
3980 General-purpose 32-bit register
3982 @item b
3983 One-bit boolean register
3985 @item A
3986 MAC16 40-bit accumulator register
3988 @item I
3989 Signed 12-bit integer constant, for use in MOVI instructions
3991 @item J
3992 Signed 8-bit integer constant, for use in ADDI instructions
3994 @item K
3995 Integer constant valid for BccI instructions
3997 @item L
3998 Unsigned constant valid for BccUI instructions
4000 @end table
4002 @end table
4004 @ifset INTERNALS
4005 @node Disable Insn Alternatives
4006 @subsection Disable insn alternatives using the @code{enabled} attribute
4007 @cindex enabled
4009 There are three insn attributes that may be used to selectively disable
4010 instruction alternatives:
4012 @table @code
4013 @item enabled
4014 Says whether an alternative is available on the current subtarget.
4016 @item preferred_for_size
4017 Says whether an enabled alternative should be used in code that is
4018 optimized for size.
4020 @item preferred_for_speed
4021 Says whether an enabled alternative should be used in code that is
4022 optimized for speed.
4023 @end table
4025 All these attributes should use @code{(const_int 1)} to allow an alternative
4026 or @code{(const_int 0)} to disallow it.  The attributes must be a static
4027 property of the subtarget; they cannot for example depend on the
4028 current operands, on the current optimization level, on the location
4029 of the insn within the body of a loop, on whether register allocation
4030 has finished, or on the current compiler pass.
4032 The @code{enabled} attribute is a correctness property.  It tells GCC to act
4033 as though the disabled alternatives were never defined in the first place.
4034 This is useful when adding new instructions to an existing pattern in
4035 cases where the new instructions are only available for certain cpu
4036 architecture levels (typically mapped to the @code{-march=} command-line
4037 option).
4039 In contrast, the @code{preferred_for_size} and @code{preferred_for_speed}
4040 attributes are strong optimization hints rather than correctness properties.
4041 @code{preferred_for_size} tells GCC which alternatives to consider when
4042 adding or modifying an instruction that GCC wants to optimize for size.
4043 @code{preferred_for_speed} does the same thing for speed.  Note that things
4044 like code motion can lead to cases where code optimized for size uses
4045 alternatives that are not preferred for size, and similarly for speed.
4047 Although @code{define_insn}s can in principle specify the @code{enabled}
4048 attribute directly, it is often clearer to have subsiduary attributes
4049 for each architectural feature of interest.  The @code{define_insn}s
4050 can then use these subsiduary attributes to say which alternatives
4051 require which features.  The example below does this for @code{cpu_facility}.
4053 E.g. the following two patterns could easily be merged using the @code{enabled}
4054 attribute:
4056 @smallexample
4058 (define_insn "*movdi_old"
4059   [(set (match_operand:DI 0 "register_operand" "=d")
4060         (match_operand:DI 1 "register_operand" " d"))]
4061   "!TARGET_NEW"
4062   "lgr %0,%1")
4064 (define_insn "*movdi_new"
4065   [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4066         (match_operand:DI 1 "register_operand" " d,d,f"))]
4067   "TARGET_NEW"
4068   "@@
4069    lgr  %0,%1
4070    ldgr %0,%1
4071    lgdr %0,%1")
4073 @end smallexample
4077 @smallexample
4079 (define_insn "*movdi_combined"
4080   [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4081         (match_operand:DI 1 "register_operand" " d,d,f"))]
4082   ""
4083   "@@
4084    lgr  %0,%1
4085    ldgr %0,%1
4086    lgdr %0,%1"
4087   [(set_attr "cpu_facility" "*,new,new")])
4089 @end smallexample
4091 with the @code{enabled} attribute defined like this:
4093 @smallexample
4095 (define_attr "cpu_facility" "standard,new" (const_string "standard"))
4097 (define_attr "enabled" ""
4098   (cond [(eq_attr "cpu_facility" "standard") (const_int 1)
4099          (and (eq_attr "cpu_facility" "new")
4100               (ne (symbol_ref "TARGET_NEW") (const_int 0)))
4101          (const_int 1)]
4102         (const_int 0)))
4104 @end smallexample
4106 @end ifset
4108 @ifset INTERNALS
4109 @node Define Constraints
4110 @subsection Defining Machine-Specific Constraints
4111 @cindex defining constraints
4112 @cindex constraints, defining
4114 Machine-specific constraints fall into two categories: register and
4115 non-register constraints.  Within the latter category, constraints
4116 which allow subsets of all possible memory or address operands should
4117 be specially marked, to give @code{reload} more information.
4119 Machine-specific constraints can be given names of arbitrary length,
4120 but they must be entirely composed of letters, digits, underscores
4121 (@samp{_}), and angle brackets (@samp{< >}).  Like C identifiers, they
4122 must begin with a letter or underscore.
4124 In order to avoid ambiguity in operand constraint strings, no
4125 constraint can have a name that begins with any other constraint's
4126 name.  For example, if @code{x} is defined as a constraint name,
4127 @code{xy} may not be, and vice versa.  As a consequence of this rule,
4128 no constraint may begin with one of the generic constraint letters:
4129 @samp{E F V X g i m n o p r s}.
4131 Register constraints correspond directly to register classes.
4132 @xref{Register Classes}.  There is thus not much flexibility in their
4133 definitions.
4135 @deffn {MD Expression} define_register_constraint name regclass docstring
4136 All three arguments are string constants.
4137 @var{name} is the name of the constraint, as it will appear in
4138 @code{match_operand} expressions.  If @var{name} is a multi-letter
4139 constraint its length shall be the same for all constraints starting
4140 with the same letter.  @var{regclass} can be either the
4141 name of the corresponding register class (@pxref{Register Classes}),
4142 or a C expression which evaluates to the appropriate register class.
4143 If it is an expression, it must have no side effects, and it cannot
4144 look at the operand.  The usual use of expressions is to map some
4145 register constraints to @code{NO_REGS} when the register class
4146 is not available on a given subarchitecture.
4148 @var{docstring} is a sentence documenting the meaning of the
4149 constraint.  Docstrings are explained further below.
4150 @end deffn
4152 Non-register constraints are more like predicates: the constraint
4153 definition gives a Boolean expression which indicates whether the
4154 constraint matches.
4156 @deffn {MD Expression} define_constraint name docstring exp
4157 The @var{name} and @var{docstring} arguments are the same as for
4158 @code{define_register_constraint}, but note that the docstring comes
4159 immediately after the name for these expressions.  @var{exp} is an RTL
4160 expression, obeying the same rules as the RTL expressions in predicate
4161 definitions.  @xref{Defining Predicates}, for details.  If it
4162 evaluates true, the constraint matches; if it evaluates false, it
4163 doesn't. Constraint expressions should indicate which RTL codes they
4164 might match, just like predicate expressions.
4166 @code{match_test} C expressions have access to the
4167 following variables:
4169 @table @var
4170 @item op
4171 The RTL object defining the operand.
4172 @item mode
4173 The machine mode of @var{op}.
4174 @item ival
4175 @samp{INTVAL (@var{op})}, if @var{op} is a @code{const_int}.
4176 @item hval
4177 @samp{CONST_DOUBLE_HIGH (@var{op})}, if @var{op} is an integer
4178 @code{const_double}.
4179 @item lval
4180 @samp{CONST_DOUBLE_LOW (@var{op})}, if @var{op} is an integer
4181 @code{const_double}.
4182 @item rval
4183 @samp{CONST_DOUBLE_REAL_VALUE (@var{op})}, if @var{op} is a floating-point
4184 @code{const_double}.
4185 @end table
4187 The @var{*val} variables should only be used once another piece of the
4188 expression has verified that @var{op} is the appropriate kind of RTL
4189 object.
4190 @end deffn
4192 Most non-register constraints should be defined with
4193 @code{define_constraint}.  The remaining two definition expressions
4194 are only appropriate for constraints that should be handled specially
4195 by @code{reload} if they fail to match.
4197 @deffn {MD Expression} define_memory_constraint name docstring exp
4198 Use this expression for constraints that match a subset of all memory
4199 operands: that is, @code{reload} can make them match by converting the
4200 operand to the form @samp{@w{(mem (reg @var{X}))}}, where @var{X} is a
4201 base register (from the register class specified by
4202 @code{BASE_REG_CLASS}, @pxref{Register Classes}).
4204 For example, on the S/390, some instructions do not accept arbitrary
4205 memory references, but only those that do not make use of an index
4206 register.  The constraint letter @samp{Q} is defined to represent a
4207 memory address of this type.  If @samp{Q} is defined with
4208 @code{define_memory_constraint}, a @samp{Q} constraint can handle any
4209 memory operand, because @code{reload} knows it can simply copy the
4210 memory address into a base register if required.  This is analogous to
4211 the way an @samp{o} constraint can handle any memory operand.
4213 The syntax and semantics are otherwise identical to
4214 @code{define_constraint}.
4215 @end deffn
4217 @deffn {MD Expression} define_address_constraint name docstring exp
4218 Use this expression for constraints that match a subset of all address
4219 operands: that is, @code{reload} can make the constraint match by
4220 converting the operand to the form @samp{@w{(reg @var{X})}}, again
4221 with @var{X} a base register.
4223 Constraints defined with @code{define_address_constraint} can only be
4224 used with the @code{address_operand} predicate, or machine-specific
4225 predicates that work the same way.  They are treated analogously to
4226 the generic @samp{p} constraint.
4228 The syntax and semantics are otherwise identical to
4229 @code{define_constraint}.
4230 @end deffn
4232 For historical reasons, names beginning with the letters @samp{G H}
4233 are reserved for constraints that match only @code{const_double}s, and
4234 names beginning with the letters @samp{I J K L M N O P} are reserved
4235 for constraints that match only @code{const_int}s.  This may change in
4236 the future.  For the time being, constraints with these names must be
4237 written in a stylized form, so that @code{genpreds} can tell you did
4238 it correctly:
4240 @smallexample
4241 @group
4242 (define_constraint "[@var{GHIJKLMNOP}]@dots{}"
4243   "@var{doc}@dots{}"
4244   (and (match_code "const_int")  ; @r{@code{const_double} for G/H}
4245        @var{condition}@dots{}))            ; @r{usually a @code{match_test}}
4246 @end group
4247 @end smallexample
4248 @c the semicolons line up in the formatted manual
4250 It is fine to use names beginning with other letters for constraints
4251 that match @code{const_double}s or @code{const_int}s.
4253 Each docstring in a constraint definition should be one or more complete
4254 sentences, marked up in Texinfo format.  @emph{They are currently unused.}
4255 In the future they will be copied into the GCC manual, in @ref{Machine
4256 Constraints}, replacing the hand-maintained tables currently found in
4257 that section.  Also, in the future the compiler may use this to give
4258 more helpful diagnostics when poor choice of @code{asm} constraints
4259 causes a reload failure.
4261 If you put the pseudo-Texinfo directive @samp{@@internal} at the
4262 beginning of a docstring, then (in the future) it will appear only in
4263 the internals manual's version of the machine-specific constraint tables.
4264 Use this for constraints that should not appear in @code{asm} statements.
4266 @node C Constraint Interface
4267 @subsection Testing constraints from C
4268 @cindex testing constraints
4269 @cindex constraints, testing
4271 It is occasionally useful to test a constraint from C code rather than
4272 implicitly via the constraint string in a @code{match_operand}.  The
4273 generated file @file{tm_p.h} declares a few interfaces for working
4274 with constraints.  At present these are defined for all constraints
4275 except @code{g} (which is equivalent to @code{general_operand}).
4277 Some valid constraint names are not valid C identifiers, so there is a
4278 mangling scheme for referring to them from C@.  Constraint names that
4279 do not contain angle brackets or underscores are left unchanged.
4280 Underscores are doubled, each @samp{<} is replaced with @samp{_l}, and
4281 each @samp{>} with @samp{_g}.  Here are some examples:
4283 @c the @c's prevent double blank lines in the printed manual.
4284 @example
4285 @multitable {Original} {Mangled}
4286 @item @strong{Original} @tab @strong{Mangled}  @c
4287 @item @code{x}     @tab @code{x}       @c
4288 @item @code{P42x}  @tab @code{P42x}    @c
4289 @item @code{P4_x}  @tab @code{P4__x}   @c
4290 @item @code{P4>x}  @tab @code{P4_gx}   @c
4291 @item @code{P4>>}  @tab @code{P4_g_g}  @c
4292 @item @code{P4_g>} @tab @code{P4__g_g} @c
4293 @end multitable
4294 @end example
4296 Throughout this section, the variable @var{c} is either a constraint
4297 in the abstract sense, or a constant from @code{enum constraint_num};
4298 the variable @var{m} is a mangled constraint name (usually as part of
4299 a larger identifier).
4301 @deftp Enum constraint_num
4302 For each constraint except @code{g}, there is a corresponding
4303 enumeration constant: @samp{CONSTRAINT_} plus the mangled name of the
4304 constraint.  Functions that take an @code{enum constraint_num} as an
4305 argument expect one of these constants.
4306 @end deftp
4308 @deftypefun {inline bool} satisfies_constraint_@var{m} (rtx @var{exp})
4309 For each non-register constraint @var{m} except @code{g}, there is
4310 one of these functions; it returns @code{true} if @var{exp} satisfies the
4311 constraint.  These functions are only visible if @file{rtl.h} was included
4312 before @file{tm_p.h}.
4313 @end deftypefun
4315 @deftypefun bool constraint_satisfied_p (rtx @var{exp}, enum constraint_num @var{c})
4316 Like the @code{satisfies_constraint_@var{m}} functions, but the
4317 constraint to test is given as an argument, @var{c}.  If @var{c}
4318 specifies a register constraint, this function will always return
4319 @code{false}.
4320 @end deftypefun
4322 @deftypefun {enum reg_class} reg_class_for_constraint (enum constraint_num @var{c})
4323 Returns the register class associated with @var{c}.  If @var{c} is not
4324 a register constraint, or those registers are not available for the
4325 currently selected subtarget, returns @code{NO_REGS}.
4326 @end deftypefun
4328 Here is an example use of @code{satisfies_constraint_@var{m}}.  In
4329 peephole optimizations (@pxref{Peephole Definitions}), operand
4330 constraint strings are ignored, so if there are relevant constraints,
4331 they must be tested in the C condition.  In the example, the
4332 optimization is applied if operand 2 does @emph{not} satisfy the
4333 @samp{K} constraint.  (This is a simplified version of a peephole
4334 definition from the i386 machine description.)
4336 @smallexample
4337 (define_peephole2
4338   [(match_scratch:SI 3 "r")
4339    (set (match_operand:SI 0 "register_operand" "")
4340         (mult:SI (match_operand:SI 1 "memory_operand" "")
4341                  (match_operand:SI 2 "immediate_operand" "")))]
4343   "!satisfies_constraint_K (operands[2])"
4345   [(set (match_dup 3) (match_dup 1))
4346    (set (match_dup 0) (mult:SI (match_dup 3) (match_dup 2)))]
4348   "")
4349 @end smallexample
4351 @node Standard Names
4352 @section Standard Pattern Names For Generation
4353 @cindex standard pattern names
4354 @cindex pattern names
4355 @cindex names, pattern
4357 Here is a table of the instruction names that are meaningful in the RTL
4358 generation pass of the compiler.  Giving one of these names to an
4359 instruction pattern tells the RTL generation pass that it can use the
4360 pattern to accomplish a certain task.
4362 @table @asis
4363 @cindex @code{mov@var{m}} instruction pattern
4364 @item @samp{mov@var{m}}
4365 Here @var{m} stands for a two-letter machine mode name, in lowercase.
4366 This instruction pattern moves data with that machine mode from operand
4367 1 to operand 0.  For example, @samp{movsi} moves full-word data.
4369 If operand 0 is a @code{subreg} with mode @var{m} of a register whose
4370 own mode is wider than @var{m}, the effect of this instruction is
4371 to store the specified value in the part of the register that corresponds
4372 to mode @var{m}.  Bits outside of @var{m}, but which are within the
4373 same target word as the @code{subreg} are undefined.  Bits which are
4374 outside the target word are left unchanged.
4376 This class of patterns is special in several ways.  First of all, each
4377 of these names up to and including full word size @emph{must} be defined,
4378 because there is no other way to copy a datum from one place to another.
4379 If there are patterns accepting operands in larger modes,
4380 @samp{mov@var{m}} must be defined for integer modes of those sizes.
4382 Second, these patterns are not used solely in the RTL generation pass.
4383 Even the reload pass can generate move insns to copy values from stack
4384 slots into temporary registers.  When it does so, one of the operands is
4385 a hard register and the other is an operand that can need to be reloaded
4386 into a register.
4388 @findex force_reg
4389 Therefore, when given such a pair of operands, the pattern must generate
4390 RTL which needs no reloading and needs no temporary registers---no
4391 registers other than the operands.  For example, if you support the
4392 pattern with a @code{define_expand}, then in such a case the
4393 @code{define_expand} mustn't call @code{force_reg} or any other such
4394 function which might generate new pseudo registers.
4396 This requirement exists even for subword modes on a RISC machine where
4397 fetching those modes from memory normally requires several insns and
4398 some temporary registers.
4400 @findex change_address
4401 During reload a memory reference with an invalid address may be passed
4402 as an operand.  Such an address will be replaced with a valid address
4403 later in the reload pass.  In this case, nothing may be done with the
4404 address except to use it as it stands.  If it is copied, it will not be
4405 replaced with a valid address.  No attempt should be made to make such
4406 an address into a valid address and no routine (such as
4407 @code{change_address}) that will do so may be called.  Note that
4408 @code{general_operand} will fail when applied to such an address.
4410 @findex reload_in_progress
4411 The global variable @code{reload_in_progress} (which must be explicitly
4412 declared if required) can be used to determine whether such special
4413 handling is required.
4415 The variety of operands that have reloads depends on the rest of the
4416 machine description, but typically on a RISC machine these can only be
4417 pseudo registers that did not get hard registers, while on other
4418 machines explicit memory references will get optional reloads.
4420 If a scratch register is required to move an object to or from memory,
4421 it can be allocated using @code{gen_reg_rtx} prior to life analysis.
4423 If there are cases which need scratch registers during or after reload,
4424 you must provide an appropriate secondary_reload target hook.
4426 @findex can_create_pseudo_p
4427 The macro @code{can_create_pseudo_p} can be used to determine if it
4428 is unsafe to create new pseudo registers.  If this variable is nonzero, then
4429 it is unsafe to call @code{gen_reg_rtx} to allocate a new pseudo.
4431 The constraints on a @samp{mov@var{m}} must permit moving any hard
4432 register to any other hard register provided that
4433 @code{HARD_REGNO_MODE_OK} permits mode @var{m} in both registers and
4434 @code{TARGET_REGISTER_MOVE_COST} applied to their classes returns a value
4435 of 2.
4437 It is obligatory to support floating point @samp{mov@var{m}}
4438 instructions into and out of any registers that can hold fixed point
4439 values, because unions and structures (which have modes @code{SImode} or
4440 @code{DImode}) can be in those registers and they may have floating
4441 point members.
4443 There may also be a need to support fixed point @samp{mov@var{m}}
4444 instructions in and out of floating point registers.  Unfortunately, I
4445 have forgotten why this was so, and I don't know whether it is still
4446 true.  If @code{HARD_REGNO_MODE_OK} rejects fixed point values in
4447 floating point registers, then the constraints of the fixed point
4448 @samp{mov@var{m}} instructions must be designed to avoid ever trying to
4449 reload into a floating point register.
4451 @cindex @code{reload_in} instruction pattern
4452 @cindex @code{reload_out} instruction pattern
4453 @item @samp{reload_in@var{m}}
4454 @itemx @samp{reload_out@var{m}}
4455 These named patterns have been obsoleted by the target hook
4456 @code{secondary_reload}.
4458 Like @samp{mov@var{m}}, but used when a scratch register is required to
4459 move between operand 0 and operand 1.  Operand 2 describes the scratch
4460 register.  See the discussion of the @code{SECONDARY_RELOAD_CLASS}
4461 macro in @pxref{Register Classes}.
4463 There are special restrictions on the form of the @code{match_operand}s
4464 used in these patterns.  First, only the predicate for the reload
4465 operand is examined, i.e., @code{reload_in} examines operand 1, but not
4466 the predicates for operand 0 or 2.  Second, there may be only one
4467 alternative in the constraints.  Third, only a single register class
4468 letter may be used for the constraint; subsequent constraint letters
4469 are ignored.  As a special exception, an empty constraint string
4470 matches the @code{ALL_REGS} register class.  This may relieve ports
4471 of the burden of defining an @code{ALL_REGS} constraint letter just
4472 for these patterns.
4474 @cindex @code{movstrict@var{m}} instruction pattern
4475 @item @samp{movstrict@var{m}}
4476 Like @samp{mov@var{m}} except that if operand 0 is a @code{subreg}
4477 with mode @var{m} of a register whose natural mode is wider,
4478 the @samp{movstrict@var{m}} instruction is guaranteed not to alter
4479 any of the register except the part which belongs to mode @var{m}.
4481 @cindex @code{movmisalign@var{m}} instruction pattern
4482 @item @samp{movmisalign@var{m}}
4483 This variant of a move pattern is designed to load or store a value
4484 from a memory address that is not naturally aligned for its mode.
4485 For a store, the memory will be in operand 0; for a load, the memory
4486 will be in operand 1.  The other operand is guaranteed not to be a
4487 memory, so that it's easy to tell whether this is a load or store.
4489 This pattern is used by the autovectorizer, and when expanding a
4490 @code{MISALIGNED_INDIRECT_REF} expression.
4492 @cindex @code{load_multiple} instruction pattern
4493 @item @samp{load_multiple}
4494 Load several consecutive memory locations into consecutive registers.
4495 Operand 0 is the first of the consecutive registers, operand 1
4496 is the first memory location, and operand 2 is a constant: the
4497 number of consecutive registers.
4499 Define this only if the target machine really has such an instruction;
4500 do not define this if the most efficient way of loading consecutive
4501 registers from memory is to do them one at a time.
4503 On some machines, there are restrictions as to which consecutive
4504 registers can be stored into memory, such as particular starting or
4505 ending register numbers or only a range of valid counts.  For those
4506 machines, use a @code{define_expand} (@pxref{Expander Definitions})
4507 and make the pattern fail if the restrictions are not met.
4509 Write the generated insn as a @code{parallel} with elements being a
4510 @code{set} of one register from the appropriate memory location (you may
4511 also need @code{use} or @code{clobber} elements).  Use a
4512 @code{match_parallel} (@pxref{RTL Template}) to recognize the insn.  See
4513 @file{rs6000.md} for examples of the use of this insn pattern.
4515 @cindex @samp{store_multiple} instruction pattern
4516 @item @samp{store_multiple}
4517 Similar to @samp{load_multiple}, but store several consecutive registers
4518 into consecutive memory locations.  Operand 0 is the first of the
4519 consecutive memory locations, operand 1 is the first register, and
4520 operand 2 is a constant: the number of consecutive registers.
4522 @cindex @code{vec_load_lanes@var{m}@var{n}} instruction pattern
4523 @item @samp{vec_load_lanes@var{m}@var{n}}
4524 Perform an interleaved load of several vectors from memory operand 1
4525 into register operand 0.  Both operands have mode @var{m}.  The register
4526 operand is viewed as holding consecutive vectors of mode @var{n},
4527 while the memory operand is a flat array that contains the same number
4528 of elements.  The operation is equivalent to:
4530 @smallexample
4531 int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4532 for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4533   for (i = 0; i < c; i++)
4534     operand0[i][j] = operand1[j * c + i];
4535 @end smallexample
4537 For example, @samp{vec_load_lanestiv4hi} loads 8 16-bit values
4538 from memory into a register of mode @samp{TI}@.  The register
4539 contains two consecutive vectors of mode @samp{V4HI}@.
4541 This pattern can only be used if:
4542 @smallexample
4543 TARGET_ARRAY_MODE_SUPPORTED_P (@var{n}, @var{c})
4544 @end smallexample
4545 is true.  GCC assumes that, if a target supports this kind of
4546 instruction for some mode @var{n}, it also supports unaligned
4547 loads for vectors of mode @var{n}.
4549 @cindex @code{vec_store_lanes@var{m}@var{n}} instruction pattern
4550 @item @samp{vec_store_lanes@var{m}@var{n}}
4551 Equivalent to @samp{vec_load_lanes@var{m}@var{n}}, with the memory
4552 and register operands reversed.  That is, the instruction is
4553 equivalent to:
4555 @smallexample
4556 int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4557 for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4558   for (i = 0; i < c; i++)
4559     operand0[j * c + i] = operand1[i][j];
4560 @end smallexample
4562 for a memory operand 0 and register operand 1.
4564 @cindex @code{vec_set@var{m}} instruction pattern
4565 @item @samp{vec_set@var{m}}
4566 Set given field in the vector value.  Operand 0 is the vector to modify,
4567 operand 1 is new value of field and operand 2 specify the field index.
4569 @cindex @code{vec_extract@var{m}} instruction pattern
4570 @item @samp{vec_extract@var{m}}
4571 Extract given field from the vector value.  Operand 1 is the vector, operand 2
4572 specify field index and operand 0 place to store value into.
4574 @cindex @code{vec_init@var{m}} instruction pattern
4575 @item @samp{vec_init@var{m}}
4576 Initialize the vector to given values.  Operand 0 is the vector to initialize
4577 and operand 1 is parallel containing values for individual fields.
4579 @cindex @code{vcond@var{m}@var{n}} instruction pattern
4580 @item @samp{vcond@var{m}@var{n}}
4581 Output a conditional vector move.  Operand 0 is the destination to
4582 receive a combination of operand 1 and operand 2, which are of mode @var{m},
4583 dependent on the outcome of the predicate in operand 3 which is a
4584 vector comparison with operands of mode @var{n} in operands 4 and 5.  The
4585 modes @var{m} and @var{n} should have the same size.  Operand 0
4586 will be set to the value @var{op1} & @var{msk} | @var{op2} & ~@var{msk}
4587 where @var{msk} is computed by element-wise evaluation of the vector
4588 comparison with a truth value of all-ones and a false value of all-zeros.
4590 @cindex @code{vec_perm@var{m}} instruction pattern
4591 @item @samp{vec_perm@var{m}}
4592 Output a (variable) vector permutation.  Operand 0 is the destination
4593 to receive elements from operand 1 and operand 2, which are of mode
4594 @var{m}.  Operand 3 is the @dfn{selector}.  It is an integral mode
4595 vector of the same width and number of elements as mode @var{m}.
4597 The input elements are numbered from 0 in operand 1 through
4598 @math{2*@var{N}-1} in operand 2.  The elements of the selector must
4599 be computed modulo @math{2*@var{N}}.  Note that if
4600 @code{rtx_equal_p(operand1, operand2)}, this can be implemented
4601 with just operand 1 and selector elements modulo @var{N}.
4603 In order to make things easy for a number of targets, if there is no
4604 @samp{vec_perm} pattern for mode @var{m}, but there is for mode @var{q}
4605 where @var{q} is a vector of @code{QImode} of the same width as @var{m},
4606 the middle-end will lower the mode @var{m} @code{VEC_PERM_EXPR} to
4607 mode @var{q}.
4609 @cindex @code{vec_perm_const@var{m}} instruction pattern
4610 @item @samp{vec_perm_const@var{m}}
4611 Like @samp{vec_perm} except that the permutation is a compile-time
4612 constant.  That is, operand 3, the @dfn{selector}, is a @code{CONST_VECTOR}.
4614 Some targets cannot perform a permutation with a variable selector,
4615 but can efficiently perform a constant permutation.  Further, the
4616 target hook @code{vec_perm_ok} is queried to determine if the 
4617 specific constant permutation is available efficiently; the named
4618 pattern is never expanded without @code{vec_perm_ok} returning true.
4620 There is no need for a target to supply both @samp{vec_perm@var{m}}
4621 and @samp{vec_perm_const@var{m}} if the former can trivially implement
4622 the operation with, say, the vector constant loaded into a register.
4624 @cindex @code{push@var{m}1} instruction pattern
4625 @item @samp{push@var{m}1}
4626 Output a push instruction.  Operand 0 is value to push.  Used only when
4627 @code{PUSH_ROUNDING} is defined.  For historical reason, this pattern may be
4628 missing and in such case an @code{mov} expander is used instead, with a
4629 @code{MEM} expression forming the push operation.  The @code{mov} expander
4630 method is deprecated.
4632 @cindex @code{add@var{m}3} instruction pattern
4633 @item @samp{add@var{m}3}
4634 Add operand 2 and operand 1, storing the result in operand 0.  All operands
4635 must have mode @var{m}.  This can be used even on two-address machines, by
4636 means of constraints requiring operands 1 and 0 to be the same location.
4638 @cindex @code{addptr@var{m}3} instruction pattern
4639 @item @samp{addptr@var{m}3}
4640 Like @code{add@var{m}3} but is guaranteed to only be used for address
4641 calculations.  The expanded code is not allowed to clobber the
4642 condition code.  It only needs to be defined if @code{add@var{m}3}
4643 sets the condition code.  If adds used for address calculations and
4644 normal adds are not compatible it is required to expand a distinct
4645 pattern (e.g. using an unspec).  The pattern is used by LRA to emit
4646 address calculations.  @code{add@var{m}3} is used if
4647 @code{addptr@var{m}3} is not defined.
4649 @cindex @code{ssadd@var{m}3} instruction pattern
4650 @cindex @code{usadd@var{m}3} instruction pattern
4651 @cindex @code{sub@var{m}3} instruction pattern
4652 @cindex @code{sssub@var{m}3} instruction pattern
4653 @cindex @code{ussub@var{m}3} instruction pattern
4654 @cindex @code{mul@var{m}3} instruction pattern
4655 @cindex @code{ssmul@var{m}3} instruction pattern
4656 @cindex @code{usmul@var{m}3} instruction pattern
4657 @cindex @code{div@var{m}3} instruction pattern
4658 @cindex @code{ssdiv@var{m}3} instruction pattern
4659 @cindex @code{udiv@var{m}3} instruction pattern
4660 @cindex @code{usdiv@var{m}3} instruction pattern
4661 @cindex @code{mod@var{m}3} instruction pattern
4662 @cindex @code{umod@var{m}3} instruction pattern
4663 @cindex @code{umin@var{m}3} instruction pattern
4664 @cindex @code{umax@var{m}3} instruction pattern
4665 @cindex @code{and@var{m}3} instruction pattern
4666 @cindex @code{ior@var{m}3} instruction pattern
4667 @cindex @code{xor@var{m}3} instruction pattern
4668 @item @samp{ssadd@var{m}3}, @samp{usadd@var{m}3}
4669 @itemx @samp{sub@var{m}3}, @samp{sssub@var{m}3}, @samp{ussub@var{m}3}
4670 @itemx @samp{mul@var{m}3}, @samp{ssmul@var{m}3}, @samp{usmul@var{m}3}
4671 @itemx @samp{div@var{m}3}, @samp{ssdiv@var{m}3}
4672 @itemx @samp{udiv@var{m}3}, @samp{usdiv@var{m}3}
4673 @itemx @samp{mod@var{m}3}, @samp{umod@var{m}3}
4674 @itemx @samp{umin@var{m}3}, @samp{umax@var{m}3}
4675 @itemx @samp{and@var{m}3}, @samp{ior@var{m}3}, @samp{xor@var{m}3}
4676 Similar, for other arithmetic operations.
4678 @cindex @code{fma@var{m}4} instruction pattern
4679 @item @samp{fma@var{m}4}
4680 Multiply operand 2 and operand 1, then add operand 3, storing the
4681 result in operand 0 without doing an intermediate rounding step.  All
4682 operands must have mode @var{m}.  This pattern is used to implement
4683 the @code{fma}, @code{fmaf}, and @code{fmal} builtin functions from
4684 the ISO C99 standard.
4686 @cindex @code{fms@var{m}4} instruction pattern
4687 @item @samp{fms@var{m}4}
4688 Like @code{fma@var{m}4}, except operand 3 subtracted from the
4689 product instead of added to the product.  This is represented
4690 in the rtl as
4692 @smallexample
4693 (fma:@var{m} @var{op1} @var{op2} (neg:@var{m} @var{op3}))
4694 @end smallexample
4696 @cindex @code{fnma@var{m}4} instruction pattern
4697 @item @samp{fnma@var{m}4}
4698 Like @code{fma@var{m}4} except that the intermediate product
4699 is negated before being added to operand 3.  This is represented
4700 in the rtl as
4702 @smallexample
4703 (fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} @var{op3})
4704 @end smallexample
4706 @cindex @code{fnms@var{m}4} instruction pattern
4707 @item @samp{fnms@var{m}4}
4708 Like @code{fms@var{m}4} except that the intermediate product
4709 is negated before subtracting operand 3.  This is represented
4710 in the rtl as
4712 @smallexample
4713 (fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} (neg:@var{m} @var{op3}))
4714 @end smallexample
4716 @cindex @code{min@var{m}3} instruction pattern
4717 @cindex @code{max@var{m}3} instruction pattern
4718 @item @samp{smin@var{m}3}, @samp{smax@var{m}3}
4719 Signed minimum and maximum operations.  When used with floating point,
4720 if both operands are zeros, or if either operand is @code{NaN}, then
4721 it is unspecified which of the two operands is returned as the result.
4723 @cindex @code{reduc_smin_@var{m}} instruction pattern
4724 @cindex @code{reduc_smax_@var{m}} instruction pattern
4725 @item @samp{reduc_smin_@var{m}}, @samp{reduc_smax_@var{m}}
4726 Find the signed minimum/maximum of the elements of a vector. The vector is
4727 operand 1, and the result is stored in the least significant bits of
4728 operand 0 (also a vector). The output and input vector should have the same
4729 modes. These are legacy optabs, and platforms should prefer to implement
4730 @samp{reduc_smin_scal_@var{m}} and @samp{reduc_smax_scal_@var{m}}.
4732 @cindex @code{reduc_umin_@var{m}} instruction pattern
4733 @cindex @code{reduc_umax_@var{m}} instruction pattern
4734 @item @samp{reduc_umin_@var{m}}, @samp{reduc_umax_@var{m}}
4735 Find the unsigned minimum/maximum of the elements of a vector. The vector is
4736 operand 1, and the result is stored in the least significant bits of
4737 operand 0 (also a vector). The output and input vector should have the same
4738 modes. These are legacy optabs, and platforms should prefer to implement
4739 @samp{reduc_umin_scal_@var{m}} and @samp{reduc_umax_scal_@var{m}}.
4741 @cindex @code{reduc_splus_@var{m}} instruction pattern
4742 @cindex @code{reduc_uplus_@var{m}} instruction pattern
4743 @item @samp{reduc_splus_@var{m}}, @samp{reduc_uplus_@var{m}}
4744 Compute the sum of the signed/unsigned elements of a vector. The vector is
4745 operand 1, and the result is stored in the least significant bits of operand 0
4746 (also a vector). The output and input vector should have the same modes.
4747 These are legacy optabs, and platforms should prefer to implement
4748 @samp{reduc_plus_scal_@var{m}}.
4750 @cindex @code{reduc_smin_scal_@var{m}} instruction pattern
4751 @cindex @code{reduc_smax_scal_@var{m}} instruction pattern
4752 @item @samp{reduc_smin_scal_@var{m}}, @samp{reduc_smax_scal_@var{m}}
4753 Find the signed minimum/maximum of the elements of a vector. The vector is
4754 operand 1, and operand 0 is the scalar result, with mode equal to the mode of
4755 the elements of the input vector.
4757 @cindex @code{reduc_umin_scal_@var{m}} instruction pattern
4758 @cindex @code{reduc_umax_scal_@var{m}} instruction pattern
4759 @item @samp{reduc_umin_scal_@var{m}}, @samp{reduc_umax_scal_@var{m}}
4760 Find the unsigned minimum/maximum of the elements of a vector. The vector is
4761 operand 1, and operand 0 is the scalar result, with mode equal to the mode of
4762 the elements of the input vector.
4764 @cindex @code{reduc_plus_scal_@var{m}} instruction pattern
4765 @item @samp{reduc_plus_scal_@var{m}}
4766 Compute the sum of the elements of a vector. The vector is operand 1, and
4767 operand 0 is the scalar result, with mode equal to the mode of the elements of
4768 the input vector.
4770 @cindex @code{sdot_prod@var{m}} instruction pattern
4771 @item @samp{sdot_prod@var{m}}
4772 @cindex @code{udot_prod@var{m}} instruction pattern
4773 @itemx @samp{udot_prod@var{m}}
4774 Compute the sum of the products of two signed/unsigned elements.
4775 Operand 1 and operand 2 are of the same mode. Their product, which is of a
4776 wider mode, is computed and added to operand 3. Operand 3 is of a mode equal or
4777 wider than the mode of the product. The result is placed in operand 0, which
4778 is of the same mode as operand 3.
4780 @cindex @code{ssad@var{m}} instruction pattern
4781 @item @samp{ssad@var{m}}
4782 @cindex @code{usad@var{m}} instruction pattern
4783 @item @samp{usad@var{m}}
4784 Compute the sum of absolute differences of two signed/unsigned elements.
4785 Operand 1 and operand 2 are of the same mode. Their absolute difference, which
4786 is of a wider mode, is computed and added to operand 3. Operand 3 is of a mode
4787 equal or wider than the mode of the absolute difference. The result is placed
4788 in operand 0, which is of the same mode as operand 3.
4790 @cindex @code{ssum_widen@var{m3}} instruction pattern
4791 @item @samp{ssum_widen@var{m3}}
4792 @cindex @code{usum_widen@var{m3}} instruction pattern
4793 @itemx @samp{usum_widen@var{m3}}
4794 Operands 0 and 2 are of the same mode, which is wider than the mode of
4795 operand 1. Add operand 1 to operand 2 and place the widened result in
4796 operand 0. (This is used express accumulation of elements into an accumulator
4797 of a wider mode.)
4799 @cindex @code{vec_shr_@var{m}} instruction pattern
4800 @item @samp{vec_shr_@var{m}}
4801 Whole vector right shift in bits, i.e. towards element 0.
4802 Operand 1 is a vector to be shifted.
4803 Operand 2 is an integer shift amount in bits.
4804 Operand 0 is where the resulting shifted vector is stored.
4805 The output and input vectors should have the same modes.
4807 @cindex @code{vec_pack_trunc_@var{m}} instruction pattern
4808 @item @samp{vec_pack_trunc_@var{m}}
4809 Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
4810 are vectors of the same mode having N integral or floating point elements
4811 of size S@.  Operand 0 is the resulting vector in which 2*N elements of
4812 size N/2 are concatenated after narrowing them down using truncation.
4814 @cindex @code{vec_pack_ssat_@var{m}} instruction pattern
4815 @cindex @code{vec_pack_usat_@var{m}} instruction pattern
4816 @item @samp{vec_pack_ssat_@var{m}}, @samp{vec_pack_usat_@var{m}}
4817 Narrow (demote) and merge the elements of two vectors.  Operands 1 and 2
4818 are vectors of the same mode having N integral elements of size S.
4819 Operand 0 is the resulting vector in which the elements of the two input
4820 vectors are concatenated after narrowing them down using signed/unsigned
4821 saturating arithmetic.
4823 @cindex @code{vec_pack_sfix_trunc_@var{m}} instruction pattern
4824 @cindex @code{vec_pack_ufix_trunc_@var{m}} instruction pattern
4825 @item @samp{vec_pack_sfix_trunc_@var{m}}, @samp{vec_pack_ufix_trunc_@var{m}}
4826 Narrow, convert to signed/unsigned integral type and merge the elements
4827 of two vectors.  Operands 1 and 2 are vectors of the same mode having N
4828 floating point elements of size S@.  Operand 0 is the resulting vector
4829 in which 2*N elements of size N/2 are concatenated.
4831 @cindex @code{vec_unpacks_hi_@var{m}} instruction pattern
4832 @cindex @code{vec_unpacks_lo_@var{m}} instruction pattern
4833 @item @samp{vec_unpacks_hi_@var{m}}, @samp{vec_unpacks_lo_@var{m}}
4834 Extract and widen (promote) the high/low part of a vector of signed
4835 integral or floating point elements.  The input vector (operand 1) has N
4836 elements of size S@.  Widen (promote) the high/low elements of the vector
4837 using signed or floating point extension and place the resulting N/2
4838 values of size 2*S in the output vector (operand 0).
4840 @cindex @code{vec_unpacku_hi_@var{m}} instruction pattern
4841 @cindex @code{vec_unpacku_lo_@var{m}} instruction pattern
4842 @item @samp{vec_unpacku_hi_@var{m}}, @samp{vec_unpacku_lo_@var{m}}
4843 Extract and widen (promote) the high/low part of a vector of unsigned
4844 integral elements.  The input vector (operand 1) has N elements of size S.
4845 Widen (promote) the high/low elements of the vector using zero extension and
4846 place the resulting N/2 values of size 2*S in the output vector (operand 0).
4848 @cindex @code{vec_unpacks_float_hi_@var{m}} instruction pattern
4849 @cindex @code{vec_unpacks_float_lo_@var{m}} instruction pattern
4850 @cindex @code{vec_unpacku_float_hi_@var{m}} instruction pattern
4851 @cindex @code{vec_unpacku_float_lo_@var{m}} instruction pattern
4852 @item @samp{vec_unpacks_float_hi_@var{m}}, @samp{vec_unpacks_float_lo_@var{m}}
4853 @itemx @samp{vec_unpacku_float_hi_@var{m}}, @samp{vec_unpacku_float_lo_@var{m}}
4854 Extract, convert to floating point type and widen the high/low part of a
4855 vector of signed/unsigned integral elements.  The input vector (operand 1)
4856 has N elements of size S@.  Convert the high/low elements of the vector using
4857 floating point conversion and place the resulting N/2 values of size 2*S in
4858 the output vector (operand 0).
4860 @cindex @code{vec_widen_umult_hi_@var{m}} instruction pattern
4861 @cindex @code{vec_widen_umult_lo_@var{m}} instruction pattern
4862 @cindex @code{vec_widen_smult_hi_@var{m}} instruction pattern
4863 @cindex @code{vec_widen_smult_lo_@var{m}} instruction pattern
4864 @cindex @code{vec_widen_umult_even_@var{m}} instruction pattern
4865 @cindex @code{vec_widen_umult_odd_@var{m}} instruction pattern
4866 @cindex @code{vec_widen_smult_even_@var{m}} instruction pattern
4867 @cindex @code{vec_widen_smult_odd_@var{m}} instruction pattern
4868 @item @samp{vec_widen_umult_hi_@var{m}}, @samp{vec_widen_umult_lo_@var{m}}
4869 @itemx @samp{vec_widen_smult_hi_@var{m}}, @samp{vec_widen_smult_lo_@var{m}}
4870 @itemx @samp{vec_widen_umult_even_@var{m}}, @samp{vec_widen_umult_odd_@var{m}}
4871 @itemx @samp{vec_widen_smult_even_@var{m}}, @samp{vec_widen_smult_odd_@var{m}}
4872 Signed/Unsigned widening multiplication.  The two inputs (operands 1 and 2)
4873 are vectors with N signed/unsigned elements of size S@.  Multiply the high/low
4874 or even/odd elements of the two vectors, and put the N/2 products of size 2*S
4875 in the output vector (operand 0). A target shouldn't implement even/odd pattern
4876 pair if it is less efficient than lo/hi one.
4878 @cindex @code{vec_widen_ushiftl_hi_@var{m}} instruction pattern
4879 @cindex @code{vec_widen_ushiftl_lo_@var{m}} instruction pattern
4880 @cindex @code{vec_widen_sshiftl_hi_@var{m}} instruction pattern
4881 @cindex @code{vec_widen_sshiftl_lo_@var{m}} instruction pattern
4882 @item @samp{vec_widen_ushiftl_hi_@var{m}}, @samp{vec_widen_ushiftl_lo_@var{m}}
4883 @itemx @samp{vec_widen_sshiftl_hi_@var{m}}, @samp{vec_widen_sshiftl_lo_@var{m}}
4884 Signed/Unsigned widening shift left.  The first input (operand 1) is a vector
4885 with N signed/unsigned elements of size S@.  Operand 2 is a constant.  Shift
4886 the high/low elements of operand 1, and put the N/2 results of size 2*S in the
4887 output vector (operand 0).
4889 @cindex @code{mulhisi3} instruction pattern
4890 @item @samp{mulhisi3}
4891 Multiply operands 1 and 2, which have mode @code{HImode}, and store
4892 a @code{SImode} product in operand 0.
4894 @cindex @code{mulqihi3} instruction pattern
4895 @cindex @code{mulsidi3} instruction pattern
4896 @item @samp{mulqihi3}, @samp{mulsidi3}
4897 Similar widening-multiplication instructions of other widths.
4899 @cindex @code{umulqihi3} instruction pattern
4900 @cindex @code{umulhisi3} instruction pattern
4901 @cindex @code{umulsidi3} instruction pattern
4902 @item @samp{umulqihi3}, @samp{umulhisi3}, @samp{umulsidi3}
4903 Similar widening-multiplication instructions that do unsigned
4904 multiplication.
4906 @cindex @code{usmulqihi3} instruction pattern
4907 @cindex @code{usmulhisi3} instruction pattern
4908 @cindex @code{usmulsidi3} instruction pattern
4909 @item @samp{usmulqihi3}, @samp{usmulhisi3}, @samp{usmulsidi3}
4910 Similar widening-multiplication instructions that interpret the first
4911 operand as unsigned and the second operand as signed, then do a signed
4912 multiplication.
4914 @cindex @code{smul@var{m}3_highpart} instruction pattern
4915 @item @samp{smul@var{m}3_highpart}
4916 Perform a signed multiplication of operands 1 and 2, which have mode
4917 @var{m}, and store the most significant half of the product in operand 0.
4918 The least significant half of the product is discarded.
4920 @cindex @code{umul@var{m}3_highpart} instruction pattern
4921 @item @samp{umul@var{m}3_highpart}
4922 Similar, but the multiplication is unsigned.
4924 @cindex @code{madd@var{m}@var{n}4} instruction pattern
4925 @item @samp{madd@var{m}@var{n}4}
4926 Multiply operands 1 and 2, sign-extend them to mode @var{n}, add
4927 operand 3, and store the result in operand 0.  Operands 1 and 2
4928 have mode @var{m} and operands 0 and 3 have mode @var{n}.
4929 Both modes must be integer or fixed-point modes and @var{n} must be twice
4930 the size of @var{m}.
4932 In other words, @code{madd@var{m}@var{n}4} is like
4933 @code{mul@var{m}@var{n}3} except that it also adds operand 3.
4935 These instructions are not allowed to @code{FAIL}.
4937 @cindex @code{umadd@var{m}@var{n}4} instruction pattern
4938 @item @samp{umadd@var{m}@var{n}4}
4939 Like @code{madd@var{m}@var{n}4}, but zero-extend the multiplication
4940 operands instead of sign-extending them.
4942 @cindex @code{ssmadd@var{m}@var{n}4} instruction pattern
4943 @item @samp{ssmadd@var{m}@var{n}4}
4944 Like @code{madd@var{m}@var{n}4}, but all involved operations must be
4945 signed-saturating.
4947 @cindex @code{usmadd@var{m}@var{n}4} instruction pattern
4948 @item @samp{usmadd@var{m}@var{n}4}
4949 Like @code{umadd@var{m}@var{n}4}, but all involved operations must be
4950 unsigned-saturating.
4952 @cindex @code{msub@var{m}@var{n}4} instruction pattern
4953 @item @samp{msub@var{m}@var{n}4}
4954 Multiply operands 1 and 2, sign-extend them to mode @var{n}, subtract the
4955 result from operand 3, and store the result in operand 0.  Operands 1 and 2
4956 have mode @var{m} and operands 0 and 3 have mode @var{n}.
4957 Both modes must be integer or fixed-point modes and @var{n} must be twice
4958 the size of @var{m}.
4960 In other words, @code{msub@var{m}@var{n}4} is like
4961 @code{mul@var{m}@var{n}3} except that it also subtracts the result
4962 from operand 3.
4964 These instructions are not allowed to @code{FAIL}.
4966 @cindex @code{umsub@var{m}@var{n}4} instruction pattern
4967 @item @samp{umsub@var{m}@var{n}4}
4968 Like @code{msub@var{m}@var{n}4}, but zero-extend the multiplication
4969 operands instead of sign-extending them.
4971 @cindex @code{ssmsub@var{m}@var{n}4} instruction pattern
4972 @item @samp{ssmsub@var{m}@var{n}4}
4973 Like @code{msub@var{m}@var{n}4}, but all involved operations must be
4974 signed-saturating.
4976 @cindex @code{usmsub@var{m}@var{n}4} instruction pattern
4977 @item @samp{usmsub@var{m}@var{n}4}
4978 Like @code{umsub@var{m}@var{n}4}, but all involved operations must be
4979 unsigned-saturating.
4981 @cindex @code{divmod@var{m}4} instruction pattern
4982 @item @samp{divmod@var{m}4}
4983 Signed division that produces both a quotient and a remainder.
4984 Operand 1 is divided by operand 2 to produce a quotient stored
4985 in operand 0 and a remainder stored in operand 3.
4987 For machines with an instruction that produces both a quotient and a
4988 remainder, provide a pattern for @samp{divmod@var{m}4} but do not
4989 provide patterns for @samp{div@var{m}3} and @samp{mod@var{m}3}.  This
4990 allows optimization in the relatively common case when both the quotient
4991 and remainder are computed.
4993 If an instruction that just produces a quotient or just a remainder
4994 exists and is more efficient than the instruction that produces both,
4995 write the output routine of @samp{divmod@var{m}4} to call
4996 @code{find_reg_note} and look for a @code{REG_UNUSED} note on the
4997 quotient or remainder and generate the appropriate instruction.
4999 @cindex @code{udivmod@var{m}4} instruction pattern
5000 @item @samp{udivmod@var{m}4}
5001 Similar, but does unsigned division.
5003 @anchor{shift patterns}
5004 @cindex @code{ashl@var{m}3} instruction pattern
5005 @cindex @code{ssashl@var{m}3} instruction pattern
5006 @cindex @code{usashl@var{m}3} instruction pattern
5007 @item @samp{ashl@var{m}3}, @samp{ssashl@var{m}3}, @samp{usashl@var{m}3}
5008 Arithmetic-shift operand 1 left by a number of bits specified by operand
5009 2, and store the result in operand 0.  Here @var{m} is the mode of
5010 operand 0 and operand 1; operand 2's mode is specified by the
5011 instruction pattern, and the compiler will convert the operand to that
5012 mode before generating the instruction.  The meaning of out-of-range shift
5013 counts can optionally be specified by @code{TARGET_SHIFT_TRUNCATION_MASK}.
5014 @xref{TARGET_SHIFT_TRUNCATION_MASK}.  Operand 2 is always a scalar type.
5016 @cindex @code{ashr@var{m}3} instruction pattern
5017 @cindex @code{lshr@var{m}3} instruction pattern
5018 @cindex @code{rotl@var{m}3} instruction pattern
5019 @cindex @code{rotr@var{m}3} instruction pattern
5020 @item @samp{ashr@var{m}3}, @samp{lshr@var{m}3}, @samp{rotl@var{m}3}, @samp{rotr@var{m}3}
5021 Other shift and rotate instructions, analogous to the
5022 @code{ashl@var{m}3} instructions.  Operand 2 is always a scalar type.
5024 @cindex @code{vashl@var{m}3} instruction pattern
5025 @cindex @code{vashr@var{m}3} instruction pattern
5026 @cindex @code{vlshr@var{m}3} instruction pattern
5027 @cindex @code{vrotl@var{m}3} instruction pattern
5028 @cindex @code{vrotr@var{m}3} instruction pattern
5029 @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}
5030 Vector shift and rotate instructions that take vectors as operand 2
5031 instead of a scalar type.
5033 @cindex @code{bswap@var{m}2} instruction pattern
5034 @item @samp{bswap@var{m}2}
5035 Reverse the order of bytes of operand 1 and store the result in operand 0.
5037 @cindex @code{neg@var{m}2} instruction pattern
5038 @cindex @code{ssneg@var{m}2} instruction pattern
5039 @cindex @code{usneg@var{m}2} instruction pattern
5040 @item @samp{neg@var{m}2}, @samp{ssneg@var{m}2}, @samp{usneg@var{m}2}
5041 Negate operand 1 and store the result in operand 0.
5043 @cindex @code{abs@var{m}2} instruction pattern
5044 @item @samp{abs@var{m}2}
5045 Store the absolute value of operand 1 into operand 0.
5047 @cindex @code{sqrt@var{m}2} instruction pattern
5048 @item @samp{sqrt@var{m}2}
5049 Store the square root of operand 1 into operand 0.
5051 The @code{sqrt} built-in function of C always uses the mode which
5052 corresponds to the C data type @code{double} and the @code{sqrtf}
5053 built-in function uses the mode which corresponds to the C data
5054 type @code{float}.
5056 @cindex @code{fmod@var{m}3} instruction pattern
5057 @item @samp{fmod@var{m}3}
5058 Store the remainder of dividing operand 1 by operand 2 into
5059 operand 0, rounded towards zero to an integer.
5061 The @code{fmod} built-in function of C always uses the mode which
5062 corresponds to the C data type @code{double} and the @code{fmodf}
5063 built-in function uses the mode which corresponds to the C data
5064 type @code{float}.
5066 @cindex @code{remainder@var{m}3} instruction pattern
5067 @item @samp{remainder@var{m}3}
5068 Store the remainder of dividing operand 1 by operand 2 into
5069 operand 0, rounded to the nearest integer.
5071 The @code{remainder} built-in function of C always uses the mode
5072 which corresponds to the C data type @code{double} and the
5073 @code{remainderf} built-in function uses the mode which corresponds
5074 to the C data type @code{float}.
5076 @cindex @code{cos@var{m}2} instruction pattern
5077 @item @samp{cos@var{m}2}
5078 Store the cosine of operand 1 into operand 0.
5080 The @code{cos} built-in function of C always uses the mode which
5081 corresponds to the C data type @code{double} and the @code{cosf}
5082 built-in function uses the mode which corresponds to the C data
5083 type @code{float}.
5085 @cindex @code{sin@var{m}2} instruction pattern
5086 @item @samp{sin@var{m}2}
5087 Store the sine of operand 1 into operand 0.
5089 The @code{sin} built-in function of C always uses the mode which
5090 corresponds to the C data type @code{double} and the @code{sinf}
5091 built-in function uses the mode which corresponds to the C data
5092 type @code{float}.
5094 @cindex @code{sincos@var{m}3} instruction pattern
5095 @item @samp{sincos@var{m}3}
5096 Store the cosine of operand 2 into operand 0 and the sine of
5097 operand 2 into operand 1.
5099 The @code{sin} and @code{cos} built-in functions of C always use the
5100 mode which corresponds to the C data type @code{double} and the
5101 @code{sinf} and @code{cosf} built-in function use the mode which
5102 corresponds to the C data type @code{float}.
5103 Targets that can calculate the sine and cosine simultaneously can
5104 implement this pattern as opposed to implementing individual
5105 @code{sin@var{m}2} and @code{cos@var{m}2} patterns.  The @code{sin}
5106 and @code{cos} built-in functions will then be expanded to the
5107 @code{sincos@var{m}3} pattern, with one of the output values
5108 left unused.
5110 @cindex @code{exp@var{m}2} instruction pattern
5111 @item @samp{exp@var{m}2}
5112 Store the exponential of operand 1 into operand 0.
5114 The @code{exp} built-in function of C always uses the mode which
5115 corresponds to the C data type @code{double} and the @code{expf}
5116 built-in function uses the mode which corresponds to the C data
5117 type @code{float}.
5119 @cindex @code{log@var{m}2} instruction pattern
5120 @item @samp{log@var{m}2}
5121 Store the natural logarithm of operand 1 into operand 0.
5123 The @code{log} built-in function of C always uses the mode which
5124 corresponds to the C data type @code{double} and the @code{logf}
5125 built-in function uses the mode which corresponds to the C data
5126 type @code{float}.
5128 @cindex @code{pow@var{m}3} instruction pattern
5129 @item @samp{pow@var{m}3}
5130 Store the value of operand 1 raised to the exponent operand 2
5131 into operand 0.
5133 The @code{pow} built-in function of C always uses the mode which
5134 corresponds to the C data type @code{double} and the @code{powf}
5135 built-in function uses the mode which corresponds to the C data
5136 type @code{float}.
5138 @cindex @code{atan2@var{m}3} instruction pattern
5139 @item @samp{atan2@var{m}3}
5140 Store the arc tangent (inverse tangent) of operand 1 divided by
5141 operand 2 into operand 0, using the signs of both arguments to
5142 determine the quadrant of the result.
5144 The @code{atan2} built-in function of C always uses the mode which
5145 corresponds to the C data type @code{double} and the @code{atan2f}
5146 built-in function uses the mode which corresponds to the C data
5147 type @code{float}.
5149 @cindex @code{floor@var{m}2} instruction pattern
5150 @item @samp{floor@var{m}2}
5151 Store the largest integral value not greater than argument.
5153 The @code{floor} built-in function of C always uses the mode which
5154 corresponds to the C data type @code{double} and the @code{floorf}
5155 built-in function uses the mode which corresponds to the C data
5156 type @code{float}.
5158 @cindex @code{btrunc@var{m}2} instruction pattern
5159 @item @samp{btrunc@var{m}2}
5160 Store the argument rounded to integer towards zero.
5162 The @code{trunc} built-in function of C always uses the mode which
5163 corresponds to the C data type @code{double} and the @code{truncf}
5164 built-in function uses the mode which corresponds to the C data
5165 type @code{float}.
5167 @cindex @code{round@var{m}2} instruction pattern
5168 @item @samp{round@var{m}2}
5169 Store the argument rounded to integer away from zero.
5171 The @code{round} built-in function of C always uses the mode which
5172 corresponds to the C data type @code{double} and the @code{roundf}
5173 built-in function uses the mode which corresponds to the C data
5174 type @code{float}.
5176 @cindex @code{ceil@var{m}2} instruction pattern
5177 @item @samp{ceil@var{m}2}
5178 Store the argument rounded to integer away from zero.
5180 The @code{ceil} built-in function of C always uses the mode which
5181 corresponds to the C data type @code{double} and the @code{ceilf}
5182 built-in function uses the mode which corresponds to the C data
5183 type @code{float}.
5185 @cindex @code{nearbyint@var{m}2} instruction pattern
5186 @item @samp{nearbyint@var{m}2}
5187 Store the argument rounded according to the default rounding mode
5189 The @code{nearbyint} built-in function of C always uses the mode which
5190 corresponds to the C data type @code{double} and the @code{nearbyintf}
5191 built-in function uses the mode which corresponds to the C data
5192 type @code{float}.
5194 @cindex @code{rint@var{m}2} instruction pattern
5195 @item @samp{rint@var{m}2}
5196 Store the argument rounded according to the default rounding mode and
5197 raise the inexact exception when the result differs in value from
5198 the argument
5200 The @code{rint} built-in function of C always uses the mode which
5201 corresponds to the C data type @code{double} and the @code{rintf}
5202 built-in function uses the mode which corresponds to the C data
5203 type @code{float}.
5205 @cindex @code{lrint@var{m}@var{n}2}
5206 @item @samp{lrint@var{m}@var{n}2}
5207 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5208 point mode @var{n} as a signed number according to the current
5209 rounding mode and store in operand 0 (which has mode @var{n}).
5211 @cindex @code{lround@var{m}@var{n}2}
5212 @item @samp{lround@var{m}@var{n}2}
5213 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5214 point mode @var{n} as a signed number rounding to nearest and away
5215 from zero and store in operand 0 (which has mode @var{n}).
5217 @cindex @code{lfloor@var{m}@var{n}2}
5218 @item @samp{lfloor@var{m}@var{n}2}
5219 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5220 point mode @var{n} as a signed number rounding down and store in
5221 operand 0 (which has mode @var{n}).
5223 @cindex @code{lceil@var{m}@var{n}2}
5224 @item @samp{lceil@var{m}@var{n}2}
5225 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5226 point mode @var{n} as a signed number rounding up and store in
5227 operand 0 (which has mode @var{n}).
5229 @cindex @code{copysign@var{m}3} instruction pattern
5230 @item @samp{copysign@var{m}3}
5231 Store a value with the magnitude of operand 1 and the sign of operand
5232 2 into operand 0.
5234 The @code{copysign} built-in function of C always uses the mode which
5235 corresponds to the C data type @code{double} and the @code{copysignf}
5236 built-in function uses the mode which corresponds to the C data
5237 type @code{float}.
5239 @cindex @code{ffs@var{m}2} instruction pattern
5240 @item @samp{ffs@var{m}2}
5241 Store into operand 0 one plus the index of the least significant 1-bit
5242 of operand 1.  If operand 1 is zero, store zero.  @var{m} is the mode
5243 of operand 0; operand 1's mode is specified by the instruction
5244 pattern, and the compiler will convert the operand to that mode before
5245 generating the instruction.
5247 The @code{ffs} built-in function of C always uses the mode which
5248 corresponds to the C data type @code{int}.
5250 @cindex @code{clrsb@var{m}2} instruction pattern
5251 @item @samp{clrsb@var{m}2}
5252 Count leading redundant sign bits.
5253 Store into operand 0 the number of redundant sign bits in operand 1, starting
5254 at the most significant bit position.
5255 A redundant sign bit is defined as any sign bit after the first. As such,
5256 this count will be one less than the count of leading sign bits.
5258 @cindex @code{clz@var{m}2} instruction pattern
5259 @item @samp{clz@var{m}2}
5260 Store into operand 0 the number of leading 0-bits in operand 1, starting
5261 at the most significant bit position.  If operand 1 is 0, the
5262 @code{CLZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
5263 the result is undefined or has a useful value.
5264 @var{m} is the mode of operand 0; operand 1's mode is
5265 specified by the instruction pattern, and the compiler will convert the
5266 operand to that mode before generating the instruction.
5268 @cindex @code{ctz@var{m}2} instruction pattern
5269 @item @samp{ctz@var{m}2}
5270 Store into operand 0 the number of trailing 0-bits in operand 1, starting
5271 at the least significant bit position.  If operand 1 is 0, the
5272 @code{CTZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
5273 the result is undefined or has a useful value.
5274 @var{m} is the mode of operand 0; operand 1's mode is
5275 specified by the instruction pattern, and the compiler will convert the
5276 operand to that mode before generating the instruction.
5278 @cindex @code{popcount@var{m}2} instruction pattern
5279 @item @samp{popcount@var{m}2}
5280 Store into operand 0 the number of 1-bits in operand 1.  @var{m} is the
5281 mode of operand 0; operand 1's mode is specified by the instruction
5282 pattern, and the compiler will convert the operand to that mode before
5283 generating the instruction.
5285 @cindex @code{parity@var{m}2} instruction pattern
5286 @item @samp{parity@var{m}2}
5287 Store into operand 0 the parity of operand 1, i.e.@: the number of 1-bits
5288 in operand 1 modulo 2.  @var{m} is the mode of operand 0; operand 1's mode
5289 is specified by the instruction pattern, and the compiler will convert
5290 the operand to that mode before generating the instruction.
5292 @cindex @code{one_cmpl@var{m}2} instruction pattern
5293 @item @samp{one_cmpl@var{m}2}
5294 Store the bitwise-complement of operand 1 into operand 0.
5296 @cindex @code{movmem@var{m}} instruction pattern
5297 @item @samp{movmem@var{m}}
5298 Block move instruction.  The destination and source blocks of memory
5299 are the first two operands, and both are @code{mem:BLK}s with an
5300 address in mode @code{Pmode}.
5302 The number of bytes to move is the third operand, in mode @var{m}.
5303 Usually, you specify @code{Pmode} for @var{m}.  However, if you can
5304 generate better code knowing the range of valid lengths is smaller than
5305 those representable in a full Pmode pointer, you should provide
5306 a pattern with a
5307 mode corresponding to the range of values you can handle efficiently
5308 (e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
5309 that appear negative) and also a pattern with @code{Pmode}.
5311 The fourth operand is the known shared alignment of the source and
5312 destination, in the form of a @code{const_int} rtx.  Thus, if the
5313 compiler knows that both source and destination are word-aligned,
5314 it may provide the value 4 for this operand.
5316 Optional operands 5 and 6 specify expected alignment and size of block
5317 respectively.  The expected alignment differs from alignment in operand 4
5318 in a way that the blocks are not required to be aligned according to it in
5319 all cases. This expected alignment is also in bytes, just like operand 4.
5320 Expected size, when unknown, is set to @code{(const_int -1)}.
5322 Descriptions of multiple @code{movmem@var{m}} patterns can only be
5323 beneficial if the patterns for smaller modes have fewer restrictions
5324 on their first, second and fourth operands.  Note that the mode @var{m}
5325 in @code{movmem@var{m}} does not impose any restriction on the mode of
5326 individually moved data units in the block.
5328 These patterns need not give special consideration to the possibility
5329 that the source and destination strings might overlap.
5331 @cindex @code{movstr} instruction pattern
5332 @item @samp{movstr}
5333 String copy instruction, with @code{stpcpy} semantics.  Operand 0 is
5334 an output operand in mode @code{Pmode}.  The addresses of the
5335 destination and source strings are operands 1 and 2, and both are
5336 @code{mem:BLK}s with addresses in mode @code{Pmode}.  The execution of
5337 the expansion of this pattern should store in operand 0 the address in
5338 which the @code{NUL} terminator was stored in the destination string.
5340 This patern has also several optional operands that are same as in
5341 @code{setmem}.
5343 @cindex @code{setmem@var{m}} instruction pattern
5344 @item @samp{setmem@var{m}}
5345 Block set instruction.  The destination string is the first operand,
5346 given as a @code{mem:BLK} whose address is in mode @code{Pmode}.  The
5347 number of bytes to set is the second operand, in mode @var{m}.  The value to
5348 initialize the memory with is the third operand. Targets that only support the
5349 clearing of memory should reject any value that is not the constant 0.  See
5350 @samp{movmem@var{m}} for a discussion of the choice of mode.
5352 The fourth operand is the known alignment of the destination, in the form
5353 of a @code{const_int} rtx.  Thus, if the compiler knows that the
5354 destination is word-aligned, it may provide the value 4 for this
5355 operand.
5357 Optional operands 5 and 6 specify expected alignment and size of block
5358 respectively.  The expected alignment differs from alignment in operand 4
5359 in a way that the blocks are not required to be aligned according to it in
5360 all cases. This expected alignment is also in bytes, just like operand 4.
5361 Expected size, when unknown, is set to @code{(const_int -1)}.
5362 Operand 7 is the minimal size of the block and operand 8 is the
5363 maximal size of the block (NULL if it can not be represented as CONST_INT).
5364 Operand 9 is the probable maximal size (i.e. we can not rely on it for correctness,
5365 but it can be used for choosing proper code sequence for a given size).
5367 The use for multiple @code{setmem@var{m}} is as for @code{movmem@var{m}}.
5369 @cindex @code{cmpstrn@var{m}} instruction pattern
5370 @item @samp{cmpstrn@var{m}}
5371 String compare instruction, with five operands.  Operand 0 is the output;
5372 it has mode @var{m}.  The remaining four operands are like the operands
5373 of @samp{movmem@var{m}}.  The two memory blocks specified are compared
5374 byte by byte in lexicographic order starting at the beginning of each
5375 string.  The instruction is not allowed to prefetch more than one byte
5376 at a time since either string may end in the first byte and reading past
5377 that may access an invalid page or segment and cause a fault.  The
5378 comparison terminates early if the fetched bytes are different or if
5379 they are equal to zero.  The effect of the instruction is to store a
5380 value in operand 0 whose sign indicates the result of the comparison.
5382 @cindex @code{cmpstr@var{m}} instruction pattern
5383 @item @samp{cmpstr@var{m}}
5384 String compare instruction, without known maximum length.  Operand 0 is the
5385 output; it has mode @var{m}.  The second and third operand are the blocks of
5386 memory to be compared; both are @code{mem:BLK} with an address in mode
5387 @code{Pmode}.
5389 The fourth operand is the known shared alignment of the source and
5390 destination, in the form of a @code{const_int} rtx.  Thus, if the
5391 compiler knows that both source and destination are word-aligned,
5392 it may provide the value 4 for this operand.
5394 The two memory blocks specified are compared byte by byte in lexicographic
5395 order starting at the beginning of each string.  The instruction is not allowed
5396 to prefetch more than one byte at a time since either string may end in the
5397 first byte and reading past that may access an invalid page or segment and
5398 cause a fault.  The comparison will terminate when the fetched bytes
5399 are different or if they are equal to zero.  The effect of the
5400 instruction is to store a value in operand 0 whose sign indicates the
5401 result of the comparison.
5403 @cindex @code{cmpmem@var{m}} instruction pattern
5404 @item @samp{cmpmem@var{m}}
5405 Block compare instruction, with five operands like the operands
5406 of @samp{cmpstr@var{m}}.  The two memory blocks specified are compared
5407 byte by byte in lexicographic order starting at the beginning of each
5408 block.  Unlike @samp{cmpstr@var{m}} the instruction can prefetch
5409 any bytes in the two memory blocks.  Also unlike @samp{cmpstr@var{m}}
5410 the comparison will not stop if both bytes are zero.  The effect of
5411 the instruction is to store a value in operand 0 whose sign indicates
5412 the result of the comparison.
5414 @cindex @code{strlen@var{m}} instruction pattern
5415 @item @samp{strlen@var{m}}
5416 Compute the length of a string, with three operands.
5417 Operand 0 is the result (of mode @var{m}), operand 1 is
5418 a @code{mem} referring to the first character of the string,
5419 operand 2 is the character to search for (normally zero),
5420 and operand 3 is a constant describing the known alignment
5421 of the beginning of the string.
5423 @cindex @code{float@var{m}@var{n}2} instruction pattern
5424 @item @samp{float@var{m}@var{n}2}
5425 Convert signed integer operand 1 (valid for fixed point mode @var{m}) to
5426 floating point mode @var{n} and store in operand 0 (which has mode
5427 @var{n}).
5429 @cindex @code{floatuns@var{m}@var{n}2} instruction pattern
5430 @item @samp{floatuns@var{m}@var{n}2}
5431 Convert unsigned integer operand 1 (valid for fixed point mode @var{m})
5432 to floating point mode @var{n} and store in operand 0 (which has mode
5433 @var{n}).
5435 @cindex @code{fix@var{m}@var{n}2} instruction pattern
5436 @item @samp{fix@var{m}@var{n}2}
5437 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5438 point mode @var{n} as a signed number and store in operand 0 (which
5439 has mode @var{n}).  This instruction's result is defined only when
5440 the value of operand 1 is an integer.
5442 If the machine description defines this pattern, it also needs to
5443 define the @code{ftrunc} pattern.
5445 @cindex @code{fixuns@var{m}@var{n}2} instruction pattern
5446 @item @samp{fixuns@var{m}@var{n}2}
5447 Convert operand 1 (valid for floating point mode @var{m}) to fixed
5448 point mode @var{n} as an unsigned number and store in operand 0 (which
5449 has mode @var{n}).  This instruction's result is defined only when the
5450 value of operand 1 is an integer.
5452 @cindex @code{ftrunc@var{m}2} instruction pattern
5453 @item @samp{ftrunc@var{m}2}
5454 Convert operand 1 (valid for floating point mode @var{m}) to an
5455 integer value, still represented in floating point mode @var{m}, and
5456 store it in operand 0 (valid for floating point mode @var{m}).
5458 @cindex @code{fix_trunc@var{m}@var{n}2} instruction pattern
5459 @item @samp{fix_trunc@var{m}@var{n}2}
5460 Like @samp{fix@var{m}@var{n}2} but works for any floating point value
5461 of mode @var{m} by converting the value to an integer.
5463 @cindex @code{fixuns_trunc@var{m}@var{n}2} instruction pattern
5464 @item @samp{fixuns_trunc@var{m}@var{n}2}
5465 Like @samp{fixuns@var{m}@var{n}2} but works for any floating point
5466 value of mode @var{m} by converting the value to an integer.
5468 @cindex @code{trunc@var{m}@var{n}2} instruction pattern
5469 @item @samp{trunc@var{m}@var{n}2}
5470 Truncate operand 1 (valid for mode @var{m}) to mode @var{n} and
5471 store in operand 0 (which has mode @var{n}).  Both modes must be fixed
5472 point or both floating point.
5474 @cindex @code{extend@var{m}@var{n}2} instruction pattern
5475 @item @samp{extend@var{m}@var{n}2}
5476 Sign-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
5477 store in operand 0 (which has mode @var{n}).  Both modes must be fixed
5478 point or both floating point.
5480 @cindex @code{zero_extend@var{m}@var{n}2} instruction pattern
5481 @item @samp{zero_extend@var{m}@var{n}2}
5482 Zero-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
5483 store in operand 0 (which has mode @var{n}).  Both modes must be fixed
5484 point.
5486 @cindex @code{fract@var{m}@var{n}2} instruction pattern
5487 @item @samp{fract@var{m}@var{n}2}
5488 Convert operand 1 of mode @var{m} to mode @var{n} and store in
5489 operand 0 (which has mode @var{n}).  Mode @var{m} and mode @var{n}
5490 could be fixed-point to fixed-point, signed integer to fixed-point,
5491 fixed-point to signed integer, floating-point to fixed-point,
5492 or fixed-point to floating-point.
5493 When overflows or underflows happen, the results are undefined.
5495 @cindex @code{satfract@var{m}@var{n}2} instruction pattern
5496 @item @samp{satfract@var{m}@var{n}2}
5497 Convert operand 1 of mode @var{m} to mode @var{n} and store in
5498 operand 0 (which has mode @var{n}).  Mode @var{m} and mode @var{n}
5499 could be fixed-point to fixed-point, signed integer to fixed-point,
5500 or floating-point to fixed-point.
5501 When overflows or underflows happen, the instruction saturates the
5502 results to the maximum or the minimum.
5504 @cindex @code{fractuns@var{m}@var{n}2} instruction pattern
5505 @item @samp{fractuns@var{m}@var{n}2}
5506 Convert operand 1 of mode @var{m} to mode @var{n} and store in
5507 operand 0 (which has mode @var{n}).  Mode @var{m} and mode @var{n}
5508 could be unsigned integer to fixed-point, or
5509 fixed-point to unsigned integer.
5510 When overflows or underflows happen, the results are undefined.
5512 @cindex @code{satfractuns@var{m}@var{n}2} instruction pattern
5513 @item @samp{satfractuns@var{m}@var{n}2}
5514 Convert unsigned integer operand 1 of mode @var{m} to fixed-point mode
5515 @var{n} and store in operand 0 (which has mode @var{n}).
5516 When overflows or underflows happen, the instruction saturates the
5517 results to the maximum or the minimum.
5519 @cindex @code{extv@var{m}} instruction pattern
5520 @item @samp{extv@var{m}}
5521 Extract a bit-field from register operand 1, sign-extend it, and store
5522 it in operand 0.  Operand 2 specifies the width of the field in bits
5523 and operand 3 the starting bit, which counts from the most significant
5524 bit if @samp{BITS_BIG_ENDIAN} is true and from the least significant bit
5525 otherwise.
5527 Operands 0 and 1 both have mode @var{m}.  Operands 2 and 3 have a
5528 target-specific mode.
5530 @cindex @code{extvmisalign@var{m}} instruction pattern
5531 @item @samp{extvmisalign@var{m}}
5532 Extract a bit-field from memory operand 1, sign extend it, and store
5533 it in operand 0.  Operand 2 specifies the width in bits and operand 3
5534 the starting bit.  The starting bit is always somewhere in the first byte of
5535 operand 1; it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
5536 is true and from the least significant bit otherwise.
5538 Operand 0 has mode @var{m} while operand 1 has @code{BLK} mode.
5539 Operands 2 and 3 have a target-specific mode.
5541 The instruction must not read beyond the last byte of the bit-field.
5543 @cindex @code{extzv@var{m}} instruction pattern
5544 @item @samp{extzv@var{m}}
5545 Like @samp{extv@var{m}} except that the bit-field value is zero-extended.
5547 @cindex @code{extzvmisalign@var{m}} instruction pattern
5548 @item @samp{extzvmisalign@var{m}}
5549 Like @samp{extvmisalign@var{m}} except that the bit-field value is
5550 zero-extended.
5552 @cindex @code{insv@var{m}} instruction pattern
5553 @item @samp{insv@var{m}}
5554 Insert operand 3 into a bit-field of register operand 0.  Operand 1
5555 specifies the width of the field in bits and operand 2 the starting bit,
5556 which counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
5557 is true and from the least significant bit otherwise.
5559 Operands 0 and 3 both have mode @var{m}.  Operands 1 and 2 have a
5560 target-specific mode.
5562 @cindex @code{insvmisalign@var{m}} instruction pattern
5563 @item @samp{insvmisalign@var{m}}
5564 Insert operand 3 into a bit-field of memory operand 0.  Operand 1
5565 specifies the width of the field in bits and operand 2 the starting bit.
5566 The starting bit is always somewhere in the first byte of operand 0;
5567 it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
5568 is true and from the least significant bit otherwise.
5570 Operand 3 has mode @var{m} while operand 0 has @code{BLK} mode.
5571 Operands 1 and 2 have a target-specific mode.
5573 The instruction must not read or write beyond the last byte of the bit-field.
5575 @cindex @code{extv} instruction pattern
5576 @item @samp{extv}
5577 Extract a bit-field from operand 1 (a register or memory operand), where
5578 operand 2 specifies the width in bits and operand 3 the starting bit,
5579 and store it in operand 0.  Operand 0 must have mode @code{word_mode}.
5580 Operand 1 may have mode @code{byte_mode} or @code{word_mode}; often
5581 @code{word_mode} is allowed only for registers.  Operands 2 and 3 must
5582 be valid for @code{word_mode}.
5584 The RTL generation pass generates this instruction only with constants
5585 for operands 2 and 3 and the constant is never zero for operand 2.
5587 The bit-field value is sign-extended to a full word integer
5588 before it is stored in operand 0.
5590 This pattern is deprecated; please use @samp{extv@var{m}} and
5591 @code{extvmisalign@var{m}} instead.
5593 @cindex @code{extzv} instruction pattern
5594 @item @samp{extzv}
5595 Like @samp{extv} except that the bit-field value is zero-extended.
5597 This pattern is deprecated; please use @samp{extzv@var{m}} and
5598 @code{extzvmisalign@var{m}} instead.
5600 @cindex @code{insv} instruction pattern
5601 @item @samp{insv}
5602 Store operand 3 (which must be valid for @code{word_mode}) into a
5603 bit-field in operand 0, where operand 1 specifies the width in bits and
5604 operand 2 the starting bit.  Operand 0 may have mode @code{byte_mode} or
5605 @code{word_mode}; often @code{word_mode} is allowed only for registers.
5606 Operands 1 and 2 must be valid for @code{word_mode}.
5608 The RTL generation pass generates this instruction only with constants
5609 for operands 1 and 2 and the constant is never zero for operand 1.
5611 This pattern is deprecated; please use @samp{insv@var{m}} and
5612 @code{insvmisalign@var{m}} instead.
5614 @cindex @code{mov@var{mode}cc} instruction pattern
5615 @item @samp{mov@var{mode}cc}
5616 Conditionally move operand 2 or operand 3 into operand 0 according to the
5617 comparison in operand 1.  If the comparison is true, operand 2 is moved
5618 into operand 0, otherwise operand 3 is moved.
5620 The mode of the operands being compared need not be the same as the operands
5621 being moved.  Some machines, sparc64 for example, have instructions that
5622 conditionally move an integer value based on the floating point condition
5623 codes and vice versa.
5625 If the machine does not have conditional move instructions, do not
5626 define these patterns.
5628 @cindex @code{add@var{mode}cc} instruction pattern
5629 @item @samp{add@var{mode}cc}
5630 Similar to @samp{mov@var{mode}cc} but for conditional addition.  Conditionally
5631 move operand 2 or (operands 2 + operand 3) into operand 0 according to the
5632 comparison in operand 1.  If the comparison is false, operand 2 is moved into
5633 operand 0, otherwise (operand 2 + operand 3) is moved.
5635 @cindex @code{cstore@var{mode}4} instruction pattern
5636 @item @samp{cstore@var{mode}4}
5637 Store zero or nonzero in operand 0 according to whether a comparison
5638 is true.  Operand 1 is a comparison operator.  Operand 2 and operand 3
5639 are the first and second operand of the comparison, respectively.
5640 You specify the mode that operand 0 must have when you write the
5641 @code{match_operand} expression.  The compiler automatically sees which
5642 mode you have used and supplies an operand of that mode.
5644 The value stored for a true condition must have 1 as its low bit, or
5645 else must be negative.  Otherwise the instruction is not suitable and
5646 you should omit it from the machine description.  You describe to the
5647 compiler exactly which value is stored by defining the macro
5648 @code{STORE_FLAG_VALUE} (@pxref{Misc}).  If a description cannot be
5649 found that can be used for all the possible comparison operators, you
5650 should pick one and use a @code{define_expand} to map all results
5651 onto the one you chose.
5653 These operations may @code{FAIL}, but should do so only in relatively
5654 uncommon cases; if they would @code{FAIL} for common cases involving
5655 integer comparisons, it is best to restrict the predicates to not
5656 allow these operands.  Likewise if a given comparison operator will
5657 always fail, independent of the operands (for floating-point modes, the
5658 @code{ordered_comparison_operator} predicate is often useful in this case).
5660 If this pattern is omitted, the compiler will generate a conditional
5661 branch---for example, it may copy a constant one to the target and branching
5662 around an assignment of zero to the target---or a libcall.  If the predicate
5663 for operand 1 only rejects some operators, it will also try reordering the
5664 operands and/or inverting the result value (e.g.@: by an exclusive OR).
5665 These possibilities could be cheaper or equivalent to the instructions
5666 used for the @samp{cstore@var{mode}4} pattern followed by those required
5667 to convert a positive result from @code{STORE_FLAG_VALUE} to 1; in this
5668 case, you can and should make operand 1's predicate reject some operators
5669 in the @samp{cstore@var{mode}4} pattern, or remove the pattern altogether
5670 from the machine description.
5672 @cindex @code{cbranch@var{mode}4} instruction pattern
5673 @item @samp{cbranch@var{mode}4}
5674 Conditional branch instruction combined with a compare instruction.
5675 Operand 0 is a comparison operator.  Operand 1 and operand 2 are the
5676 first and second operands of the comparison, respectively.  Operand 3
5677 is a @code{label_ref} that refers to the label to jump to.
5679 @cindex @code{jump} instruction pattern
5680 @item @samp{jump}
5681 A jump inside a function; an unconditional branch.  Operand 0 is the
5682 @code{label_ref} of the label to jump to.  This pattern name is mandatory
5683 on all machines.
5685 @cindex @code{call} instruction pattern
5686 @item @samp{call}
5687 Subroutine call instruction returning no value.  Operand 0 is the
5688 function to call; operand 1 is the number of bytes of arguments pushed
5689 as a @code{const_int}; operand 2 is the number of registers used as
5690 operands.
5692 On most machines, operand 2 is not actually stored into the RTL
5693 pattern.  It is supplied for the sake of some RISC machines which need
5694 to put this information into the assembler code; they can put it in
5695 the RTL instead of operand 1.
5697 Operand 0 should be a @code{mem} RTX whose address is the address of the
5698 function.  Note, however, that this address can be a @code{symbol_ref}
5699 expression even if it would not be a legitimate memory address on the
5700 target machine.  If it is also not a valid argument for a call
5701 instruction, the pattern for this operation should be a
5702 @code{define_expand} (@pxref{Expander Definitions}) that places the
5703 address into a register and uses that register in the call instruction.
5705 @cindex @code{call_value} instruction pattern
5706 @item @samp{call_value}
5707 Subroutine call instruction returning a value.  Operand 0 is the hard
5708 register in which the value is returned.  There are three more
5709 operands, the same as the three operands of the @samp{call}
5710 instruction (but with numbers increased by one).
5712 Subroutines that return @code{BLKmode} objects use the @samp{call}
5713 insn.
5715 @cindex @code{call_pop} instruction pattern
5716 @cindex @code{call_value_pop} instruction pattern
5717 @item @samp{call_pop}, @samp{call_value_pop}
5718 Similar to @samp{call} and @samp{call_value}, except used if defined and
5719 if @code{RETURN_POPS_ARGS} is nonzero.  They should emit a @code{parallel}
5720 that contains both the function call and a @code{set} to indicate the
5721 adjustment made to the frame pointer.
5723 For machines where @code{RETURN_POPS_ARGS} can be nonzero, the use of these
5724 patterns increases the number of functions for which the frame pointer
5725 can be eliminated, if desired.
5727 @cindex @code{untyped_call} instruction pattern
5728 @item @samp{untyped_call}
5729 Subroutine call instruction returning a value of any type.  Operand 0 is
5730 the function to call; operand 1 is a memory location where the result of
5731 calling the function is to be stored; operand 2 is a @code{parallel}
5732 expression where each element is a @code{set} expression that indicates
5733 the saving of a function return value into the result block.
5735 This instruction pattern should be defined to support
5736 @code{__builtin_apply} on machines where special instructions are needed
5737 to call a subroutine with arbitrary arguments or to save the value
5738 returned.  This instruction pattern is required on machines that have
5739 multiple registers that can hold a return value
5740 (i.e.@: @code{FUNCTION_VALUE_REGNO_P} is true for more than one register).
5742 @cindex @code{return} instruction pattern
5743 @item @samp{return}
5744 Subroutine return instruction.  This instruction pattern name should be
5745 defined only if a single instruction can do all the work of returning
5746 from a function.
5748 Like the @samp{mov@var{m}} patterns, this pattern is also used after the
5749 RTL generation phase.  In this case it is to support machines where
5750 multiple instructions are usually needed to return from a function, but
5751 some class of functions only requires one instruction to implement a
5752 return.  Normally, the applicable functions are those which do not need
5753 to save any registers or allocate stack space.
5755 It is valid for this pattern to expand to an instruction using
5756 @code{simple_return} if no epilogue is required.
5758 @cindex @code{simple_return} instruction pattern
5759 @item @samp{simple_return}
5760 Subroutine return instruction.  This instruction pattern name should be
5761 defined only if a single instruction can do all the work of returning
5762 from a function on a path where no epilogue is required.  This pattern
5763 is very similar to the @code{return} instruction pattern, but it is emitted
5764 only by the shrink-wrapping optimization on paths where the function
5765 prologue has not been executed, and a function return should occur without
5766 any of the effects of the epilogue.  Additional uses may be introduced on
5767 paths where both the prologue and the epilogue have executed.
5769 @findex reload_completed
5770 @findex leaf_function_p
5771 For such machines, the condition specified in this pattern should only
5772 be true when @code{reload_completed} is nonzero and the function's
5773 epilogue would only be a single instruction.  For machines with register
5774 windows, the routine @code{leaf_function_p} may be used to determine if
5775 a register window push is required.
5777 Machines that have conditional return instructions should define patterns
5778 such as
5780 @smallexample
5781 (define_insn ""
5782   [(set (pc)
5783         (if_then_else (match_operator
5784                          0 "comparison_operator"
5785                          [(cc0) (const_int 0)])
5786                       (return)
5787                       (pc)))]
5788   "@var{condition}"
5789   "@dots{}")
5790 @end smallexample
5792 where @var{condition} would normally be the same condition specified on the
5793 named @samp{return} pattern.
5795 @cindex @code{untyped_return} instruction pattern
5796 @item @samp{untyped_return}
5797 Untyped subroutine return instruction.  This instruction pattern should
5798 be defined to support @code{__builtin_return} on machines where special
5799 instructions are needed to return a value of any type.
5801 Operand 0 is a memory location where the result of calling a function
5802 with @code{__builtin_apply} is stored; operand 1 is a @code{parallel}
5803 expression where each element is a @code{set} expression that indicates
5804 the restoring of a function return value from the result block.
5806 @cindex @code{nop} instruction pattern
5807 @item @samp{nop}
5808 No-op instruction.  This instruction pattern name should always be defined
5809 to output a no-op in assembler code.  @code{(const_int 0)} will do as an
5810 RTL pattern.
5812 @cindex @code{indirect_jump} instruction pattern
5813 @item @samp{indirect_jump}
5814 An instruction to jump to an address which is operand zero.
5815 This pattern name is mandatory on all machines.
5817 @cindex @code{casesi} instruction pattern
5818 @item @samp{casesi}
5819 Instruction to jump through a dispatch table, including bounds checking.
5820 This instruction takes five operands:
5822 @enumerate
5823 @item
5824 The index to dispatch on, which has mode @code{SImode}.
5826 @item
5827 The lower bound for indices in the table, an integer constant.
5829 @item
5830 The total range of indices in the table---the largest index
5831 minus the smallest one (both inclusive).
5833 @item
5834 A label that precedes the table itself.
5836 @item
5837 A label to jump to if the index has a value outside the bounds.
5838 @end enumerate
5840 The table is an @code{addr_vec} or @code{addr_diff_vec} inside of a
5841 @code{jump_table_data}.  The number of elements in the table is one plus the
5842 difference between the upper bound and the lower bound.
5844 @cindex @code{tablejump} instruction pattern
5845 @item @samp{tablejump}
5846 Instruction to jump to a variable address.  This is a low-level
5847 capability which can be used to implement a dispatch table when there
5848 is no @samp{casesi} pattern.
5850 This pattern requires two operands: the address or offset, and a label
5851 which should immediately precede the jump table.  If the macro
5852 @code{CASE_VECTOR_PC_RELATIVE} evaluates to a nonzero value then the first
5853 operand is an offset which counts from the address of the table; otherwise,
5854 it is an absolute address to jump to.  In either case, the first operand has
5855 mode @code{Pmode}.
5857 The @samp{tablejump} insn is always the last insn before the jump
5858 table it uses.  Its assembler code normally has no need to use the
5859 second operand, but you should incorporate it in the RTL pattern so
5860 that the jump optimizer will not delete the table as unreachable code.
5863 @cindex @code{decrement_and_branch_until_zero} instruction pattern
5864 @item @samp{decrement_and_branch_until_zero}
5865 Conditional branch instruction that decrements a register and
5866 jumps if the register is nonzero.  Operand 0 is the register to
5867 decrement and test; operand 1 is the label to jump to if the
5868 register is nonzero.  @xref{Looping Patterns}.
5870 This optional instruction pattern is only used by the combiner,
5871 typically for loops reversed by the loop optimizer when strength
5872 reduction is enabled.
5874 @cindex @code{doloop_end} instruction pattern
5875 @item @samp{doloop_end}
5876 Conditional branch instruction that decrements a register and
5877 jumps if the register is nonzero.  Operand 0 is the register to
5878 decrement and test; operand 1 is the label to jump to if the
5879 register is nonzero.
5880 @xref{Looping Patterns}.
5882 This optional instruction pattern should be defined for machines with
5883 low-overhead looping instructions as the loop optimizer will try to
5884 modify suitable loops to utilize it.  The target hook
5885 @code{TARGET_CAN_USE_DOLOOP_P} controls the conditions under which
5886 low-overhead loops can be used.
5888 @cindex @code{doloop_begin} instruction pattern
5889 @item @samp{doloop_begin}
5890 Companion instruction to @code{doloop_end} required for machines that
5891 need to perform some initialization, such as loading a special counter
5892 register.  Operand 1 is the associated @code{doloop_end} pattern and
5893 operand 0 is the register that it decrements.
5895 If initialization insns do not always need to be emitted, use a
5896 @code{define_expand} (@pxref{Expander Definitions}) and make it fail.
5898 @cindex @code{canonicalize_funcptr_for_compare} instruction pattern
5899 @item @samp{canonicalize_funcptr_for_compare}
5900 Canonicalize the function pointer in operand 1 and store the result
5901 into operand 0.
5903 Operand 0 is always a @code{reg} and has mode @code{Pmode}; operand 1
5904 may be a @code{reg}, @code{mem}, @code{symbol_ref}, @code{const_int}, etc
5905 and also has mode @code{Pmode}.
5907 Canonicalization of a function pointer usually involves computing
5908 the address of the function which would be called if the function
5909 pointer were used in an indirect call.
5911 Only define this pattern if function pointers on the target machine
5912 can have different values but still call the same function when
5913 used in an indirect call.
5915 @cindex @code{save_stack_block} instruction pattern
5916 @cindex @code{save_stack_function} instruction pattern
5917 @cindex @code{save_stack_nonlocal} instruction pattern
5918 @cindex @code{restore_stack_block} instruction pattern
5919 @cindex @code{restore_stack_function} instruction pattern
5920 @cindex @code{restore_stack_nonlocal} instruction pattern
5921 @item @samp{save_stack_block}
5922 @itemx @samp{save_stack_function}
5923 @itemx @samp{save_stack_nonlocal}
5924 @itemx @samp{restore_stack_block}
5925 @itemx @samp{restore_stack_function}
5926 @itemx @samp{restore_stack_nonlocal}
5927 Most machines save and restore the stack pointer by copying it to or
5928 from an object of mode @code{Pmode}.  Do not define these patterns on
5929 such machines.
5931 Some machines require special handling for stack pointer saves and
5932 restores.  On those machines, define the patterns corresponding to the
5933 non-standard cases by using a @code{define_expand} (@pxref{Expander
5934 Definitions}) that produces the required insns.  The three types of
5935 saves and restores are:
5937 @enumerate
5938 @item
5939 @samp{save_stack_block} saves the stack pointer at the start of a block
5940 that allocates a variable-sized object, and @samp{restore_stack_block}
5941 restores the stack pointer when the block is exited.
5943 @item
5944 @samp{save_stack_function} and @samp{restore_stack_function} do a
5945 similar job for the outermost block of a function and are used when the
5946 function allocates variable-sized objects or calls @code{alloca}.  Only
5947 the epilogue uses the restored stack pointer, allowing a simpler save or
5948 restore sequence on some machines.
5950 @item
5951 @samp{save_stack_nonlocal} is used in functions that contain labels
5952 branched to by nested functions.  It saves the stack pointer in such a
5953 way that the inner function can use @samp{restore_stack_nonlocal} to
5954 restore the stack pointer.  The compiler generates code to restore the
5955 frame and argument pointer registers, but some machines require saving
5956 and restoring additional data such as register window information or
5957 stack backchains.  Place insns in these patterns to save and restore any
5958 such required data.
5959 @end enumerate
5961 When saving the stack pointer, operand 0 is the save area and operand 1
5962 is the stack pointer.  The mode used to allocate the save area defaults
5963 to @code{Pmode} but you can override that choice by defining the
5964 @code{STACK_SAVEAREA_MODE} macro (@pxref{Storage Layout}).  You must
5965 specify an integral mode, or @code{VOIDmode} if no save area is needed
5966 for a particular type of save (either because no save is needed or
5967 because a machine-specific save area can be used).  Operand 0 is the
5968 stack pointer and operand 1 is the save area for restore operations.  If
5969 @samp{save_stack_block} is defined, operand 0 must not be
5970 @code{VOIDmode} since these saves can be arbitrarily nested.
5972 A save area is a @code{mem} that is at a constant offset from
5973 @code{virtual_stack_vars_rtx} when the stack pointer is saved for use by
5974 nonlocal gotos and a @code{reg} in the other two cases.
5976 @cindex @code{allocate_stack} instruction pattern
5977 @item @samp{allocate_stack}
5978 Subtract (or add if @code{STACK_GROWS_DOWNWARD} is undefined) operand 1 from
5979 the stack pointer to create space for dynamically allocated data.
5981 Store the resultant pointer to this space into operand 0.  If you
5982 are allocating space from the main stack, do this by emitting a
5983 move insn to copy @code{virtual_stack_dynamic_rtx} to operand 0.
5984 If you are allocating the space elsewhere, generate code to copy the
5985 location of the space to operand 0.  In the latter case, you must
5986 ensure this space gets freed when the corresponding space on the main
5987 stack is free.
5989 Do not define this pattern if all that must be done is the subtraction.
5990 Some machines require other operations such as stack probes or
5991 maintaining the back chain.  Define this pattern to emit those
5992 operations in addition to updating the stack pointer.
5994 @cindex @code{check_stack} instruction pattern
5995 @item @samp{check_stack}
5996 If stack checking (@pxref{Stack Checking}) cannot be done on your system by
5997 probing the stack, define this pattern to perform the needed check and signal
5998 an error if the stack has overflowed.  The single operand is the address in
5999 the stack farthest from the current stack pointer that you need to validate.
6000 Normally, on platforms where this pattern is needed, you would obtain the
6001 stack limit from a global or thread-specific variable or register.
6003 @cindex @code{probe_stack_address} instruction pattern
6004 @item @samp{probe_stack_address}
6005 If stack checking (@pxref{Stack Checking}) can be done on your system by
6006 probing the stack but without the need to actually access it, define this
6007 pattern and signal an error if the stack has overflowed.  The single operand
6008 is the memory address in the stack that needs to be probed.
6010 @cindex @code{probe_stack} instruction pattern
6011 @item @samp{probe_stack}
6012 If stack checking (@pxref{Stack Checking}) can be done on your system by
6013 probing the stack but doing it with a ``store zero'' instruction is not valid
6014 or optimal, define this pattern to do the probing differently and signal an
6015 error if the stack has overflowed.  The single operand is the memory reference
6016 in the stack that needs to be probed.
6018 @cindex @code{nonlocal_goto} instruction pattern
6019 @item @samp{nonlocal_goto}
6020 Emit code to generate a non-local goto, e.g., a jump from one function
6021 to a label in an outer function.  This pattern has four arguments,
6022 each representing a value to be used in the jump.  The first
6023 argument is to be loaded into the frame pointer, the second is
6024 the address to branch to (code to dispatch to the actual label),
6025 the third is the address of a location where the stack is saved,
6026 and the last is the address of the label, to be placed in the
6027 location for the incoming static chain.
6029 On most machines you need not define this pattern, since GCC will
6030 already generate the correct code, which is to load the frame pointer
6031 and static chain, restore the stack (using the
6032 @samp{restore_stack_nonlocal} pattern, if defined), and jump indirectly
6033 to the dispatcher.  You need only define this pattern if this code will
6034 not work on your machine.
6036 @cindex @code{nonlocal_goto_receiver} instruction pattern
6037 @item @samp{nonlocal_goto_receiver}
6038 This pattern, if defined, contains code needed at the target of a
6039 nonlocal goto after the code already generated by GCC@.  You will not
6040 normally need to define this pattern.  A typical reason why you might
6041 need this pattern is if some value, such as a pointer to a global table,
6042 must be restored when the frame pointer is restored.  Note that a nonlocal
6043 goto only occurs within a unit-of-translation, so a global table pointer
6044 that is shared by all functions of a given module need not be restored.
6045 There are no arguments.
6047 @cindex @code{exception_receiver} instruction pattern
6048 @item @samp{exception_receiver}
6049 This pattern, if defined, contains code needed at the site of an
6050 exception handler that isn't needed at the site of a nonlocal goto.  You
6051 will not normally need to define this pattern.  A typical reason why you
6052 might need this pattern is if some value, such as a pointer to a global
6053 table, must be restored after control flow is branched to the handler of
6054 an exception.  There are no arguments.
6056 @cindex @code{builtin_setjmp_setup} instruction pattern
6057 @item @samp{builtin_setjmp_setup}
6058 This pattern, if defined, contains additional code needed to initialize
6059 the @code{jmp_buf}.  You will not normally need to define this pattern.
6060 A typical reason why you might need this pattern is if some value, such
6061 as a pointer to a global table, must be restored.  Though it is
6062 preferred that the pointer value be recalculated if possible (given the
6063 address of a label for instance).  The single argument is a pointer to
6064 the @code{jmp_buf}.  Note that the buffer is five words long and that
6065 the first three are normally used by the generic mechanism.
6067 @cindex @code{builtin_setjmp_receiver} instruction pattern
6068 @item @samp{builtin_setjmp_receiver}
6069 This pattern, if defined, contains code needed at the site of a
6070 built-in setjmp that isn't needed at the site of a nonlocal goto.  You
6071 will not normally need to define this pattern.  A typical reason why you
6072 might need this pattern is if some value, such as a pointer to a global
6073 table, must be restored.  It takes one argument, which is the label
6074 to which builtin_longjmp transferred control; this pattern may be emitted
6075 at a small offset from that label.
6077 @cindex @code{builtin_longjmp} instruction pattern
6078 @item @samp{builtin_longjmp}
6079 This pattern, if defined, performs the entire action of the longjmp.
6080 You will not normally need to define this pattern unless you also define
6081 @code{builtin_setjmp_setup}.  The single argument is a pointer to the
6082 @code{jmp_buf}.
6084 @cindex @code{eh_return} instruction pattern
6085 @item @samp{eh_return}
6086 This pattern, if defined, affects the way @code{__builtin_eh_return},
6087 and thence the call frame exception handling library routines, are
6088 built.  It is intended to handle non-trivial actions needed along
6089 the abnormal return path.
6091 The address of the exception handler to which the function should return
6092 is passed as operand to this pattern.  It will normally need to copied by
6093 the pattern to some special register or memory location.
6094 If the pattern needs to determine the location of the target call
6095 frame in order to do so, it may use @code{EH_RETURN_STACKADJ_RTX},
6096 if defined; it will have already been assigned.
6098 If this pattern is not defined, the default action will be to simply
6099 copy the return address to @code{EH_RETURN_HANDLER_RTX}.  Either
6100 that macro or this pattern needs to be defined if call frame exception
6101 handling is to be used.
6103 @cindex @code{prologue} instruction pattern
6104 @anchor{prologue instruction pattern}
6105 @item @samp{prologue}
6106 This pattern, if defined, emits RTL for entry to a function.  The function
6107 entry is responsible for setting up the stack frame, initializing the frame
6108 pointer register, saving callee saved registers, etc.
6110 Using a prologue pattern is generally preferred over defining
6111 @code{TARGET_ASM_FUNCTION_PROLOGUE} to emit assembly code for the prologue.
6113 The @code{prologue} pattern is particularly useful for targets which perform
6114 instruction scheduling.
6116 @cindex @code{window_save} instruction pattern
6117 @anchor{window_save instruction pattern}
6118 @item @samp{window_save}
6119 This pattern, if defined, emits RTL for a register window save.  It should
6120 be defined if the target machine has register windows but the window events
6121 are decoupled from calls to subroutines.  The canonical example is the SPARC
6122 architecture.
6124 @cindex @code{epilogue} instruction pattern
6125 @anchor{epilogue instruction pattern}
6126 @item @samp{epilogue}
6127 This pattern emits RTL for exit from a function.  The function
6128 exit is responsible for deallocating the stack frame, restoring callee saved
6129 registers and emitting the return instruction.
6131 Using an epilogue pattern is generally preferred over defining
6132 @code{TARGET_ASM_FUNCTION_EPILOGUE} to emit assembly code for the epilogue.
6134 The @code{epilogue} pattern is particularly useful for targets which perform
6135 instruction scheduling or which have delay slots for their return instruction.
6137 @cindex @code{sibcall_epilogue} instruction pattern
6138 @item @samp{sibcall_epilogue}
6139 This pattern, if defined, emits RTL for exit from a function without the final
6140 branch back to the calling function.  This pattern will be emitted before any
6141 sibling call (aka tail call) sites.
6143 The @code{sibcall_epilogue} pattern must not clobber any arguments used for
6144 parameter passing or any stack slots for arguments passed to the current
6145 function.
6147 @cindex @code{trap} instruction pattern
6148 @item @samp{trap}
6149 This pattern, if defined, signals an error, typically by causing some
6150 kind of signal to be raised.  Among other places, it is used by the Java
6151 front end to signal `invalid array index' exceptions.
6153 @cindex @code{ctrap@var{MM}4} instruction pattern
6154 @item @samp{ctrap@var{MM}4}
6155 Conditional trap instruction.  Operand 0 is a piece of RTL which
6156 performs a comparison, and operands 1 and 2 are the arms of the
6157 comparison.  Operand 3 is the trap code, an integer.
6159 A typical @code{ctrap} pattern looks like
6161 @smallexample
6162 (define_insn "ctrapsi4"
6163   [(trap_if (match_operator 0 "trap_operator"
6164              [(match_operand 1 "register_operand")
6165               (match_operand 2 "immediate_operand")])
6166             (match_operand 3 "const_int_operand" "i"))]
6167   ""
6168   "@dots{}")
6169 @end smallexample
6171 @cindex @code{prefetch} instruction pattern
6172 @item @samp{prefetch}
6173 This pattern, if defined, emits code for a non-faulting data prefetch
6174 instruction.  Operand 0 is the address of the memory to prefetch.  Operand 1
6175 is a constant 1 if the prefetch is preparing for a write to the memory
6176 address, or a constant 0 otherwise.  Operand 2 is the expected degree of
6177 temporal locality of the data and is a value between 0 and 3, inclusive; 0
6178 means that the data has no temporal locality, so it need not be left in the
6179 cache after the access; 3 means that the data has a high degree of temporal
6180 locality and should be left in all levels of cache possible;  1 and 2 mean,
6181 respectively, a low or moderate degree of temporal locality.
6183 Targets that do not support write prefetches or locality hints can ignore
6184 the values of operands 1 and 2.
6186 @cindex @code{blockage} instruction pattern
6187 @item @samp{blockage}
6188 This pattern defines a pseudo insn that prevents the instruction
6189 scheduler and other passes from moving instructions and using register
6190 equivalences across the boundary defined by the blockage insn.
6191 This needs to be an UNSPEC_VOLATILE pattern or a volatile ASM.
6193 @cindex @code{memory_barrier} instruction pattern
6194 @item @samp{memory_barrier}
6195 If the target memory model is not fully synchronous, then this pattern
6196 should be defined to an instruction that orders both loads and stores
6197 before the instruction with respect to loads and stores after the instruction.
6198 This pattern has no operands.
6200 @cindex @code{sync_compare_and_swap@var{mode}} instruction pattern
6201 @item @samp{sync_compare_and_swap@var{mode}}
6202 This pattern, if defined, emits code for an atomic compare-and-swap
6203 operation.  Operand 1 is the memory on which the atomic operation is
6204 performed.  Operand 2 is the ``old'' value to be compared against the
6205 current contents of the memory location.  Operand 3 is the ``new'' value
6206 to store in the memory if the compare succeeds.  Operand 0 is the result
6207 of the operation; it should contain the contents of the memory
6208 before the operation.  If the compare succeeds, this should obviously be
6209 a copy of operand 2.
6211 This pattern must show that both operand 0 and operand 1 are modified.
6213 This pattern must issue any memory barrier instructions such that all
6214 memory operations before the atomic operation occur before the atomic
6215 operation and all memory operations after the atomic operation occur
6216 after the atomic operation.
6218 For targets where the success or failure of the compare-and-swap
6219 operation is available via the status flags, it is possible to
6220 avoid a separate compare operation and issue the subsequent
6221 branch or store-flag operation immediately after the compare-and-swap.
6222 To this end, GCC will look for a @code{MODE_CC} set in the
6223 output of @code{sync_compare_and_swap@var{mode}}; if the machine
6224 description includes such a set, the target should also define special
6225 @code{cbranchcc4} and/or @code{cstorecc4} instructions.  GCC will then
6226 be able to take the destination of the @code{MODE_CC} set and pass it
6227 to the @code{cbranchcc4} or @code{cstorecc4} pattern as the first
6228 operand of the comparison (the second will be @code{(const_int 0)}).
6230 For targets where the operating system may provide support for this
6231 operation via library calls, the @code{sync_compare_and_swap_optab}
6232 may be initialized to a function with the same interface as the
6233 @code{__sync_val_compare_and_swap_@var{n}} built-in.  If the entire
6234 set of @var{__sync} builtins are supported via library calls, the
6235 target can initialize all of the optabs at once with
6236 @code{init_sync_libfuncs}.
6237 For the purposes of C++11 @code{std::atomic::is_lock_free}, it is
6238 assumed that these library calls do @emph{not} use any kind of
6239 interruptable locking.
6241 @cindex @code{sync_add@var{mode}} instruction pattern
6242 @cindex @code{sync_sub@var{mode}} instruction pattern
6243 @cindex @code{sync_ior@var{mode}} instruction pattern
6244 @cindex @code{sync_and@var{mode}} instruction pattern
6245 @cindex @code{sync_xor@var{mode}} instruction pattern
6246 @cindex @code{sync_nand@var{mode}} instruction pattern
6247 @item @samp{sync_add@var{mode}}, @samp{sync_sub@var{mode}}
6248 @itemx @samp{sync_ior@var{mode}}, @samp{sync_and@var{mode}}
6249 @itemx @samp{sync_xor@var{mode}}, @samp{sync_nand@var{mode}}
6250 These patterns emit code for an atomic operation on memory.
6251 Operand 0 is the memory on which the atomic operation is performed.
6252 Operand 1 is the second operand to the binary operator.
6254 This pattern must issue any memory barrier instructions such that all
6255 memory operations before the atomic operation occur before the atomic
6256 operation and all memory operations after the atomic operation occur
6257 after the atomic operation.
6259 If these patterns are not defined, the operation will be constructed
6260 from a compare-and-swap operation, if defined.
6262 @cindex @code{sync_old_add@var{mode}} instruction pattern
6263 @cindex @code{sync_old_sub@var{mode}} instruction pattern
6264 @cindex @code{sync_old_ior@var{mode}} instruction pattern
6265 @cindex @code{sync_old_and@var{mode}} instruction pattern
6266 @cindex @code{sync_old_xor@var{mode}} instruction pattern
6267 @cindex @code{sync_old_nand@var{mode}} instruction pattern
6268 @item @samp{sync_old_add@var{mode}}, @samp{sync_old_sub@var{mode}}
6269 @itemx @samp{sync_old_ior@var{mode}}, @samp{sync_old_and@var{mode}}
6270 @itemx @samp{sync_old_xor@var{mode}}, @samp{sync_old_nand@var{mode}}
6271 These patterns emit code for an atomic operation on memory,
6272 and return the value that the memory contained before the operation.
6273 Operand 0 is the result value, operand 1 is the memory on which the
6274 atomic operation is performed, and operand 2 is the second operand
6275 to the binary operator.
6277 This pattern must issue any memory barrier instructions such that all
6278 memory operations before the atomic operation occur before the atomic
6279 operation and all memory operations after the atomic operation occur
6280 after the atomic operation.
6282 If these patterns are not defined, the operation will be constructed
6283 from a compare-and-swap operation, if defined.
6285 @cindex @code{sync_new_add@var{mode}} instruction pattern
6286 @cindex @code{sync_new_sub@var{mode}} instruction pattern
6287 @cindex @code{sync_new_ior@var{mode}} instruction pattern
6288 @cindex @code{sync_new_and@var{mode}} instruction pattern
6289 @cindex @code{sync_new_xor@var{mode}} instruction pattern
6290 @cindex @code{sync_new_nand@var{mode}} instruction pattern
6291 @item @samp{sync_new_add@var{mode}}, @samp{sync_new_sub@var{mode}}
6292 @itemx @samp{sync_new_ior@var{mode}}, @samp{sync_new_and@var{mode}}
6293 @itemx @samp{sync_new_xor@var{mode}}, @samp{sync_new_nand@var{mode}}
6294 These patterns are like their @code{sync_old_@var{op}} counterparts,
6295 except that they return the value that exists in the memory location
6296 after the operation, rather than before the operation.
6298 @cindex @code{sync_lock_test_and_set@var{mode}} instruction pattern
6299 @item @samp{sync_lock_test_and_set@var{mode}}
6300 This pattern takes two forms, based on the capabilities of the target.
6301 In either case, operand 0 is the result of the operand, operand 1 is
6302 the memory on which the atomic operation is performed, and operand 2
6303 is the value to set in the lock.
6305 In the ideal case, this operation is an atomic exchange operation, in
6306 which the previous value in memory operand is copied into the result
6307 operand, and the value operand is stored in the memory operand.
6309 For less capable targets, any value operand that is not the constant 1
6310 should be rejected with @code{FAIL}.  In this case the target may use
6311 an atomic test-and-set bit operation.  The result operand should contain
6312 1 if the bit was previously set and 0 if the bit was previously clear.
6313 The true contents of the memory operand are implementation defined.
6315 This pattern must issue any memory barrier instructions such that the
6316 pattern as a whole acts as an acquire barrier, that is all memory
6317 operations after the pattern do not occur until the lock is acquired.
6319 If this pattern is not defined, the operation will be constructed from
6320 a compare-and-swap operation, if defined.
6322 @cindex @code{sync_lock_release@var{mode}} instruction pattern
6323 @item @samp{sync_lock_release@var{mode}}
6324 This pattern, if defined, releases a lock set by
6325 @code{sync_lock_test_and_set@var{mode}}.  Operand 0 is the memory
6326 that contains the lock; operand 1 is the value to store in the lock.
6328 If the target doesn't implement full semantics for
6329 @code{sync_lock_test_and_set@var{mode}}, any value operand which is not
6330 the constant 0 should be rejected with @code{FAIL}, and the true contents
6331 of the memory operand are implementation defined.
6333 This pattern must issue any memory barrier instructions such that the
6334 pattern as a whole acts as a release barrier, that is the lock is
6335 released only after all previous memory operations have completed.
6337 If this pattern is not defined, then a @code{memory_barrier} pattern
6338 will be emitted, followed by a store of the value to the memory operand.
6340 @cindex @code{atomic_compare_and_swap@var{mode}} instruction pattern
6341 @item @samp{atomic_compare_and_swap@var{mode}} 
6342 This pattern, if defined, emits code for an atomic compare-and-swap
6343 operation with memory model semantics.  Operand 2 is the memory on which
6344 the atomic operation is performed.  Operand 0 is an output operand which
6345 is set to true or false based on whether the operation succeeded.  Operand
6346 1 is an output operand which is set to the contents of the memory before
6347 the operation was attempted.  Operand 3 is the value that is expected to
6348 be in memory.  Operand 4 is the value to put in memory if the expected
6349 value is found there.  Operand 5 is set to 1 if this compare and swap is to
6350 be treated as a weak operation.  Operand 6 is the memory model to be used
6351 if the operation is a success.  Operand 7 is the memory model to be used
6352 if the operation fails.
6354 If memory referred to in operand 2 contains the value in operand 3, then
6355 operand 4 is stored in memory pointed to by operand 2 and fencing based on
6356 the memory model in operand 6 is issued.  
6358 If memory referred to in operand 2 does not contain the value in operand 3,
6359 then fencing based on the memory model in operand 7 is issued.
6361 If a target does not support weak compare-and-swap operations, or the port
6362 elects not to implement weak operations, the argument in operand 5 can be
6363 ignored.  Note a strong implementation must be provided.
6365 If this pattern is not provided, the @code{__atomic_compare_exchange}
6366 built-in functions will utilize the legacy @code{sync_compare_and_swap}
6367 pattern with an @code{__ATOMIC_SEQ_CST} memory model.
6369 @cindex @code{atomic_load@var{mode}} instruction pattern
6370 @item @samp{atomic_load@var{mode}}
6371 This pattern implements an atomic load operation with memory model
6372 semantics.  Operand 1 is the memory address being loaded from.  Operand 0
6373 is the result of the load.  Operand 2 is the memory model to be used for
6374 the load operation.
6376 If not present, the @code{__atomic_load} built-in function will either
6377 resort to a normal load with memory barriers, or a compare-and-swap
6378 operation if a normal load would not be atomic.
6380 @cindex @code{atomic_store@var{mode}} instruction pattern
6381 @item @samp{atomic_store@var{mode}}
6382 This pattern implements an atomic store operation with memory model
6383 semantics.  Operand 0 is the memory address being stored to.  Operand 1
6384 is the value to be written.  Operand 2 is the memory model to be used for
6385 the operation.
6387 If not present, the @code{__atomic_store} built-in function will attempt to
6388 perform a normal store and surround it with any required memory fences.  If
6389 the store would not be atomic, then an @code{__atomic_exchange} is
6390 attempted with the result being ignored.
6392 @cindex @code{atomic_exchange@var{mode}} instruction pattern
6393 @item @samp{atomic_exchange@var{mode}}
6394 This pattern implements an atomic exchange operation with memory model
6395 semantics.  Operand 1 is the memory location the operation is performed on.
6396 Operand 0 is an output operand which is set to the original value contained
6397 in the memory pointed to by operand 1.  Operand 2 is the value to be
6398 stored.  Operand 3 is the memory model to be used.
6400 If this pattern is not present, the built-in function
6401 @code{__atomic_exchange} will attempt to preform the operation with a
6402 compare and swap loop.
6404 @cindex @code{atomic_add@var{mode}} instruction pattern
6405 @cindex @code{atomic_sub@var{mode}} instruction pattern
6406 @cindex @code{atomic_or@var{mode}} instruction pattern
6407 @cindex @code{atomic_and@var{mode}} instruction pattern
6408 @cindex @code{atomic_xor@var{mode}} instruction pattern
6409 @cindex @code{atomic_nand@var{mode}} instruction pattern
6410 @item @samp{atomic_add@var{mode}}, @samp{atomic_sub@var{mode}}
6411 @itemx @samp{atomic_or@var{mode}}, @samp{atomic_and@var{mode}}
6412 @itemx @samp{atomic_xor@var{mode}}, @samp{atomic_nand@var{mode}}
6413 These patterns emit code for an atomic operation on memory with memory
6414 model semantics. Operand 0 is the memory on which the atomic operation is
6415 performed.  Operand 1 is the second operand to the binary operator.
6416 Operand 2 is the memory model to be used by the operation.
6418 If these patterns are not defined, attempts will be made to use legacy
6419 @code{sync} patterns, or equivalent patterns which return a result.  If
6420 none of these are available a compare-and-swap loop will be used.
6422 @cindex @code{atomic_fetch_add@var{mode}} instruction pattern
6423 @cindex @code{atomic_fetch_sub@var{mode}} instruction pattern
6424 @cindex @code{atomic_fetch_or@var{mode}} instruction pattern
6425 @cindex @code{atomic_fetch_and@var{mode}} instruction pattern
6426 @cindex @code{atomic_fetch_xor@var{mode}} instruction pattern
6427 @cindex @code{atomic_fetch_nand@var{mode}} instruction pattern
6428 @item @samp{atomic_fetch_add@var{mode}}, @samp{atomic_fetch_sub@var{mode}}
6429 @itemx @samp{atomic_fetch_or@var{mode}}, @samp{atomic_fetch_and@var{mode}}
6430 @itemx @samp{atomic_fetch_xor@var{mode}}, @samp{atomic_fetch_nand@var{mode}}
6431 These patterns emit code for an atomic operation on memory with memory
6432 model semantics, and return the original value. Operand 0 is an output 
6433 operand which contains the value of the memory location before the 
6434 operation was performed.  Operand 1 is the memory on which the atomic 
6435 operation is performed.  Operand 2 is the second operand to the binary
6436 operator.  Operand 3 is the memory model to be used by the operation.
6438 If these patterns are not defined, attempts will be made to use legacy
6439 @code{sync} patterns.  If none of these are available a compare-and-swap
6440 loop will be used.
6442 @cindex @code{atomic_add_fetch@var{mode}} instruction pattern
6443 @cindex @code{atomic_sub_fetch@var{mode}} instruction pattern
6444 @cindex @code{atomic_or_fetch@var{mode}} instruction pattern
6445 @cindex @code{atomic_and_fetch@var{mode}} instruction pattern
6446 @cindex @code{atomic_xor_fetch@var{mode}} instruction pattern
6447 @cindex @code{atomic_nand_fetch@var{mode}} instruction pattern
6448 @item @samp{atomic_add_fetch@var{mode}}, @samp{atomic_sub_fetch@var{mode}}
6449 @itemx @samp{atomic_or_fetch@var{mode}}, @samp{atomic_and_fetch@var{mode}}
6450 @itemx @samp{atomic_xor_fetch@var{mode}}, @samp{atomic_nand_fetch@var{mode}}
6451 These patterns emit code for an atomic operation on memory with memory
6452 model semantics and return the result after the operation is performed.
6453 Operand 0 is an output operand which contains the value after the
6454 operation.  Operand 1 is the memory on which the atomic operation is
6455 performed.  Operand 2 is the second operand to the binary operator.
6456 Operand 3 is the memory model to be used by the operation.
6458 If these patterns are not defined, attempts will be made to use legacy
6459 @code{sync} patterns, or equivalent patterns which return the result before
6460 the operation followed by the arithmetic operation required to produce the
6461 result.  If none of these are available a compare-and-swap loop will be
6462 used.
6464 @cindex @code{atomic_test_and_set} instruction pattern
6465 @item @samp{atomic_test_and_set}
6466 This pattern emits code for @code{__builtin_atomic_test_and_set}.
6467 Operand 0 is an output operand which is set to true if the previous
6468 previous contents of the byte was "set", and false otherwise.  Operand 1
6469 is the @code{QImode} memory to be modified.  Operand 2 is the memory
6470 model to be used.
6472 The specific value that defines "set" is implementation defined, and
6473 is normally based on what is performed by the native atomic test and set
6474 instruction.
6476 @cindex @code{mem_thread_fence@var{mode}} instruction pattern
6477 @item @samp{mem_thread_fence@var{mode}}
6478 This pattern emits code required to implement a thread fence with
6479 memory model semantics.  Operand 0 is the memory model to be used.
6481 If this pattern is not specified, all memory models except
6482 @code{__ATOMIC_RELAXED} will result in issuing a @code{sync_synchronize}
6483 barrier pattern.
6485 @cindex @code{mem_signal_fence@var{mode}} instruction pattern
6486 @item @samp{mem_signal_fence@var{mode}}
6487 This pattern emits code required to implement a signal fence with
6488 memory model semantics.  Operand 0 is the memory model to be used.
6490 This pattern should impact the compiler optimizers the same way that
6491 mem_signal_fence does, but it does not need to issue any barrier
6492 instructions.
6494 If this pattern is not specified, all memory models except
6495 @code{__ATOMIC_RELAXED} will result in issuing a @code{sync_synchronize}
6496 barrier pattern.
6498 @cindex @code{get_thread_pointer@var{mode}} instruction pattern
6499 @cindex @code{set_thread_pointer@var{mode}} instruction pattern
6500 @item @samp{get_thread_pointer@var{mode}}
6501 @itemx @samp{set_thread_pointer@var{mode}}
6502 These patterns emit code that reads/sets the TLS thread pointer. Currently,
6503 these are only needed if the target needs to support the
6504 @code{__builtin_thread_pointer} and @code{__builtin_set_thread_pointer}
6505 builtins.
6507 The get/set patterns have a single output/input operand respectively,
6508 with @var{mode} intended to be @code{Pmode}.
6510 @cindex @code{stack_protect_set} instruction pattern
6511 @item @samp{stack_protect_set}
6512 This pattern, if defined, moves a @code{ptr_mode} value from the memory
6513 in operand 1 to the memory in operand 0 without leaving the value in
6514 a register afterward.  This is to avoid leaking the value some place
6515 that an attacker might use to rewrite the stack guard slot after
6516 having clobbered it.
6518 If this pattern is not defined, then a plain move pattern is generated.
6520 @cindex @code{stack_protect_test} instruction pattern
6521 @item @samp{stack_protect_test}
6522 This pattern, if defined, compares a @code{ptr_mode} value from the
6523 memory in operand 1 with the memory in operand 0 without leaving the
6524 value in a register afterward and branches to operand 2 if the values
6525 were equal.
6527 If this pattern is not defined, then a plain compare pattern and
6528 conditional branch pattern is used.
6530 @cindex @code{clear_cache} instruction pattern
6531 @item @samp{clear_cache}
6532 This pattern, if defined, flushes the instruction cache for a region of
6533 memory.  The region is bounded to by the Pmode pointers in operand 0
6534 inclusive and operand 1 exclusive.
6536 If this pattern is not defined, a call to the library function
6537 @code{__clear_cache} is used.
6539 @end table
6541 @end ifset
6542 @c Each of the following nodes are wrapped in separate
6543 @c "@ifset INTERNALS" to work around memory limits for the default
6544 @c configuration in older tetex distributions.  Known to not work:
6545 @c tetex-1.0.7, known to work: tetex-2.0.2.
6546 @ifset INTERNALS
6547 @node Pattern Ordering
6548 @section When the Order of Patterns Matters
6549 @cindex Pattern Ordering
6550 @cindex Ordering of Patterns
6552 Sometimes an insn can match more than one instruction pattern.  Then the
6553 pattern that appears first in the machine description is the one used.
6554 Therefore, more specific patterns (patterns that will match fewer things)
6555 and faster instructions (those that will produce better code when they
6556 do match) should usually go first in the description.
6558 In some cases the effect of ordering the patterns can be used to hide
6559 a pattern when it is not valid.  For example, the 68000 has an
6560 instruction for converting a fullword to floating point and another
6561 for converting a byte to floating point.  An instruction converting
6562 an integer to floating point could match either one.  We put the
6563 pattern to convert the fullword first to make sure that one will
6564 be used rather than the other.  (Otherwise a large integer might
6565 be generated as a single-byte immediate quantity, which would not work.)
6566 Instead of using this pattern ordering it would be possible to make the
6567 pattern for convert-a-byte smart enough to deal properly with any
6568 constant value.
6570 @end ifset
6571 @ifset INTERNALS
6572 @node Dependent Patterns
6573 @section Interdependence of Patterns
6574 @cindex Dependent Patterns
6575 @cindex Interdependence of Patterns
6577 In some cases machines support instructions identical except for the
6578 machine mode of one or more operands.  For example, there may be
6579 ``sign-extend halfword'' and ``sign-extend byte'' instructions whose
6580 patterns are
6582 @smallexample
6583 (set (match_operand:SI 0 @dots{})
6584      (extend:SI (match_operand:HI 1 @dots{})))
6586 (set (match_operand:SI 0 @dots{})
6587      (extend:SI (match_operand:QI 1 @dots{})))
6588 @end smallexample
6590 @noindent
6591 Constant integers do not specify a machine mode, so an instruction to
6592 extend a constant value could match either pattern.  The pattern it
6593 actually will match is the one that appears first in the file.  For correct
6594 results, this must be the one for the widest possible mode (@code{HImode},
6595 here).  If the pattern matches the @code{QImode} instruction, the results
6596 will be incorrect if the constant value does not actually fit that mode.
6598 Such instructions to extend constants are rarely generated because they are
6599 optimized away, but they do occasionally happen in nonoptimized
6600 compilations.
6602 If a constraint in a pattern allows a constant, the reload pass may
6603 replace a register with a constant permitted by the constraint in some
6604 cases.  Similarly for memory references.  Because of this substitution,
6605 you should not provide separate patterns for increment and decrement
6606 instructions.  Instead, they should be generated from the same pattern
6607 that supports register-register add insns by examining the operands and
6608 generating the appropriate machine instruction.
6610 @end ifset
6611 @ifset INTERNALS
6612 @node Jump Patterns
6613 @section Defining Jump Instruction Patterns
6614 @cindex jump instruction patterns
6615 @cindex defining jump instruction patterns
6617 GCC does not assume anything about how the machine realizes jumps.
6618 The machine description should define a single pattern, usually
6619 a @code{define_expand}, which expands to all the required insns.
6621 Usually, this would be a comparison insn to set the condition code
6622 and a separate branch insn testing the condition code and branching
6623 or not according to its value.  For many machines, however,
6624 separating compares and branches is limiting, which is why the
6625 more flexible approach with one @code{define_expand} is used in GCC.
6626 The machine description becomes clearer for architectures that
6627 have compare-and-branch instructions but no condition code.  It also
6628 works better when different sets of comparison operators are supported
6629 by different kinds of conditional branches (e.g. integer vs. floating-point),
6630 or by conditional branches with respect to conditional stores.
6632 Two separate insns are always used if the machine description represents
6633 a condition code register using the legacy RTL expression @code{(cc0)},
6634 and on most machines that use a separate condition code register
6635 (@pxref{Condition Code}).  For machines that use @code{(cc0)}, in
6636 fact, the set and use of the condition code must be separate and
6637 adjacent@footnote{@code{note} insns can separate them, though.}, thus
6638 allowing flags in @code{cc_status} to be used (@pxref{Condition Code}) and
6639 so that the comparison and branch insns could be located from each other
6640 by using the functions @code{prev_cc0_setter} and @code{next_cc0_user}.
6642 Even in this case having a single entry point for conditional branches
6643 is advantageous, because it handles equally well the case where a single
6644 comparison instruction records the results of both signed and unsigned
6645 comparison of the given operands (with the branch insns coming in distinct
6646 signed and unsigned flavors) as in the x86 or SPARC, and the case where
6647 there are distinct signed and unsigned compare instructions and only
6648 one set of conditional branch instructions as in the PowerPC.
6650 @end ifset
6651 @ifset INTERNALS
6652 @node Looping Patterns
6653 @section Defining Looping Instruction Patterns
6654 @cindex looping instruction patterns
6655 @cindex defining looping instruction patterns
6657 Some machines have special jump instructions that can be utilized to
6658 make loops more efficient.  A common example is the 68000 @samp{dbra}
6659 instruction which performs a decrement of a register and a branch if the
6660 result was greater than zero.  Other machines, in particular digital
6661 signal processors (DSPs), have special block repeat instructions to
6662 provide low-overhead loop support.  For example, the TI TMS320C3x/C4x
6663 DSPs have a block repeat instruction that loads special registers to
6664 mark the top and end of a loop and to count the number of loop
6665 iterations.  This avoids the need for fetching and executing a
6666 @samp{dbra}-like instruction and avoids pipeline stalls associated with
6667 the jump.
6669 GCC has three special named patterns to support low overhead looping.
6670 They are @samp{decrement_and_branch_until_zero}, @samp{doloop_begin},
6671 and @samp{doloop_end}.  The first pattern,
6672 @samp{decrement_and_branch_until_zero}, is not emitted during RTL
6673 generation but may be emitted during the instruction combination phase.
6674 This requires the assistance of the loop optimizer, using information
6675 collected during strength reduction, to reverse a loop to count down to
6676 zero.  Some targets also require the loop optimizer to add a
6677 @code{REG_NONNEG} note to indicate that the iteration count is always
6678 positive.  This is needed if the target performs a signed loop
6679 termination test.  For example, the 68000 uses a pattern similar to the
6680 following for its @code{dbra} instruction:
6682 @smallexample
6683 @group
6684 (define_insn "decrement_and_branch_until_zero"
6685   [(set (pc)
6686         (if_then_else
6687           (ge (plus:SI (match_operand:SI 0 "general_operand" "+d*am")
6688                        (const_int -1))
6689               (const_int 0))
6690           (label_ref (match_operand 1 "" ""))
6691           (pc)))
6692    (set (match_dup 0)
6693         (plus:SI (match_dup 0)
6694                  (const_int -1)))]
6695   "find_reg_note (insn, REG_NONNEG, 0)"
6696   "@dots{}")
6697 @end group
6698 @end smallexample
6700 Note that since the insn is both a jump insn and has an output, it must
6701 deal with its own reloads, hence the `m' constraints.  Also note that
6702 since this insn is generated by the instruction combination phase
6703 combining two sequential insns together into an implicit parallel insn,
6704 the iteration counter needs to be biased by the same amount as the
6705 decrement operation, in this case @minus{}1.  Note that the following similar
6706 pattern will not be matched by the combiner.
6708 @smallexample
6709 @group
6710 (define_insn "decrement_and_branch_until_zero"
6711   [(set (pc)
6712         (if_then_else
6713           (ge (match_operand:SI 0 "general_operand" "+d*am")
6714               (const_int 1))
6715           (label_ref (match_operand 1 "" ""))
6716           (pc)))
6717    (set (match_dup 0)
6718         (plus:SI (match_dup 0)
6719                  (const_int -1)))]
6720   "find_reg_note (insn, REG_NONNEG, 0)"
6721   "@dots{}")
6722 @end group
6723 @end smallexample
6725 The other two special looping patterns, @samp{doloop_begin} and
6726 @samp{doloop_end}, are emitted by the loop optimizer for certain
6727 well-behaved loops with a finite number of loop iterations using
6728 information collected during strength reduction.
6730 The @samp{doloop_end} pattern describes the actual looping instruction
6731 (or the implicit looping operation) and the @samp{doloop_begin} pattern
6732 is an optional companion pattern that can be used for initialization
6733 needed for some low-overhead looping instructions.
6735 Note that some machines require the actual looping instruction to be
6736 emitted at the top of the loop (e.g., the TMS320C3x/C4x DSPs).  Emitting
6737 the true RTL for a looping instruction at the top of the loop can cause
6738 problems with flow analysis.  So instead, a dummy @code{doloop} insn is
6739 emitted at the end of the loop.  The machine dependent reorg pass checks
6740 for the presence of this @code{doloop} insn and then searches back to
6741 the top of the loop, where it inserts the true looping insn (provided
6742 there are no instructions in the loop which would cause problems).  Any
6743 additional labels can be emitted at this point.  In addition, if the
6744 desired special iteration counter register was not allocated, this
6745 machine dependent reorg pass could emit a traditional compare and jump
6746 instruction pair.
6748 The essential difference between the
6749 @samp{decrement_and_branch_until_zero} and the @samp{doloop_end}
6750 patterns is that the loop optimizer allocates an additional pseudo
6751 register for the latter as an iteration counter.  This pseudo register
6752 cannot be used within the loop (i.e., general induction variables cannot
6753 be derived from it), however, in many cases the loop induction variable
6754 may become redundant and removed by the flow pass.
6757 @end ifset
6758 @ifset INTERNALS
6759 @node Insn Canonicalizations
6760 @section Canonicalization of Instructions
6761 @cindex canonicalization of instructions
6762 @cindex insn canonicalization
6764 There are often cases where multiple RTL expressions could represent an
6765 operation performed by a single machine instruction.  This situation is
6766 most commonly encountered with logical, branch, and multiply-accumulate
6767 instructions.  In such cases, the compiler attempts to convert these
6768 multiple RTL expressions into a single canonical form to reduce the
6769 number of insn patterns required.
6771 In addition to algebraic simplifications, following canonicalizations
6772 are performed:
6774 @itemize @bullet
6775 @item
6776 For commutative and comparison operators, a constant is always made the
6777 second operand.  If a machine only supports a constant as the second
6778 operand, only patterns that match a constant in the second operand need
6779 be supplied.
6781 @item
6782 For associative operators, a sequence of operators will always chain
6783 to the left; for instance, only the left operand of an integer @code{plus}
6784 can itself be a @code{plus}.  @code{and}, @code{ior}, @code{xor},
6785 @code{plus}, @code{mult}, @code{smin}, @code{smax}, @code{umin}, and
6786 @code{umax} are associative when applied to integers, and sometimes to
6787 floating-point.
6789 @item
6790 @cindex @code{neg}, canonicalization of
6791 @cindex @code{not}, canonicalization of
6792 @cindex @code{mult}, canonicalization of
6793 @cindex @code{plus}, canonicalization of
6794 @cindex @code{minus}, canonicalization of
6795 For these operators, if only one operand is a @code{neg}, @code{not},
6796 @code{mult}, @code{plus}, or @code{minus} expression, it will be the
6797 first operand.
6799 @item
6800 In combinations of @code{neg}, @code{mult}, @code{plus}, and
6801 @code{minus}, the @code{neg} operations (if any) will be moved inside
6802 the operations as far as possible.  For instance,
6803 @code{(neg (mult A B))} is canonicalized as @code{(mult (neg A) B)}, but
6804 @code{(plus (mult (neg B) C) A)} is canonicalized as
6805 @code{(minus A (mult B C))}.
6807 @cindex @code{compare}, canonicalization of
6808 @item
6809 For the @code{compare} operator, a constant is always the second operand
6810 if the first argument is a condition code register or @code{(cc0)}.
6812 @item
6813 An operand of @code{neg}, @code{not}, @code{mult}, @code{plus}, or
6814 @code{minus} is made the first operand under the same conditions as
6815 above.
6817 @item
6818 @code{(ltu (plus @var{a} @var{b}) @var{b})} is converted to
6819 @code{(ltu (plus @var{a} @var{b}) @var{a})}. Likewise with @code{geu} instead
6820 of @code{ltu}.
6822 @item
6823 @code{(minus @var{x} (const_int @var{n}))} is converted to
6824 @code{(plus @var{x} (const_int @var{-n}))}.
6826 @item
6827 Within address computations (i.e., inside @code{mem}), a left shift is
6828 converted into the appropriate multiplication by a power of two.
6830 @cindex @code{ior}, canonicalization of
6831 @cindex @code{and}, canonicalization of
6832 @cindex De Morgan's law
6833 @item
6834 De Morgan's Law is used to move bitwise negation inside a bitwise
6835 logical-and or logical-or operation.  If this results in only one
6836 operand being a @code{not} expression, it will be the first one.
6838 A machine that has an instruction that performs a bitwise logical-and of one
6839 operand with the bitwise negation of the other should specify the pattern
6840 for that instruction as
6842 @smallexample
6843 (define_insn ""
6844   [(set (match_operand:@var{m} 0 @dots{})
6845         (and:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
6846                      (match_operand:@var{m} 2 @dots{})))]
6847   "@dots{}"
6848   "@dots{}")
6849 @end smallexample
6851 @noindent
6852 Similarly, a pattern for a ``NAND'' instruction should be written
6854 @smallexample
6855 (define_insn ""
6856   [(set (match_operand:@var{m} 0 @dots{})
6857         (ior:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
6858                      (not:@var{m} (match_operand:@var{m} 2 @dots{}))))]
6859   "@dots{}"
6860   "@dots{}")
6861 @end smallexample
6863 In both cases, it is not necessary to include patterns for the many
6864 logically equivalent RTL expressions.
6866 @cindex @code{xor}, canonicalization of
6867 @item
6868 The only possible RTL expressions involving both bitwise exclusive-or
6869 and bitwise negation are @code{(xor:@var{m} @var{x} @var{y})}
6870 and @code{(not:@var{m} (xor:@var{m} @var{x} @var{y}))}.
6872 @item
6873 The sum of three items, one of which is a constant, will only appear in
6874 the form
6876 @smallexample
6877 (plus:@var{m} (plus:@var{m} @var{x} @var{y}) @var{constant})
6878 @end smallexample
6880 @cindex @code{zero_extract}, canonicalization of
6881 @cindex @code{sign_extract}, canonicalization of
6882 @item
6883 Equality comparisons of a group of bits (usually a single bit) with zero
6884 will be written using @code{zero_extract} rather than the equivalent
6885 @code{and} or @code{sign_extract} operations.
6887 @cindex @code{mult}, canonicalization of
6888 @item
6889 @code{(sign_extend:@var{m1} (mult:@var{m2} (sign_extend:@var{m2} @var{x})
6890 (sign_extend:@var{m2} @var{y})))} is converted to @code{(mult:@var{m1}
6891 (sign_extend:@var{m1} @var{x}) (sign_extend:@var{m1} @var{y}))}, and likewise
6892 for @code{zero_extend}.
6894 @item
6895 @code{(sign_extend:@var{m1} (mult:@var{m2} (ashiftrt:@var{m2}
6896 @var{x} @var{s}) (sign_extend:@var{m2} @var{y})))} is converted
6897 to @code{(mult:@var{m1} (sign_extend:@var{m1} (ashiftrt:@var{m2}
6898 @var{x} @var{s})) (sign_extend:@var{m1} @var{y}))}, and likewise for
6899 patterns using @code{zero_extend} and @code{lshiftrt}.  If the second
6900 operand of @code{mult} is also a shift, then that is extended also.
6901 This transformation is only applied when it can be proven that the
6902 original operation had sufficient precision to prevent overflow.
6904 @end itemize
6906 Further canonicalization rules are defined in the function
6907 @code{commutative_operand_precedence} in @file{gcc/rtlanal.c}.
6909 @end ifset
6910 @ifset INTERNALS
6911 @node Expander Definitions
6912 @section Defining RTL Sequences for Code Generation
6913 @cindex expander definitions
6914 @cindex code generation RTL sequences
6915 @cindex defining RTL sequences for code generation
6917 On some target machines, some standard pattern names for RTL generation
6918 cannot be handled with single insn, but a sequence of RTL insns can
6919 represent them.  For these target machines, you can write a
6920 @code{define_expand} to specify how to generate the sequence of RTL@.
6922 @findex define_expand
6923 A @code{define_expand} is an RTL expression that looks almost like a
6924 @code{define_insn}; but, unlike the latter, a @code{define_expand} is used
6925 only for RTL generation and it can produce more than one RTL insn.
6927 A @code{define_expand} RTX has four operands:
6929 @itemize @bullet
6930 @item
6931 The name.  Each @code{define_expand} must have a name, since the only
6932 use for it is to refer to it by name.
6934 @item
6935 The RTL template.  This is a vector of RTL expressions representing
6936 a sequence of separate instructions.  Unlike @code{define_insn}, there
6937 is no implicit surrounding @code{PARALLEL}.
6939 @item
6940 The condition, a string containing a C expression.  This expression is
6941 used to express how the availability of this pattern depends on
6942 subclasses of target machine, selected by command-line options when GCC
6943 is run.  This is just like the condition of a @code{define_insn} that
6944 has a standard name.  Therefore, the condition (if present) may not
6945 depend on the data in the insn being matched, but only the
6946 target-machine-type flags.  The compiler needs to test these conditions
6947 during initialization in order to learn exactly which named instructions
6948 are available in a particular run.
6950 @item
6951 The preparation statements, a string containing zero or more C
6952 statements which are to be executed before RTL code is generated from
6953 the RTL template.
6955 Usually these statements prepare temporary registers for use as
6956 internal operands in the RTL template, but they can also generate RTL
6957 insns directly by calling routines such as @code{emit_insn}, etc.
6958 Any such insns precede the ones that come from the RTL template.
6960 @item
6961 Optionally, a vector containing the values of attributes. @xref{Insn
6962 Attributes}.
6963 @end itemize
6965 Every RTL insn emitted by a @code{define_expand} must match some
6966 @code{define_insn} in the machine description.  Otherwise, the compiler
6967 will crash when trying to generate code for the insn or trying to optimize
6970 The RTL template, in addition to controlling generation of RTL insns,
6971 also describes the operands that need to be specified when this pattern
6972 is used.  In particular, it gives a predicate for each operand.
6974 A true operand, which needs to be specified in order to generate RTL from
6975 the pattern, should be described with a @code{match_operand} in its first
6976 occurrence in the RTL template.  This enters information on the operand's
6977 predicate into the tables that record such things.  GCC uses the
6978 information to preload the operand into a register if that is required for
6979 valid RTL code.  If the operand is referred to more than once, subsequent
6980 references should use @code{match_dup}.
6982 The RTL template may also refer to internal ``operands'' which are
6983 temporary registers or labels used only within the sequence made by the
6984 @code{define_expand}.  Internal operands are substituted into the RTL
6985 template with @code{match_dup}, never with @code{match_operand}.  The
6986 values of the internal operands are not passed in as arguments by the
6987 compiler when it requests use of this pattern.  Instead, they are computed
6988 within the pattern, in the preparation statements.  These statements
6989 compute the values and store them into the appropriate elements of
6990 @code{operands} so that @code{match_dup} can find them.
6992 There are two special macros defined for use in the preparation statements:
6993 @code{DONE} and @code{FAIL}.  Use them with a following semicolon,
6994 as a statement.
6996 @table @code
6998 @findex DONE
6999 @item DONE
7000 Use the @code{DONE} macro to end RTL generation for the pattern.  The
7001 only RTL insns resulting from the pattern on this occasion will be
7002 those already emitted by explicit calls to @code{emit_insn} within the
7003 preparation statements; the RTL template will not be generated.
7005 @findex FAIL
7006 @item FAIL
7007 Make the pattern fail on this occasion.  When a pattern fails, it means
7008 that the pattern was not truly available.  The calling routines in the
7009 compiler will try other strategies for code generation using other patterns.
7011 Failure is currently supported only for binary (addition, multiplication,
7012 shifting, etc.) and bit-field (@code{extv}, @code{extzv}, and @code{insv})
7013 operations.
7014 @end table
7016 If the preparation falls through (invokes neither @code{DONE} nor
7017 @code{FAIL}), then the @code{define_expand} acts like a
7018 @code{define_insn} in that the RTL template is used to generate the
7019 insn.
7021 The RTL template is not used for matching, only for generating the
7022 initial insn list.  If the preparation statement always invokes
7023 @code{DONE} or @code{FAIL}, the RTL template may be reduced to a simple
7024 list of operands, such as this example:
7026 @smallexample
7027 @group
7028 (define_expand "addsi3"
7029   [(match_operand:SI 0 "register_operand" "")
7030    (match_operand:SI 1 "register_operand" "")
7031    (match_operand:SI 2 "register_operand" "")]
7032 @end group
7033 @group
7034   ""
7035   "
7037   handle_add (operands[0], operands[1], operands[2]);
7038   DONE;
7039 @}")
7040 @end group
7041 @end smallexample
7043 Here is an example, the definition of left-shift for the SPUR chip:
7045 @smallexample
7046 @group
7047 (define_expand "ashlsi3"
7048   [(set (match_operand:SI 0 "register_operand" "")
7049         (ashift:SI
7050 @end group
7051 @group
7052           (match_operand:SI 1 "register_operand" "")
7053           (match_operand:SI 2 "nonmemory_operand" "")))]
7054   ""
7055   "
7056 @end group
7057 @end smallexample
7059 @smallexample
7060 @group
7062   if (GET_CODE (operands[2]) != CONST_INT
7063       || (unsigned) INTVAL (operands[2]) > 3)
7064     FAIL;
7065 @}")
7066 @end group
7067 @end smallexample
7069 @noindent
7070 This example uses @code{define_expand} so that it can generate an RTL insn
7071 for shifting when the shift-count is in the supported range of 0 to 3 but
7072 fail in other cases where machine insns aren't available.  When it fails,
7073 the compiler tries another strategy using different patterns (such as, a
7074 library call).
7076 If the compiler were able to handle nontrivial condition-strings in
7077 patterns with names, then it would be possible to use a
7078 @code{define_insn} in that case.  Here is another case (zero-extension
7079 on the 68000) which makes more use of the power of @code{define_expand}:
7081 @smallexample
7082 (define_expand "zero_extendhisi2"
7083   [(set (match_operand:SI 0 "general_operand" "")
7084         (const_int 0))
7085    (set (strict_low_part
7086           (subreg:HI
7087             (match_dup 0)
7088             0))
7089         (match_operand:HI 1 "general_operand" ""))]
7090   ""
7091   "operands[1] = make_safe_from (operands[1], operands[0]);")
7092 @end smallexample
7094 @noindent
7095 @findex make_safe_from
7096 Here two RTL insns are generated, one to clear the entire output operand
7097 and the other to copy the input operand into its low half.  This sequence
7098 is incorrect if the input operand refers to [the old value of] the output
7099 operand, so the preparation statement makes sure this isn't so.  The
7100 function @code{make_safe_from} copies the @code{operands[1]} into a
7101 temporary register if it refers to @code{operands[0]}.  It does this
7102 by emitting another RTL insn.
7104 Finally, a third example shows the use of an internal operand.
7105 Zero-extension on the SPUR chip is done by @code{and}-ing the result
7106 against a halfword mask.  But this mask cannot be represented by a
7107 @code{const_int} because the constant value is too large to be legitimate
7108 on this machine.  So it must be copied into a register with
7109 @code{force_reg} and then the register used in the @code{and}.
7111 @smallexample
7112 (define_expand "zero_extendhisi2"
7113   [(set (match_operand:SI 0 "register_operand" "")
7114         (and:SI (subreg:SI
7115                   (match_operand:HI 1 "register_operand" "")
7116                   0)
7117                 (match_dup 2)))]
7118   ""
7119   "operands[2]
7120      = force_reg (SImode, GEN_INT (65535)); ")
7121 @end smallexample
7123 @emph{Note:} If the @code{define_expand} is used to serve a
7124 standard binary or unary arithmetic operation or a bit-field operation,
7125 then the last insn it generates must not be a @code{code_label},
7126 @code{barrier} or @code{note}.  It must be an @code{insn},
7127 @code{jump_insn} or @code{call_insn}.  If you don't need a real insn
7128 at the end, emit an insn to copy the result of the operation into
7129 itself.  Such an insn will generate no code, but it can avoid problems
7130 in the compiler.
7132 @end ifset
7133 @ifset INTERNALS
7134 @node Insn Splitting
7135 @section Defining How to Split Instructions
7136 @cindex insn splitting
7137 @cindex instruction splitting
7138 @cindex splitting instructions
7140 There are two cases where you should specify how to split a pattern
7141 into multiple insns.  On machines that have instructions requiring
7142 delay slots (@pxref{Delay Slots}) or that have instructions whose
7143 output is not available for multiple cycles (@pxref{Processor pipeline
7144 description}), the compiler phases that optimize these cases need to
7145 be able to move insns into one-instruction delay slots.  However, some
7146 insns may generate more than one machine instruction.  These insns
7147 cannot be placed into a delay slot.
7149 Often you can rewrite the single insn as a list of individual insns,
7150 each corresponding to one machine instruction.  The disadvantage of
7151 doing so is that it will cause the compilation to be slower and require
7152 more space.  If the resulting insns are too complex, it may also
7153 suppress some optimizations.  The compiler splits the insn if there is a
7154 reason to believe that it might improve instruction or delay slot
7155 scheduling.
7157 The insn combiner phase also splits putative insns.  If three insns are
7158 merged into one insn with a complex expression that cannot be matched by
7159 some @code{define_insn} pattern, the combiner phase attempts to split
7160 the complex pattern into two insns that are recognized.  Usually it can
7161 break the complex pattern into two patterns by splitting out some
7162 subexpression.  However, in some other cases, such as performing an
7163 addition of a large constant in two insns on a RISC machine, the way to
7164 split the addition into two insns is machine-dependent.
7166 @findex define_split
7167 The @code{define_split} definition tells the compiler how to split a
7168 complex insn into several simpler insns.  It looks like this:
7170 @smallexample
7171 (define_split
7172   [@var{insn-pattern}]
7173   "@var{condition}"
7174   [@var{new-insn-pattern-1}
7175    @var{new-insn-pattern-2}
7176    @dots{}]
7177   "@var{preparation-statements}")
7178 @end smallexample
7180 @var{insn-pattern} is a pattern that needs to be split and
7181 @var{condition} is the final condition to be tested, as in a
7182 @code{define_insn}.  When an insn matching @var{insn-pattern} and
7183 satisfying @var{condition} is found, it is replaced in the insn list
7184 with the insns given by @var{new-insn-pattern-1},
7185 @var{new-insn-pattern-2}, etc.
7187 The @var{preparation-statements} are similar to those statements that
7188 are specified for @code{define_expand} (@pxref{Expander Definitions})
7189 and are executed before the new RTL is generated to prepare for the
7190 generated code or emit some insns whose pattern is not fixed.  Unlike
7191 those in @code{define_expand}, however, these statements must not
7192 generate any new pseudo-registers.  Once reload has completed, they also
7193 must not allocate any space in the stack frame.
7195 Patterns are matched against @var{insn-pattern} in two different
7196 circumstances.  If an insn needs to be split for delay slot scheduling
7197 or insn scheduling, the insn is already known to be valid, which means
7198 that it must have been matched by some @code{define_insn} and, if
7199 @code{reload_completed} is nonzero, is known to satisfy the constraints
7200 of that @code{define_insn}.  In that case, the new insn patterns must
7201 also be insns that are matched by some @code{define_insn} and, if
7202 @code{reload_completed} is nonzero, must also satisfy the constraints
7203 of those definitions.
7205 As an example of this usage of @code{define_split}, consider the following
7206 example from @file{a29k.md}, which splits a @code{sign_extend} from
7207 @code{HImode} to @code{SImode} into a pair of shift insns:
7209 @smallexample
7210 (define_split
7211   [(set (match_operand:SI 0 "gen_reg_operand" "")
7212         (sign_extend:SI (match_operand:HI 1 "gen_reg_operand" "")))]
7213   ""
7214   [(set (match_dup 0)
7215         (ashift:SI (match_dup 1)
7216                    (const_int 16)))
7217    (set (match_dup 0)
7218         (ashiftrt:SI (match_dup 0)
7219                      (const_int 16)))]
7220   "
7221 @{ operands[1] = gen_lowpart (SImode, operands[1]); @}")
7222 @end smallexample
7224 When the combiner phase tries to split an insn pattern, it is always the
7225 case that the pattern is @emph{not} matched by any @code{define_insn}.
7226 The combiner pass first tries to split a single @code{set} expression
7227 and then the same @code{set} expression inside a @code{parallel}, but
7228 followed by a @code{clobber} of a pseudo-reg to use as a scratch
7229 register.  In these cases, the combiner expects exactly two new insn
7230 patterns to be generated.  It will verify that these patterns match some
7231 @code{define_insn} definitions, so you need not do this test in the
7232 @code{define_split} (of course, there is no point in writing a
7233 @code{define_split} that will never produce insns that match).
7235 Here is an example of this use of @code{define_split}, taken from
7236 @file{rs6000.md}:
7238 @smallexample
7239 (define_split
7240   [(set (match_operand:SI 0 "gen_reg_operand" "")
7241         (plus:SI (match_operand:SI 1 "gen_reg_operand" "")
7242                  (match_operand:SI 2 "non_add_cint_operand" "")))]
7243   ""
7244   [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
7245    (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
7248   int low = INTVAL (operands[2]) & 0xffff;
7249   int high = (unsigned) INTVAL (operands[2]) >> 16;
7251   if (low & 0x8000)
7252     high++, low |= 0xffff0000;
7254   operands[3] = GEN_INT (high << 16);
7255   operands[4] = GEN_INT (low);
7256 @}")
7257 @end smallexample
7259 Here the predicate @code{non_add_cint_operand} matches any
7260 @code{const_int} that is @emph{not} a valid operand of a single add
7261 insn.  The add with the smaller displacement is written so that it
7262 can be substituted into the address of a subsequent operation.
7264 An example that uses a scratch register, from the same file, generates
7265 an equality comparison of a register and a large constant:
7267 @smallexample
7268 (define_split
7269   [(set (match_operand:CC 0 "cc_reg_operand" "")
7270         (compare:CC (match_operand:SI 1 "gen_reg_operand" "")
7271                     (match_operand:SI 2 "non_short_cint_operand" "")))
7272    (clobber (match_operand:SI 3 "gen_reg_operand" ""))]
7273   "find_single_use (operands[0], insn, 0)
7274    && (GET_CODE (*find_single_use (operands[0], insn, 0)) == EQ
7275        || GET_CODE (*find_single_use (operands[0], insn, 0)) == NE)"
7276   [(set (match_dup 3) (xor:SI (match_dup 1) (match_dup 4)))
7277    (set (match_dup 0) (compare:CC (match_dup 3) (match_dup 5)))]
7278   "
7280   /* @r{Get the constant we are comparing against, C, and see what it
7281      looks like sign-extended to 16 bits.  Then see what constant
7282      could be XOR'ed with C to get the sign-extended value.}  */
7284   int c = INTVAL (operands[2]);
7285   int sextc = (c << 16) >> 16;
7286   int xorv = c ^ sextc;
7288   operands[4] = GEN_INT (xorv);
7289   operands[5] = GEN_INT (sextc);
7290 @}")
7291 @end smallexample
7293 To avoid confusion, don't write a single @code{define_split} that
7294 accepts some insns that match some @code{define_insn} as well as some
7295 insns that don't.  Instead, write two separate @code{define_split}
7296 definitions, one for the insns that are valid and one for the insns that
7297 are not valid.
7299 The splitter is allowed to split jump instructions into sequence of
7300 jumps or create new jumps in while splitting non-jump instructions.  As
7301 the central flowgraph and branch prediction information needs to be updated,
7302 several restriction apply.
7304 Splitting of jump instruction into sequence that over by another jump
7305 instruction is always valid, as compiler expect identical behavior of new
7306 jump.  When new sequence contains multiple jump instructions or new labels,
7307 more assistance is needed.  Splitter is required to create only unconditional
7308 jumps, or simple conditional jump instructions.  Additionally it must attach a
7309 @code{REG_BR_PROB} note to each conditional jump.  A global variable
7310 @code{split_branch_probability} holds the probability of the original branch in case
7311 it was a simple conditional jump, @minus{}1 otherwise.  To simplify
7312 recomputing of edge frequencies, the new sequence is required to have only
7313 forward jumps to the newly created labels.
7315 @findex define_insn_and_split
7316 For the common case where the pattern of a define_split exactly matches the
7317 pattern of a define_insn, use @code{define_insn_and_split}.  It looks like
7318 this:
7320 @smallexample
7321 (define_insn_and_split
7322   [@var{insn-pattern}]
7323   "@var{condition}"
7324   "@var{output-template}"
7325   "@var{split-condition}"
7326   [@var{new-insn-pattern-1}
7327    @var{new-insn-pattern-2}
7328    @dots{}]
7329   "@var{preparation-statements}"
7330   [@var{insn-attributes}])
7332 @end smallexample
7334 @var{insn-pattern}, @var{condition}, @var{output-template}, and
7335 @var{insn-attributes} are used as in @code{define_insn}.  The
7336 @var{new-insn-pattern} vector and the @var{preparation-statements} are used as
7337 in a @code{define_split}.  The @var{split-condition} is also used as in
7338 @code{define_split}, with the additional behavior that if the condition starts
7339 with @samp{&&}, the condition used for the split will be the constructed as a
7340 logical ``and'' of the split condition with the insn condition.  For example,
7341 from i386.md:
7343 @smallexample
7344 (define_insn_and_split "zero_extendhisi2_and"
7345   [(set (match_operand:SI 0 "register_operand" "=r")
7346      (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))
7347    (clobber (reg:CC 17))]
7348   "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size"
7349   "#"
7350   "&& reload_completed"
7351   [(parallel [(set (match_dup 0)
7352                    (and:SI (match_dup 0) (const_int 65535)))
7353               (clobber (reg:CC 17))])]
7354   ""
7355   [(set_attr "type" "alu1")])
7357 @end smallexample
7359 In this case, the actual split condition will be
7360 @samp{TARGET_ZERO_EXTEND_WITH_AND && !optimize_size && reload_completed}.
7362 The @code{define_insn_and_split} construction provides exactly the same
7363 functionality as two separate @code{define_insn} and @code{define_split}
7364 patterns.  It exists for compactness, and as a maintenance tool to prevent
7365 having to ensure the two patterns' templates match.
7367 @end ifset
7368 @ifset INTERNALS
7369 @node Including Patterns
7370 @section Including Patterns in Machine Descriptions.
7371 @cindex insn includes
7373 @findex include
7374 The @code{include} pattern tells the compiler tools where to
7375 look for patterns that are in files other than in the file
7376 @file{.md}.  This is used only at build time and there is no preprocessing allowed.
7378 It looks like:
7380 @smallexample
7382 (include
7383   @var{pathname})
7384 @end smallexample
7386 For example:
7388 @smallexample
7390 (include "filestuff")
7392 @end smallexample
7394 Where @var{pathname} is a string that specifies the location of the file,
7395 specifies the include file to be in @file{gcc/config/target/filestuff}.  The
7396 directory @file{gcc/config/target} is regarded as the default directory.
7399 Machine descriptions may be split up into smaller more manageable subsections
7400 and placed into subdirectories.
7402 By specifying:
7404 @smallexample
7406 (include "BOGUS/filestuff")
7408 @end smallexample
7410 the include file is specified to be in @file{gcc/config/@var{target}/BOGUS/filestuff}.
7412 Specifying an absolute path for the include file such as;
7413 @smallexample
7415 (include "/u2/BOGUS/filestuff")
7417 @end smallexample
7418 is permitted but is not encouraged.
7420 @subsection RTL Generation Tool Options for Directory Search
7421 @cindex directory options .md
7422 @cindex options, directory search
7423 @cindex search options
7425 The @option{-I@var{dir}} option specifies directories to search for machine descriptions.
7426 For example:
7428 @smallexample
7430 genrecog -I/p1/abc/proc1 -I/p2/abcd/pro2 target.md
7432 @end smallexample
7435 Add the directory @var{dir} to the head of the list of directories to be
7436 searched for header files.  This can be used to override a system machine definition
7437 file, substituting your own version, since these directories are
7438 searched before the default machine description file directories.  If you use more than
7439 one @option{-I} option, the directories are scanned in left-to-right
7440 order; the standard default directory come after.
7443 @end ifset
7444 @ifset INTERNALS
7445 @node Peephole Definitions
7446 @section Machine-Specific Peephole Optimizers
7447 @cindex peephole optimizer definitions
7448 @cindex defining peephole optimizers
7450 In addition to instruction patterns the @file{md} file may contain
7451 definitions of machine-specific peephole optimizations.
7453 The combiner does not notice certain peephole optimizations when the data
7454 flow in the program does not suggest that it should try them.  For example,
7455 sometimes two consecutive insns related in purpose can be combined even
7456 though the second one does not appear to use a register computed in the
7457 first one.  A machine-specific peephole optimizer can detect such
7458 opportunities.
7460 There are two forms of peephole definitions that may be used.  The
7461 original @code{define_peephole} is run at assembly output time to
7462 match insns and substitute assembly text.  Use of @code{define_peephole}
7463 is deprecated.
7465 A newer @code{define_peephole2} matches insns and substitutes new
7466 insns.  The @code{peephole2} pass is run after register allocation
7467 but before scheduling, which may result in much better code for
7468 targets that do scheduling.
7470 @menu
7471 * define_peephole::     RTL to Text Peephole Optimizers
7472 * define_peephole2::    RTL to RTL Peephole Optimizers
7473 @end menu
7475 @end ifset
7476 @ifset INTERNALS
7477 @node define_peephole
7478 @subsection RTL to Text Peephole Optimizers
7479 @findex define_peephole
7481 @need 1000
7482 A definition looks like this:
7484 @smallexample
7485 (define_peephole
7486   [@var{insn-pattern-1}
7487    @var{insn-pattern-2}
7488    @dots{}]
7489   "@var{condition}"
7490   "@var{template}"
7491   "@var{optional-insn-attributes}")
7492 @end smallexample
7494 @noindent
7495 The last string operand may be omitted if you are not using any
7496 machine-specific information in this machine description.  If present,
7497 it must obey the same rules as in a @code{define_insn}.
7499 In this skeleton, @var{insn-pattern-1} and so on are patterns to match
7500 consecutive insns.  The optimization applies to a sequence of insns when
7501 @var{insn-pattern-1} matches the first one, @var{insn-pattern-2} matches
7502 the next, and so on.
7504 Each of the insns matched by a peephole must also match a
7505 @code{define_insn}.  Peepholes are checked only at the last stage just
7506 before code generation, and only optionally.  Therefore, any insn which
7507 would match a peephole but no @code{define_insn} will cause a crash in code
7508 generation in an unoptimized compilation, or at various optimization
7509 stages.
7511 The operands of the insns are matched with @code{match_operands},
7512 @code{match_operator}, and @code{match_dup}, as usual.  What is not
7513 usual is that the operand numbers apply to all the insn patterns in the
7514 definition.  So, you can check for identical operands in two insns by
7515 using @code{match_operand} in one insn and @code{match_dup} in the
7516 other.
7518 The operand constraints used in @code{match_operand} patterns do not have
7519 any direct effect on the applicability of the peephole, but they will
7520 be validated afterward, so make sure your constraints are general enough
7521 to apply whenever the peephole matches.  If the peephole matches
7522 but the constraints are not satisfied, the compiler will crash.
7524 It is safe to omit constraints in all the operands of the peephole; or
7525 you can write constraints which serve as a double-check on the criteria
7526 previously tested.
7528 Once a sequence of insns matches the patterns, the @var{condition} is
7529 checked.  This is a C expression which makes the final decision whether to
7530 perform the optimization (we do so if the expression is nonzero).  If
7531 @var{condition} is omitted (in other words, the string is empty) then the
7532 optimization is applied to every sequence of insns that matches the
7533 patterns.
7535 The defined peephole optimizations are applied after register allocation
7536 is complete.  Therefore, the peephole definition can check which
7537 operands have ended up in which kinds of registers, just by looking at
7538 the operands.
7540 @findex prev_active_insn
7541 The way to refer to the operands in @var{condition} is to write
7542 @code{operands[@var{i}]} for operand number @var{i} (as matched by
7543 @code{(match_operand @var{i} @dots{})}).  Use the variable @code{insn}
7544 to refer to the last of the insns being matched; use
7545 @code{prev_active_insn} to find the preceding insns.
7547 @findex dead_or_set_p
7548 When optimizing computations with intermediate results, you can use
7549 @var{condition} to match only when the intermediate results are not used
7550 elsewhere.  Use the C expression @code{dead_or_set_p (@var{insn},
7551 @var{op})}, where @var{insn} is the insn in which you expect the value
7552 to be used for the last time (from the value of @code{insn}, together
7553 with use of @code{prev_nonnote_insn}), and @var{op} is the intermediate
7554 value (from @code{operands[@var{i}]}).
7556 Applying the optimization means replacing the sequence of insns with one
7557 new insn.  The @var{template} controls ultimate output of assembler code
7558 for this combined insn.  It works exactly like the template of a
7559 @code{define_insn}.  Operand numbers in this template are the same ones
7560 used in matching the original sequence of insns.
7562 The result of a defined peephole optimizer does not need to match any of
7563 the insn patterns in the machine description; it does not even have an
7564 opportunity to match them.  The peephole optimizer definition itself serves
7565 as the insn pattern to control how the insn is output.
7567 Defined peephole optimizers are run as assembler code is being output,
7568 so the insns they produce are never combined or rearranged in any way.
7570 Here is an example, taken from the 68000 machine description:
7572 @smallexample
7573 (define_peephole
7574   [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
7575    (set (match_operand:DF 0 "register_operand" "=f")
7576         (match_operand:DF 1 "register_operand" "ad"))]
7577   "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
7579   rtx xoperands[2];
7580   xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
7581 #ifdef MOTOROLA
7582   output_asm_insn ("move.l %1,(sp)", xoperands);
7583   output_asm_insn ("move.l %1,-(sp)", operands);
7584   return "fmove.d (sp)+,%0";
7585 #else
7586   output_asm_insn ("movel %1,sp@@", xoperands);
7587   output_asm_insn ("movel %1,sp@@-", operands);
7588   return "fmoved sp@@+,%0";
7589 #endif
7591 @end smallexample
7593 @need 1000
7594 The effect of this optimization is to change
7596 @smallexample
7597 @group
7598 jbsr _foobar
7599 addql #4,sp
7600 movel d1,sp@@-
7601 movel d0,sp@@-
7602 fmoved sp@@+,fp0
7603 @end group
7604 @end smallexample
7606 @noindent
7607 into
7609 @smallexample
7610 @group
7611 jbsr _foobar
7612 movel d1,sp@@
7613 movel d0,sp@@-
7614 fmoved sp@@+,fp0
7615 @end group
7616 @end smallexample
7618 @ignore
7619 @findex CC_REVERSED
7620 If a peephole matches a sequence including one or more jump insns, you must
7621 take account of the flags such as @code{CC_REVERSED} which specify that the
7622 condition codes are represented in an unusual manner.  The compiler
7623 automatically alters any ordinary conditional jumps which occur in such
7624 situations, but the compiler cannot alter jumps which have been replaced by
7625 peephole optimizations.  So it is up to you to alter the assembler code
7626 that the peephole produces.  Supply C code to write the assembler output,
7627 and in this C code check the condition code status flags and change the
7628 assembler code as appropriate.
7629 @end ignore
7631 @var{insn-pattern-1} and so on look @emph{almost} like the second
7632 operand of @code{define_insn}.  There is one important difference: the
7633 second operand of @code{define_insn} consists of one or more RTX's
7634 enclosed in square brackets.  Usually, there is only one: then the same
7635 action can be written as an element of a @code{define_peephole}.  But
7636 when there are multiple actions in a @code{define_insn}, they are
7637 implicitly enclosed in a @code{parallel}.  Then you must explicitly
7638 write the @code{parallel}, and the square brackets within it, in the
7639 @code{define_peephole}.  Thus, if an insn pattern looks like this,
7641 @smallexample
7642 (define_insn "divmodsi4"
7643   [(set (match_operand:SI 0 "general_operand" "=d")
7644         (div:SI (match_operand:SI 1 "general_operand" "0")
7645                 (match_operand:SI 2 "general_operand" "dmsK")))
7646    (set (match_operand:SI 3 "general_operand" "=d")
7647         (mod:SI (match_dup 1) (match_dup 2)))]
7648   "TARGET_68020"
7649   "divsl%.l %2,%3:%0")
7650 @end smallexample
7652 @noindent
7653 then the way to mention this insn in a peephole is as follows:
7655 @smallexample
7656 (define_peephole
7657   [@dots{}
7658    (parallel
7659     [(set (match_operand:SI 0 "general_operand" "=d")
7660           (div:SI (match_operand:SI 1 "general_operand" "0")
7661                   (match_operand:SI 2 "general_operand" "dmsK")))
7662      (set (match_operand:SI 3 "general_operand" "=d")
7663           (mod:SI (match_dup 1) (match_dup 2)))])
7664    @dots{}]
7665   @dots{})
7666 @end smallexample
7668 @end ifset
7669 @ifset INTERNALS
7670 @node define_peephole2
7671 @subsection RTL to RTL Peephole Optimizers
7672 @findex define_peephole2
7674 The @code{define_peephole2} definition tells the compiler how to
7675 substitute one sequence of instructions for another sequence,
7676 what additional scratch registers may be needed and what their
7677 lifetimes must be.
7679 @smallexample
7680 (define_peephole2
7681   [@var{insn-pattern-1}
7682    @var{insn-pattern-2}
7683    @dots{}]
7684   "@var{condition}"
7685   [@var{new-insn-pattern-1}
7686    @var{new-insn-pattern-2}
7687    @dots{}]
7688   "@var{preparation-statements}")
7689 @end smallexample
7691 The definition is almost identical to @code{define_split}
7692 (@pxref{Insn Splitting}) except that the pattern to match is not a
7693 single instruction, but a sequence of instructions.
7695 It is possible to request additional scratch registers for use in the
7696 output template.  If appropriate registers are not free, the pattern
7697 will simply not match.
7699 @findex match_scratch
7700 @findex match_dup
7701 Scratch registers are requested with a @code{match_scratch} pattern at
7702 the top level of the input pattern.  The allocated register (initially) will
7703 be dead at the point requested within the original sequence.  If the scratch
7704 is used at more than a single point, a @code{match_dup} pattern at the
7705 top level of the input pattern marks the last position in the input sequence
7706 at which the register must be available.
7708 Here is an example from the IA-32 machine description:
7710 @smallexample
7711 (define_peephole2
7712   [(match_scratch:SI 2 "r")
7713    (parallel [(set (match_operand:SI 0 "register_operand" "")
7714                    (match_operator:SI 3 "arith_or_logical_operator"
7715                      [(match_dup 0)
7716                       (match_operand:SI 1 "memory_operand" "")]))
7717               (clobber (reg:CC 17))])]
7718   "! optimize_size && ! TARGET_READ_MODIFY"
7719   [(set (match_dup 2) (match_dup 1))
7720    (parallel [(set (match_dup 0)
7721                    (match_op_dup 3 [(match_dup 0) (match_dup 2)]))
7722               (clobber (reg:CC 17))])]
7723   "")
7724 @end smallexample
7726 @noindent
7727 This pattern tries to split a load from its use in the hopes that we'll be
7728 able to schedule around the memory load latency.  It allocates a single
7729 @code{SImode} register of class @code{GENERAL_REGS} (@code{"r"}) that needs
7730 to be live only at the point just before the arithmetic.
7732 A real example requiring extended scratch lifetimes is harder to come by,
7733 so here's a silly made-up example:
7735 @smallexample
7736 (define_peephole2
7737   [(match_scratch:SI 4 "r")
7738    (set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))
7739    (set (match_operand:SI 2 "" "") (match_dup 1))
7740    (match_dup 4)
7741    (set (match_operand:SI 3 "" "") (match_dup 1))]
7742   "/* @r{determine 1 does not overlap 0 and 2} */"
7743   [(set (match_dup 4) (match_dup 1))
7744    (set (match_dup 0) (match_dup 4))
7745    (set (match_dup 2) (match_dup 4))
7746    (set (match_dup 3) (match_dup 4))]
7747   "")
7748 @end smallexample
7750 @noindent
7751 If we had not added the @code{(match_dup 4)} in the middle of the input
7752 sequence, it might have been the case that the register we chose at the
7753 beginning of the sequence is killed by the first or second @code{set}.
7755 @end ifset
7756 @ifset INTERNALS
7757 @node Insn Attributes
7758 @section Instruction Attributes
7759 @cindex insn attributes
7760 @cindex instruction attributes
7762 In addition to describing the instruction supported by the target machine,
7763 the @file{md} file also defines a group of @dfn{attributes} and a set of
7764 values for each.  Every generated insn is assigned a value for each attribute.
7765 One possible attribute would be the effect that the insn has on the machine's
7766 condition code.  This attribute can then be used by @code{NOTICE_UPDATE_CC}
7767 to track the condition codes.
7769 @menu
7770 * Defining Attributes:: Specifying attributes and their values.
7771 * Expressions::         Valid expressions for attribute values.
7772 * Tagging Insns::       Assigning attribute values to insns.
7773 * Attr Example::        An example of assigning attributes.
7774 * Insn Lengths::        Computing the length of insns.
7775 * Constant Attributes:: Defining attributes that are constant.
7776 * Mnemonic Attribute::  Obtain the instruction mnemonic as attribute value.
7777 * Delay Slots::         Defining delay slots required for a machine.
7778 * Processor pipeline description:: Specifying information for insn scheduling.
7779 @end menu
7781 @end ifset
7782 @ifset INTERNALS
7783 @node Defining Attributes
7784 @subsection Defining Attributes and their Values
7785 @cindex defining attributes and their values
7786 @cindex attributes, defining
7788 @findex define_attr
7789 The @code{define_attr} expression is used to define each attribute required
7790 by the target machine.  It looks like:
7792 @smallexample
7793 (define_attr @var{name} @var{list-of-values} @var{default})
7794 @end smallexample
7796 @var{name} is a string specifying the name of the attribute being
7797 defined.  Some attributes are used in a special way by the rest of the
7798 compiler. The @code{enabled} attribute can be used to conditionally
7799 enable or disable insn alternatives (@pxref{Disable Insn
7800 Alternatives}). The @code{predicable} attribute, together with a
7801 suitable @code{define_cond_exec} (@pxref{Conditional Execution}), can
7802 be used to automatically generate conditional variants of instruction
7803 patterns. The @code{mnemonic} attribute can be used to check for the
7804 instruction mnemonic (@pxref{Mnemonic Attribute}).  The compiler
7805 internally uses the names @code{ce_enabled} and @code{nonce_enabled},
7806 so they should not be used elsewhere as alternative names.
7808 @var{list-of-values} is either a string that specifies a comma-separated
7809 list of values that can be assigned to the attribute, or a null string to
7810 indicate that the attribute takes numeric values.
7812 @var{default} is an attribute expression that gives the value of this
7813 attribute for insns that match patterns whose definition does not include
7814 an explicit value for this attribute.  @xref{Attr Example}, for more
7815 information on the handling of defaults.  @xref{Constant Attributes},
7816 for information on attributes that do not depend on any particular insn.
7818 @findex insn-attr.h
7819 For each defined attribute, a number of definitions are written to the
7820 @file{insn-attr.h} file.  For cases where an explicit set of values is
7821 specified for an attribute, the following are defined:
7823 @itemize @bullet
7824 @item
7825 A @samp{#define} is written for the symbol @samp{HAVE_ATTR_@var{name}}.
7827 @item
7828 An enumerated class is defined for @samp{attr_@var{name}} with
7829 elements of the form @samp{@var{upper-name}_@var{upper-value}} where
7830 the attribute name and value are first converted to uppercase.
7832 @item
7833 A function @samp{get_attr_@var{name}} is defined that is passed an insn and
7834 returns the attribute value for that insn.
7835 @end itemize
7837 For example, if the following is present in the @file{md} file:
7839 @smallexample
7840 (define_attr "type" "branch,fp,load,store,arith" @dots{})
7841 @end smallexample
7843 @noindent
7844 the following lines will be written to the file @file{insn-attr.h}.
7846 @smallexample
7847 #define HAVE_ATTR_type 1
7848 enum attr_type @{TYPE_BRANCH, TYPE_FP, TYPE_LOAD,
7849                  TYPE_STORE, TYPE_ARITH@};
7850 extern enum attr_type get_attr_type ();
7851 @end smallexample
7853 If the attribute takes numeric values, no @code{enum} type will be
7854 defined and the function to obtain the attribute's value will return
7855 @code{int}.
7857 There are attributes which are tied to a specific meaning.  These
7858 attributes are not free to use for other purposes:
7860 @table @code
7861 @item length
7862 The @code{length} attribute is used to calculate the length of emitted
7863 code chunks.  This is especially important when verifying branch
7864 distances. @xref{Insn Lengths}.
7866 @item enabled
7867 The @code{enabled} attribute can be defined to prevent certain
7868 alternatives of an insn definition from being used during code
7869 generation. @xref{Disable Insn Alternatives}.
7871 @item mnemonic
7872 The @code{mnemonic} attribute can be defined to implement instruction
7873 specific checks in e.g. the pipeline description.
7874 @xref{Mnemonic Attribute}.
7875 @end table
7877 For each of these special attributes, the corresponding
7878 @samp{HAVE_ATTR_@var{name}} @samp{#define} is also written when the
7879 attribute is not defined; in that case, it is defined as @samp{0}.
7881 @findex define_enum_attr
7882 @anchor{define_enum_attr}
7883 Another way of defining an attribute is to use:
7885 @smallexample
7886 (define_enum_attr "@var{attr}" "@var{enum}" @var{default})
7887 @end smallexample
7889 This works in just the same way as @code{define_attr}, except that
7890 the list of values is taken from a separate enumeration called
7891 @var{enum} (@pxref{define_enum}).  This form allows you to use
7892 the same list of values for several attributes without having to
7893 repeat the list each time.  For example:
7895 @smallexample
7896 (define_enum "processor" [
7897   model_a
7898   model_b
7899   @dots{}
7901 (define_enum_attr "arch" "processor"
7902   (const (symbol_ref "target_arch")))
7903 (define_enum_attr "tune" "processor"
7904   (const (symbol_ref "target_tune")))
7905 @end smallexample
7907 defines the same attributes as:
7909 @smallexample
7910 (define_attr "arch" "model_a,model_b,@dots{}"
7911   (const (symbol_ref "target_arch")))
7912 (define_attr "tune" "model_a,model_b,@dots{}"
7913   (const (symbol_ref "target_tune")))
7914 @end smallexample
7916 but without duplicating the processor list.  The second example defines two
7917 separate C enums (@code{attr_arch} and @code{attr_tune}) whereas the first
7918 defines a single C enum (@code{processor}).
7919 @end ifset
7920 @ifset INTERNALS
7921 @node Expressions
7922 @subsection Attribute Expressions
7923 @cindex attribute expressions
7925 RTL expressions used to define attributes use the codes described above
7926 plus a few specific to attribute definitions, to be discussed below.
7927 Attribute value expressions must have one of the following forms:
7929 @table @code
7930 @cindex @code{const_int} and attributes
7931 @item (const_int @var{i})
7932 The integer @var{i} specifies the value of a numeric attribute.  @var{i}
7933 must be non-negative.
7935 The value of a numeric attribute can be specified either with a
7936 @code{const_int}, or as an integer represented as a string in
7937 @code{const_string}, @code{eq_attr} (see below), @code{attr},
7938 @code{symbol_ref}, simple arithmetic expressions, and @code{set_attr}
7939 overrides on specific instructions (@pxref{Tagging Insns}).
7941 @cindex @code{const_string} and attributes
7942 @item (const_string @var{value})
7943 The string @var{value} specifies a constant attribute value.
7944 If @var{value} is specified as @samp{"*"}, it means that the default value of
7945 the attribute is to be used for the insn containing this expression.
7946 @samp{"*"} obviously cannot be used in the @var{default} expression
7947 of a @code{define_attr}.
7949 If the attribute whose value is being specified is numeric, @var{value}
7950 must be a string containing a non-negative integer (normally
7951 @code{const_int} would be used in this case).  Otherwise, it must
7952 contain one of the valid values for the attribute.
7954 @cindex @code{if_then_else} and attributes
7955 @item (if_then_else @var{test} @var{true-value} @var{false-value})
7956 @var{test} specifies an attribute test, whose format is defined below.
7957 The value of this expression is @var{true-value} if @var{test} is true,
7958 otherwise it is @var{false-value}.
7960 @cindex @code{cond} and attributes
7961 @item (cond [@var{test1} @var{value1} @dots{}] @var{default})
7962 The first operand of this expression is a vector containing an even
7963 number of expressions and consisting of pairs of @var{test} and @var{value}
7964 expressions.  The value of the @code{cond} expression is that of the
7965 @var{value} corresponding to the first true @var{test} expression.  If
7966 none of the @var{test} expressions are true, the value of the @code{cond}
7967 expression is that of the @var{default} expression.
7968 @end table
7970 @var{test} expressions can have one of the following forms:
7972 @table @code
7973 @cindex @code{const_int} and attribute tests
7974 @item (const_int @var{i})
7975 This test is true if @var{i} is nonzero and false otherwise.
7977 @cindex @code{not} and attributes
7978 @cindex @code{ior} and attributes
7979 @cindex @code{and} and attributes
7980 @item (not @var{test})
7981 @itemx (ior @var{test1} @var{test2})
7982 @itemx (and @var{test1} @var{test2})
7983 These tests are true if the indicated logical function is true.
7985 @cindex @code{match_operand} and attributes
7986 @item (match_operand:@var{m} @var{n} @var{pred} @var{constraints})
7987 This test is true if operand @var{n} of the insn whose attribute value
7988 is being determined has mode @var{m} (this part of the test is ignored
7989 if @var{m} is @code{VOIDmode}) and the function specified by the string
7990 @var{pred} returns a nonzero value when passed operand @var{n} and mode
7991 @var{m} (this part of the test is ignored if @var{pred} is the null
7992 string).
7994 The @var{constraints} operand is ignored and should be the null string.
7996 @cindex @code{match_test} and attributes
7997 @item (match_test @var{c-expr})
7998 The test is true if C expression @var{c-expr} is true.  In non-constant
7999 attributes, @var{c-expr} has access to the following variables:
8001 @table @var
8002 @item insn
8003 The rtl instruction under test.
8004 @item which_alternative
8005 The @code{define_insn} alternative that @var{insn} matches.
8006 @xref{Output Statement}.
8007 @item operands
8008 An array of @var{insn}'s rtl operands.
8009 @end table
8011 @var{c-expr} behaves like the condition in a C @code{if} statement,
8012 so there is no need to explicitly convert the expression into a boolean
8013 0 or 1 value.  For example, the following two tests are equivalent:
8015 @smallexample
8016 (match_test "x & 2")
8017 (match_test "(x & 2) != 0")
8018 @end smallexample
8020 @cindex @code{le} and attributes
8021 @cindex @code{leu} and attributes
8022 @cindex @code{lt} and attributes
8023 @cindex @code{gt} and attributes
8024 @cindex @code{gtu} and attributes
8025 @cindex @code{ge} and attributes
8026 @cindex @code{geu} and attributes
8027 @cindex @code{ne} and attributes
8028 @cindex @code{eq} and attributes
8029 @cindex @code{plus} and attributes
8030 @cindex @code{minus} and attributes
8031 @cindex @code{mult} and attributes
8032 @cindex @code{div} and attributes
8033 @cindex @code{mod} and attributes
8034 @cindex @code{abs} and attributes
8035 @cindex @code{neg} and attributes
8036 @cindex @code{ashift} and attributes
8037 @cindex @code{lshiftrt} and attributes
8038 @cindex @code{ashiftrt} and attributes
8039 @item (le @var{arith1} @var{arith2})
8040 @itemx (leu @var{arith1} @var{arith2})
8041 @itemx (lt @var{arith1} @var{arith2})
8042 @itemx (ltu @var{arith1} @var{arith2})
8043 @itemx (gt @var{arith1} @var{arith2})
8044 @itemx (gtu @var{arith1} @var{arith2})
8045 @itemx (ge @var{arith1} @var{arith2})
8046 @itemx (geu @var{arith1} @var{arith2})
8047 @itemx (ne @var{arith1} @var{arith2})
8048 @itemx (eq @var{arith1} @var{arith2})
8049 These tests are true if the indicated comparison of the two arithmetic
8050 expressions is true.  Arithmetic expressions are formed with
8051 @code{plus}, @code{minus}, @code{mult}, @code{div}, @code{mod},
8052 @code{abs}, @code{neg}, @code{and}, @code{ior}, @code{xor}, @code{not},
8053 @code{ashift}, @code{lshiftrt}, and @code{ashiftrt} expressions.
8055 @findex get_attr
8056 @code{const_int} and @code{symbol_ref} are always valid terms (@pxref{Insn
8057 Lengths},for additional forms).  @code{symbol_ref} is a string
8058 denoting a C expression that yields an @code{int} when evaluated by the
8059 @samp{get_attr_@dots{}} routine.  It should normally be a global
8060 variable.
8062 @findex eq_attr
8063 @item (eq_attr @var{name} @var{value})
8064 @var{name} is a string specifying the name of an attribute.
8066 @var{value} is a string that is either a valid value for attribute
8067 @var{name}, a comma-separated list of values, or @samp{!} followed by a
8068 value or list.  If @var{value} does not begin with a @samp{!}, this
8069 test is true if the value of the @var{name} attribute of the current
8070 insn is in the list specified by @var{value}.  If @var{value} begins
8071 with a @samp{!}, this test is true if the attribute's value is
8072 @emph{not} in the specified list.
8074 For example,
8076 @smallexample
8077 (eq_attr "type" "load,store")
8078 @end smallexample
8080 @noindent
8081 is equivalent to
8083 @smallexample
8084 (ior (eq_attr "type" "load") (eq_attr "type" "store"))
8085 @end smallexample
8087 If @var{name} specifies an attribute of @samp{alternative}, it refers to the
8088 value of the compiler variable @code{which_alternative}
8089 (@pxref{Output Statement}) and the values must be small integers.  For
8090 example,
8092 @smallexample
8093 (eq_attr "alternative" "2,3")
8094 @end smallexample
8096 @noindent
8097 is equivalent to
8099 @smallexample
8100 (ior (eq (symbol_ref "which_alternative") (const_int 2))
8101      (eq (symbol_ref "which_alternative") (const_int 3)))
8102 @end smallexample
8104 Note that, for most attributes, an @code{eq_attr} test is simplified in cases
8105 where the value of the attribute being tested is known for all insns matching
8106 a particular pattern.  This is by far the most common case.
8108 @findex attr_flag
8109 @item (attr_flag @var{name})
8110 The value of an @code{attr_flag} expression is true if the flag
8111 specified by @var{name} is true for the @code{insn} currently being
8112 scheduled.
8114 @var{name} is a string specifying one of a fixed set of flags to test.
8115 Test the flags @code{forward} and @code{backward} to determine the
8116 direction of a conditional branch.
8118 This example describes a conditional branch delay slot which
8119 can be nullified for forward branches that are taken (annul-true) or
8120 for backward branches which are not taken (annul-false).
8122 @smallexample
8123 (define_delay (eq_attr "type" "cbranch")
8124   [(eq_attr "in_branch_delay" "true")
8125    (and (eq_attr "in_branch_delay" "true")
8126         (attr_flag "forward"))
8127    (and (eq_attr "in_branch_delay" "true")
8128         (attr_flag "backward"))])
8129 @end smallexample
8131 The @code{forward} and @code{backward} flags are false if the current
8132 @code{insn} being scheduled is not a conditional branch.
8134 @code{attr_flag} is only used during delay slot scheduling and has no
8135 meaning to other passes of the compiler.
8137 @findex attr
8138 @item (attr @var{name})
8139 The value of another attribute is returned.  This is most useful
8140 for numeric attributes, as @code{eq_attr} and @code{attr_flag}
8141 produce more efficient code for non-numeric attributes.
8142 @end table
8144 @end ifset
8145 @ifset INTERNALS
8146 @node Tagging Insns
8147 @subsection Assigning Attribute Values to Insns
8148 @cindex tagging insns
8149 @cindex assigning attribute values to insns
8151 The value assigned to an attribute of an insn is primarily determined by
8152 which pattern is matched by that insn (or which @code{define_peephole}
8153 generated it).  Every @code{define_insn} and @code{define_peephole} can
8154 have an optional last argument to specify the values of attributes for
8155 matching insns.  The value of any attribute not specified in a particular
8156 insn is set to the default value for that attribute, as specified in its
8157 @code{define_attr}.  Extensive use of default values for attributes
8158 permits the specification of the values for only one or two attributes
8159 in the definition of most insn patterns, as seen in the example in the
8160 next section.
8162 The optional last argument of @code{define_insn} and
8163 @code{define_peephole} is a vector of expressions, each of which defines
8164 the value for a single attribute.  The most general way of assigning an
8165 attribute's value is to use a @code{set} expression whose first operand is an
8166 @code{attr} expression giving the name of the attribute being set.  The
8167 second operand of the @code{set} is an attribute expression
8168 (@pxref{Expressions}) giving the value of the attribute.
8170 When the attribute value depends on the @samp{alternative} attribute
8171 (i.e., which is the applicable alternative in the constraint of the
8172 insn), the @code{set_attr_alternative} expression can be used.  It
8173 allows the specification of a vector of attribute expressions, one for
8174 each alternative.
8176 @findex set_attr
8177 When the generality of arbitrary attribute expressions is not required,
8178 the simpler @code{set_attr} expression can be used, which allows
8179 specifying a string giving either a single attribute value or a list
8180 of attribute values, one for each alternative.
8182 The form of each of the above specifications is shown below.  In each case,
8183 @var{name} is a string specifying the attribute to be set.
8185 @table @code
8186 @item (set_attr @var{name} @var{value-string})
8187 @var{value-string} is either a string giving the desired attribute value,
8188 or a string containing a comma-separated list giving the values for
8189 succeeding alternatives.  The number of elements must match the number
8190 of alternatives in the constraint of the insn pattern.
8192 Note that it may be useful to specify @samp{*} for some alternative, in
8193 which case the attribute will assume its default value for insns matching
8194 that alternative.
8196 @findex set_attr_alternative
8197 @item (set_attr_alternative @var{name} [@var{value1} @var{value2} @dots{}])
8198 Depending on the alternative of the insn, the value will be one of the
8199 specified values.  This is a shorthand for using a @code{cond} with
8200 tests on the @samp{alternative} attribute.
8202 @findex attr
8203 @item (set (attr @var{name}) @var{value})
8204 The first operand of this @code{set} must be the special RTL expression
8205 @code{attr}, whose sole operand is a string giving the name of the
8206 attribute being set.  @var{value} is the value of the attribute.
8207 @end table
8209 The following shows three different ways of representing the same
8210 attribute value specification:
8212 @smallexample
8213 (set_attr "type" "load,store,arith")
8215 (set_attr_alternative "type"
8216                       [(const_string "load") (const_string "store")
8217                        (const_string "arith")])
8219 (set (attr "type")
8220      (cond [(eq_attr "alternative" "1") (const_string "load")
8221             (eq_attr "alternative" "2") (const_string "store")]
8222            (const_string "arith")))
8223 @end smallexample
8225 @need 1000
8226 @findex define_asm_attributes
8227 The @code{define_asm_attributes} expression provides a mechanism to
8228 specify the attributes assigned to insns produced from an @code{asm}
8229 statement.  It has the form:
8231 @smallexample
8232 (define_asm_attributes [@var{attr-sets}])
8233 @end smallexample
8235 @noindent
8236 where @var{attr-sets} is specified the same as for both the
8237 @code{define_insn} and the @code{define_peephole} expressions.
8239 These values will typically be the ``worst case'' attribute values.  For
8240 example, they might indicate that the condition code will be clobbered.
8242 A specification for a @code{length} attribute is handled specially.  The
8243 way to compute the length of an @code{asm} insn is to multiply the
8244 length specified in the expression @code{define_asm_attributes} by the
8245 number of machine instructions specified in the @code{asm} statement,
8246 determined by counting the number of semicolons and newlines in the
8247 string.  Therefore, the value of the @code{length} attribute specified
8248 in a @code{define_asm_attributes} should be the maximum possible length
8249 of a single machine instruction.
8251 @end ifset
8252 @ifset INTERNALS
8253 @node Attr Example
8254 @subsection Example of Attribute Specifications
8255 @cindex attribute specifications example
8256 @cindex attribute specifications
8258 The judicious use of defaulting is important in the efficient use of
8259 insn attributes.  Typically, insns are divided into @dfn{types} and an
8260 attribute, customarily called @code{type}, is used to represent this
8261 value.  This attribute is normally used only to define the default value
8262 for other attributes.  An example will clarify this usage.
8264 Assume we have a RISC machine with a condition code and in which only
8265 full-word operations are performed in registers.  Let us assume that we
8266 can divide all insns into loads, stores, (integer) arithmetic
8267 operations, floating point operations, and branches.
8269 Here we will concern ourselves with determining the effect of an insn on
8270 the condition code and will limit ourselves to the following possible
8271 effects:  The condition code can be set unpredictably (clobbered), not
8272 be changed, be set to agree with the results of the operation, or only
8273 changed if the item previously set into the condition code has been
8274 modified.
8276 Here is part of a sample @file{md} file for such a machine:
8278 @smallexample
8279 (define_attr "type" "load,store,arith,fp,branch" (const_string "arith"))
8281 (define_attr "cc" "clobber,unchanged,set,change0"
8282              (cond [(eq_attr "type" "load")
8283                         (const_string "change0")
8284                     (eq_attr "type" "store,branch")
8285                         (const_string "unchanged")
8286                     (eq_attr "type" "arith")
8287                         (if_then_else (match_operand:SI 0 "" "")
8288                                       (const_string "set")
8289                                       (const_string "clobber"))]
8290                    (const_string "clobber")))
8292 (define_insn ""
8293   [(set (match_operand:SI 0 "general_operand" "=r,r,m")
8294         (match_operand:SI 1 "general_operand" "r,m,r"))]
8295   ""
8296   "@@
8297    move %0,%1
8298    load %0,%1
8299    store %0,%1"
8300   [(set_attr "type" "arith,load,store")])
8301 @end smallexample
8303 Note that we assume in the above example that arithmetic operations
8304 performed on quantities smaller than a machine word clobber the condition
8305 code since they will set the condition code to a value corresponding to the
8306 full-word result.
8308 @end ifset
8309 @ifset INTERNALS
8310 @node Insn Lengths
8311 @subsection Computing the Length of an Insn
8312 @cindex insn lengths, computing
8313 @cindex computing the length of an insn
8315 For many machines, multiple types of branch instructions are provided, each
8316 for different length branch displacements.  In most cases, the assembler
8317 will choose the correct instruction to use.  However, when the assembler
8318 cannot do so, GCC can when a special attribute, the @code{length}
8319 attribute, is defined.  This attribute must be defined to have numeric
8320 values by specifying a null string in its @code{define_attr}.
8322 In the case of the @code{length} attribute, two additional forms of
8323 arithmetic terms are allowed in test expressions:
8325 @table @code
8326 @cindex @code{match_dup} and attributes
8327 @item (match_dup @var{n})
8328 This refers to the address of operand @var{n} of the current insn, which
8329 must be a @code{label_ref}.
8331 @cindex @code{pc} and attributes
8332 @item (pc)
8333 This refers to the address of the @emph{current} insn.  It might have
8334 been more consistent with other usage to make this the address of the
8335 @emph{next} insn but this would be confusing because the length of the
8336 current insn is to be computed.
8337 @end table
8339 @cindex @code{addr_vec}, length of
8340 @cindex @code{addr_diff_vec}, length of
8341 For normal insns, the length will be determined by value of the
8342 @code{length} attribute.  In the case of @code{addr_vec} and
8343 @code{addr_diff_vec} insn patterns, the length is computed as
8344 the number of vectors multiplied by the size of each vector.
8346 Lengths are measured in addressable storage units (bytes).
8348 Note that it is possible to call functions via the @code{symbol_ref}
8349 mechanism to compute the length of an insn.  However, if you use this
8350 mechanism you must provide dummy clauses to express the maximum length
8351 without using the function call.  You can an example of this in the
8352 @code{pa} machine description for the @code{call_symref} pattern.
8354 The following macros can be used to refine the length computation:
8356 @table @code
8357 @findex ADJUST_INSN_LENGTH
8358 @item ADJUST_INSN_LENGTH (@var{insn}, @var{length})
8359 If defined, modifies the length assigned to instruction @var{insn} as a
8360 function of the context in which it is used.  @var{length} is an lvalue
8361 that contains the initially computed length of the insn and should be
8362 updated with the correct length of the insn.
8364 This macro will normally not be required.  A case in which it is
8365 required is the ROMP@.  On this machine, the size of an @code{addr_vec}
8366 insn must be increased by two to compensate for the fact that alignment
8367 may be required.
8368 @end table
8370 @findex get_attr_length
8371 The routine that returns @code{get_attr_length} (the value of the
8372 @code{length} attribute) can be used by the output routine to
8373 determine the form of the branch instruction to be written, as the
8374 example below illustrates.
8376 As an example of the specification of variable-length branches, consider
8377 the IBM 360.  If we adopt the convention that a register will be set to
8378 the starting address of a function, we can jump to labels within 4k of
8379 the start using a four-byte instruction.  Otherwise, we need a six-byte
8380 sequence to load the address from memory and then branch to it.
8382 On such a machine, a pattern for a branch instruction might be specified
8383 as follows:
8385 @smallexample
8386 (define_insn "jump"
8387   [(set (pc)
8388         (label_ref (match_operand 0 "" "")))]
8389   ""
8391    return (get_attr_length (insn) == 4
8392            ? "b %l0" : "l r15,=a(%l0); br r15");
8394   [(set (attr "length")
8395         (if_then_else (lt (match_dup 0) (const_int 4096))
8396                       (const_int 4)
8397                       (const_int 6)))])
8398 @end smallexample
8400 @end ifset
8401 @ifset INTERNALS
8402 @node Constant Attributes
8403 @subsection Constant Attributes
8404 @cindex constant attributes
8406 A special form of @code{define_attr}, where the expression for the
8407 default value is a @code{const} expression, indicates an attribute that
8408 is constant for a given run of the compiler.  Constant attributes may be
8409 used to specify which variety of processor is used.  For example,
8411 @smallexample
8412 (define_attr "cpu" "m88100,m88110,m88000"
8413  (const
8414   (cond [(symbol_ref "TARGET_88100") (const_string "m88100")
8415          (symbol_ref "TARGET_88110") (const_string "m88110")]
8416         (const_string "m88000"))))
8418 (define_attr "memory" "fast,slow"
8419  (const
8420   (if_then_else (symbol_ref "TARGET_FAST_MEM")
8421                 (const_string "fast")
8422                 (const_string "slow"))))
8423 @end smallexample
8425 The routine generated for constant attributes has no parameters as it
8426 does not depend on any particular insn.  RTL expressions used to define
8427 the value of a constant attribute may use the @code{symbol_ref} form,
8428 but may not use either the @code{match_operand} form or @code{eq_attr}
8429 forms involving insn attributes.
8431 @end ifset
8432 @ifset INTERNALS
8433 @node Mnemonic Attribute
8434 @subsection Mnemonic Attribute
8435 @cindex mnemonic attribute
8437 The @code{mnemonic} attribute is a string type attribute holding the
8438 instruction mnemonic for an insn alternative.  The attribute values
8439 will automatically be generated by the machine description parser if
8440 there is an attribute definition in the md file:
8442 @smallexample
8443 (define_attr "mnemonic" "unknown" (const_string "unknown"))
8444 @end smallexample
8446 The default value can be freely chosen as long as it does not collide
8447 with any of the instruction mnemonics.  This value will be used
8448 whenever the machine description parser is not able to determine the
8449 mnemonic string.  This might be the case for output templates
8450 containing more than a single instruction as in
8451 @code{"mvcle\t%0,%1,0\;jo\t.-4"}.
8453 The @code{mnemonic} attribute set is not generated automatically if the
8454 instruction string is generated via C code.
8456 An existing @code{mnemonic} attribute set in an insn definition will not
8457 be overriden by the md file parser.  That way it is possible to
8458 manually set the instruction mnemonics for the cases where the md file
8459 parser fails to determine it automatically.
8461 The @code{mnemonic} attribute is useful for dealing with instruction
8462 specific properties in the pipeline description without defining
8463 additional insn attributes.
8465 @smallexample
8466 (define_attr "ooo_expanded" ""
8467   (cond [(eq_attr "mnemonic" "dlr,dsgr,d,dsgf,stam,dsgfr,dlgr")
8468          (const_int 1)]
8469         (const_int 0)))
8470 @end smallexample
8472 @end ifset
8473 @ifset INTERNALS
8474 @node Delay Slots
8475 @subsection Delay Slot Scheduling
8476 @cindex delay slots, defining
8478 The insn attribute mechanism can be used to specify the requirements for
8479 delay slots, if any, on a target machine.  An instruction is said to
8480 require a @dfn{delay slot} if some instructions that are physically
8481 after the instruction are executed as if they were located before it.
8482 Classic examples are branch and call instructions, which often execute
8483 the following instruction before the branch or call is performed.
8485 On some machines, conditional branch instructions can optionally
8486 @dfn{annul} instructions in the delay slot.  This means that the
8487 instruction will not be executed for certain branch outcomes.  Both
8488 instructions that annul if the branch is true and instructions that
8489 annul if the branch is false are supported.
8491 Delay slot scheduling differs from instruction scheduling in that
8492 determining whether an instruction needs a delay slot is dependent only
8493 on the type of instruction being generated, not on data flow between the
8494 instructions.  See the next section for a discussion of data-dependent
8495 instruction scheduling.
8497 @findex define_delay
8498 The requirement of an insn needing one or more delay slots is indicated
8499 via the @code{define_delay} expression.  It has the following form:
8501 @smallexample
8502 (define_delay @var{test}
8503               [@var{delay-1} @var{annul-true-1} @var{annul-false-1}
8504                @var{delay-2} @var{annul-true-2} @var{annul-false-2}
8505                @dots{}])
8506 @end smallexample
8508 @var{test} is an attribute test that indicates whether this
8509 @code{define_delay} applies to a particular insn.  If so, the number of
8510 required delay slots is determined by the length of the vector specified
8511 as the second argument.  An insn placed in delay slot @var{n} must
8512 satisfy attribute test @var{delay-n}.  @var{annul-true-n} is an
8513 attribute test that specifies which insns may be annulled if the branch
8514 is true.  Similarly, @var{annul-false-n} specifies which insns in the
8515 delay slot may be annulled if the branch is false.  If annulling is not
8516 supported for that delay slot, @code{(nil)} should be coded.
8518 For example, in the common case where branch and call insns require
8519 a single delay slot, which may contain any insn other than a branch or
8520 call, the following would be placed in the @file{md} file:
8522 @smallexample
8523 (define_delay (eq_attr "type" "branch,call")
8524               [(eq_attr "type" "!branch,call") (nil) (nil)])
8525 @end smallexample
8527 Multiple @code{define_delay} expressions may be specified.  In this
8528 case, each such expression specifies different delay slot requirements
8529 and there must be no insn for which tests in two @code{define_delay}
8530 expressions are both true.
8532 For example, if we have a machine that requires one delay slot for branches
8533 but two for calls,  no delay slot can contain a branch or call insn,
8534 and any valid insn in the delay slot for the branch can be annulled if the
8535 branch is true, we might represent this as follows:
8537 @smallexample
8538 (define_delay (eq_attr "type" "branch")
8539    [(eq_attr "type" "!branch,call")
8540     (eq_attr "type" "!branch,call")
8541     (nil)])
8543 (define_delay (eq_attr "type" "call")
8544               [(eq_attr "type" "!branch,call") (nil) (nil)
8545                (eq_attr "type" "!branch,call") (nil) (nil)])
8546 @end smallexample
8547 @c the above is *still* too long.  --mew 4feb93
8549 @end ifset
8550 @ifset INTERNALS
8551 @node Processor pipeline description
8552 @subsection Specifying processor pipeline description
8553 @cindex processor pipeline description
8554 @cindex processor functional units
8555 @cindex instruction latency time
8556 @cindex interlock delays
8557 @cindex data dependence delays
8558 @cindex reservation delays
8559 @cindex pipeline hazard recognizer
8560 @cindex automaton based pipeline description
8561 @cindex regular expressions
8562 @cindex deterministic finite state automaton
8563 @cindex automaton based scheduler
8564 @cindex RISC
8565 @cindex VLIW
8567 To achieve better performance, most modern processors
8568 (super-pipelined, superscalar @acronym{RISC}, and @acronym{VLIW}
8569 processors) have many @dfn{functional units} on which several
8570 instructions can be executed simultaneously.  An instruction starts
8571 execution if its issue conditions are satisfied.  If not, the
8572 instruction is stalled until its conditions are satisfied.  Such
8573 @dfn{interlock (pipeline) delay} causes interruption of the fetching
8574 of successor instructions (or demands nop instructions, e.g.@: for some
8575 MIPS processors).
8577 There are two major kinds of interlock delays in modern processors.
8578 The first one is a data dependence delay determining @dfn{instruction
8579 latency time}.  The instruction execution is not started until all
8580 source data have been evaluated by prior instructions (there are more
8581 complex cases when the instruction execution starts even when the data
8582 are not available but will be ready in given time after the
8583 instruction execution start).  Taking the data dependence delays into
8584 account is simple.  The data dependence (true, output, and
8585 anti-dependence) delay between two instructions is given by a
8586 constant.  In most cases this approach is adequate.  The second kind
8587 of interlock delays is a reservation delay.  The reservation delay
8588 means that two instructions under execution will be in need of shared
8589 processors resources, i.e.@: buses, internal registers, and/or
8590 functional units, which are reserved for some time.  Taking this kind
8591 of delay into account is complex especially for modern @acronym{RISC}
8592 processors.
8594 The task of exploiting more processor parallelism is solved by an
8595 instruction scheduler.  For a better solution to this problem, the
8596 instruction scheduler has to have an adequate description of the
8597 processor parallelism (or @dfn{pipeline description}).  GCC
8598 machine descriptions describe processor parallelism and functional
8599 unit reservations for groups of instructions with the aid of
8600 @dfn{regular expressions}.
8602 The GCC instruction scheduler uses a @dfn{pipeline hazard recognizer} to
8603 figure out the possibility of the instruction issue by the processor
8604 on a given simulated processor cycle.  The pipeline hazard recognizer is
8605 automatically generated from the processor pipeline description.  The
8606 pipeline hazard recognizer generated from the machine description
8607 is based on a deterministic finite state automaton (@acronym{DFA}):
8608 the instruction issue is possible if there is a transition from one
8609 automaton state to another one.  This algorithm is very fast, and
8610 furthermore, its speed is not dependent on processor
8611 complexity@footnote{However, the size of the automaton depends on
8612 processor complexity.  To limit this effect, machine descriptions
8613 can split orthogonal parts of the machine description among several
8614 automata: but then, since each of these must be stepped independently,
8615 this does cause a small decrease in the algorithm's performance.}.
8617 @cindex automaton based pipeline description
8618 The rest of this section describes the directives that constitute
8619 an automaton-based processor pipeline description.  The order of
8620 these constructions within the machine description file is not
8621 important.
8623 @findex define_automaton
8624 @cindex pipeline hazard recognizer
8625 The following optional construction describes names of automata
8626 generated and used for the pipeline hazards recognition.  Sometimes
8627 the generated finite state automaton used by the pipeline hazard
8628 recognizer is large.  If we use more than one automaton and bind functional
8629 units to the automata, the total size of the automata is usually
8630 less than the size of the single automaton.  If there is no one such
8631 construction, only one finite state automaton is generated.
8633 @smallexample
8634 (define_automaton @var{automata-names})
8635 @end smallexample
8637 @var{automata-names} is a string giving names of the automata.  The
8638 names are separated by commas.  All the automata should have unique names.
8639 The automaton name is used in the constructions @code{define_cpu_unit} and
8640 @code{define_query_cpu_unit}.
8642 @findex define_cpu_unit
8643 @cindex processor functional units
8644 Each processor functional unit used in the description of instruction
8645 reservations should be described by the following construction.
8647 @smallexample
8648 (define_cpu_unit @var{unit-names} [@var{automaton-name}])
8649 @end smallexample
8651 @var{unit-names} is a string giving the names of the functional units
8652 separated by commas.  Don't use name @samp{nothing}, it is reserved
8653 for other goals.
8655 @var{automaton-name} is a string giving the name of the automaton with
8656 which the unit is bound.  The automaton should be described in
8657 construction @code{define_automaton}.  You should give
8658 @dfn{automaton-name}, if there is a defined automaton.
8660 The assignment of units to automata are constrained by the uses of the
8661 units in insn reservations.  The most important constraint is: if a
8662 unit reservation is present on a particular cycle of an alternative
8663 for an insn reservation, then some unit from the same automaton must
8664 be present on the same cycle for the other alternatives of the insn
8665 reservation.  The rest of the constraints are mentioned in the
8666 description of the subsequent constructions.
8668 @findex define_query_cpu_unit
8669 @cindex querying function unit reservations
8670 The following construction describes CPU functional units analogously
8671 to @code{define_cpu_unit}.  The reservation of such units can be
8672 queried for an automaton state.  The instruction scheduler never
8673 queries reservation of functional units for given automaton state.  So
8674 as a rule, you don't need this construction.  This construction could
8675 be used for future code generation goals (e.g.@: to generate
8676 @acronym{VLIW} insn templates).
8678 @smallexample
8679 (define_query_cpu_unit @var{unit-names} [@var{automaton-name}])
8680 @end smallexample
8682 @var{unit-names} is a string giving names of the functional units
8683 separated by commas.
8685 @var{automaton-name} is a string giving the name of the automaton with
8686 which the unit is bound.
8688 @findex define_insn_reservation
8689 @cindex instruction latency time
8690 @cindex regular expressions
8691 @cindex data bypass
8692 The following construction is the major one to describe pipeline
8693 characteristics of an instruction.
8695 @smallexample
8696 (define_insn_reservation @var{insn-name} @var{default_latency}
8697                          @var{condition} @var{regexp})
8698 @end smallexample
8700 @var{default_latency} is a number giving latency time of the
8701 instruction.  There is an important difference between the old
8702 description and the automaton based pipeline description.  The latency
8703 time is used for all dependencies when we use the old description.  In
8704 the automaton based pipeline description, the given latency time is only
8705 used for true dependencies.  The cost of anti-dependencies is always
8706 zero and the cost of output dependencies is the difference between
8707 latency times of the producing and consuming insns (if the difference
8708 is negative, the cost is considered to be zero).  You can always
8709 change the default costs for any description by using the target hook
8710 @code{TARGET_SCHED_ADJUST_COST} (@pxref{Scheduling}).
8712 @var{insn-name} is a string giving the internal name of the insn.  The
8713 internal names are used in constructions @code{define_bypass} and in
8714 the automaton description file generated for debugging.  The internal
8715 name has nothing in common with the names in @code{define_insn}.  It is a
8716 good practice to use insn classes described in the processor manual.
8718 @var{condition} defines what RTL insns are described by this
8719 construction.  You should remember that you will be in trouble if
8720 @var{condition} for two or more different
8721 @code{define_insn_reservation} constructions is TRUE for an insn.  In
8722 this case what reservation will be used for the insn is not defined.
8723 Such cases are not checked during generation of the pipeline hazards
8724 recognizer because in general recognizing that two conditions may have
8725 the same value is quite difficult (especially if the conditions
8726 contain @code{symbol_ref}).  It is also not checked during the
8727 pipeline hazard recognizer work because it would slow down the
8728 recognizer considerably.
8730 @var{regexp} is a string describing the reservation of the cpu's functional
8731 units by the instruction.  The reservations are described by a regular
8732 expression according to the following syntax:
8734 @smallexample
8735        regexp = regexp "," oneof
8736               | oneof
8738        oneof = oneof "|" allof
8739              | allof
8741        allof = allof "+" repeat
8742              | repeat
8744        repeat = element "*" number
8745               | element
8747        element = cpu_function_unit_name
8748                | reservation_name
8749                | result_name
8750                | "nothing"
8751                | "(" regexp ")"
8752 @end smallexample
8754 @itemize @bullet
8755 @item
8756 @samp{,} is used for describing the start of the next cycle in
8757 the reservation.
8759 @item
8760 @samp{|} is used for describing a reservation described by the first
8761 regular expression @strong{or} a reservation described by the second
8762 regular expression @strong{or} etc.
8764 @item
8765 @samp{+} is used for describing a reservation described by the first
8766 regular expression @strong{and} a reservation described by the
8767 second regular expression @strong{and} etc.
8769 @item
8770 @samp{*} is used for convenience and simply means a sequence in which
8771 the regular expression are repeated @var{number} times with cycle
8772 advancing (see @samp{,}).
8774 @item
8775 @samp{cpu_function_unit_name} denotes reservation of the named
8776 functional unit.
8778 @item
8779 @samp{reservation_name} --- see description of construction
8780 @samp{define_reservation}.
8782 @item
8783 @samp{nothing} denotes no unit reservations.
8784 @end itemize
8786 @findex define_reservation
8787 Sometimes unit reservations for different insns contain common parts.
8788 In such case, you can simplify the pipeline description by describing
8789 the common part by the following construction
8791 @smallexample
8792 (define_reservation @var{reservation-name} @var{regexp})
8793 @end smallexample
8795 @var{reservation-name} is a string giving name of @var{regexp}.
8796 Functional unit names and reservation names are in the same name
8797 space.  So the reservation names should be different from the
8798 functional unit names and can not be the reserved name @samp{nothing}.
8800 @findex define_bypass
8801 @cindex instruction latency time
8802 @cindex data bypass
8803 The following construction is used to describe exceptions in the
8804 latency time for given instruction pair.  This is so called bypasses.
8806 @smallexample
8807 (define_bypass @var{number} @var{out_insn_names} @var{in_insn_names}
8808                [@var{guard}])
8809 @end smallexample
8811 @var{number} defines when the result generated by the instructions
8812 given in string @var{out_insn_names} will be ready for the
8813 instructions given in string @var{in_insn_names}.  Each of these
8814 strings is a comma-separated list of filename-style globs and
8815 they refer to the names of @code{define_insn_reservation}s.
8816 For example:
8817 @smallexample
8818 (define_bypass 1 "cpu1_load_*, cpu1_store_*" "cpu1_load_*")
8819 @end smallexample
8820 defines a bypass between instructions that start with
8821 @samp{cpu1_load_} or @samp{cpu1_store_} and those that start with
8822 @samp{cpu1_load_}.
8824 @var{guard} is an optional string giving the name of a C function which
8825 defines an additional guard for the bypass.  The function will get the
8826 two insns as parameters.  If the function returns zero the bypass will
8827 be ignored for this case.  The additional guard is necessary to
8828 recognize complicated bypasses, e.g.@: when the consumer is only an address
8829 of insn @samp{store} (not a stored value).
8831 If there are more one bypass with the same output and input insns, the
8832 chosen bypass is the first bypass with a guard in description whose
8833 guard function returns nonzero.  If there is no such bypass, then
8834 bypass without the guard function is chosen.
8836 @findex exclusion_set
8837 @findex presence_set
8838 @findex final_presence_set
8839 @findex absence_set
8840 @findex final_absence_set
8841 @cindex VLIW
8842 @cindex RISC
8843 The following five constructions are usually used to describe
8844 @acronym{VLIW} processors, or more precisely, to describe a placement
8845 of small instructions into @acronym{VLIW} instruction slots.  They
8846 can be used for @acronym{RISC} processors, too.
8848 @smallexample
8849 (exclusion_set @var{unit-names} @var{unit-names})
8850 (presence_set @var{unit-names} @var{patterns})
8851 (final_presence_set @var{unit-names} @var{patterns})
8852 (absence_set @var{unit-names} @var{patterns})
8853 (final_absence_set @var{unit-names} @var{patterns})
8854 @end smallexample
8856 @var{unit-names} is a string giving names of functional units
8857 separated by commas.
8859 @var{patterns} is a string giving patterns of functional units
8860 separated by comma.  Currently pattern is one unit or units
8861 separated by white-spaces.
8863 The first construction (@samp{exclusion_set}) means that each
8864 functional unit in the first string can not be reserved simultaneously
8865 with a unit whose name is in the second string and vice versa.  For
8866 example, the construction is useful for describing processors
8867 (e.g.@: some SPARC processors) with a fully pipelined floating point
8868 functional unit which can execute simultaneously only single floating
8869 point insns or only double floating point insns.
8871 The second construction (@samp{presence_set}) means that each
8872 functional unit in the first string can not be reserved unless at
8873 least one of pattern of units whose names are in the second string is
8874 reserved.  This is an asymmetric relation.  For example, it is useful
8875 for description that @acronym{VLIW} @samp{slot1} is reserved after
8876 @samp{slot0} reservation.  We could describe it by the following
8877 construction
8879 @smallexample
8880 (presence_set "slot1" "slot0")
8881 @end smallexample
8883 Or @samp{slot1} is reserved only after @samp{slot0} and unit @samp{b0}
8884 reservation.  In this case we could write
8886 @smallexample
8887 (presence_set "slot1" "slot0 b0")
8888 @end smallexample
8890 The third construction (@samp{final_presence_set}) is analogous to
8891 @samp{presence_set}.  The difference between them is when checking is
8892 done.  When an instruction is issued in given automaton state
8893 reflecting all current and planned unit reservations, the automaton
8894 state is changed.  The first state is a source state, the second one
8895 is a result state.  Checking for @samp{presence_set} is done on the
8896 source state reservation, checking for @samp{final_presence_set} is
8897 done on the result reservation.  This construction is useful to
8898 describe a reservation which is actually two subsequent reservations.
8899 For example, if we use
8901 @smallexample
8902 (presence_set "slot1" "slot0")
8903 @end smallexample
8905 the following insn will be never issued (because @samp{slot1} requires
8906 @samp{slot0} which is absent in the source state).
8908 @smallexample
8909 (define_reservation "insn_and_nop" "slot0 + slot1")
8910 @end smallexample
8912 but it can be issued if we use analogous @samp{final_presence_set}.
8914 The forth construction (@samp{absence_set}) means that each functional
8915 unit in the first string can be reserved only if each pattern of units
8916 whose names are in the second string is not reserved.  This is an
8917 asymmetric relation (actually @samp{exclusion_set} is analogous to
8918 this one but it is symmetric).  For example it might be useful in a
8919 @acronym{VLIW} description to say that @samp{slot0} cannot be reserved
8920 after either @samp{slot1} or @samp{slot2} have been reserved.  This
8921 can be described as:
8923 @smallexample
8924 (absence_set "slot0" "slot1, slot2")
8925 @end smallexample
8927 Or @samp{slot2} can not be reserved if @samp{slot0} and unit @samp{b0}
8928 are reserved or @samp{slot1} and unit @samp{b1} are reserved.  In
8929 this case we could write
8931 @smallexample
8932 (absence_set "slot2" "slot0 b0, slot1 b1")
8933 @end smallexample
8935 All functional units mentioned in a set should belong to the same
8936 automaton.
8938 The last construction (@samp{final_absence_set}) is analogous to
8939 @samp{absence_set} but checking is done on the result (state)
8940 reservation.  See comments for @samp{final_presence_set}.
8942 @findex automata_option
8943 @cindex deterministic finite state automaton
8944 @cindex nondeterministic finite state automaton
8945 @cindex finite state automaton minimization
8946 You can control the generator of the pipeline hazard recognizer with
8947 the following construction.
8949 @smallexample
8950 (automata_option @var{options})
8951 @end smallexample
8953 @var{options} is a string giving options which affect the generated
8954 code.  Currently there are the following options:
8956 @itemize @bullet
8957 @item
8958 @dfn{no-minimization} makes no minimization of the automaton.  This is
8959 only worth to do when we are debugging the description and need to
8960 look more accurately at reservations of states.
8962 @item
8963 @dfn{time} means printing time statistics about the generation of
8964 automata.
8966 @item
8967 @dfn{stats} means printing statistics about the generated automata
8968 such as the number of DFA states, NDFA states and arcs.
8970 @item
8971 @dfn{v} means a generation of the file describing the result automata.
8972 The file has suffix @samp{.dfa} and can be used for the description
8973 verification and debugging.
8975 @item
8976 @dfn{w} means a generation of warning instead of error for
8977 non-critical errors.
8979 @item
8980 @dfn{no-comb-vect} prevents the automaton generator from generating
8981 two data structures and comparing them for space efficiency.  Using
8982 a comb vector to represent transitions may be better, but it can be
8983 very expensive to construct.  This option is useful if the build
8984 process spends an unacceptably long time in genautomata.
8986 @item
8987 @dfn{ndfa} makes nondeterministic finite state automata.  This affects
8988 the treatment of operator @samp{|} in the regular expressions.  The
8989 usual treatment of the operator is to try the first alternative and,
8990 if the reservation is not possible, the second alternative.  The
8991 nondeterministic treatment means trying all alternatives, some of them
8992 may be rejected by reservations in the subsequent insns.
8994 @item
8995 @dfn{collapse-ndfa} modifies the behaviour of the generator when
8996 producing an automaton.  An additional state transition to collapse a
8997 nondeterministic @acronym{NDFA} state to a deterministic @acronym{DFA}
8998 state is generated.  It can be triggered by passing @code{const0_rtx} to
8999 state_transition.  In such an automaton, cycle advance transitions are
9000 available only for these collapsed states.  This option is useful for
9001 ports that want to use the @code{ndfa} option, but also want to use
9002 @code{define_query_cpu_unit} to assign units to insns issued in a cycle.
9004 @item
9005 @dfn{progress} means output of a progress bar showing how many states
9006 were generated so far for automaton being processed.  This is useful
9007 during debugging a @acronym{DFA} description.  If you see too many
9008 generated states, you could interrupt the generator of the pipeline
9009 hazard recognizer and try to figure out a reason for generation of the
9010 huge automaton.
9011 @end itemize
9013 As an example, consider a superscalar @acronym{RISC} machine which can
9014 issue three insns (two integer insns and one floating point insn) on
9015 the cycle but can finish only two insns.  To describe this, we define
9016 the following functional units.
9018 @smallexample
9019 (define_cpu_unit "i0_pipeline, i1_pipeline, f_pipeline")
9020 (define_cpu_unit "port0, port1")
9021 @end smallexample
9023 All simple integer insns can be executed in any integer pipeline and
9024 their result is ready in two cycles.  The simple integer insns are
9025 issued into the first pipeline unless it is reserved, otherwise they
9026 are issued into the second pipeline.  Integer division and
9027 multiplication insns can be executed only in the second integer
9028 pipeline and their results are ready correspondingly in 8 and 4
9029 cycles.  The integer division is not pipelined, i.e.@: the subsequent
9030 integer division insn can not be issued until the current division
9031 insn finished.  Floating point insns are fully pipelined and their
9032 results are ready in 3 cycles.  Where the result of a floating point
9033 insn is used by an integer insn, an additional delay of one cycle is
9034 incurred.  To describe all of this we could specify
9036 @smallexample
9037 (define_cpu_unit "div")
9039 (define_insn_reservation "simple" 2 (eq_attr "type" "int")
9040                          "(i0_pipeline | i1_pipeline), (port0 | port1)")
9042 (define_insn_reservation "mult" 4 (eq_attr "type" "mult")
9043                          "i1_pipeline, nothing*2, (port0 | port1)")
9045 (define_insn_reservation "div" 8 (eq_attr "type" "div")
9046                          "i1_pipeline, div*7, div + (port0 | port1)")
9048 (define_insn_reservation "float" 3 (eq_attr "type" "float")
9049                          "f_pipeline, nothing, (port0 | port1))
9051 (define_bypass 4 "float" "simple,mult,div")
9052 @end smallexample
9054 To simplify the description we could describe the following reservation
9056 @smallexample
9057 (define_reservation "finish" "port0|port1")
9058 @end smallexample
9060 and use it in all @code{define_insn_reservation} as in the following
9061 construction
9063 @smallexample
9064 (define_insn_reservation "simple" 2 (eq_attr "type" "int")
9065                          "(i0_pipeline | i1_pipeline), finish")
9066 @end smallexample
9069 @end ifset
9070 @ifset INTERNALS
9071 @node Conditional Execution
9072 @section Conditional Execution
9073 @cindex conditional execution
9074 @cindex predication
9076 A number of architectures provide for some form of conditional
9077 execution, or predication.  The hallmark of this feature is the
9078 ability to nullify most of the instructions in the instruction set.
9079 When the instruction set is large and not entirely symmetric, it
9080 can be quite tedious to describe these forms directly in the
9081 @file{.md} file.  An alternative is the @code{define_cond_exec} template.
9083 @findex define_cond_exec
9084 @smallexample
9085 (define_cond_exec
9086   [@var{predicate-pattern}]
9087   "@var{condition}"
9088   "@var{output-template}"
9089   "@var{optional-insn-attribues}")
9090 @end smallexample
9092 @var{predicate-pattern} is the condition that must be true for the
9093 insn to be executed at runtime and should match a relational operator.
9094 One can use @code{match_operator} to match several relational operators
9095 at once.  Any @code{match_operand} operands must have no more than one
9096 alternative.
9098 @var{condition} is a C expression that must be true for the generated
9099 pattern to match.
9101 @findex current_insn_predicate
9102 @var{output-template} is a string similar to the @code{define_insn}
9103 output template (@pxref{Output Template}), except that the @samp{*}
9104 and @samp{@@} special cases do not apply.  This is only useful if the
9105 assembly text for the predicate is a simple prefix to the main insn.
9106 In order to handle the general case, there is a global variable
9107 @code{current_insn_predicate} that will contain the entire predicate
9108 if the current insn is predicated, and will otherwise be @code{NULL}.
9110 @var{optional-insn-attributes} is an optional vector of attributes that gets
9111 appended to the insn attributes of the produced cond_exec rtx. It can
9112 be used to add some distinguishing attribute to cond_exec rtxs produced
9113 that way. An example usage would be to use this attribute in conjunction
9114 with attributes on the main pattern to disable particular alternatives under
9115 certain conditions.
9117 When @code{define_cond_exec} is used, an implicit reference to
9118 the @code{predicable} instruction attribute is made.
9119 @xref{Insn Attributes}.  This attribute must be a boolean (i.e.@: have
9120 exactly two elements in its @var{list-of-values}), with the possible
9121 values being @code{no} and @code{yes}.  The default and all uses in
9122 the insns must be a simple constant, not a complex expressions.  It
9123 may, however, depend on the alternative, by using a comma-separated
9124 list of values.  If that is the case, the port should also define an
9125 @code{enabled} attribute (@pxref{Disable Insn Alternatives}), which
9126 should also allow only @code{no} and @code{yes} as its values.
9128 For each @code{define_insn} for which the @code{predicable}
9129 attribute is true, a new @code{define_insn} pattern will be
9130 generated that matches a predicated version of the instruction.
9131 For example,
9133 @smallexample
9134 (define_insn "addsi"
9135   [(set (match_operand:SI 0 "register_operand" "r")
9136         (plus:SI (match_operand:SI 1 "register_operand" "r")
9137                  (match_operand:SI 2 "register_operand" "r")))]
9138   "@var{test1}"
9139   "add %2,%1,%0")
9141 (define_cond_exec
9142   [(ne (match_operand:CC 0 "register_operand" "c")
9143        (const_int 0))]
9144   "@var{test2}"
9145   "(%0)")
9146 @end smallexample
9148 @noindent
9149 generates a new pattern
9151 @smallexample
9152 (define_insn ""
9153   [(cond_exec
9154      (ne (match_operand:CC 3 "register_operand" "c") (const_int 0))
9155      (set (match_operand:SI 0 "register_operand" "r")
9156           (plus:SI (match_operand:SI 1 "register_operand" "r")
9157                    (match_operand:SI 2 "register_operand" "r"))))]
9158   "(@var{test2}) && (@var{test1})"
9159   "(%3) add %2,%1,%0")
9160 @end smallexample
9162 @end ifset
9163 @ifset INTERNALS
9164 @node Define Subst
9165 @section RTL Templates Transformations
9166 @cindex define_subst
9168 For some hardware architectures there are common cases when the RTL
9169 templates for the instructions can be derived from the other RTL
9170 templates using simple transformations.  E.g., @file{i386.md} contains
9171 an RTL template for the ordinary @code{sub} instruction---
9172 @code{*subsi_1}, and for the @code{sub} instruction with subsequent
9173 zero-extension---@code{*subsi_1_zext}.  Such cases can be easily
9174 implemented by a single meta-template capable of generating a modified
9175 case based on the initial one:
9177 @findex define_subst
9178 @smallexample
9179 (define_subst "@var{name}"
9180   [@var{input-template}]
9181   "@var{condition}"
9182   [@var{output-template}])
9183 @end smallexample
9184 @var{input-template} is a pattern describing the source RTL template,
9185 which will be transformed.
9187 @var{condition} is a C expression that is conjunct with the condition
9188 from the input-template to generate a condition to be used in the
9189 output-template.
9191 @var{output-template} is a pattern that will be used in the resulting
9192 template.
9194 @code{define_subst} mechanism is tightly coupled with the notion of the
9195 subst attribute (@pxref{Subst Iterators}).  The use of
9196 @code{define_subst} is triggered by a reference to a subst attribute in
9197 the transforming RTL template.  This reference initiates duplication of
9198 the source RTL template and substitution of the attributes with their
9199 values.  The source RTL template is left unchanged, while the copy is
9200 transformed by @code{define_subst}.  This transformation can fail in the
9201 case when the source RTL template is not matched against the
9202 input-template of the @code{define_subst}.  In such case the copy is
9203 deleted.
9205 @code{define_subst} can be used only in @code{define_insn} and
9206 @code{define_expand}, it cannot be used in other expressions (e.g. in
9207 @code{define_insn_and_split}).
9209 @menu
9210 * Define Subst Example::            Example of @code{define_subst} work.
9211 * Define Subst Pattern Matching::   Process of template comparison.
9212 * Define Subst Output Template::    Generation of output template.
9213 @end menu
9215 @node Define Subst Example
9216 @subsection @code{define_subst} Example
9217 @cindex define_subst
9219 To illustrate how @code{define_subst} works, let us examine a simple
9220 template transformation.
9222 Suppose there are two kinds of instructions: one that touches flags and
9223 the other that does not.  The instructions of the second type could be
9224 generated with the following @code{define_subst}:
9226 @smallexample
9227 (define_subst "add_clobber_subst"
9228   [(set (match_operand:SI 0 "" "")
9229         (match_operand:SI 1 "" ""))]
9230   ""
9231   [(set (match_dup 0)
9232         (match_dup 1))
9233    (clobber (reg:CC FLAGS_REG))]
9234 @end smallexample
9236 This @code{define_subst} can be applied to any RTL pattern containing
9237 @code{set} of mode SI and generates a copy with clobber when it is
9238 applied.
9240 Assume there is an RTL template for a @code{max} instruction to be used
9241 in @code{define_subst} mentioned above:
9243 @smallexample
9244 (define_insn "maxsi"
9245   [(set (match_operand:SI 0 "register_operand" "=r")
9246         (max:SI
9247           (match_operand:SI 1 "register_operand" "r")
9248           (match_operand:SI 2 "register_operand" "r")))]
9249   ""
9250   "max\t@{%2, %1, %0|%0, %1, %2@}"
9251  [@dots{}])
9252 @end smallexample
9254 To mark the RTL template for @code{define_subst} application,
9255 subst-attributes are used.  They should be declared in advance:
9257 @smallexample
9258 (define_subst_attr "add_clobber_name" "add_clobber_subst" "_noclobber" "_clobber")
9259 @end smallexample
9261 Here @samp{add_clobber_name} is the attribute name,
9262 @samp{add_clobber_subst} is the name of the corresponding
9263 @code{define_subst}, the third argument (@samp{_noclobber}) is the
9264 attribute value that would be substituted into the unchanged version of
9265 the source RTL template, and the last argument (@samp{_clobber}) is the
9266 value that would be substituted into the second, transformed,
9267 version of the RTL template.
9269 Once the subst-attribute has been defined, it should be used in RTL
9270 templates which need to be processed by the @code{define_subst}.  So,
9271 the original RTL template should be changed:
9273 @smallexample
9274 (define_insn "maxsi<add_clobber_name>"
9275   [(set (match_operand:SI 0 "register_operand" "=r")
9276         (max:SI
9277           (match_operand:SI 1 "register_operand" "r")
9278           (match_operand:SI 2 "register_operand" "r")))]
9279   ""
9280   "max\t@{%2, %1, %0|%0, %1, %2@}"
9281  [@dots{}])
9282 @end smallexample
9284 The result of the @code{define_subst} usage would look like the following:
9286 @smallexample
9287 (define_insn "maxsi_noclobber"
9288   [(set (match_operand:SI 0 "register_operand" "=r")
9289         (max:SI
9290           (match_operand:SI 1 "register_operand" "r")
9291           (match_operand:SI 2 "register_operand" "r")))]
9292   ""
9293   "max\t@{%2, %1, %0|%0, %1, %2@}"
9294  [@dots{}])
9295 (define_insn "maxsi_clobber"
9296   [(set (match_operand:SI 0 "register_operand" "=r")
9297         (max:SI
9298           (match_operand:SI 1 "register_operand" "r")
9299           (match_operand:SI 2 "register_operand" "r")))
9300    (clobber (reg:CC FLAGS_REG))]
9301   ""
9302   "max\t@{%2, %1, %0|%0, %1, %2@}"
9303  [@dots{}])
9304 @end smallexample
9306 @node Define Subst Pattern Matching
9307 @subsection Pattern Matching in @code{define_subst}
9308 @cindex define_subst
9310 All expressions, allowed in @code{define_insn} or @code{define_expand},
9311 are allowed in the input-template of @code{define_subst}, except
9312 @code{match_par_dup}, @code{match_scratch}, @code{match_parallel}. The
9313 meanings of expressions in the input-template were changed:
9315 @code{match_operand} matches any expression (possibly, a subtree in
9316 RTL-template), if modes of the @code{match_operand} and this expression
9317 are the same, or mode of the @code{match_operand} is @code{VOIDmode}, or
9318 this expression is @code{match_dup}, @code{match_op_dup}.  If the
9319 expression is @code{match_operand} too, and predicate of
9320 @code{match_operand} from the input pattern is not empty, then the
9321 predicates are compared.  That can be used for more accurate filtering
9322 of accepted RTL-templates.
9324 @code{match_operator} matches common operators (like @code{plus},
9325 @code{minus}), @code{unspec}, @code{unspec_volatile} operators and
9326 @code{match_operator}s from the original pattern if the modes match and
9327 @code{match_operator} from the input pattern has the same number of
9328 operands as the operator from the original pattern.
9330 @node Define Subst Output Template
9331 @subsection Generation of output template in @code{define_subst}
9332 @cindex define_subst
9334 If all necessary checks for @code{define_subst} application pass, a new
9335 RTL-pattern, based on the output-template, is created to replace the old
9336 template.  Like in input-patterns, meanings of some RTL expressions are
9337 changed when they are used in output-patterns of a @code{define_subst}.
9338 Thus, @code{match_dup} is used for copying the whole expression from the
9339 original pattern, which matched corresponding @code{match_operand} from
9340 the input pattern.
9342 @code{match_dup N} is used in the output template to be replaced with
9343 the expression from the original pattern, which matched
9344 @code{match_operand N} from the input pattern.  As a consequence,
9345 @code{match_dup} cannot be used to point to @code{match_operand}s from
9346 the output pattern, it should always refer to a @code{match_operand}
9347 from the input pattern.
9349 In the output template one can refer to the expressions from the
9350 original pattern and create new ones.  For instance, some operands could
9351 be added by means of standard @code{match_operand}.
9353 After replacing @code{match_dup} with some RTL-subtree from the original
9354 pattern, it could happen that several @code{match_operand}s in the
9355 output pattern have the same indexes.  It is unknown, how many and what
9356 indexes would be used in the expression which would replace
9357 @code{match_dup}, so such conflicts in indexes are inevitable.  To
9358 overcome this issue, @code{match_operands} and @code{match_operators},
9359 which were introduced into the output pattern, are renumerated when all
9360 @code{match_dup}s are replaced.
9362 Number of alternatives in @code{match_operand}s introduced into the
9363 output template @code{M} could differ from the number of alternatives in
9364 the original pattern @code{N}, so in the resultant pattern there would
9365 be @code{N*M} alternatives.  Thus, constraints from the original pattern
9366 would be duplicated @code{N} times, constraints from the output pattern
9367 would be duplicated @code{M} times, producing all possible combinations.
9368 @end ifset
9370 @ifset INTERNALS
9371 @node Constant Definitions
9372 @section Constant Definitions
9373 @cindex constant definitions
9374 @findex define_constants
9376 Using literal constants inside instruction patterns reduces legibility and
9377 can be a maintenance problem.
9379 To overcome this problem, you may use the @code{define_constants}
9380 expression.  It contains a vector of name-value pairs.  From that
9381 point on, wherever any of the names appears in the MD file, it is as
9382 if the corresponding value had been written instead.  You may use
9383 @code{define_constants} multiple times; each appearance adds more
9384 constants to the table.  It is an error to redefine a constant with
9385 a different value.
9387 To come back to the a29k load multiple example, instead of
9389 @smallexample
9390 (define_insn ""
9391   [(match_parallel 0 "load_multiple_operation"
9392      [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
9393            (match_operand:SI 2 "memory_operand" "m"))
9394       (use (reg:SI 179))
9395       (clobber (reg:SI 179))])]
9396   ""
9397   "loadm 0,0,%1,%2")
9398 @end smallexample
9400 You could write:
9402 @smallexample
9403 (define_constants [
9404     (R_BP 177)
9405     (R_FC 178)
9406     (R_CR 179)
9407     (R_Q  180)
9410 (define_insn ""
9411   [(match_parallel 0 "load_multiple_operation"
9412      [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
9413            (match_operand:SI 2 "memory_operand" "m"))
9414       (use (reg:SI R_CR))
9415       (clobber (reg:SI R_CR))])]
9416   ""
9417   "loadm 0,0,%1,%2")
9418 @end smallexample
9420 The constants that are defined with a define_constant are also output
9421 in the insn-codes.h header file as #defines.
9423 @cindex enumerations
9424 @findex define_c_enum
9425 You can also use the machine description file to define enumerations.
9426 Like the constants defined by @code{define_constant}, these enumerations
9427 are visible to both the machine description file and the main C code.
9429 The syntax is as follows:
9431 @smallexample
9432 (define_c_enum "@var{name}" [
9433   @var{value0}
9434   @var{value1}
9435   @dots{}
9436   @var{valuen}
9438 @end smallexample
9440 This definition causes the equivalent of the following C code to appear
9441 in @file{insn-constants.h}:
9443 @smallexample
9444 enum @var{name} @{
9445   @var{value0} = 0,
9446   @var{value1} = 1,
9447   @dots{}
9448   @var{valuen} = @var{n}
9450 #define NUM_@var{cname}_VALUES (@var{n} + 1)
9451 @end smallexample
9453 where @var{cname} is the capitalized form of @var{name}.
9454 It also makes each @var{valuei} available in the machine description
9455 file, just as if it had been declared with:
9457 @smallexample
9458 (define_constants [(@var{valuei} @var{i})])
9459 @end smallexample
9461 Each @var{valuei} is usually an upper-case identifier and usually
9462 begins with @var{cname}.
9464 You can split the enumeration definition into as many statements as
9465 you like.  The above example is directly equivalent to:
9467 @smallexample
9468 (define_c_enum "@var{name}" [@var{value0}])
9469 (define_c_enum "@var{name}" [@var{value1}])
9470 @dots{}
9471 (define_c_enum "@var{name}" [@var{valuen}])
9472 @end smallexample
9474 Splitting the enumeration helps to improve the modularity of each
9475 individual @code{.md} file.  For example, if a port defines its
9476 synchronization instructions in a separate @file{sync.md} file,
9477 it is convenient to define all synchronization-specific enumeration
9478 values in @file{sync.md} rather than in the main @file{.md} file.
9480 Some enumeration names have special significance to GCC:
9482 @table @code
9483 @item unspecv
9484 @findex unspec_volatile
9485 If an enumeration called @code{unspecv} is defined, GCC will use it
9486 when printing out @code{unspec_volatile} expressions.  For example:
9488 @smallexample
9489 (define_c_enum "unspecv" [
9490   UNSPECV_BLOCKAGE
9492 @end smallexample
9494 causes GCC to print @samp{(unspec_volatile @dots{} 0)} as:
9496 @smallexample
9497 (unspec_volatile ... UNSPECV_BLOCKAGE)
9498 @end smallexample
9500 @item unspec
9501 @findex unspec
9502 If an enumeration called @code{unspec} is defined, GCC will use
9503 it when printing out @code{unspec} expressions.  GCC will also use
9504 it when printing out @code{unspec_volatile} expressions unless an
9505 @code{unspecv} enumeration is also defined.  You can therefore
9506 decide whether to keep separate enumerations for volatile and
9507 non-volatile expressions or whether to use the same enumeration
9508 for both.
9509 @end table
9511 @findex define_enum
9512 @anchor{define_enum}
9513 Another way of defining an enumeration is to use @code{define_enum}:
9515 @smallexample
9516 (define_enum "@var{name}" [
9517   @var{value0}
9518   @var{value1}
9519   @dots{}
9520   @var{valuen}
9522 @end smallexample
9524 This directive implies:
9526 @smallexample
9527 (define_c_enum "@var{name}" [
9528   @var{cname}_@var{cvalue0}
9529   @var{cname}_@var{cvalue1}
9530   @dots{}
9531   @var{cname}_@var{cvaluen}
9533 @end smallexample
9535 @findex define_enum_attr
9536 where @var{cvaluei} is the capitalized form of @var{valuei}.
9537 However, unlike @code{define_c_enum}, the enumerations defined
9538 by @code{define_enum} can be used in attribute specifications
9539 (@pxref{define_enum_attr}).
9540 @end ifset
9541 @ifset INTERNALS
9542 @node Iterators
9543 @section Iterators
9544 @cindex iterators in @file{.md} files
9546 Ports often need to define similar patterns for more than one machine
9547 mode or for more than one rtx code.  GCC provides some simple iterator
9548 facilities to make this process easier.
9550 @menu
9551 * Mode Iterators::         Generating variations of patterns for different modes.
9552 * Code Iterators::         Doing the same for codes.
9553 * Int Iterators::          Doing the same for integers.
9554 * Subst Iterators::        Generating variations of patterns for define_subst.
9555 @end menu
9557 @node Mode Iterators
9558 @subsection Mode Iterators
9559 @cindex mode iterators in @file{.md} files
9561 Ports often need to define similar patterns for two or more different modes.
9562 For example:
9564 @itemize @bullet
9565 @item
9566 If a processor has hardware support for both single and double
9567 floating-point arithmetic, the @code{SFmode} patterns tend to be
9568 very similar to the @code{DFmode} ones.
9570 @item
9571 If a port uses @code{SImode} pointers in one configuration and
9572 @code{DImode} pointers in another, it will usually have very similar
9573 @code{SImode} and @code{DImode} patterns for manipulating pointers.
9574 @end itemize
9576 Mode iterators allow several patterns to be instantiated from one
9577 @file{.md} file template.  They can be used with any type of
9578 rtx-based construct, such as a @code{define_insn},
9579 @code{define_split}, or @code{define_peephole2}.
9581 @menu
9582 * Defining Mode Iterators:: Defining a new mode iterator.
9583 * Substitutions::           Combining mode iterators with substitutions
9584 * Examples::                Examples
9585 @end menu
9587 @node Defining Mode Iterators
9588 @subsubsection Defining Mode Iterators
9589 @findex define_mode_iterator
9591 The syntax for defining a mode iterator is:
9593 @smallexample
9594 (define_mode_iterator @var{name} [(@var{mode1} "@var{cond1}") @dots{} (@var{moden} "@var{condn}")])
9595 @end smallexample
9597 This allows subsequent @file{.md} file constructs to use the mode suffix
9598 @code{:@var{name}}.  Every construct that does so will be expanded
9599 @var{n} times, once with every use of @code{:@var{name}} replaced by
9600 @code{:@var{mode1}}, once with every use replaced by @code{:@var{mode2}},
9601 and so on.  In the expansion for a particular @var{modei}, every
9602 C condition will also require that @var{condi} be true.
9604 For example:
9606 @smallexample
9607 (define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
9608 @end smallexample
9610 defines a new mode suffix @code{:P}.  Every construct that uses
9611 @code{:P} will be expanded twice, once with every @code{:P} replaced
9612 by @code{:SI} and once with every @code{:P} replaced by @code{:DI}.
9613 The @code{:SI} version will only apply if @code{Pmode == SImode} and
9614 the @code{:DI} version will only apply if @code{Pmode == DImode}.
9616 As with other @file{.md} conditions, an empty string is treated
9617 as ``always true''.  @code{(@var{mode} "")} can also be abbreviated
9618 to @code{@var{mode}}.  For example:
9620 @smallexample
9621 (define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
9622 @end smallexample
9624 means that the @code{:DI} expansion only applies if @code{TARGET_64BIT}
9625 but that the @code{:SI} expansion has no such constraint.
9627 Iterators are applied in the order they are defined.  This can be
9628 significant if two iterators are used in a construct that requires
9629 substitutions.  @xref{Substitutions}.
9631 @node Substitutions
9632 @subsubsection Substitution in Mode Iterators
9633 @findex define_mode_attr
9635 If an @file{.md} file construct uses mode iterators, each version of the
9636 construct will often need slightly different strings or modes.  For
9637 example:
9639 @itemize @bullet
9640 @item
9641 When a @code{define_expand} defines several @code{add@var{m}3} patterns
9642 (@pxref{Standard Names}), each expander will need to use the
9643 appropriate mode name for @var{m}.
9645 @item
9646 When a @code{define_insn} defines several instruction patterns,
9647 each instruction will often use a different assembler mnemonic.
9649 @item
9650 When a @code{define_insn} requires operands with different modes,
9651 using an iterator for one of the operand modes usually requires a specific
9652 mode for the other operand(s).
9653 @end itemize
9655 GCC supports such variations through a system of ``mode attributes''.
9656 There are two standard attributes: @code{mode}, which is the name of
9657 the mode in lower case, and @code{MODE}, which is the same thing in
9658 upper case.  You can define other attributes using:
9660 @smallexample
9661 (define_mode_attr @var{name} [(@var{mode1} "@var{value1}") @dots{} (@var{moden} "@var{valuen}")])
9662 @end smallexample
9664 where @var{name} is the name of the attribute and @var{valuei}
9665 is the value associated with @var{modei}.
9667 When GCC replaces some @var{:iterator} with @var{:mode}, it will scan
9668 each string and mode in the pattern for sequences of the form
9669 @code{<@var{iterator}:@var{attr}>}, where @var{attr} is the name of a
9670 mode attribute.  If the attribute is defined for @var{mode}, the whole
9671 @code{<@dots{}>} sequence will be replaced by the appropriate attribute
9672 value.
9674 For example, suppose an @file{.md} file has:
9676 @smallexample
9677 (define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
9678 (define_mode_attr load [(SI "lw") (DI "ld")])
9679 @end smallexample
9681 If one of the patterns that uses @code{:P} contains the string
9682 @code{"<P:load>\t%0,%1"}, the @code{SI} version of that pattern
9683 will use @code{"lw\t%0,%1"} and the @code{DI} version will use
9684 @code{"ld\t%0,%1"}.
9686 Here is an example of using an attribute for a mode:
9688 @smallexample
9689 (define_mode_iterator LONG [SI DI])
9690 (define_mode_attr SHORT [(SI "HI") (DI "SI")])
9691 (define_insn @dots{}
9692   (sign_extend:LONG (match_operand:<LONG:SHORT> @dots{})) @dots{})
9693 @end smallexample
9695 The @code{@var{iterator}:} prefix may be omitted, in which case the
9696 substitution will be attempted for every iterator expansion.
9698 @node Examples
9699 @subsubsection Mode Iterator Examples
9701 Here is an example from the MIPS port.  It defines the following
9702 modes and attributes (among others):
9704 @smallexample
9705 (define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
9706 (define_mode_attr d [(SI "") (DI "d")])
9707 @end smallexample
9709 and uses the following template to define both @code{subsi3}
9710 and @code{subdi3}:
9712 @smallexample
9713 (define_insn "sub<mode>3"
9714   [(set (match_operand:GPR 0 "register_operand" "=d")
9715         (minus:GPR (match_operand:GPR 1 "register_operand" "d")
9716                    (match_operand:GPR 2 "register_operand" "d")))]
9717   ""
9718   "<d>subu\t%0,%1,%2"
9719   [(set_attr "type" "arith")
9720    (set_attr "mode" "<MODE>")])
9721 @end smallexample
9723 This is exactly equivalent to:
9725 @smallexample
9726 (define_insn "subsi3"
9727   [(set (match_operand:SI 0 "register_operand" "=d")
9728         (minus:SI (match_operand:SI 1 "register_operand" "d")
9729                   (match_operand:SI 2 "register_operand" "d")))]
9730   ""
9731   "subu\t%0,%1,%2"
9732   [(set_attr "type" "arith")
9733    (set_attr "mode" "SI")])
9735 (define_insn "subdi3"
9736   [(set (match_operand:DI 0 "register_operand" "=d")
9737         (minus:DI (match_operand:DI 1 "register_operand" "d")
9738                   (match_operand:DI 2 "register_operand" "d")))]
9739   ""
9740   "dsubu\t%0,%1,%2"
9741   [(set_attr "type" "arith")
9742    (set_attr "mode" "DI")])
9743 @end smallexample
9745 @node Code Iterators
9746 @subsection Code Iterators
9747 @cindex code iterators in @file{.md} files
9748 @findex define_code_iterator
9749 @findex define_code_attr
9751 Code iterators operate in a similar way to mode iterators.  @xref{Mode Iterators}.
9753 The construct:
9755 @smallexample
9756 (define_code_iterator @var{name} [(@var{code1} "@var{cond1}") @dots{} (@var{coden} "@var{condn}")])
9757 @end smallexample
9759 defines a pseudo rtx code @var{name} that can be instantiated as
9760 @var{codei} if condition @var{condi} is true.  Each @var{codei}
9761 must have the same rtx format.  @xref{RTL Classes}.
9763 As with mode iterators, each pattern that uses @var{name} will be
9764 expanded @var{n} times, once with all uses of @var{name} replaced by
9765 @var{code1}, once with all uses replaced by @var{code2}, and so on.
9766 @xref{Defining Mode Iterators}.
9768 It is possible to define attributes for codes as well as for modes.
9769 There are two standard code attributes: @code{code}, the name of the
9770 code in lower case, and @code{CODE}, the name of the code in upper case.
9771 Other attributes are defined using:
9773 @smallexample
9774 (define_code_attr @var{name} [(@var{code1} "@var{value1}") @dots{} (@var{coden} "@var{valuen}")])
9775 @end smallexample
9777 Here's an example of code iterators in action, taken from the MIPS port:
9779 @smallexample
9780 (define_code_iterator any_cond [unordered ordered unlt unge uneq ltgt unle ungt
9781                                 eq ne gt ge lt le gtu geu ltu leu])
9783 (define_expand "b<code>"
9784   [(set (pc)
9785         (if_then_else (any_cond:CC (cc0)
9786                                    (const_int 0))
9787                       (label_ref (match_operand 0 ""))
9788                       (pc)))]
9789   ""
9791   gen_conditional_branch (operands, <CODE>);
9792   DONE;
9794 @end smallexample
9796 This is equivalent to:
9798 @smallexample
9799 (define_expand "bunordered"
9800   [(set (pc)
9801         (if_then_else (unordered:CC (cc0)
9802                                     (const_int 0))
9803                       (label_ref (match_operand 0 ""))
9804                       (pc)))]
9805   ""
9807   gen_conditional_branch (operands, UNORDERED);
9808   DONE;
9811 (define_expand "bordered"
9812   [(set (pc)
9813         (if_then_else (ordered:CC (cc0)
9814                                   (const_int 0))
9815                       (label_ref (match_operand 0 ""))
9816                       (pc)))]
9817   ""
9819   gen_conditional_branch (operands, ORDERED);
9820   DONE;
9823 @dots{}
9824 @end smallexample
9826 @node Int Iterators
9827 @subsection Int Iterators
9828 @cindex int iterators in @file{.md} files
9829 @findex define_int_iterator
9830 @findex define_int_attr
9832 Int iterators operate in a similar way to code iterators.  @xref{Code Iterators}.
9834 The construct:
9836 @smallexample
9837 (define_int_iterator @var{name} [(@var{int1} "@var{cond1}") @dots{} (@var{intn} "@var{condn}")])
9838 @end smallexample
9840 defines a pseudo integer constant @var{name} that can be instantiated as
9841 @var{inti} if condition @var{condi} is true.  Each @var{int}
9842 must have the same rtx format.  @xref{RTL Classes}. Int iterators can appear
9843 in only those rtx fields that have 'i' as the specifier. This means that
9844 each @var{int} has to be a constant defined using define_constant or
9845 define_c_enum.
9847 As with mode and code iterators, each pattern that uses @var{name} will be
9848 expanded @var{n} times, once with all uses of @var{name} replaced by
9849 @var{int1}, once with all uses replaced by @var{int2}, and so on.
9850 @xref{Defining Mode Iterators}.
9852 It is possible to define attributes for ints as well as for codes and modes.
9853 Attributes are defined using:
9855 @smallexample
9856 (define_int_attr @var{name} [(@var{int1} "@var{value1}") @dots{} (@var{intn} "@var{valuen}")])
9857 @end smallexample
9859 Here's an example of int iterators in action, taken from the ARM port:
9861 @smallexample
9862 (define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
9864 (define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
9866 (define_insn "neon_vq<absneg><mode>"
9867   [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
9868         (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
9869                        (match_operand:SI 2 "immediate_operand" "i")]
9870                       QABSNEG))]
9871   "TARGET_NEON"
9872   "vq<absneg>.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
9873   [(set_attr "type" "neon_vqneg_vqabs")]
9876 @end smallexample
9878 This is equivalent to:
9880 @smallexample
9881 (define_insn "neon_vqabs<mode>"
9882   [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
9883         (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
9884                        (match_operand:SI 2 "immediate_operand" "i")]
9885                       UNSPEC_VQABS))]
9886   "TARGET_NEON"
9887   "vqabs.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
9888   [(set_attr "type" "neon_vqneg_vqabs")]
9891 (define_insn "neon_vqneg<mode>"
9892   [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
9893         (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
9894                        (match_operand:SI 2 "immediate_operand" "i")]
9895                       UNSPEC_VQNEG))]
9896   "TARGET_NEON"
9897   "vqneg.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
9898   [(set_attr "type" "neon_vqneg_vqabs")]
9901 @end smallexample
9903 @node Subst Iterators
9904 @subsection Subst Iterators
9905 @cindex subst iterators in @file{.md} files
9906 @findex define_subst
9907 @findex define_subst_attr
9909 Subst iterators are special type of iterators with the following
9910 restrictions: they could not be declared explicitly, they always have
9911 only two values, and they do not have explicit dedicated name.
9912 Subst-iterators are triggered only when corresponding subst-attribute is
9913 used in RTL-pattern.
9915 Subst iterators transform templates in the following way: the templates
9916 are duplicated, the subst-attributes in these templates are replaced
9917 with the corresponding values, and a new attribute is implicitly added
9918 to the given @code{define_insn}/@code{define_expand}.  The name of the
9919 added attribute matches the name of @code{define_subst}.  Such
9920 attributes are declared implicitly, and it is not allowed to have a
9921 @code{define_attr} named as a @code{define_subst}.
9923 Each subst iterator is linked to a @code{define_subst}.  It is declared
9924 implicitly by the first appearance of the corresponding
9925 @code{define_subst_attr}, and it is not allowed to define it explicitly.
9927 Declarations of subst-attributes have the following syntax:
9929 @findex define_subst_attr
9930 @smallexample
9931 (define_subst_attr "@var{name}"
9932   "@var{subst-name}"
9933   "@var{no-subst-value}"
9934   "@var{subst-applied-value}")
9935 @end smallexample
9937 @var{name} is a string with which the given subst-attribute could be
9938 referred to.
9940 @var{subst-name} shows which @code{define_subst} should be applied to an
9941 RTL-template if the given subst-attribute is present in the
9942 RTL-template.
9944 @var{no-subst-value} is a value with which subst-attribute would be
9945 replaced in the first copy of the original RTL-template.
9947 @var{subst-applied-value} is a value with which subst-attribute would be
9948 replaced in the second copy of the original RTL-template.
9950 @end ifset