]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/md.texi
Update copyright years.
[thirdparty/gcc.git] / gcc / doc / md.texi
CommitLineData
a5544970 1@c Copyright (C) 1988-2019 Free Software Foundation, Inc.
03dda8e3
RK
2@c This is part of the GCC manual.
3@c For copying conditions, see the file gcc.texi.
4
5@ifset INTERNALS
6@node Machine Desc
7@chapter Machine Descriptions
8@cindex machine descriptions
9
10A machine description has two parts: a file of instruction patterns
11(@file{.md} file) and a C header file of macro definitions.
12
13The @file{.md} file for a target machine contains a pattern for each
14instruction that the target machine supports (or at least each instruction
15that is worth telling the compiler about). It may also contain comments.
16A semicolon causes the rest of the line to be a comment, unless the semicolon
17is inside a quoted string.
18
19See the next chapter for information on the C header file.
20
21@menu
55e4756f 22* Overview:: How the machine description is used.
03dda8e3
RK
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
6ccde948 27 from such an insn.
03dda8e3 28* Output Statement:: For more generality, write C code to output
6ccde948 29 the assembler code.
e543e219 30* Predicates:: Controlling what kinds of operands can be used
6ccde948 31 for an insn.
e543e219 32* Constraints:: Fine-tuning operand selection.
03dda8e3
RK
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.
6e4fcc95 37* Looping Patterns:: How to define patterns for special looping insns.
03dda8e3 38* Insn Canonicalizations::Canonicalization of Instructions
03dda8e3 39* Expander Definitions::Generating a sequence of several RTL insns
6ccde948 40 for a standard operation.
f3a3d0d3 41* Insn Splitting:: Splitting Instructions into Multiple Instructions.
6ccde948 42* Including Patterns:: Including Patterns in Machine Descriptions.
f3a3d0d3 43* Peephole Definitions::Defining machine-specific peephole optimizations.
03dda8e3 44* Insn Attributes:: Specifying the value of attributes for generated insns.
3262c1f5 45* Conditional Execution::Generating @code{define_insn} patterns for
6ccde948 46 predication.
477c104e
MK
47* Define Subst:: Generating @code{define_insn} and @code{define_expand}
48 patterns from other patterns.
c25c12b8
R
49* Constant Definitions::Defining symbolic constants that can be used in the
50 md file.
3abcb3a7 51* Iterators:: Using iterators to generate patterns from a template.
03dda8e3
RK
52@end menu
53
55e4756f
DD
54@node Overview
55@section Overview of How the Machine Description is Used
56
57There are three main conversions that happen in the compiler:
58
59@enumerate
60
61@item
62The front end reads the source code and builds a parse tree.
63
64@item
65The parse tree is used to generate an RTL insn list based on named
66instruction patterns.
67
68@item
69The insn list is matched against the RTL templates to produce assembler
70code.
71
72@end enumerate
73
74For the generate pass, only the names of the insns matter, from either a
75named @code{define_insn} or a @code{define_expand}. The compiler will
76choose the pattern with the right name and apply the operands according
77to the documentation later in this chapter, without regard for the RTL
78template or operand constraints. Note that the names the compiler looks
d7d9c429 79for are hard-coded in the compiler---it will ignore unnamed patterns and
55e4756f
DD
80patterns with names it doesn't know about, but if you don't provide a
81named pattern it needs, it will abort.
82
83If a @code{define_insn} is used, the template given is inserted into the
84insn list. If a @code{define_expand} is used, one of three things
85happens, based on the condition logic. The condition logic may manually
86create new insns for the insn list, say via @code{emit_insn()}, and
aee96fe9 87invoke @code{DONE}. For certain named patterns, it may invoke @code{FAIL} to tell the
55e4756f
DD
88compiler to use an alternate way of performing that task. If it invokes
89neither @code{DONE} nor @code{FAIL}, the template given in the pattern
90is inserted, as if the @code{define_expand} were a @code{define_insn}.
91
92Once the insn list is generated, various optimization passes convert,
93replace, and rearrange the insns in the insn list. This is where the
94@code{define_split} and @code{define_peephole} patterns get used, for
95example.
96
97Finally, 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
99final assembly code. For this purpose, each named @code{define_insn}
100acts like it's unnamed, since the names are ignored.
101
03dda8e3
RK
102@node Patterns
103@section Everything about Instruction Patterns
104@cindex patterns
105@cindex instruction patterns
106
107@findex define_insn
2f9d3709
JG
108A @code{define_insn} expression is used to define instruction patterns
109to which insns may be matched. A @code{define_insn} expression contains
110an incomplete RTL expression, with pieces to be filled in later, operand
111constraints that restrict how the pieces can be filled in, and an output
112template or C code to generate the assembler output.
03dda8e3
RK
113
114A @code{define_insn} is an RTL expression containing four or five operands:
115
116@enumerate
117@item
0016d8d9
RS
118An optional name @var{n}. When a name is present, the compiler
119automically generates a C++ function @samp{gen_@var{n}} that takes
120the operands of the instruction as arguments and returns the instruction's
121rtx pattern. The compiler also assigns the instruction a unique code
122@samp{CODE_FOR_@var{n}}, with all such codes belonging to an enum
123called @code{insn_code}.
124
125These names serve one of two purposes. The first is to indicate that the
126instruction performs a certain standard job for the RTL-generation
127pass of the compiler, such as a move, an addition, or a conditional
128jump. The second is to help the target generate certain target-specific
129operations, such as when implementing target-specific intrinsic functions.
130
131It is better to prefix target-specific names with the name of the
132target, to avoid any clash with current or future standard names.
03dda8e3
RK
133
134The absence of a name is indicated by writing an empty string
135where the name should go. Nameless instruction patterns are never
136used for generating RTL code, but they may permit several simpler insns
137to be combined later on.
138
661cb0b7
RK
139For the purpose of debugging the compiler, you may also specify a
140name beginning with the @samp{*} character. Such a name is used only
2f9d3709
JG
141for identifying the instruction in RTL dumps; it is equivalent to having
142a nameless pattern for all other purposes. Names beginning with the
143@samp{*} character are not required to be unique.
661cb0b7 144
0016d8d9
RS
145The name may also have the form @samp{@@@var{n}}. This has the same
146effect as a name @samp{@var{n}}, but in addition tells the compiler to
8bdea528 147generate further helper functions; see @ref{Parameterized Names} for details.
0016d8d9 148
03dda8e3 149@item
2f9d3709
JG
150The @dfn{RTL template}: This is a vector of incomplete RTL expressions
151which describe the semantics of the instruction (@pxref{RTL Template}).
152It is incomplete because it may contain @code{match_operand},
03dda8e3
RK
153@code{match_operator}, and @code{match_dup} expressions that stand for
154operands of the instruction.
155
2f9d3709
JG
156If the vector has multiple elements, the RTL template is treated as a
157@code{parallel} expression.
03dda8e3
RK
158
159@item
160@cindex pattern conditions
161@cindex conditions, in patterns
2f9d3709
JG
162The condition: This is a string which contains a C expression. When the
163compiler attempts to match RTL against a pattern, the condition is
164evaluated. If the condition evaluates to @code{true}, the match is
165permitted. The condition may be an empty string, which is treated
166as always @code{true}.
03dda8e3
RK
167
168@cindex named patterns and conditions
2f9d3709
JG
169For a named pattern, the condition may not depend on the data in the
170insn being matched, but only the target-machine-type flags. The compiler
171needs to test these conditions during initialization in order to learn
172exactly which named instructions are available in a particular run.
03dda8e3
RK
173
174@findex operands
175For nameless patterns, the condition is applied only when matching an
176individual insn, and only after the insn has matched the pattern's
177recognition template. The insn's operands may be found in the vector
2f9d3709
JG
178@code{operands}.
179
49e478af
RS
180An instruction condition cannot become more restrictive as compilation
181progresses. If the condition accepts a particular RTL instruction at
182one stage of compilation, it must continue to accept that instruction
183until the final pass. For example, @samp{!reload_completed} and
184@samp{can_create_pseudo_p ()} are both invalid instruction conditions,
185because they are true during the earlier RTL passes and false during
186the later ones. For the same reason, if a condition accepts an
187instruction before register allocation, it cannot later try to control
188register allocation by excluding certain register or value combinations.
189
190Although a condition cannot become more restrictive as compilation
191progresses, the condition for a nameless pattern @emph{can} become
192more permissive. For example, a nameless instruction can require
193@samp{reload_completed} to be true, in which case it only matches
194after register allocation.
03dda8e3
RK
195
196@item
2f9d3709
JG
197The @dfn{output template} or @dfn{output statement}: This is either
198a string, or a fragment of C code which returns a string.
03dda8e3
RK
199
200When simple substitution isn't general enough, you can specify a piece
201of C code to compute the output. @xref{Output Statement}.
202
203@item
2f9d3709
JG
204The @dfn{insn attributes}: This is an optional vector containing the values of
205attributes for insns matching this pattern (@pxref{Insn Attributes}).
03dda8e3
RK
206@end enumerate
207
208@node Example
209@section Example of @code{define_insn}
210@cindex @code{define_insn} example
211
2f9d3709
JG
212Here is an example of an instruction pattern, taken from the machine
213description for the 68000/68020.
03dda8e3 214
3ab51846 215@smallexample
03dda8e3
RK
216(define_insn "tstsi"
217 [(set (cc0)
218 (match_operand:SI 0 "general_operand" "rm"))]
219 ""
220 "*
f282ffb3 221@{
0f40f9f7 222 if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
03dda8e3 223 return \"tstl %0\";
f282ffb3 224 return \"cmpl #0,%0\";
0f40f9f7 225@}")
3ab51846 226@end smallexample
0f40f9f7
ZW
227
228@noindent
229This can also be written using braced strings:
230
3ab51846 231@smallexample
0f40f9f7
ZW
232(define_insn "tstsi"
233 [(set (cc0)
234 (match_operand:SI 0 "general_operand" "rm"))]
235 ""
f282ffb3 236@{
0f40f9f7
ZW
237 if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
238 return "tstl %0";
f282ffb3 239 return "cmpl #0,%0";
0f40f9f7 240@})
3ab51846 241@end smallexample
03dda8e3 242
2f9d3709
JG
243This describes an instruction which sets the condition codes based on the
244value of a general operand. It has no condition, so any insn with an RTL
245description of the form shown may be matched to this pattern. The name
246@samp{tstsi} means ``test a @code{SImode} value'' and tells the RTL
247generation pass that, when it is necessary to test such a value, an insn
248to do so can be constructed using this pattern.
03dda8e3
RK
249
250The output control string is a piece of C code which chooses which
251output template to return based on the kind of operand and the specific
252type of CPU for which code is being generated.
253
254@samp{"rm"} is an operand constraint. Its meaning is explained below.
255
256@node RTL Template
257@section RTL Template
258@cindex RTL insn template
259@cindex generating insns
260@cindex insns, generating
261@cindex recognizing insns
262@cindex insns, recognizing
263
264The RTL template is used to define which insns match the particular pattern
265and how to find their operands. For named patterns, the RTL template also
266says how to construct an insn from specified operands.
267
268Construction involves substituting specified operands into a copy of the
269template. Matching involves determining the values that serve as the
270operands in the insn being matched. Both of these activities are
271controlled by special expression types that direct matching and
272substitution of the operands.
273
274@table @code
275@findex match_operand
276@item (match_operand:@var{m} @var{n} @var{predicate} @var{constraint})
277This expression is a placeholder for operand number @var{n} of
278the insn. When constructing an insn, operand number @var{n}
279will be substituted at this point. When matching an insn, whatever
280appears at this position in the insn will be taken as operand
281number @var{n}; but it must satisfy @var{predicate} or this instruction
282pattern will not match at all.
283
284Operand numbers must be chosen consecutively counting from zero in
285each instruction pattern. There may be only one @code{match_operand}
286expression in the pattern for each operand number. Usually operands
287are numbered in the order of appearance in @code{match_operand}
72938a4c
MM
288expressions. In the case of a @code{define_expand}, any operand numbers
289used only in @code{match_dup} expressions have higher values than all
290other operand numbers.
03dda8e3 291
e543e219
ZW
292@var{predicate} is a string that is the name of a function that
293accepts two arguments, an expression and a machine mode.
294@xref{Predicates}. During matching, the function will be called with
295the putative operand as the expression and @var{m} as the mode
296argument (if @var{m} is not specified, @code{VOIDmode} will be used,
297which normally causes @var{predicate} to accept any mode). If it
298returns zero, this instruction pattern fails to match.
299@var{predicate} may be an empty string; then it means no test is to be
300done on the operand, so anything which occurs in this position is
301valid.
03dda8e3
RK
302
303Most of the time, @var{predicate} will reject modes other than @var{m}---but
304not always. For example, the predicate @code{address_operand} uses
305@var{m} as the mode of memory ref that the address should be valid for.
306Many predicates accept @code{const_int} nodes even though their mode is
307@code{VOIDmode}.
308
309@var{constraint} controls reloading and the choice of the best register
310class to use for a value, as explained later (@pxref{Constraints}).
e543e219 311If the constraint would be an empty string, it can be omitted.
03dda8e3
RK
312
313People are often unclear on the difference between the constraint and the
314predicate. The predicate helps decide whether a given insn matches the
315pattern. The constraint plays no role in this decision; instead, it
316controls various decisions in the case of an insn which does match.
317
03dda8e3
RK
318@findex match_scratch
319@item (match_scratch:@var{m} @var{n} @var{constraint})
320This expression is also a placeholder for operand number @var{n}
321and indicates that operand must be a @code{scratch} or @code{reg}
322expression.
323
324When matching patterns, this is equivalent to
325
326@smallexample
e80f9fef 327(match_operand:@var{m} @var{n} "scratch_operand" @var{constraint})
03dda8e3
RK
328@end smallexample
329
330but, when generating RTL, it produces a (@code{scratch}:@var{m})
331expression.
332
333If the last few expressions in a @code{parallel} are @code{clobber}
334expressions whose operands are either a hard register or
335@code{match_scratch}, the combiner can add or delete them when
336necessary. @xref{Side Effects}.
337
338@findex match_dup
339@item (match_dup @var{n})
340This expression is also a placeholder for operand number @var{n}.
341It is used when the operand needs to appear more than once in the
342insn.
343
344In construction, @code{match_dup} acts just like @code{match_operand}:
345the operand is substituted into the insn being constructed. But in
346matching, @code{match_dup} behaves differently. It assumes that operand
347number @var{n} has already been determined by a @code{match_operand}
348appearing earlier in the recognition template, and it matches only an
349identical-looking expression.
350
55e4756f
DD
351Note that @code{match_dup} should not be used to tell the compiler that
352a particular register is being used for two operands (example:
353@code{add} that adds one register to another; the second register is
354both an input operand and the output operand). Use a matching
355constraint (@pxref{Simple Constraints}) for those. @code{match_dup} is for the cases where one
356operand is used in two places in the template, such as an instruction
357that computes both a quotient and a remainder, where the opcode takes
358two input operands but the RTL template has to refer to each of those
359twice; once for the quotient pattern and once for the remainder pattern.
360
03dda8e3
RK
361@findex match_operator
362@item (match_operator:@var{m} @var{n} @var{predicate} [@var{operands}@dots{}])
363This pattern is a kind of placeholder for a variable RTL expression
364code.
365
366When constructing an insn, it stands for an RTL expression whose
367expression code is taken from that of operand @var{n}, and whose
368operands are constructed from the patterns @var{operands}.
369
370When matching an expression, it matches an expression if the function
371@var{predicate} returns nonzero on that expression @emph{and} the
372patterns @var{operands} match the operands of the expression.
373
374Suppose that the function @code{commutative_operator} is defined as
375follows, to match any expression whose operator is one of the
376commutative arithmetic operators of RTL and whose mode is @var{mode}:
377
378@smallexample
379int
ec8e098d 380commutative_integer_operator (x, mode)
03dda8e3 381 rtx x;
ef4bddc2 382 machine_mode mode;
03dda8e3
RK
383@{
384 enum rtx_code code = GET_CODE (x);
385 if (GET_MODE (x) != mode)
386 return 0;
ec8e098d 387 return (GET_RTX_CLASS (code) == RTX_COMM_ARITH
03dda8e3
RK
388 || code == EQ || code == NE);
389@}
390@end smallexample
391
392Then the following pattern will match any RTL expression consisting
393of a commutative operator applied to two general operands:
394
395@smallexample
396(match_operator:SI 3 "commutative_operator"
397 [(match_operand:SI 1 "general_operand" "g")
398 (match_operand:SI 2 "general_operand" "g")])
399@end smallexample
400
401Here the vector @code{[@var{operands}@dots{}]} contains two patterns
402because the expressions to be matched all contain two operands.
403
404When this pattern does match, the two operands of the commutative
405operator are recorded as operands 1 and 2 of the insn. (This is done
406by the two instances of @code{match_operand}.) Operand 3 of the insn
407will be the entire commutative expression: use @code{GET_CODE
408(operands[3])} to see which commutative operator was used.
409
410The machine mode @var{m} of @code{match_operator} works like that of
411@code{match_operand}: it is passed as the second argument to the
412predicate function, and that function is solely responsible for
413deciding whether the expression to be matched ``has'' that mode.
414
415When constructing an insn, argument 3 of the gen-function will specify
e979f9e8 416the operation (i.e.@: the expression code) for the expression to be
03dda8e3
RK
417made. It should be an RTL expression, whose expression code is copied
418into a new expression whose operands are arguments 1 and 2 of the
419gen-function. The subexpressions of argument 3 are not used;
420only its expression code matters.
421
422When @code{match_operator} is used in a pattern for matching an insn,
423it usually best if the operand number of the @code{match_operator}
424is higher than that of the actual operands of the insn. This improves
425register allocation because the register allocator often looks at
426operands 1 and 2 of insns to see if it can do register tying.
427
428There is no way to specify constraints in @code{match_operator}. The
429operand of the insn which corresponds to the @code{match_operator}
430never has any constraints because it is never reloaded as a whole.
431However, if parts of its @var{operands} are matched by
432@code{match_operand} patterns, those parts may have constraints of
433their own.
434
435@findex match_op_dup
436@item (match_op_dup:@var{m} @var{n}[@var{operands}@dots{}])
437Like @code{match_dup}, except that it applies to operators instead of
438operands. When constructing an insn, operand number @var{n} will be
439substituted at this point. But in matching, @code{match_op_dup} behaves
440differently. It assumes that operand number @var{n} has already been
441determined by a @code{match_operator} appearing earlier in the
442recognition template, and it matches only an identical-looking
443expression.
444
445@findex match_parallel
446@item (match_parallel @var{n} @var{predicate} [@var{subpat}@dots{}])
447This pattern is a placeholder for an insn that consists of a
448@code{parallel} expression with a variable number of elements. This
449expression should only appear at the top level of an insn pattern.
450
451When constructing an insn, operand number @var{n} will be substituted at
452this point. When matching an insn, it matches if the body of the insn
453is a @code{parallel} expression with at least as many elements as the
454vector of @var{subpat} expressions in the @code{match_parallel}, if each
455@var{subpat} matches the corresponding element of the @code{parallel},
456@emph{and} the function @var{predicate} returns nonzero on the
457@code{parallel} that is the body of the insn. It is the responsibility
458of the predicate to validate elements of the @code{parallel} beyond
bd819a4a 459those listed in the @code{match_parallel}.
03dda8e3
RK
460
461A typical use of @code{match_parallel} is to match load and store
462multiple expressions, which can contain a variable number of elements
463in a @code{parallel}. For example,
03dda8e3
RK
464
465@smallexample
466(define_insn ""
467 [(match_parallel 0 "load_multiple_operation"
468 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
469 (match_operand:SI 2 "memory_operand" "m"))
470 (use (reg:SI 179))
471 (clobber (reg:SI 179))])]
472 ""
473 "loadm 0,0,%1,%2")
474@end smallexample
475
476This example comes from @file{a29k.md}. The function
9c34dbbf 477@code{load_multiple_operation} is defined in @file{a29k.c} and checks
03dda8e3
RK
478that subsequent elements in the @code{parallel} are the same as the
479@code{set} in the pattern, except that they are referencing subsequent
480registers and memory locations.
481
482An insn that matches this pattern might look like:
483
484@smallexample
485(parallel
486 [(set (reg:SI 20) (mem:SI (reg:SI 100)))
487 (use (reg:SI 179))
488 (clobber (reg:SI 179))
489 (set (reg:SI 21)
490 (mem:SI (plus:SI (reg:SI 100)
491 (const_int 4))))
492 (set (reg:SI 22)
493 (mem:SI (plus:SI (reg:SI 100)
494 (const_int 8))))])
495@end smallexample
496
497@findex match_par_dup
498@item (match_par_dup @var{n} [@var{subpat}@dots{}])
499Like @code{match_op_dup}, but for @code{match_parallel} instead of
500@code{match_operator}.
501
03dda8e3
RK
502@end table
503
504@node Output Template
505@section Output Templates and Operand Substitution
506@cindex output templates
507@cindex operand substitution
508
509@cindex @samp{%} in template
510@cindex percent sign
511The @dfn{output template} is a string which specifies how to output the
512assembler code for an instruction pattern. Most of the template is a
513fixed string which is output literally. The character @samp{%} is used
514to specify where to substitute an operand; it can also be used to
515identify places where different variants of the assembler require
516different syntax.
517
518In the simplest case, a @samp{%} followed by a digit @var{n} says to output
519operand @var{n} at that point in the string.
520
521@samp{%} followed by a letter and a digit says to output an operand in an
522alternate fashion. Four letters have standard, built-in meanings described
523below. The machine description macro @code{PRINT_OPERAND} can define
524additional letters with nonstandard meanings.
525
526@samp{%c@var{digit}} can be used to substitute an operand that is a
527constant value without the syntax that normally indicates an immediate
528operand.
529
530@samp{%n@var{digit}} is like @samp{%c@var{digit}} except that the value of
531the constant is negated before printing.
532
533@samp{%a@var{digit}} can be used to substitute an operand as if it were a
534memory reference, with the actual operand treated as the address. This may
535be useful when outputting a ``load address'' instruction, because often the
536assembler syntax for such an instruction requires you to write the operand
537as if it were a memory reference.
538
539@samp{%l@var{digit}} is used to substitute a @code{label_ref} into a jump
540instruction.
541
542@samp{%=} outputs a number which is unique to each instruction in the
543entire compilation. This is useful for making local labels to be
544referred to more than once in a single template that generates multiple
545assembler instructions.
546
547@samp{%} followed by a punctuation character specifies a substitution that
548does not use an operand. Only one case is standard: @samp{%%} outputs a
549@samp{%} into the assembler code. Other nonstandard cases can be
550defined in the @code{PRINT_OPERAND} macro. You must also define
551which punctuation characters are valid with the
552@code{PRINT_OPERAND_PUNCT_VALID_P} macro.
553
554@cindex \
555@cindex backslash
556The template may generate multiple assembler instructions. Write the text
557for the instructions, with @samp{\;} between them.
558
559@cindex matching operands
560When the RTL contains two operands which are required by constraint to match
561each other, the output template must refer only to the lower-numbered operand.
562Matching operands are not always identical, and the rest of the compiler
563arranges to put the proper RTL expression for printing into the lower-numbered
564operand.
565
566One use of nonstandard letters or punctuation following @samp{%} is to
567distinguish between different assembler languages for the same machine; for
568example, Motorola syntax versus MIT syntax for the 68000. Motorola syntax
569requires periods in most opcode names, while MIT syntax does not. For
570example, the opcode @samp{movel} in MIT syntax is @samp{move.l} in Motorola
571syntax. The same file of patterns is used for both kinds of output syntax,
572but the character sequence @samp{%.} is used in each place where Motorola
573syntax wants a period. The @code{PRINT_OPERAND} macro for Motorola syntax
574defines the sequence to output a period; the macro for MIT syntax defines
575it to do nothing.
576
577@cindex @code{#} in template
578As a special case, a template consisting of the single character @code{#}
579instructs the compiler to first split the insn, and then output the
580resulting instructions separately. This helps eliminate redundancy in the
581output templates. If you have a @code{define_insn} that needs to emit
e4ae5e77 582multiple assembler instructions, and there is a matching @code{define_split}
03dda8e3
RK
583already defined, then you can simply use @code{#} as the output template
584instead of writing an output template that emits the multiple assembler
585instructions.
586
49e478af
RS
587Note that @code{#} only has an effect while generating assembly code;
588it does not affect whether a split occurs earlier. An associated
589@code{define_split} must exist and it must be suitable for use after
590register allocation.
591
03dda8e3
RK
592If the macro @code{ASSEMBLER_DIALECT} is defined, you can use construct
593of the form @samp{@{option0|option1|option2@}} in the templates. These
594describe multiple variants of assembler language syntax.
595@xref{Instruction Output}.
596
597@node Output Statement
598@section C Statements for Assembler Output
599@cindex output statements
600@cindex C statements for assembler output
601@cindex generating assembler output
602
603Often a single fixed template string cannot produce correct and efficient
604assembler code for all the cases that are recognized by a single
605instruction pattern. For example, the opcodes may depend on the kinds of
606operands; or some unfortunate combinations of operands may require extra
607machine instructions.
608
609If the output control string starts with a @samp{@@}, then it is actually
610a series of templates, each on a separate line. (Blank lines and
611leading spaces and tabs are ignored.) The templates correspond to the
612pattern's constraint alternatives (@pxref{Multi-Alternative}). For example,
613if a target machine has a two-address add instruction @samp{addr} to add
614into a register and another @samp{addm} to add a register to memory, you
615might write this pattern:
616
617@smallexample
618(define_insn "addsi3"
619 [(set (match_operand:SI 0 "general_operand" "=r,m")
620 (plus:SI (match_operand:SI 1 "general_operand" "0,0")
621 (match_operand:SI 2 "general_operand" "g,r")))]
622 ""
623 "@@
624 addr %2,%0
625 addm %2,%0")
626@end smallexample
627
628@cindex @code{*} in template
629@cindex asterisk in template
630If the output control string starts with a @samp{*}, then it is not an
631output template but rather a piece of C program that should compute a
632template. It should execute a @code{return} statement to return the
633template-string you want. Most such templates use C string literals, which
634require doublequote characters to delimit them. To include these
635doublequote characters in the string, prefix each one with @samp{\}.
636
0f40f9f7
ZW
637If the output control string is written as a brace block instead of a
638double-quoted string, it is automatically assumed to be C code. In that
639case, it is not necessary to put in a leading asterisk, or to escape the
640doublequotes surrounding C string literals.
641
03dda8e3
RK
642The operands may be found in the array @code{operands}, whose C data type
643is @code{rtx []}.
644
645It is very common to select different ways of generating assembler code
646based on whether an immediate operand is within a certain range. Be
647careful when doing this, because the result of @code{INTVAL} is an
648integer on the host machine. If the host machine has more bits in an
649@code{int} than the target machine has in the mode in which the constant
650will be used, then some of the bits you get from @code{INTVAL} will be
651superfluous. For proper results, you must carefully disregard the
652values of those bits.
653
654@findex output_asm_insn
655It is possible to output an assembler instruction and then go on to output
656or compute more of them, using the subroutine @code{output_asm_insn}. This
657receives two arguments: a template-string and a vector of operands. The
658vector may be @code{operands}, or it may be another array of @code{rtx}
659that you declare locally and initialize yourself.
660
661@findex which_alternative
662When an insn pattern has multiple alternatives in its constraints, often
663the appearance of the assembler code is determined mostly by which alternative
664was matched. When this is so, the C code can test the variable
665@code{which_alternative}, which is the ordinal number of the alternative
666that was actually satisfied (0 for the first, 1 for the second alternative,
667etc.).
668
669For example, suppose there are two opcodes for storing zero, @samp{clrreg}
670for registers and @samp{clrmem} for memory locations. Here is how
671a pattern could use @code{which_alternative} to choose between them:
672
673@smallexample
674(define_insn ""
675 [(set (match_operand:SI 0 "general_operand" "=r,m")
676 (const_int 0))]
677 ""
0f40f9f7 678 @{
03dda8e3 679 return (which_alternative == 0
0f40f9f7
ZW
680 ? "clrreg %0" : "clrmem %0");
681 @})
03dda8e3
RK
682@end smallexample
683
684The example above, where the assembler code to generate was
685@emph{solely} determined by the alternative, could also have been specified
686as follows, having the output control string start with a @samp{@@}:
687
688@smallexample
689@group
690(define_insn ""
691 [(set (match_operand:SI 0 "general_operand" "=r,m")
692 (const_int 0))]
693 ""
694 "@@
695 clrreg %0
696 clrmem %0")
697@end group
698@end smallexample
e543e219 699
94c765ab
R
700If you just need a little bit of C code in one (or a few) alternatives,
701you can use @samp{*} inside of a @samp{@@} multi-alternative template:
702
703@smallexample
704@group
705(define_insn ""
706 [(set (match_operand:SI 0 "general_operand" "=r,<,m")
707 (const_int 0))]
708 ""
709 "@@
710 clrreg %0
711 * return stack_mem_p (operands[0]) ? \"push 0\" : \"clrmem %0\";
712 clrmem %0")
713@end group
714@end smallexample
715
e543e219
ZW
716@node Predicates
717@section Predicates
718@cindex predicates
719@cindex operand predicates
720@cindex operator predicates
721
722A predicate determines whether a @code{match_operand} or
723@code{match_operator} expression matches, and therefore whether the
724surrounding instruction pattern will be used for that combination of
725operands. GCC has a number of machine-independent predicates, and you
726can define machine-specific predicates as needed. By convention,
727predicates used with @code{match_operand} have names that end in
728@samp{_operand}, and those used with @code{match_operator} have names
729that end in @samp{_operator}.
730
527a3750 731All predicates are boolean functions (in the mathematical sense) of
e543e219
ZW
732two arguments: the RTL expression that is being considered at that
733position in the instruction pattern, and the machine mode that the
734@code{match_operand} or @code{match_operator} specifies. In this
735section, the first argument is called @var{op} and the second argument
736@var{mode}. Predicates can be called from C as ordinary two-argument
737functions; this can be useful in output templates or other
738machine-specific code.
739
740Operand predicates can allow operands that are not actually acceptable
741to the hardware, as long as the constraints give reload the ability to
742fix them up (@pxref{Constraints}). However, GCC will usually generate
743better code if the predicates specify the requirements of the machine
744instructions as closely as possible. Reload cannot fix up operands
745that must be constants (``immediate operands''); you must use a
746predicate that allows only constants, or else enforce the requirement
747in the extra condition.
748
749@cindex predicates and machine modes
750@cindex normal predicates
751@cindex special predicates
752Most predicates handle their @var{mode} argument in a uniform manner.
753If @var{mode} is @code{VOIDmode} (unspecified), then @var{op} can have
754any mode. If @var{mode} is anything else, then @var{op} must have the
755same mode, unless @var{op} is a @code{CONST_INT} or integer
756@code{CONST_DOUBLE}. These RTL expressions always have
757@code{VOIDmode}, so it would be counterproductive to check that their
758mode matches. Instead, predicates that accept @code{CONST_INT} and/or
759integer @code{CONST_DOUBLE} check that the value stored in the
760constant will fit in the requested mode.
761
762Predicates with this behavior are called @dfn{normal}.
763@command{genrecog} can optimize the instruction recognizer based on
764knowledge of how normal predicates treat modes. It can also diagnose
765certain kinds of common errors in the use of normal predicates; for
766instance, it is almost always an error to use a normal predicate
767without specifying a mode.
768
769Predicates that do something different with their @var{mode} argument
770are called @dfn{special}. The generic predicates
771@code{address_operand} and @code{pmode_register_operand} are special
772predicates. @command{genrecog} does not do any optimizations or
773diagnosis when special predicates are used.
774
775@menu
776* Machine-Independent Predicates:: Predicates available to all back ends.
777* Defining Predicates:: How to write machine-specific predicate
778 functions.
779@end menu
780
781@node Machine-Independent Predicates
782@subsection Machine-Independent Predicates
783@cindex machine-independent predicates
784@cindex generic predicates
785
786These are the generic predicates available to all back ends. They are
787defined in @file{recog.c}. The first category of predicates allow
788only constant, or @dfn{immediate}, operands.
789
790@defun immediate_operand
791This predicate allows any sort of constant that fits in @var{mode}.
792It is an appropriate choice for instructions that take operands that
793must be constant.
794@end defun
795
796@defun const_int_operand
797This predicate allows any @code{CONST_INT} expression that fits in
798@var{mode}. It is an appropriate choice for an immediate operand that
799does not allow a symbol or label.
800@end defun
801
802@defun const_double_operand
803This predicate accepts any @code{CONST_DOUBLE} expression that has
804exactly @var{mode}. If @var{mode} is @code{VOIDmode}, it will also
805accept @code{CONST_INT}. It is intended for immediate floating point
806constants.
807@end defun
808
809@noindent
810The second category of predicates allow only some kind of machine
811register.
812
813@defun register_operand
814This predicate allows any @code{REG} or @code{SUBREG} expression that
815is valid for @var{mode}. It is often suitable for arithmetic
816instruction operands on a RISC machine.
817@end defun
818
819@defun pmode_register_operand
820This is a slight variant on @code{register_operand} which works around
821a limitation in the machine-description reader.
822
cd1a8088 823@smallexample
e543e219 824(match_operand @var{n} "pmode_register_operand" @var{constraint})
cd1a8088 825@end smallexample
e543e219
ZW
826
827@noindent
828means exactly what
829
cd1a8088 830@smallexample
e543e219 831(match_operand:P @var{n} "register_operand" @var{constraint})
cd1a8088 832@end smallexample
e543e219
ZW
833
834@noindent
835would mean, if the machine-description reader accepted @samp{:P}
836mode suffixes. Unfortunately, it cannot, because @code{Pmode} is an
837alias for some other mode, and might vary with machine-specific
8a36672b 838options. @xref{Misc}.
e543e219
ZW
839@end defun
840
841@defun scratch_operand
842This predicate allows hard registers and @code{SCRATCH} expressions,
843but not pseudo-registers. It is used internally by @code{match_scratch};
844it should not be used directly.
845@end defun
846
847@noindent
848The third category of predicates allow only some kind of memory reference.
849
850@defun memory_operand
851This predicate allows any valid reference to a quantity of mode
852@var{mode} in memory, as determined by the weak form of
853@code{GO_IF_LEGITIMATE_ADDRESS} (@pxref{Addressing Modes}).
854@end defun
855
856@defun address_operand
857This predicate is a little unusual; it allows any operand that is a
858valid expression for the @emph{address} of a quantity of mode
859@var{mode}, again determined by the weak form of
860@code{GO_IF_LEGITIMATE_ADDRESS}. To first order, if
861@samp{@w{(mem:@var{mode} (@var{exp}))}} is acceptable to
862@code{memory_operand}, then @var{exp} is acceptable to
863@code{address_operand}. Note that @var{exp} does not necessarily have
864the mode @var{mode}.
865@end defun
866
867@defun indirect_operand
868This is a stricter form of @code{memory_operand} which allows only
869memory references with a @code{general_operand} as the address
870expression. New uses of this predicate are discouraged, because
871@code{general_operand} is very permissive, so it's hard to tell what
872an @code{indirect_operand} does or does not allow. If a target has
873different requirements for memory operands for different instructions,
874it is better to define target-specific predicates which enforce the
875hardware's requirements explicitly.
876@end defun
877
878@defun push_operand
879This predicate allows a memory reference suitable for pushing a value
880onto the stack. This will be a @code{MEM} which refers to
df18c24a 881@code{stack_pointer_rtx}, with a side effect in its address expression
e543e219
ZW
882(@pxref{Incdec}); which one is determined by the
883@code{STACK_PUSH_CODE} macro (@pxref{Frame Layout}).
884@end defun
885
886@defun pop_operand
887This predicate allows a memory reference suitable for popping a value
888off the stack. Again, this will be a @code{MEM} referring to
df18c24a 889@code{stack_pointer_rtx}, with a side effect in its address
e543e219
ZW
890expression. However, this time @code{STACK_POP_CODE} is expected.
891@end defun
892
893@noindent
894The fourth category of predicates allow some combination of the above
895operands.
896
897@defun nonmemory_operand
898This predicate allows any immediate or register operand valid for @var{mode}.
899@end defun
900
901@defun nonimmediate_operand
902This predicate allows any register or memory operand valid for @var{mode}.
903@end defun
904
905@defun general_operand
906This predicate allows any immediate, register, or memory operand
907valid for @var{mode}.
908@end defun
909
910@noindent
c6963675 911Finally, there are two generic operator predicates.
e543e219
ZW
912
913@defun comparison_operator
914This predicate matches any expression which performs an arithmetic
915comparison in @var{mode}; that is, @code{COMPARISON_P} is true for the
916expression code.
917@end defun
918
c6963675
PB
919@defun ordered_comparison_operator
920This predicate matches any expression which performs an arithmetic
921comparison in @var{mode} and whose expression code is valid for integer
922modes; that is, the expression code will be one of @code{eq}, @code{ne},
923@code{lt}, @code{ltu}, @code{le}, @code{leu}, @code{gt}, @code{gtu},
924@code{ge}, @code{geu}.
925@end defun
926
e543e219
ZW
927@node Defining Predicates
928@subsection Defining Machine-Specific Predicates
929@cindex defining predicates
930@findex define_predicate
931@findex define_special_predicate
932
933Many machines have requirements for their operands that cannot be
934expressed precisely using the generic predicates. You can define
935additional predicates using @code{define_predicate} and
936@code{define_special_predicate} expressions. These expressions have
937three operands:
938
939@itemize @bullet
940@item
941The name of the predicate, as it will be referred to in
942@code{match_operand} or @code{match_operator} expressions.
943
944@item
945An RTL expression which evaluates to true if the predicate allows the
946operand @var{op}, false if it does not. This expression can only use
947the following RTL codes:
948
949@table @code
950@item MATCH_OPERAND
951When written inside a predicate expression, a @code{MATCH_OPERAND}
952expression evaluates to true if the predicate it names would allow
953@var{op}. The operand number and constraint are ignored. Due to
954limitations in @command{genrecog}, you can only refer to generic
955predicates and predicates that have already been defined.
956
957@item MATCH_CODE
6e7a4706
ZW
958This expression evaluates to true if @var{op} or a specified
959subexpression of @var{op} has one of a given list of RTX codes.
960
961The first operand of this expression is a string constant containing a
962comma-separated list of RTX code names (in lower case). These are the
963codes for which the @code{MATCH_CODE} will be true.
964
965The second operand is a string constant which indicates what
966subexpression of @var{op} to examine. If it is absent or the empty
967string, @var{op} itself is examined. Otherwise, the string constant
968must be a sequence of digits and/or lowercase letters. Each character
969indicates a subexpression to extract from the current expression; for
970the first character this is @var{op}, for the second and subsequent
971characters it is the result of the previous character. A digit
972@var{n} extracts @samp{@w{XEXP (@var{e}, @var{n})}}; a letter @var{l}
973extracts @samp{@w{XVECEXP (@var{e}, 0, @var{n})}} where @var{n} is the
974alphabetic ordinal of @var{l} (0 for `a', 1 for 'b', and so on). The
975@code{MATCH_CODE} then examines the RTX code of the subexpression
976extracted by the complete string. It is not possible to extract
977components of an @code{rtvec} that is not at position 0 within its RTX
978object.
e543e219
ZW
979
980@item MATCH_TEST
981This expression has one operand, a string constant containing a C
982expression. The predicate's arguments, @var{op} and @var{mode}, are
983available with those names in the C expression. The @code{MATCH_TEST}
984evaluates to true if the C expression evaluates to a nonzero value.
985@code{MATCH_TEST} expressions must not have side effects.
986
987@item AND
988@itemx IOR
989@itemx NOT
990@itemx IF_THEN_ELSE
991The basic @samp{MATCH_} expressions can be combined using these
992logical operators, which have the semantics of the C operators
6e7a4706
ZW
993@samp{&&}, @samp{||}, @samp{!}, and @samp{@w{? :}} respectively. As
994in Common Lisp, you may give an @code{AND} or @code{IOR} expression an
995arbitrary number of arguments; this has exactly the same effect as
996writing a chain of two-argument @code{AND} or @code{IOR} expressions.
e543e219
ZW
997@end table
998
999@item
f0eb93a8 1000An optional block of C code, which should execute
e543e219
ZW
1001@samp{@w{return true}} if the predicate is found to match and
1002@samp{@w{return false}} if it does not. It must not have any side
1003effects. The predicate arguments, @var{op} and @var{mode}, are
1004available with those names.
1005
1006If a code block is present in a predicate definition, then the RTL
1007expression must evaluate to true @emph{and} the code block must
1008execute @samp{@w{return true}} for the predicate to allow the operand.
1009The RTL expression is evaluated first; do not re-check anything in the
1010code block that was checked in the RTL expression.
1011@end itemize
1012
1013The program @command{genrecog} scans @code{define_predicate} and
1014@code{define_special_predicate} expressions to determine which RTX
1015codes are possibly allowed. You should always make this explicit in
1016the RTL predicate expression, using @code{MATCH_OPERAND} and
1017@code{MATCH_CODE}.
1018
1019Here is an example of a simple predicate definition, from the IA64
1020machine description:
1021
1022@smallexample
1023@group
1024;; @r{True if @var{op} is a @code{SYMBOL_REF} which refers to the sdata section.}
1025(define_predicate "small_addr_symbolic_operand"
1026 (and (match_code "symbol_ref")
1027 (match_test "SYMBOL_REF_SMALL_ADDR_P (op)")))
1028@end group
1029@end smallexample
1030
1031@noindent
1032And here is another, showing the use of the C block.
1033
1034@smallexample
1035@group
1036;; @r{True if @var{op} is a register operand that is (or could be) a GR reg.}
1037(define_predicate "gr_register_operand"
1038 (match_operand 0 "register_operand")
1039@{
1040 unsigned int regno;
1041 if (GET_CODE (op) == SUBREG)
1042 op = SUBREG_REG (op);
1043
1044 regno = REGNO (op);
1045 return (regno >= FIRST_PSEUDO_REGISTER || GENERAL_REGNO_P (regno));
1046@})
1047@end group
1048@end smallexample
1049
1050Predicates written with @code{define_predicate} automatically include
1051a test that @var{mode} is @code{VOIDmode}, or @var{op} has the same
1052mode as @var{mode}, or @var{op} is a @code{CONST_INT} or
1053@code{CONST_DOUBLE}. They do @emph{not} check specifically for
1054integer @code{CONST_DOUBLE}, nor do they test that the value of either
1055kind of constant fits in the requested mode. This is because
1056target-specific predicates that take constants usually have to do more
1057stringent value checks anyway. If you need the exact same treatment
1058of @code{CONST_INT} or @code{CONST_DOUBLE} that the generic predicates
1059provide, use a @code{MATCH_OPERAND} subexpression to call
1060@code{const_int_operand}, @code{const_double_operand}, or
1061@code{immediate_operand}.
1062
1063Predicates written with @code{define_special_predicate} do not get any
1064automatic mode checks, and are treated as having special mode handling
1065by @command{genrecog}.
1066
1067The program @command{genpreds} is responsible for generating code to
1068test predicates. It also writes a header file containing function
1069declarations for all machine-specific predicates. It is not necessary
1070to declare these predicates in @file{@var{cpu}-protos.h}.
03dda8e3
RK
1071@end ifset
1072
1073@c Most of this node appears by itself (in a different place) even
b11cc610
JM
1074@c when the INTERNALS flag is clear. Passages that require the internals
1075@c manual's context are conditionalized to appear only in the internals manual.
03dda8e3
RK
1076@ifset INTERNALS
1077@node Constraints
1078@section Operand Constraints
1079@cindex operand constraints
1080@cindex constraints
1081
e543e219
ZW
1082Each @code{match_operand} in an instruction pattern can specify
1083constraints for the operands allowed. The constraints allow you to
1084fine-tune matching within the set of operands allowed by the
1085predicate.
1086
03dda8e3
RK
1087@end ifset
1088@ifclear INTERNALS
1089@node Constraints
1090@section Constraints for @code{asm} Operands
1091@cindex operand constraints, @code{asm}
1092@cindex constraints, @code{asm}
1093@cindex @code{asm} constraints
1094
1095Here are specific details on what constraint letters you can use with
1096@code{asm} operands.
1097@end ifclear
1098Constraints can say whether
1099an operand may be in a register, and which kinds of register; whether the
1100operand can be a memory reference, and which kinds of address; whether the
1101operand may be an immediate constant, and which possible values it may
1102have. Constraints can also require two operands to match.
54f044eb
JJ
1103Side-effects aren't allowed in operands of inline @code{asm}, unless
1104@samp{<} or @samp{>} constraints are used, because there is no guarantee
df18c24a 1105that the side effects will happen exactly once in an instruction that can update
54f044eb 1106the addressing register.
03dda8e3
RK
1107
1108@ifset INTERNALS
1109@menu
1110* Simple Constraints:: Basic use of constraints.
1111* Multi-Alternative:: When an insn has two alternative constraint-patterns.
1112* Class Preferences:: Constraints guide which hard register to put things in.
1113* Modifiers:: More precise control over effects of constraints.
1114* Machine Constraints:: Existing constraints for some particular machines.
9840b2fa 1115* Disable Insn Alternatives:: Disable insn alternatives using attributes.
f38840db
ZW
1116* Define Constraints:: How to define machine-specific constraints.
1117* C Constraint Interface:: How to test constraints from C code.
03dda8e3
RK
1118@end menu
1119@end ifset
1120
1121@ifclear INTERNALS
1122@menu
1123* Simple Constraints:: Basic use of constraints.
1124* Multi-Alternative:: When an insn has two alternative constraint-patterns.
1125* Modifiers:: More precise control over effects of constraints.
1126* Machine Constraints:: Special constraints for some particular machines.
1127@end menu
1128@end ifclear
1129
1130@node Simple Constraints
1131@subsection Simple Constraints
1132@cindex simple constraints
1133
1134The simplest kind of constraint is a string full of letters, each of
1135which describes one kind of operand that is permitted. Here are
1136the letters that are allowed:
1137
1138@table @asis
88a56c2e
HPN
1139@item whitespace
1140Whitespace characters are ignored and can be inserted at any position
1141except the first. This enables each alternative for different operands to
1142be visually aligned in the machine description even if they have different
1143number of constraints and modifiers.
1144
03dda8e3
RK
1145@cindex @samp{m} in constraint
1146@cindex memory references in constraints
1147@item @samp{m}
1148A memory operand is allowed, with any kind of address that the machine
1149supports in general.
a4edaf83
AK
1150Note that the letter used for the general memory constraint can be
1151re-defined by a back end using the @code{TARGET_MEM_CONSTRAINT} macro.
03dda8e3
RK
1152
1153@cindex offsettable address
1154@cindex @samp{o} in constraint
1155@item @samp{o}
1156A memory operand is allowed, but only if the address is
1157@dfn{offsettable}. This means that adding a small integer (actually,
1158the width in bytes of the operand, as determined by its machine mode)
1159may be added to the address and the result is also a valid memory
1160address.
1161
1162@cindex autoincrement/decrement addressing
1163For example, an address which is constant is offsettable; so is an
1164address that is the sum of a register and a constant (as long as a
1165slightly larger constant is also within the range of address-offsets
1166supported by the machine); but an autoincrement or autodecrement
1167address is not offsettable. More complicated indirect/indexed
1168addresses may or may not be offsettable depending on the other
1169addressing modes that the machine supports.
1170
1171Note that in an output operand which can be matched by another
1172operand, the constraint letter @samp{o} is valid only when accompanied
1173by both @samp{<} (if the target machine has predecrement addressing)
1174and @samp{>} (if the target machine has preincrement addressing).
1175
1176@cindex @samp{V} in constraint
1177@item @samp{V}
1178A memory operand that is not offsettable. In other words, anything that
1179would fit the @samp{m} constraint but not the @samp{o} constraint.
1180
1181@cindex @samp{<} in constraint
1182@item @samp{<}
1183A memory operand with autodecrement addressing (either predecrement or
54f044eb
JJ
1184postdecrement) is allowed. In inline @code{asm} this constraint is only
1185allowed if the operand is used exactly once in an instruction that can
df18c24a 1186handle the side effects. Not using an operand with @samp{<} in constraint
54f044eb 1187string in the inline @code{asm} pattern at all or using it in multiple
df18c24a 1188instructions isn't valid, because the side effects wouldn't be performed
54f044eb
JJ
1189or would be performed more than once. Furthermore, on some targets
1190the operand with @samp{<} in constraint string must be accompanied by
1191special instruction suffixes like @code{%U0} instruction suffix on PowerPC
1192or @code{%P0} on IA-64.
03dda8e3
RK
1193
1194@cindex @samp{>} in constraint
1195@item @samp{>}
1196A memory operand with autoincrement addressing (either preincrement or
54f044eb
JJ
1197postincrement) is allowed. In inline @code{asm} the same restrictions
1198as for @samp{<} apply.
03dda8e3
RK
1199
1200@cindex @samp{r} in constraint
1201@cindex registers in constraints
1202@item @samp{r}
1203A register operand is allowed provided that it is in a general
1204register.
1205
03dda8e3
RK
1206@cindex constants in constraints
1207@cindex @samp{i} in constraint
1208@item @samp{i}
1209An immediate integer operand (one with constant value) is allowed.
1210This includes symbolic constants whose values will be known only at
8ac658b6 1211assembly time or later.
03dda8e3
RK
1212
1213@cindex @samp{n} in constraint
1214@item @samp{n}
1215An immediate integer operand with a known numeric value is allowed.
1216Many systems cannot support assembly-time constants for operands less
1217than a word wide. Constraints for these operands should use @samp{n}
1218rather than @samp{i}.
1219
1220@cindex @samp{I} in constraint
1221@item @samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}
1222Other letters in the range @samp{I} through @samp{P} may be defined in
1223a machine-dependent fashion to permit immediate integer operands with
1224explicit integer values in specified ranges. For example, on the
122568000, @samp{I} is defined to stand for the range of values 1 to 8.
1226This is the range permitted as a shift count in the shift
1227instructions.
1228
1229@cindex @samp{E} in constraint
1230@item @samp{E}
1231An immediate floating operand (expression code @code{const_double}) is
1232allowed, but only if the target floating point format is the same as
1233that of the host machine (on which the compiler is running).
1234
1235@cindex @samp{F} in constraint
1236@item @samp{F}
bf7cd754
R
1237An immediate floating operand (expression code @code{const_double} or
1238@code{const_vector}) is allowed.
03dda8e3
RK
1239
1240@cindex @samp{G} in constraint
1241@cindex @samp{H} in constraint
1242@item @samp{G}, @samp{H}
1243@samp{G} and @samp{H} may be defined in a machine-dependent fashion to
1244permit immediate floating operands in particular ranges of values.
1245
1246@cindex @samp{s} in constraint
1247@item @samp{s}
1248An immediate integer operand whose value is not an explicit integer is
1249allowed.
1250
1251This might appear strange; if an insn allows a constant operand with a
1252value not known at compile time, it certainly must allow any known
1253value. So why use @samp{s} instead of @samp{i}? Sometimes it allows
1254better code to be generated.
1255
1256For example, on the 68000 in a fullword instruction it is possible to
630d3d5a 1257use an immediate operand; but if the immediate value is between @minus{}128
03dda8e3
RK
1258and 127, better code results from loading the value into a register and
1259using the register. This is because the load into the register can be
1260done with a @samp{moveq} instruction. We arrange for this to happen
1261by defining the letter @samp{K} to mean ``any integer outside the
630d3d5a 1262range @minus{}128 to 127'', and then specifying @samp{Ks} in the operand
03dda8e3
RK
1263constraints.
1264
1265@cindex @samp{g} in constraint
1266@item @samp{g}
1267Any register, memory or immediate integer operand is allowed, except for
1268registers that are not general registers.
1269
1270@cindex @samp{X} in constraint
1271@item @samp{X}
1272@ifset INTERNALS
1273Any operand whatsoever is allowed, even if it does not satisfy
1274@code{general_operand}. This is normally used in the constraint of
1275a @code{match_scratch} when certain alternatives will not actually
1276require a scratch register.
1277@end ifset
1278@ifclear INTERNALS
1279Any operand whatsoever is allowed.
1280@end ifclear
1281
1282@cindex @samp{0} in constraint
1283@cindex digits in constraint
1284@item @samp{0}, @samp{1}, @samp{2}, @dots{} @samp{9}
1285An operand that matches the specified operand number is allowed. If a
1286digit is used together with letters within the same alternative, the
1287digit should come last.
1288
84b72302 1289This number is allowed to be more than a single digit. If multiple
c0478a66 1290digits are encountered consecutively, they are interpreted as a single
84b72302
RH
1291decimal integer. There is scant chance for ambiguity, since to-date
1292it has never been desirable that @samp{10} be interpreted as matching
1293either operand 1 @emph{or} operand 0. Should this be desired, one
1294can use multiple alternatives instead.
1295
03dda8e3
RK
1296@cindex matching constraint
1297@cindex constraint, matching
1298This is called a @dfn{matching constraint} and what it really means is
1299that the assembler has only a single operand that fills two roles
1300@ifset INTERNALS
1301considered separate in the RTL insn. For example, an add insn has two
1302input operands and one output operand in the RTL, but on most CISC
1303@end ifset
1304@ifclear INTERNALS
1305which @code{asm} distinguishes. For example, an add instruction uses
1306two input operands and an output operand, but on most CISC
1307@end ifclear
1308machines an add instruction really has only two operands, one of them an
1309input-output operand:
1310
1311@smallexample
1312addl #35,r12
1313@end smallexample
1314
1315Matching constraints are used in these circumstances.
1316More precisely, the two operands that match must include one input-only
1317operand and one output-only operand. Moreover, the digit must be a
1318smaller number than the number of the operand that uses it in the
1319constraint.
1320
1321@ifset INTERNALS
1322For operands to match in a particular case usually means that they
1323are identical-looking RTL expressions. But in a few special cases
1324specific kinds of dissimilarity are allowed. For example, @code{*x}
1325as an input operand will match @code{*x++} as an output operand.
1326For proper results in such cases, the output template should always
1327use the output-operand's number when printing the operand.
1328@end ifset
1329
1330@cindex load address instruction
1331@cindex push address instruction
1332@cindex address constraints
1333@cindex @samp{p} in constraint
1334@item @samp{p}
1335An operand that is a valid memory address is allowed. This is
1336for ``load address'' and ``push address'' instructions.
1337
1338@findex address_operand
1339@samp{p} in the constraint must be accompanied by @code{address_operand}
1340as the predicate in the @code{match_operand}. This predicate interprets
1341the mode specified in the @code{match_operand} as the mode of the memory
1342reference for which the address would be valid.
1343
c2cba7a9 1344@cindex other register constraints
03dda8e3 1345@cindex extensible constraints
630d3d5a 1346@item @var{other-letters}
c2cba7a9
RH
1347Other letters can be defined in machine-dependent fashion to stand for
1348particular classes of registers or other arbitrary operand types.
1349@samp{d}, @samp{a} and @samp{f} are defined on the 68000/68020 to stand
1350for data, address and floating point registers.
03dda8e3
RK
1351@end table
1352
1353@ifset INTERNALS
1354In order to have valid assembler code, each operand must satisfy
1355its constraint. But a failure to do so does not prevent the pattern
1356from applying to an insn. Instead, it directs the compiler to modify
1357the code so that the constraint will be satisfied. Usually this is
1358done by copying an operand into a register.
1359
1360Contrast, therefore, the two instruction patterns that follow:
1361
1362@smallexample
1363(define_insn ""
1364 [(set (match_operand:SI 0 "general_operand" "=r")
1365 (plus:SI (match_dup 0)
1366 (match_operand:SI 1 "general_operand" "r")))]
1367 ""
1368 "@dots{}")
1369@end smallexample
1370
1371@noindent
1372which has two operands, one of which must appear in two places, and
1373
1374@smallexample
1375(define_insn ""
1376 [(set (match_operand:SI 0 "general_operand" "=r")
1377 (plus:SI (match_operand:SI 1 "general_operand" "0")
1378 (match_operand:SI 2 "general_operand" "r")))]
1379 ""
1380 "@dots{}")
1381@end smallexample
1382
1383@noindent
1384which has three operands, two of which are required by a constraint to be
1385identical. If we are considering an insn of the form
1386
1387@smallexample
1388(insn @var{n} @var{prev} @var{next}
1389 (set (reg:SI 3)
1390 (plus:SI (reg:SI 6) (reg:SI 109)))
1391 @dots{})
1392@end smallexample
1393
1394@noindent
1395the first pattern would not apply at all, because this insn does not
1396contain two identical subexpressions in the right place. The pattern would
d78aa55c 1397say, ``That does not look like an add instruction; try other patterns''.
03dda8e3 1398The second pattern would say, ``Yes, that's an add instruction, but there
d78aa55c 1399is something wrong with it''. It would direct the reload pass of the
03dda8e3
RK
1400compiler to generate additional insns to make the constraint true. The
1401results might look like this:
1402
1403@smallexample
1404(insn @var{n2} @var{prev} @var{n}
1405 (set (reg:SI 3) (reg:SI 6))
1406 @dots{})
1407
1408(insn @var{n} @var{n2} @var{next}
1409 (set (reg:SI 3)
1410 (plus:SI (reg:SI 3) (reg:SI 109)))
1411 @dots{})
1412@end smallexample
1413
1414It is up to you to make sure that each operand, in each pattern, has
1415constraints that can handle any RTL expression that could be present for
1416that operand. (When multiple alternatives are in use, each pattern must,
1417for each possible combination of operand expressions, have at least one
1418alternative which can handle that combination of operands.) The
1419constraints don't need to @emph{allow} any possible operand---when this is
1420the case, they do not constrain---but they must at least point the way to
1421reloading any possible operand so that it will fit.
1422
1423@itemize @bullet
1424@item
1425If the constraint accepts whatever operands the predicate permits,
1426there is no problem: reloading is never necessary for this operand.
1427
1428For example, an operand whose constraints permit everything except
1429registers is safe provided its predicate rejects registers.
1430
1431An operand whose predicate accepts only constant values is safe
1432provided its constraints include the letter @samp{i}. If any possible
1433constant value is accepted, then nothing less than @samp{i} will do;
1434if the predicate is more selective, then the constraints may also be
1435more selective.
1436
1437@item
1438Any operand expression can be reloaded by copying it into a register.
1439So if an operand's constraints allow some kind of register, it is
1440certain to be safe. It need not permit all classes of registers; the
1441compiler knows how to copy a register into another register of the
1442proper class in order to make an instruction valid.
1443
1444@cindex nonoffsettable memory reference
1445@cindex memory reference, nonoffsettable
1446@item
1447A nonoffsettable memory reference can be reloaded by copying the
1448address into a register. So if the constraint uses the letter
1449@samp{o}, all memory references are taken care of.
1450
1451@item
1452A constant operand can be reloaded by allocating space in memory to
1453hold it as preinitialized data. Then the memory reference can be used
1454in place of the constant. So if the constraint uses the letters
1455@samp{o} or @samp{m}, constant operands are not a problem.
1456
1457@item
1458If the constraint permits a constant and a pseudo register used in an insn
1459was not allocated to a hard register and is equivalent to a constant,
1460the register will be replaced with the constant. If the predicate does
1461not permit a constant and the insn is re-recognized for some reason, the
1462compiler will crash. Thus the predicate must always recognize any
1463objects allowed by the constraint.
1464@end itemize
1465
1466If the operand's predicate can recognize registers, but the constraint does
1467not permit them, it can make the compiler crash. When this operand happens
1468to be a register, the reload pass will be stymied, because it does not know
1469how to copy a register temporarily into memory.
1470
1471If the predicate accepts a unary operator, the constraint applies to the
1472operand. For example, the MIPS processor at ISA level 3 supports an
1473instruction which adds two registers in @code{SImode} to produce a
1474@code{DImode} result, but only if the registers are correctly sign
1475extended. This predicate for the input operands accepts a
1476@code{sign_extend} of an @code{SImode} register. Write the constraint
1477to indicate the type of register that is required for the operand of the
1478@code{sign_extend}.
1479@end ifset
1480
1481@node Multi-Alternative
1482@subsection Multiple Alternative Constraints
1483@cindex multiple alternative constraints
1484
1485Sometimes a single instruction has multiple alternative sets of possible
1486operands. For example, on the 68000, a logical-or instruction can combine
1487register or an immediate value into memory, or it can combine any kind of
1488operand into a register; but it cannot combine one memory location into
1489another.
1490
1491These constraints are represented as multiple alternatives. An alternative
1492can be described by a series of letters for each operand. The overall
1493constraint for an operand is made from the letters for this operand
1494from the first alternative, a comma, the letters for this operand from
1495the second alternative, a comma, and so on until the last alternative.
a6fa947e
DW
1496All operands for a single instruction must have the same number of
1497alternatives.
03dda8e3
RK
1498@ifset INTERNALS
1499Here is how it is done for fullword logical-or on the 68000:
1500
1501@smallexample
1502(define_insn "iorsi3"
1503 [(set (match_operand:SI 0 "general_operand" "=m,d")
1504 (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
1505 (match_operand:SI 2 "general_operand" "dKs,dmKs")))]
1506 @dots{})
1507@end smallexample
1508
1509The first alternative has @samp{m} (memory) for operand 0, @samp{0} for
1510operand 1 (meaning it must match operand 0), and @samp{dKs} for operand
15112. The second alternative has @samp{d} (data register) for operand 0,
1512@samp{0} for operand 1, and @samp{dmKs} for operand 2. The @samp{=} and
1513@samp{%} in the constraints apply to all the alternatives; their
1514meaning is explained in the next section (@pxref{Class Preferences}).
03dda8e3 1515
03dda8e3
RK
1516If all the operands fit any one alternative, the instruction is valid.
1517Otherwise, for each alternative, the compiler counts how many instructions
1518must be added to copy the operands so that that alternative applies.
1519The alternative requiring the least copying is chosen. If two alternatives
1520need the same amount of copying, the one that comes first is chosen.
1521These choices can be altered with the @samp{?} and @samp{!} characters:
1522
1523@table @code
1524@cindex @samp{?} in constraint
1525@cindex question mark
1526@item ?
1527Disparage slightly the alternative that the @samp{?} appears in,
1528as a choice when no alternative applies exactly. The compiler regards
1529this alternative as one unit more costly for each @samp{?} that appears
1530in it.
1531
1532@cindex @samp{!} in constraint
1533@cindex exclamation point
1534@item !
1535Disparage severely the alternative that the @samp{!} appears in.
1536This alternative can still be used if it fits without reloading,
1537but if reloading is needed, some other alternative will be used.
d1457701
VM
1538
1539@cindex @samp{^} in constraint
1540@cindex caret
1541@item ^
1542This constraint is analogous to @samp{?} but it disparages slightly
0ab9eed6 1543the alternative only if the operand with the @samp{^} needs a reload.
d1457701
VM
1544
1545@cindex @samp{$} in constraint
1546@cindex dollar sign
1547@item $
1548This constraint is analogous to @samp{!} but it disparages severely
1549the alternative only if the operand with the @samp{$} needs a reload.
03dda8e3
RK
1550@end table
1551
03dda8e3
RK
1552When an insn pattern has multiple alternatives in its constraints, often
1553the appearance of the assembler code is determined mostly by which
1554alternative was matched. When this is so, the C code for writing the
1555assembler code can use the variable @code{which_alternative}, which is
1556the ordinal number of the alternative that was actually satisfied (0 for
1557the first, 1 for the second alternative, etc.). @xref{Output Statement}.
1558@end ifset
a6fa947e
DW
1559@ifclear INTERNALS
1560
1561So the first alternative for the 68000's logical-or could be written as
1562@code{"+m" (output) : "ir" (input)}. The second could be @code{"+r"
1563(output): "irm" (input)}. However, the fact that two memory locations
1564cannot be used in a single instruction prevents simply using @code{"+rm"
1565(output) : "irm" (input)}. Using multi-alternatives, this might be
1566written as @code{"+m,r" (output) : "ir,irm" (input)}. This describes
1567all the available alternatives to the compiler, allowing it to choose
1568the most efficient one for the current conditions.
1569
1570There is no way within the template to determine which alternative was
1571chosen. However you may be able to wrap your @code{asm} statements with
1572builtins such as @code{__builtin_constant_p} to achieve the desired results.
1573@end ifclear
03dda8e3
RK
1574
1575@ifset INTERNALS
1576@node Class Preferences
1577@subsection Register Class Preferences
1578@cindex class preference constraints
1579@cindex register class preference constraints
1580
1581@cindex voting between constraint alternatives
1582The operand constraints have another function: they enable the compiler
1583to decide which kind of hardware register a pseudo register is best
1584allocated to. The compiler examines the constraints that apply to the
1585insns that use the pseudo register, looking for the machine-dependent
1586letters such as @samp{d} and @samp{a} that specify classes of registers.
1587The pseudo register is put in whichever class gets the most ``votes''.
1588The constraint letters @samp{g} and @samp{r} also vote: they vote in
1589favor of a general register. The machine description says which registers
1590are considered general.
1591
1592Of course, on some machines all registers are equivalent, and no register
1593classes are defined. Then none of this complexity is relevant.
1594@end ifset
1595
1596@node Modifiers
1597@subsection Constraint Modifier Characters
1598@cindex modifiers in constraints
1599@cindex constraint modifier characters
1600
1601@c prevent bad page break with this line
1602Here are constraint modifier characters.
1603
1604@table @samp
1605@cindex @samp{=} in constraint
1606@item =
5fd4bc96
JG
1607Means that this operand is written to by this instruction:
1608the previous value is discarded and replaced by new data.
03dda8e3
RK
1609
1610@cindex @samp{+} in constraint
1611@item +
1612Means that this operand is both read and written by the instruction.
1613
1614When the compiler fixes up the operands to satisfy the constraints,
5fd4bc96
JG
1615it needs to know which operands are read by the instruction and
1616which are written by it. @samp{=} identifies an operand which is only
1617written; @samp{+} identifies an operand that is both read and written; all
1618other operands are assumed to only be read.
03dda8e3 1619
c5c76735
JL
1620If you specify @samp{=} or @samp{+} in a constraint, you put it in the
1621first character of the constraint string.
1622
03dda8e3
RK
1623@cindex @samp{&} in constraint
1624@cindex earlyclobber operand
1625@item &
1626Means (in a particular alternative) that this operand is an
5fd4bc96 1627@dfn{earlyclobber} operand, which is written before the instruction is
03dda8e3 1628finished using the input operands. Therefore, this operand may not lie
5fd4bc96 1629in a register that is read by the instruction or as part of any memory
03dda8e3
RK
1630address.
1631
1632@samp{&} applies only to the alternative in which it is written. In
1633constraints with multiple alternatives, sometimes one alternative
1634requires @samp{&} while others do not. See, for example, the
1635@samp{movdf} insn of the 68000.
1636
5fd4bc96
JG
1637A operand which is read by the instruction can be tied to an earlyclobber
1638operand if its only use as an input occurs before the early result is
1639written. Adding alternatives of this form often allows GCC to produce
1640better code when only some of the read operands can be affected by the
1641earlyclobber. See, for example, the @samp{mulsi3} insn of the ARM@.
03dda8e3 1642
5fd4bc96
JG
1643Furthermore, if the @dfn{earlyclobber} operand is also a read/write
1644operand, then that operand is written only after it's used.
34386e79 1645
5fd4bc96
JG
1646@samp{&} does not obviate the need to write @samp{=} or @samp{+}. As
1647@dfn{earlyclobber} operands are always written, a read-only
1648@dfn{earlyclobber} operand is ill-formed and will be rejected by the
1649compiler.
03dda8e3
RK
1650
1651@cindex @samp{%} in constraint
1652@item %
1653Declares the instruction to be commutative for this operand and the
1654following operand. This means that the compiler may interchange the
1655two operands if that is the cheapest way to make all operands fit the
73f793e3 1656constraints. @samp{%} applies to all alternatives and must appear as
5fd4bc96 1657the first character in the constraint. Only read-only operands can use
73f793e3
RS
1658@samp{%}.
1659
03dda8e3
RK
1660@ifset INTERNALS
1661This is often used in patterns for addition instructions
1662that really have only two operands: the result must go in one of the
1663arguments. Here for example, is how the 68000 halfword-add
1664instruction is defined:
1665
1666@smallexample
1667(define_insn "addhi3"
1668 [(set (match_operand:HI 0 "general_operand" "=m,r")
1669 (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
1670 (match_operand:HI 2 "general_operand" "di,g")))]
1671 @dots{})
1672@end smallexample
1673@end ifset
daf2f129 1674GCC can only handle one commutative pair in an asm; if you use more,
595163db
EB
1675the compiler may fail. Note that you need not use the modifier if
1676the two alternatives are strictly identical; this would only waste
4f237f2e
DW
1677time in the reload pass.
1678@ifset INTERNALS
1679The modifier is not operational after
be3914df
HPN
1680register allocation, so the result of @code{define_peephole2}
1681and @code{define_split}s performed after reload cannot rely on
1682@samp{%} to make the intended insn match.
03dda8e3
RK
1683
1684@cindex @samp{#} in constraint
1685@item #
1686Says that all following characters, up to the next comma, are to be
1687ignored as a constraint. They are significant only for choosing
1688register preferences.
1689
03dda8e3
RK
1690@cindex @samp{*} in constraint
1691@item *
1692Says that the following character should be ignored when choosing
1693register preferences. @samp{*} has no effect on the meaning of the
55a2c322
VM
1694constraint as a constraint, and no effect on reloading. For LRA
1695@samp{*} additionally disparages slightly the alternative if the
1696following character matches the operand.
03dda8e3
RK
1697
1698Here is an example: the 68000 has an instruction to sign-extend a
1699halfword in a data register, and can also sign-extend a value by
1700copying it into an address register. While either kind of register is
1701acceptable, the constraints on an address-register destination are
1702less strict, so it is best if register allocation makes an address
1703register its goal. Therefore, @samp{*} is used so that the @samp{d}
1704constraint letter (for data register) is ignored when computing
1705register preferences.
1706
1707@smallexample
1708(define_insn "extendhisi2"
1709 [(set (match_operand:SI 0 "general_operand" "=*d,a")
1710 (sign_extend:SI
1711 (match_operand:HI 1 "general_operand" "0,g")))]
1712 @dots{})
1713@end smallexample
1714@end ifset
1715@end table
1716
1717@node Machine Constraints
1718@subsection Constraints for Particular Machines
1719@cindex machine specific constraints
1720@cindex constraints, machine specific
1721
1722Whenever possible, you should use the general-purpose constraint letters
1723in @code{asm} arguments, since they will convey meaning more readily to
1724people reading your code. Failing that, use the constraint letters
1725that usually have very similar meanings across architectures. The most
1726commonly used constraints are @samp{m} and @samp{r} (for memory and
1727general-purpose registers respectively; @pxref{Simple Constraints}), and
1728@samp{I}, usually the letter indicating the most common
1729immediate-constant format.
1730
f38840db
ZW
1731Each architecture defines additional constraints. These constraints
1732are used by the compiler itself for instruction generation, as well as
1733for @code{asm} statements; therefore, some of the constraints are not
1734particularly useful for @code{asm}. Here is a summary of some of the
1735machine-dependent constraints available on some particular machines;
1736it includes both constraints that are useful for @code{asm} and
1737constraints that aren't. The compiler source file mentioned in the
1738table heading for each architecture is the definitive reference for
1739the meanings of that architecture's constraints.
6ccde948 1740
b4fbcb1b 1741@c Please keep this table alphabetized by target!
03dda8e3 1742@table @emph
5c0da018
IB
1743@item AArch64 family---@file{config/aarch64/constraints.md}
1744@table @code
1745@item k
1746The stack pointer register (@code{SP})
1747
1748@item w
43cacb12
RS
1749Floating point register, Advanced SIMD vector register or SVE vector register
1750
1751@item Upl
1752One of the low eight SVE predicate registers (@code{P0} to @code{P7})
1753
1754@item Upa
1755Any of the SVE predicate registers (@code{P0} to @code{P15})
5c0da018
IB
1756
1757@item I
1758Integer constant that is valid as an immediate operand in an @code{ADD}
1759instruction
1760
1761@item J
1762Integer constant that is valid as an immediate operand in a @code{SUB}
1763instruction (once negated)
1764
1765@item K
1766Integer constant that can be used with a 32-bit logical instruction
1767
1768@item L
1769Integer constant that can be used with a 64-bit logical instruction
1770
1771@item M
1772Integer constant that is valid as an immediate operand in a 32-bit @code{MOV}
1773pseudo instruction. The @code{MOV} may be assembled to one of several different
1774machine instructions depending on the value
1775
1776@item N
1777Integer constant that is valid as an immediate operand in a 64-bit @code{MOV}
1778pseudo instruction
1779
1780@item S
1781An absolute symbolic address or a label reference
1782
1783@item Y
1784Floating point constant zero
1785
1786@item Z
1787Integer constant zero
1788
5c0da018
IB
1789@item Ush
1790The high part (bits 12 and upwards) of the pc-relative address of a symbol
1791within 4GB of the instruction
1792
1793@item Q
1794A memory address which uses a single base register with no offset
1795
1796@item Ump
1797A memory address suitable for a load/store pair instruction in SI, DI, SF and
1798DF modes
1799
5c0da018
IB
1800@end table
1801
1802
5d5f6720
JR
1803@item ARC ---@file{config/arc/constraints.md}
1804@table @code
1805@item q
1806Registers usable in ARCompact 16-bit instructions: @code{r0}-@code{r3},
1807@code{r12}-@code{r15}. This constraint can only match when the @option{-mq}
1808option is in effect.
1809
1810@item e
1811Registers usable as base-regs of memory addresses in ARCompact 16-bit memory
1812instructions: @code{r0}-@code{r3}, @code{r12}-@code{r15}, @code{sp}.
1813This constraint can only match when the @option{-mq}
1814option is in effect.
1815@item D
1816ARC FPX (dpfp) 64-bit registers. @code{D0}, @code{D1}.
1817
1818@item I
1819A signed 12-bit integer constant.
1820
1821@item Cal
1822constant for arithmetic/logical operations. This might be any constant
1823that can be put into a long immediate by the assmbler or linker without
1824involving a PIC relocation.
1825
1826@item K
1827A 3-bit unsigned integer constant.
1828
1829@item L
1830A 6-bit unsigned integer constant.
1831
1832@item CnL
1833One's complement of a 6-bit unsigned integer constant.
1834
1835@item CmL
1836Two's complement of a 6-bit unsigned integer constant.
1837
1838@item M
1839A 5-bit unsigned integer constant.
1840
1841@item O
1842A 7-bit unsigned integer constant.
1843
1844@item P
1845A 8-bit unsigned integer constant.
1846
1847@item H
1848Any const_double value.
1849@end table
1850
dae840fc 1851@item ARM family---@file{config/arm/constraints.md}
03dda8e3 1852@table @code
b24671f7
RR
1853
1854@item h
1855In Thumb state, the core registers @code{r8}-@code{r15}.
1856
1857@item k
1858The stack pointer register.
1859
1860@item l
1861In Thumb State the core registers @code{r0}-@code{r7}. In ARM state this
1862is an alias for the @code{r} constraint.
1863
1864@item t
1865VFP floating-point registers @code{s0}-@code{s31}. Used for 32 bit values.
1866
9b66ebb1 1867@item w
b24671f7
RR
1868VFP floating-point registers @code{d0}-@code{d31} and the appropriate
1869subset @code{d0}-@code{d15} based on command line options.
1870Used for 64 bit values only. Not valid for Thumb1.
1871
1872@item y
1873The iWMMX co-processor registers.
1874
1875@item z
1876The iWMMX GR registers.
9b66ebb1 1877
03dda8e3 1878@item G
dae840fc 1879The floating-point constant 0.0
03dda8e3
RK
1880
1881@item I
1882Integer that is valid as an immediate operand in a data processing
1883instruction. That is, an integer in the range 0 to 255 rotated by a
1884multiple of 2
1885
1886@item J
630d3d5a 1887Integer in the range @minus{}4095 to 4095
03dda8e3
RK
1888
1889@item K
1890Integer that satisfies constraint @samp{I} when inverted (ones complement)
1891
1892@item L
1893Integer that satisfies constraint @samp{I} when negated (twos complement)
1894
1895@item M
1896Integer in the range 0 to 32
1897
1898@item Q
1899A memory reference where the exact address is in a single register
1900(`@samp{m}' is preferable for @code{asm} statements)
1901
1902@item R
1903An item in the constant pool
1904
1905@item S
1906A symbol in the text segment of the current file
03dda8e3 1907
1e1ab407 1908@item Uv
9b66ebb1
PB
1909A memory reference suitable for VFP load/store insns (reg+constant offset)
1910
fdd695fd
PB
1911@item Uy
1912A memory reference suitable for iWMMXt load/store instructions.
1913
1e1ab407 1914@item Uq
0bdcd332 1915A memory reference suitable for the ARMv4 ldrsb instruction.
db875b15 1916@end table
1e1ab407 1917
fc262682 1918@item AVR family---@file{config/avr/constraints.md}
052a4b28
DC
1919@table @code
1920@item l
1921Registers from r0 to r15
1922
1923@item a
1924Registers from r16 to r23
1925
1926@item d
1927Registers from r16 to r31
1928
1929@item w
3a69a7d5 1930Registers from r24 to r31. These registers can be used in @samp{adiw} command
052a4b28
DC
1931
1932@item e
d7d9c429 1933Pointer register (r26--r31)
052a4b28
DC
1934
1935@item b
d7d9c429 1936Base pointer register (r28--r31)
052a4b28 1937
3a69a7d5
MM
1938@item q
1939Stack pointer register (SPH:SPL)
1940
052a4b28
DC
1941@item t
1942Temporary register r0
1943
1944@item x
1945Register pair X (r27:r26)
1946
1947@item y
1948Register pair Y (r29:r28)
1949
1950@item z
1951Register pair Z (r31:r30)
1952
1953@item I
630d3d5a 1954Constant greater than @minus{}1, less than 64
052a4b28
DC
1955
1956@item J
630d3d5a 1957Constant greater than @minus{}64, less than 1
052a4b28
DC
1958
1959@item K
1960Constant integer 2
1961
1962@item L
1963Constant integer 0
1964
1965@item M
1966Constant that fits in 8 bits
1967
1968@item N
630d3d5a 1969Constant integer @minus{}1
052a4b28
DC
1970
1971@item O
3a69a7d5 1972Constant integer 8, 16, or 24
052a4b28
DC
1973
1974@item P
1975Constant integer 1
1976
1977@item G
1978A floating point constant 0.0
0e8eb4d8 1979
0e8eb4d8
EW
1980@item Q
1981A memory address based on Y or Z pointer with displacement.
052a4b28 1982@end table
53054e77 1983
b4fbcb1b
SL
1984@item Blackfin family---@file{config/bfin/constraints.md}
1985@table @code
1986@item a
1987P register
1988
1989@item d
1990D register
1991
1992@item z
1993A call clobbered P register.
1994
1995@item q@var{n}
1996A single register. If @var{n} is in the range 0 to 7, the corresponding D
1997register. If it is @code{A}, then the register P0.
1998
1999@item D
2000Even-numbered D register
2001
2002@item W
2003Odd-numbered D register
2004
2005@item e
2006Accumulator register.
2007
2008@item A
2009Even-numbered accumulator register.
2010
2011@item B
2012Odd-numbered accumulator register.
2013
2014@item b
2015I register
2016
2017@item v
2018B register
2019
2020@item f
2021M register
2022
2023@item c
630ba2fd 2024Registers used for circular buffering, i.e.@: I, B, or L registers.
b4fbcb1b
SL
2025
2026@item C
2027The CC register.
2028
2029@item t
2030LT0 or LT1.
2031
2032@item k
2033LC0 or LC1.
2034
2035@item u
2036LB0 or LB1.
2037
2038@item x
2039Any D, P, B, M, I or L register.
2040
2041@item y
2042Additional registers typically used only in prologues and epilogues: RETS,
2043RETN, RETI, RETX, RETE, ASTAT, SEQSTAT and USP.
2044
2045@item w
2046Any register except accumulators or CC.
2047
2048@item Ksh
2049Signed 16 bit integer (in the range @minus{}32768 to 32767)
2050
2051@item Kuh
2052Unsigned 16 bit integer (in the range 0 to 65535)
2053
2054@item Ks7
2055Signed 7 bit integer (in the range @minus{}64 to 63)
2056
2057@item Ku7
2058Unsigned 7 bit integer (in the range 0 to 127)
2059
2060@item Ku5
2061Unsigned 5 bit integer (in the range 0 to 31)
2062
2063@item Ks4
2064Signed 4 bit integer (in the range @minus{}8 to 7)
2065
2066@item Ks3
2067Signed 3 bit integer (in the range @minus{}3 to 4)
2068
2069@item Ku3
2070Unsigned 3 bit integer (in the range 0 to 7)
2071
2072@item P@var{n}
2073Constant @var{n}, where @var{n} is a single-digit constant in the range 0 to 4.
2074
2075@item PA
2076An integer equal to one of the MACFLAG_XXX constants that is suitable for
2077use with either accumulator.
2078
2079@item PB
2080An integer equal to one of the MACFLAG_XXX constants that is suitable for
2081use only with accumulator A1.
2082
2083@item M1
2084Constant 255.
2085
2086@item M2
2087Constant 65535.
2088
2089@item J
2090An integer constant with exactly a single bit set.
2091
2092@item L
2093An integer constant with all bits set except exactly one.
2094
2095@item H
2096
2097@item Q
2098Any SYMBOL_REF.
2099@end table
2100
2101@item CR16 Architecture---@file{config/cr16/cr16.h}
2102@table @code
2103
2104@item b
2105Registers from r0 to r14 (registers without stack pointer)
2106
2107@item t
2108Register from r0 to r11 (all 16-bit registers)
2109
2110@item p
2111Register from r12 to r15 (all 32-bit registers)
2112
2113@item I
2114Signed constant that fits in 4 bits
2115
2116@item J
2117Signed constant that fits in 5 bits
2118
2119@item K
2120Signed constant that fits in 6 bits
2121
2122@item L
2123Unsigned constant that fits in 4 bits
2124
2125@item M
2126Signed constant that fits in 32 bits
2127
2128@item N
2129Check for 64 bits wide constants for add/sub instructions
2130
2131@item G
2132Floating point constant that is legal for store immediate
2133@end table
2134
fbceb769
SL
2135@item C-SKY---@file{config/csky/constraints.md}
2136@table @code
2137
2138@item a
2139The mini registers r0 - r7.
2140
2141@item b
2142The low registers r0 - r15.
2143
2144@item c
2145C register.
2146
2147@item y
2148HI and LO registers.
2149
2150@item l
2151LO register.
2152
2153@item h
2154HI register.
2155
2156@item v
2157Vector registers.
2158
2159@item z
2160Stack pointer register (SP).
2161@end table
2162
2163@ifset INTERNALS
2164The C-SKY back end supports a large set of additional constraints
2165that are only useful for instruction selection or splitting rather
2166than inline asm, such as constraints representing constant integer
2167ranges accepted by particular instruction encodings.
2168Refer to the source code for details.
2169@end ifset
2170
feeeff5c
JR
2171@item Epiphany---@file{config/epiphany/constraints.md}
2172@table @code
2173@item U16
2174An unsigned 16-bit constant.
2175
2176@item K
2177An unsigned 5-bit constant.
2178
2179@item L
2180A signed 11-bit constant.
2181
2182@item Cm1
2183A signed 11-bit constant added to @minus{}1.
2184Can only match when the @option{-m1reg-@var{reg}} option is active.
2185
2186@item Cl1
2187Left-shift of @minus{}1, i.e., a bit mask with a block of leading ones, the rest
2188being a block of trailing zeroes.
2189Can only match when the @option{-m1reg-@var{reg}} option is active.
2190
2191@item Cr1
2192Right-shift of @minus{}1, i.e., a bit mask with a trailing block of ones, the
2193rest being zeroes. Or to put it another way, one less than a power of two.
2194Can only match when the @option{-m1reg-@var{reg}} option is active.
2195
2196@item Cal
2197Constant for arithmetic/logical operations.
2198This is like @code{i}, except that for position independent code,
2199no symbols / expressions needing relocations are allowed.
2200
2201@item Csy
2202Symbolic constant for call/jump instruction.
2203
2204@item Rcs
2205The register class usable in short insns. This is a register class
2206constraint, and can thus drive register allocation.
2207This constraint won't match unless @option{-mprefer-short-insn-regs} is
2208in effect.
2209
2210@item Rsc
2211The the register class of registers that can be used to hold a
2212sibcall call address. I.e., a caller-saved register.
2213
2214@item Rct
2215Core control register class.
2216
2217@item Rgs
2218The register group usable in short insns.
2219This constraint does not use a register class, so that it only
2220passively matches suitable registers, and doesn't drive register allocation.
2221
2222@ifset INTERNALS
2223@item Car
2224Constant suitable for the addsi3_r pattern. This is a valid offset
2225For byte, halfword, or word addressing.
2226@end ifset
2227
2228@item Rra
2229Matches the return address if it can be replaced with the link register.
2230
2231@item Rcc
2232Matches the integer condition code register.
2233
2234@item Sra
2235Matches the return address if it is in a stack slot.
2236
2237@item Cfm
2238Matches control register values to switch fp mode, which are encapsulated in
2239@code{UNSPEC_FP_MODE}.
2240@end table
2241
b4fbcb1b 2242@item FRV---@file{config/frv/frv.h}
b25364a0 2243@table @code
b4fbcb1b
SL
2244@item a
2245Register in the class @code{ACC_REGS} (@code{acc0} to @code{acc7}).
b25364a0
S
2246
2247@item b
b4fbcb1b
SL
2248Register in the class @code{EVEN_ACC_REGS} (@code{acc0} to @code{acc7}).
2249
2250@item c
2251Register in the class @code{CC_REGS} (@code{fcc0} to @code{fcc3} and
2252@code{icc0} to @code{icc3}).
2253
2254@item d
2255Register in the class @code{GPR_REGS} (@code{gr0} to @code{gr63}).
2256
2257@item e
2258Register in the class @code{EVEN_REGS} (@code{gr0} to @code{gr63}).
2259Odd registers are excluded not in the class but through the use of a machine
2260mode larger than 4 bytes.
2261
2262@item f
2263Register in the class @code{FPR_REGS} (@code{fr0} to @code{fr63}).
2264
2265@item h
2266Register in the class @code{FEVEN_REGS} (@code{fr0} to @code{fr63}).
2267Odd registers are excluded not in the class but through the use of a machine
2268mode larger than 4 bytes.
2269
2270@item l
2271Register in the class @code{LR_REG} (the @code{lr} register).
2272
2273@item q
2274Register in the class @code{QUAD_REGS} (@code{gr2} to @code{gr63}).
2275Register numbers not divisible by 4 are excluded not in the class but through
2276the use of a machine mode larger than 8 bytes.
b25364a0
S
2277
2278@item t
b4fbcb1b 2279Register in the class @code{ICC_REGS} (@code{icc0} to @code{icc3}).
b25364a0 2280
b4fbcb1b
SL
2281@item u
2282Register in the class @code{FCC_REGS} (@code{fcc0} to @code{fcc3}).
2283
2284@item v
2285Register in the class @code{ICR_REGS} (@code{cc4} to @code{cc7}).
2286
2287@item w
2288Register in the class @code{FCR_REGS} (@code{cc0} to @code{cc3}).
2289
2290@item x
2291Register in the class @code{QUAD_FPR_REGS} (@code{fr0} to @code{fr63}).
2292Register numbers not divisible by 4 are excluded not in the class but through
2293the use of a machine mode larger than 8 bytes.
2294
2295@item z
2296Register in the class @code{SPR_REGS} (@code{lcr} and @code{lr}).
2297
2298@item A
2299Register in the class @code{QUAD_ACC_REGS} (@code{acc0} to @code{acc7}).
2300
2301@item B
2302Register in the class @code{ACCG_REGS} (@code{accg0} to @code{accg7}).
2303
2304@item C
2305Register in the class @code{CR_REGS} (@code{cc0} to @code{cc7}).
2306
2307@item G
2308Floating point constant zero
b25364a0
S
2309
2310@item I
b4fbcb1b 23116-bit signed integer constant
b25364a0
S
2312
2313@item J
b4fbcb1b 231410-bit signed integer constant
b25364a0
S
2315
2316@item L
b4fbcb1b 231716-bit signed integer constant
b25364a0
S
2318
2319@item M
b4fbcb1b 232016-bit unsigned integer constant
b25364a0
S
2321
2322@item N
b4fbcb1b
SL
232312-bit signed integer constant that is negative---i.e.@: in the
2324range of @minus{}2048 to @minus{}1
2325
2326@item O
2327Constant zero
2328
2329@item P
233012-bit signed integer constant that is greater than zero---i.e.@: in the
2331range of 1 to 2047.
b25364a0 2332
b25364a0
S
2333@end table
2334
fef939d6
JB
2335@item FT32---@file{config/ft32/constraints.md}
2336@table @code
2337@item A
2338An absolute address
2339
2340@item B
2341An offset address
2342
2343@item W
2344A register indirect memory operand
2345
2346@item e
2347An offset address.
2348
2349@item f
2350An offset address.
2351
2352@item O
2353The constant zero or one
2354
2355@item I
2356A 16-bit signed constant (@minus{}32768 @dots{} 32767)
2357
2358@item w
2359A bitfield mask suitable for bext or bins
2360
2361@item x
2362An inverted bitfield mask suitable for bext or bins
2363
2364@item L
2365A 16-bit unsigned constant, multiple of 4 (0 @dots{} 65532)
2366
2367@item S
2368A 20-bit signed constant (@minus{}524288 @dots{} 524287)
2369
2370@item b
2371A constant for a bitfield width (1 @dots{} 16)
2372
2373@item KA
2374A 10-bit signed constant (@minus{}512 @dots{} 511)
2375
2376@end table
2377
8119b4e4
JDA
2378@item Hewlett-Packard PA-RISC---@file{config/pa/pa.h}
2379@table @code
2380@item a
2381General register 1
2382
2383@item f
2384Floating point register
2385
2386@item q
2387Shift amount register
2388
2389@item x
2390Floating point register (deprecated)
2391
2392@item y
2393Upper floating point register (32-bit), floating point register (64-bit)
2394
2395@item Z
2396Any register
2397
2398@item I
2399Signed 11-bit integer constant
2400
2401@item J
2402Signed 14-bit integer constant
2403
2404@item K
2405Integer constant that can be deposited with a @code{zdepi} instruction
2406
2407@item L
2408Signed 5-bit integer constant
2409
2410@item M
2411Integer constant 0
2412
2413@item N
2414Integer constant that can be loaded with a @code{ldil} instruction
2415
2416@item O
2417Integer constant whose value plus one is a power of 2
2418
2419@item P
2420Integer constant that can be used for @code{and} operations in @code{depi}
2421and @code{extru} instructions
2422
2423@item S
2424Integer constant 31
2425
2426@item U
2427Integer constant 63
2428
2429@item G
2430Floating-point constant 0.0
2431
2432@item A
2433A @code{lo_sum} data-linkage-table memory operand
2434
2435@item Q
2436A memory operand that can be used as the destination operand of an
2437integer store instruction
2438
2439@item R
2440A scaled or unscaled indexed memory operand
2441
2442@item T
2443A memory operand for floating-point loads and stores
2444
2445@item W
2446A register indirect memory operand
2447@end table
2448
b4fbcb1b 2449@item Intel IA-64---@file{config/ia64/ia64.h}
03dda8e3 2450@table @code
b4fbcb1b
SL
2451@item a
2452General register @code{r0} to @code{r3} for @code{addl} instruction
03dda8e3 2453
b4fbcb1b
SL
2454@item b
2455Branch register
7a430e3b
SC
2456
2457@item c
2458Predicate register (@samp{c} as in ``conditional'')
2459
b4fbcb1b
SL
2460@item d
2461Application register residing in M-unit
0d4a78eb 2462
b4fbcb1b
SL
2463@item e
2464Application register residing in I-unit
0d4a78eb 2465
b4fbcb1b
SL
2466@item f
2467Floating-point register
3efd5670 2468
b4fbcb1b
SL
2469@item m
2470Memory operand. If used together with @samp{<} or @samp{>},
2471the operand can have postincrement and postdecrement which
2472require printing with @samp{%Pn} on IA-64.
3efd5670 2473
b4fbcb1b
SL
2474@item G
2475Floating-point constant 0.0 or 1.0
0d4a78eb 2476
b4fbcb1b
SL
2477@item I
247814-bit signed integer constant
0d4a78eb
BS
2479
2480@item J
b4fbcb1b
SL
248122-bit signed integer constant
2482
2483@item K
24848-bit signed integer constant for logical instructions
0d4a78eb
BS
2485
2486@item L
b4fbcb1b 24878-bit adjusted signed integer constant for compare pseudo-ops
0d4a78eb 2488
b4fbcb1b
SL
2489@item M
24906-bit unsigned integer constant for shift counts
2491
2492@item N
24939-bit signed integer constant for load and store postincrements
2494
2495@item O
2496The constant zero
2497
2498@item P
24990 or @minus{}1 for @code{dep} instruction
0d4a78eb
BS
2500
2501@item Q
b4fbcb1b
SL
2502Non-volatile memory for floating-point loads and stores
2503
2504@item R
2505Integer constant in the range 1 to 4 for @code{shladd} instruction
2506
2507@item S
2508Memory operand except postincrement and postdecrement. This is
2509now roughly the same as @samp{m} when not used together with @samp{<}
2510or @samp{>}.
0d4a78eb
BS
2511@end table
2512
74fe790b
ZW
2513@item M32C---@file{config/m32c/m32c.c}
2514@table @code
38b2d076
DD
2515@item Rsp
2516@itemx Rfb
2517@itemx Rsb
2518@samp{$sp}, @samp{$fb}, @samp{$sb}.
2519
2520@item Rcr
2521Any control register, when they're 16 bits wide (nothing if control
2522registers are 24 bits wide)
2523
2524@item Rcl
2525Any control register, when they're 24 bits wide.
2526
2527@item R0w
2528@itemx R1w
2529@itemx R2w
2530@itemx R3w
2531$r0, $r1, $r2, $r3.
2532
2533@item R02
2534$r0 or $r2, or $r2r0 for 32 bit values.
2535
2536@item R13
2537$r1 or $r3, or $r3r1 for 32 bit values.
2538
2539@item Rdi
2540A register that can hold a 64 bit value.
2541
2542@item Rhl
2543$r0 or $r1 (registers with addressable high/low bytes)
2544
2545@item R23
2546$r2 or $r3
2547
2548@item Raa
2549Address registers
2550
2551@item Raw
2552Address registers when they're 16 bits wide.
2553
2554@item Ral
2555Address registers when they're 24 bits wide.
2556
2557@item Rqi
2558Registers that can hold QI values.
2559
2560@item Rad
2561Registers that can be used with displacements ($a0, $a1, $sb).
2562
2563@item Rsi
2564Registers that can hold 32 bit values.
2565
2566@item Rhi
2567Registers that can hold 16 bit values.
2568
2569@item Rhc
2570Registers chat can hold 16 bit values, including all control
2571registers.
2572
2573@item Rra
2574$r0 through R1, plus $a0 and $a1.
2575
2576@item Rfl
2577The flags register.
2578
2579@item Rmm
2580The memory-based pseudo-registers $mem0 through $mem15.
2581
2582@item Rpi
2583Registers that can hold pointers (16 bit registers for r8c, m16c; 24
2584bit registers for m32cm, m32c).
2585
2586@item Rpa
2587Matches multiple registers in a PARALLEL to form a larger register.
2588Used to match function return values.
2589
2590@item Is3
8ad1dde7 2591@minus{}8 @dots{} 7
38b2d076
DD
2592
2593@item IS1
8ad1dde7 2594@minus{}128 @dots{} 127
38b2d076
DD
2595
2596@item IS2
8ad1dde7 2597@minus{}32768 @dots{} 32767
38b2d076
DD
2598
2599@item IU2
26000 @dots{} 65535
2601
2602@item In4
8ad1dde7 2603@minus{}8 @dots{} @minus{}1 or 1 @dots{} 8
38b2d076
DD
2604
2605@item In5
8ad1dde7 2606@minus{}16 @dots{} @minus{}1 or 1 @dots{} 16
38b2d076 2607
23fed240 2608@item In6
8ad1dde7 2609@minus{}32 @dots{} @minus{}1 or 1 @dots{} 32
38b2d076
DD
2610
2611@item IM2
8ad1dde7 2612@minus{}65536 @dots{} @minus{}1
38b2d076
DD
2613
2614@item Ilb
2615An 8 bit value with exactly one bit set.
2616
2617@item Ilw
2618A 16 bit value with exactly one bit set.
2619
2620@item Sd
2621The common src/dest memory addressing modes.
2622
2623@item Sa
2624Memory addressed using $a0 or $a1.
2625
2626@item Si
2627Memory addressed with immediate addresses.
2628
2629@item Ss
2630Memory addressed using the stack pointer ($sp).
2631
2632@item Sf
2633Memory addressed using the frame base register ($fb).
2634
2635@item Ss
2636Memory addressed using the small base register ($sb).
2637
2638@item S1
2639$r1h
e2491744
DD
2640@end table
2641
80920132
ME
2642@item MicroBlaze---@file{config/microblaze/constraints.md}
2643@table @code
2644@item d
2645A general register (@code{r0} to @code{r31}).
2646
2647@item z
2648A status register (@code{rmsr}, @code{$fcc1} to @code{$fcc7}).
e2491744 2649
74fe790b 2650@end table
38b2d076 2651
cbbb5b6d 2652@item MIPS---@file{config/mips/constraints.md}
4226378a
PK
2653@table @code
2654@item d
0cb14750
MR
2655A general-purpose register. This is equivalent to @code{r} unless
2656generating MIPS16 code, in which case the MIPS16 register set is used.
4226378a
PK
2657
2658@item f
cbbb5b6d 2659A floating-point register (if available).
4226378a
PK
2660
2661@item h
21dfc6dc 2662Formerly the @code{hi} register. This constraint is no longer supported.
4226378a
PK
2663
2664@item l
21dfc6dc
RS
2665The @code{lo} register. Use this register to store values that are
2666no bigger than a word.
4226378a
PK
2667
2668@item x
21dfc6dc
RS
2669The concatenated @code{hi} and @code{lo} registers. Use this register
2670to store doubleword values.
cbbb5b6d
RS
2671
2672@item c
2673A register suitable for use in an indirect jump. This will always be
2674@code{$25} for @option{-mabicalls}.
4226378a 2675
2feaae20
RS
2676@item v
2677Register @code{$3}. Do not use this constraint in new code;
2678it is retained only for compatibility with glibc.
2679
4226378a 2680@item y
cbbb5b6d 2681Equivalent to @code{r}; retained for backwards compatibility.
4226378a
PK
2682
2683@item z
cbbb5b6d 2684A floating-point condition code register.
4226378a
PK
2685
2686@item I
cbbb5b6d 2687A signed 16-bit constant (for arithmetic instructions).
4226378a
PK
2688
2689@item J
cbbb5b6d 2690Integer zero.
4226378a
PK
2691
2692@item K
cbbb5b6d 2693An unsigned 16-bit constant (for logic instructions).
4226378a
PK
2694
2695@item L
cbbb5b6d
RS
2696A signed 32-bit constant in which the lower 16 bits are zero.
2697Such constants can be loaded using @code{lui}.
4226378a
PK
2698
2699@item M
cbbb5b6d
RS
2700A constant that cannot be loaded using @code{lui}, @code{addiu}
2701or @code{ori}.
4226378a
PK
2702
2703@item N
8ad1dde7 2704A constant in the range @minus{}65535 to @minus{}1 (inclusive).
4226378a
PK
2705
2706@item O
cbbb5b6d 2707A signed 15-bit constant.
4226378a
PK
2708
2709@item P
cbbb5b6d 2710A constant in the range 1 to 65535 (inclusive).
4226378a
PK
2711
2712@item G
cbbb5b6d 2713Floating-point zero.
4226378a
PK
2714
2715@item R
cbbb5b6d 2716An address that can be used in a non-macro load or store.
22c4c869
CM
2717
2718@item ZC
047b52f6
MF
2719A memory operand whose address is formed by a base register and offset
2720that is suitable for use in instructions with the same addressing mode
2721as @code{ll} and @code{sc}.
22c4c869
CM
2722
2723@item ZD
82f84ecb
MF
2724An address suitable for a @code{prefetch} instruction, or for any other
2725instruction with the same addressing mode as @code{prefetch}.
4226378a
PK
2726@end table
2727
c47b0cb4 2728@item Motorola 680x0---@file{config/m68k/constraints.md}
03dda8e3
RK
2729@table @code
2730@item a
2731Address register
2732
2733@item d
2734Data register
2735
2736@item f
273768881 floating-point register, if available
2738
03dda8e3
RK
2739@item I
2740Integer in the range 1 to 8
2741
2742@item J
1e5f973d 274316-bit signed number
03dda8e3
RK
2744
2745@item K
2746Signed number whose magnitude is greater than 0x80
2747
2748@item L
630d3d5a 2749Integer in the range @minus{}8 to @minus{}1
03dda8e3
RK
2750
2751@item M
2752Signed number whose magnitude is greater than 0x100
2753
c47b0cb4
MK
2754@item N
2755Range 24 to 31, rotatert:SI 8 to 1 expressed as rotate
2756
2757@item O
275816 (for rotate using swap)
2759
2760@item P
2761Range 8 to 15, rotatert:HI 8 to 1 expressed as rotate
2762
2763@item R
2764Numbers that mov3q can handle
2765
03dda8e3
RK
2766@item G
2767Floating point constant that is not a 68881 constant
c47b0cb4
MK
2768
2769@item S
2770Operands that satisfy 'm' when -mpcrel is in effect
2771
2772@item T
2773Operands that satisfy 's' when -mpcrel is not in effect
2774
2775@item Q
2776Address register indirect addressing mode
2777
2778@item U
2779Register offset addressing
2780
2781@item W
2782const_call_operand
2783
2784@item Cs
2785symbol_ref or const
2786
2787@item Ci
2788const_int
2789
2790@item C0
2791const_int 0
2792
2793@item Cj
2794Range of signed numbers that don't fit in 16 bits
2795
2796@item Cmvq
2797Integers valid for mvq
2798
2799@item Capsw
2800Integers valid for a moveq followed by a swap
2801
2802@item Cmvz
2803Integers valid for mvz
2804
2805@item Cmvs
2806Integers valid for mvs
2807
2808@item Ap
2809push_operand
2810
2811@item Ac
2812Non-register operands allowed in clr
2813
03dda8e3
RK
2814@end table
2815
cceb575c
AG
2816@item Moxie---@file{config/moxie/constraints.md}
2817@table @code
2818@item A
2819An absolute address
2820
2821@item B
2822An offset address
2823
2824@item W
2825A register indirect memory operand
2826
2827@item I
2828A constant in the range of 0 to 255.
2829
2830@item N
8ad1dde7 2831A constant in the range of 0 to @minus{}255.
cceb575c
AG
2832
2833@end table
2834
f6a83b4a
DD
2835@item MSP430--@file{config/msp430/constraints.md}
2836@table @code
2837
2838@item R12
2839Register R12.
2840
2841@item R13
2842Register R13.
2843
2844@item K
2845Integer constant 1.
2846
2847@item L
2848Integer constant -1^20..1^19.
2849
2850@item M
2851Integer constant 1-4.
2852
2853@item Ya
2854Memory references which do not require an extended MOVX instruction.
2855
2856@item Yl
2857Memory reference, labels only.
2858
2859@item Ys
2860Memory reference, stack only.
2861
2862@end table
2863
9304f876
CJW
2864@item NDS32---@file{config/nds32/constraints.md}
2865@table @code
2866@item w
2867LOW register class $r0 to $r7 constraint for V3/V3M ISA.
2868@item l
2869LOW register class $r0 to $r7.
2870@item d
2871MIDDLE register class $r0 to $r11, $r16 to $r19.
2872@item h
2873HIGH register class $r12 to $r14, $r20 to $r31.
2874@item t
2875Temporary assist register $ta (i.e.@: $r15).
2876@item k
2877Stack register $sp.
2878@item Iu03
2879Unsigned immediate 3-bit value.
2880@item In03
2881Negative immediate 3-bit value in the range of @minus{}7--0.
2882@item Iu04
2883Unsigned immediate 4-bit value.
2884@item Is05
2885Signed immediate 5-bit value.
2886@item Iu05
2887Unsigned immediate 5-bit value.
2888@item In05
2889Negative immediate 5-bit value in the range of @minus{}31--0.
2890@item Ip05
2891Unsigned immediate 5-bit value for movpi45 instruction with range 16--47.
2892@item Iu06
2893Unsigned immediate 6-bit value constraint for addri36.sp instruction.
2894@item Iu08
2895Unsigned immediate 8-bit value.
2896@item Iu09
2897Unsigned immediate 9-bit value.
2898@item Is10
2899Signed immediate 10-bit value.
2900@item Is11
2901Signed immediate 11-bit value.
2902@item Is15
2903Signed immediate 15-bit value.
2904@item Iu15
2905Unsigned immediate 15-bit value.
2906@item Ic15
2907A constant which is not in the range of imm15u but ok for bclr instruction.
2908@item Ie15
2909A constant which is not in the range of imm15u but ok for bset instruction.
2910@item It15
2911A constant which is not in the range of imm15u but ok for btgl instruction.
2912@item Ii15
2913A constant whose compliment value is in the range of imm15u
2914and ok for bitci instruction.
2915@item Is16
2916Signed immediate 16-bit value.
2917@item Is17
2918Signed immediate 17-bit value.
2919@item Is19
2920Signed immediate 19-bit value.
2921@item Is20
2922Signed immediate 20-bit value.
2923@item Ihig
2924The immediate value that can be simply set high 20-bit.
2925@item Izeb
2926The immediate value 0xff.
2927@item Izeh
2928The immediate value 0xffff.
2929@item Ixls
2930The immediate value 0x01.
2931@item Ix11
2932The immediate value 0x7ff.
2933@item Ibms
2934The immediate value with power of 2.
2935@item Ifex
2936The immediate value with power of 2 minus 1.
2937@item U33
2938Memory constraint for 333 format.
2939@item U45
2940Memory constraint for 45 format.
2941@item U37
2942Memory constraint for 37 format.
2943@end table
2944
e430824f
CLT
2945@item Nios II family---@file{config/nios2/constraints.md}
2946@table @code
2947
2948@item I
2949Integer that is valid as an immediate operand in an
2950instruction taking a signed 16-bit number. Range
2951@minus{}32768 to 32767.
2952
2953@item J
2954Integer that is valid as an immediate operand in an
2955instruction taking an unsigned 16-bit number. Range
29560 to 65535.
2957
2958@item K
2959Integer that is valid as an immediate operand in an
2960instruction taking only the upper 16-bits of a
296132-bit number. Range 32-bit numbers with the lower
296216-bits being 0.
2963
2964@item L
2965Integer that is valid as an immediate operand for a
2966shift instruction. Range 0 to 31.
2967
2968@item M
2969Integer that is valid as an immediate operand for
2970only the value 0. Can be used in conjunction with
2971the format modifier @code{z} to use @code{r0}
2972instead of @code{0} in the assembly output.
2973
2974@item N
2975Integer that is valid as an immediate operand for
2976a custom instruction opcode. Range 0 to 255.
2977
3bbbe009
SL
2978@item P
2979An immediate operand for R2 andchi/andci instructions.
2980
e430824f
CLT
2981@item S
2982Matches immediates which are addresses in the small
2983data section and therefore can be added to @code{gp}
2984as a 16-bit immediate to re-create their 32-bit value.
2985
524d2e49
SL
2986@item U
2987Matches constants suitable as an operand for the rdprs and
2988cache instructions.
2989
2990@item v
2991A memory operand suitable for Nios II R2 load/store
2992exclusive instructions.
2993
42e6ab74
SL
2994@item w
2995A memory operand suitable for load/store IO and cache
2996instructions.
2997
e430824f
CLT
2998@ifset INTERNALS
2999@item T
3000A @code{const} wrapped @code{UNSPEC} expression,
3001representing a supported PIC or TLS relocation.
3002@end ifset
3003
3004@end table
3005
3965b35f
SH
3006@item OpenRISC---@file{config/or1k/constraints.md}
3007@table @code
3008@item I
3009Integer that is valid as an immediate operand in an
3010instruction taking a signed 16-bit number. Range
3011@minus{}32768 to 32767.
3012
3013@item K
3014Integer that is valid as an immediate operand in an
3015instruction taking an unsigned 16-bit number. Range
30160 to 65535.
3017
3018@item M
3019Signed 16-bit constant shifted left 16 bits. (Used with @code{l.movhi})
3020
3021@item O
3022Zero
3023
3024@ifset INTERNALS
3025@item c
3026Register usable for sibcalls.
3027@end ifset
3028
3029@end table
3030
5e426dd4
PK
3031@item PDP-11---@file{config/pdp11/constraints.md}
3032@table @code
3033@item a
3034Floating point registers AC0 through AC3. These can be loaded from/to
3035memory with a single instruction.
3036
3037@item d
868e54d1
PK
3038Odd numbered general registers (R1, R3, R5). These are used for
303916-bit multiply operations.
5e426dd4 3040
b4324a14
PK
3041@item D
3042A memory reference that is encoded within the opcode, but not
3043auto-increment or auto-decrement.
3044
5e426dd4
PK
3045@item f
3046Any of the floating point registers (AC0 through AC5).
3047
3048@item G
3049Floating point constant 0.
3050
b4324a14
PK
3051@item h
3052Floating point registers AC4 and AC5. These cannot be loaded from/to
3053memory with a single instruction.
3054
5e426dd4
PK
3055@item I
3056An integer constant that fits in 16 bits.
3057
b4fbcb1b
SL
3058@item J
3059An integer constant whose low order 16 bits are zero.
3060
3061@item K
3062An integer constant that does not meet the constraints for codes
3063@samp{I} or @samp{J}.
3064
3065@item L
3066The integer constant 1.
3067
3068@item M
3069The integer constant @minus{}1.
3070
3071@item N
3072The integer constant 0.
3073
3074@item O
b4324a14 3075Integer constants 0 through 3; shifts by these
b4fbcb1b
SL
3076amounts are handled as multiple single-bit shifts rather than a single
3077variable-length shift.
3078
3079@item Q
3080A memory reference which requires an additional word (address or
3081offset) after the opcode.
3082
3083@item R
3084A memory reference that is encoded within the opcode.
3085
3086@end table
3087
3088@item PowerPC and IBM RS6000---@file{config/rs6000/constraints.md}
3089@table @code
3090@item b
3091Address base register
3092
3093@item d
3094Floating point register (containing 64-bit value)
3095
3096@item f
3097Floating point register (containing 32-bit value)
3098
3099@item v
3100Altivec vector register
3101
3102@item wa
dc703d70 3103Any VSX register if the @option{-mvsx} option was used or NO_REGS.
b4fbcb1b 3104
6a116f14
MM
3105When using any of the register constraints (@code{wa}, @code{wd},
3106@code{wf}, @code{wg}, @code{wh}, @code{wi}, @code{wj}, @code{wk},
4e8a3a35
MM
3107@code{wl}, @code{wm}, @code{wo}, @code{wp}, @code{wq}, @code{ws},
3108@code{wt}, @code{wu}, @code{wv}, @code{ww}, or @code{wy})
c477a667
MM
3109that take VSX registers, you must use @code{%x<n>} in the template so
3110that the correct register is used. Otherwise the register number
3111output in the assembly file will be incorrect if an Altivec register
3112is an operand of a VSX instruction that expects VSX register
3113numbering.
6a116f14
MM
3114
3115@smallexample
dc703d70
SL
3116asm ("xvadddp %x0,%x1,%x2"
3117 : "=wa" (v1)
3118 : "wa" (v2), "wa" (v3));
6a116f14
MM
3119@end smallexample
3120
dc703d70 3121@noindent
6a116f14
MM
3122is correct, but:
3123
3124@smallexample
dc703d70
SL
3125asm ("xvadddp %0,%1,%2"
3126 : "=wa" (v1)
3127 : "wa" (v2), "wa" (v3));
6a116f14
MM
3128@end smallexample
3129
dc703d70 3130@noindent
6a116f14
MM
3131is not correct.
3132
dd551aa1
MM
3133If an instruction only takes Altivec registers, you do not want to use
3134@code{%x<n>}.
3135
3136@smallexample
dc703d70
SL
3137asm ("xsaddqp %0,%1,%2"
3138 : "=v" (v1)
3139 : "v" (v2), "v" (v3));
dd551aa1
MM
3140@end smallexample
3141
dc703d70 3142@noindent
dd551aa1
MM
3143is correct because the @code{xsaddqp} instruction only takes Altivec
3144registers, while:
3145
3146@smallexample
dc703d70
SL
3147asm ("xsaddqp %x0,%x1,%x2"
3148 : "=v" (v1)
3149 : "v" (v2), "v" (v3));
dd551aa1
MM
3150@end smallexample
3151
dc703d70 3152@noindent
dd551aa1
MM
3153is incorrect.
3154
d5906efc 3155@item wb
1610d410 3156Altivec register if @option{-mcpu=power9} is used or NO_REGS.
d5906efc 3157
b4fbcb1b
SL
3158@item wd
3159VSX vector register to hold vector double data or NO_REGS.
3160
dd551aa1 3161@item we
1610d410 3162VSX register if the @option{-mcpu=power9} and @option{-m64} options
d5906efc 3163were used or NO_REGS.
dd551aa1 3164
b4fbcb1b
SL
3165@item wf
3166VSX vector register to hold vector float data or NO_REGS.
3167
3168@item wg
3169If @option{-mmfpgpr} was used, a floating point register or NO_REGS.
3170
3171@item wh
3172Floating point register if direct moves are available, or NO_REGS.
3173
3174@item wi
3175FP or VSX register to hold 64-bit integers for VSX insns or NO_REGS.
3176
3177@item wj
3178FP or VSX register to hold 64-bit integers for direct moves or NO_REGS.
3179
3180@item wk
3181FP or VSX register to hold 64-bit doubles for direct moves or NO_REGS.
3182
3183@item wl
3184Floating point register if the LFIWAX instruction is enabled or NO_REGS.
3185
3186@item wm
3187VSX register if direct move instructions are enabled, or NO_REGS.
3188
3189@item wn
3190No register (NO_REGS).
3191
4e8a3a35
MM
3192@item wo
3193VSX register to use for ISA 3.0 vector instructions, or NO_REGS.
3194
c477a667
MM
3195@item wp
3196VSX register to use for IEEE 128-bit floating point TFmode, or NO_REGS.
3197
3198@item wq
3199VSX register to use for IEEE 128-bit floating point, or NO_REGS.
3200
b4fbcb1b
SL
3201@item wr
3202General purpose register if 64-bit instructions are enabled or NO_REGS.
3203
3204@item ws
3205VSX vector register to hold scalar double values or NO_REGS.
3206
3207@item wt
3208VSX vector register to hold 128 bit integer or NO_REGS.
3209
3210@item wu
3211Altivec register to use for float/32-bit int loads/stores or NO_REGS.
3212
3213@item wv
3214Altivec register to use for double loads/stores or NO_REGS.
3215
3216@item ww
3217FP or VSX register to perform float operations under @option{-mvsx} or NO_REGS.
3218
3219@item wx
3220Floating point register if the STFIWX instruction is enabled or NO_REGS.
3221
3222@item wy
3223FP or VSX register to perform ISA 2.07 float ops or NO_REGS.
3224
3225@item wz
3226Floating point register if the LFIWZX instruction is enabled or NO_REGS.
3227
99211352
AS
3228@item wA
3229Address base register if 64-bit instructions are enabled or NO_REGS.
3230
1a3c3ee9
MM
3231@item wB
3232Signed 5-bit constant integer that can be loaded into an altivec register.
3233
b4fbcb1b
SL
3234@item wD
3235Int constant that is the element number of the 64-bit scalar in a vector.
3236
50c78b9a
MM
3237@item wE
3238Vector constant that can be loaded with the XXSPLTIB instruction.
3239
dd551aa1 3240@item wF
2fbd3c37 3241Memory operand suitable for power8 GPR load fusion
dd551aa1
MM
3242
3243@item wG
3244Memory operand suitable for TOC fusion memory references.
3245
787c7a65
MM
3246@item wH
3247Altivec register if @option{-mvsx-small-integer}.
3248
3249@item wI
3250Floating point register if @option{-mvsx-small-integer}.
3251
3252@item wJ
3253FP register if @option{-mvsx-small-integer} and @option{-mpower9-vector}.
3254
3255@item wK
3256Altivec register if @option{-mvsx-small-integer} and @option{-mpower9-vector}.
3257
dd551aa1 3258@item wL
50c78b9a 3259Int constant that is the element number that the MFVSRLD instruction.
dd551aa1
MM
3260targets.
3261
50c78b9a
MM
3262@item wM
3263Match vector constant with all 1's if the XXLORC instruction is available.
3264
3fd2b007
MM
3265@item wO
3266A memory operand suitable for the ISA 3.0 vector d-form instructions.
3267
b4fbcb1b
SL
3268@item wQ
3269A memory address that will work with the @code{lq} and @code{stq}
3270instructions.
3271
50c78b9a
MM
3272@item wS
3273Vector constant that can be loaded with XXSPLTIB & sign extension.
3274
b4fbcb1b 3275@item h
ab950374 3276@samp{VRSAVE}, @samp{CTR}, or @samp{LINK} register
b4fbcb1b 3277
b4fbcb1b
SL
3278@item c
3279@samp{CTR} register
3280
3281@item l
3282@samp{LINK} register
3283
3284@item x
3285@samp{CR} register (condition register) number 0
3286
3287@item y
3288@samp{CR} register (condition register)
3289
3290@item z
3291@samp{XER[CA]} carry bit (part of the XER register)
3292
3293@item I
3294Signed 16-bit constant
3295
3296@item J
3297Unsigned 16-bit constant shifted left 16 bits (use @samp{L} instead for
3298@code{SImode} constants)
3299
3300@item K
3301Unsigned 16-bit constant
3302
3303@item L
3304Signed 16-bit constant shifted left 16 bits
3305
3306@item M
3307Constant larger than 31
3308
3309@item N
3310Exact power of 2
3311
3312@item O
3313Zero
3314
3315@item P
3316Constant whose negation is a signed 16-bit constant
3317
3318@item G
3319Floating point constant that can be loaded into a register with one
3320instruction per word
3321
3322@item H
3323Integer/Floating point constant that can be loaded into a register using
3324three instructions
3325
3326@item m
3327Memory operand.
3328Normally, @code{m} does not allow addresses that update the base register.
3329If @samp{<} or @samp{>} constraint is also used, they are allowed and
3330therefore on PowerPC targets in that case it is only safe
3331to use @samp{m<>} in an @code{asm} statement if that @code{asm} statement
3332accesses the operand exactly once. The @code{asm} statement must also
3333use @samp{%U@var{<opno>}} as a placeholder for the ``update'' flag in the
3334corresponding load or store instruction. For example:
3335
3336@smallexample
3337asm ("st%U0 %1,%0" : "=m<>" (mem) : "r" (val));
3338@end smallexample
3339
3340is correct but:
3341
3342@smallexample
3343asm ("st %1,%0" : "=m<>" (mem) : "r" (val));
3344@end smallexample
3345
3346is not.
3347
3348@item es
3349A ``stable'' memory operand; that is, one which does not include any
3350automodification of the base register. This used to be useful when
3351@samp{m} allowed automodification of the base register, but as those are now only
3352allowed when @samp{<} or @samp{>} is used, @samp{es} is basically the same
3353as @samp{m} without @samp{<} and @samp{>}.
3354
3355@item Q
3356Memory operand that is an offset from a register (it is usually better
3357to use @samp{m} or @samp{es} in @code{asm} statements)
3358
3359@item Z
3360Memory operand that is an indexed or indirect from a register (it is
3361usually better to use @samp{m} or @samp{es} in @code{asm} statements)
3362
3363@item R
3364AIX TOC entry
5e426dd4 3365
b4fbcb1b
SL
3366@item a
3367Address operand that is an indexed or indirect from a register (@samp{p} is
3368preferable for @code{asm} statements)
5e426dd4 3369
b4fbcb1b
SL
3370@item U
3371System V Release 4 small data area reference
5e426dd4 3372
b4fbcb1b
SL
3373@item W
3374Vector constant that does not require memory
5e426dd4 3375
b4fbcb1b
SL
3376@item j
3377Vector constant that is all zeros.
5e426dd4
PK
3378
3379@end table
3380
85b8555e
DD
3381@item RL78---@file{config/rl78/constraints.md}
3382@table @code
3383
3384@item Int3
3385An integer constant in the range 1 @dots{} 7.
3386@item Int8
3387An integer constant in the range 0 @dots{} 255.
3388@item J
3389An integer constant in the range @minus{}255 @dots{} 0
3390@item K
3391The integer constant 1.
3392@item L
3393The integer constant -1.
3394@item M
3395The integer constant 0.
3396@item N
3397The integer constant 2.
3398@item O
3399The integer constant -2.
3400@item P
3401An integer constant in the range 1 @dots{} 15.
3402@item Qbi
3403The built-in compare types--eq, ne, gtu, ltu, geu, and leu.
3404@item Qsc
3405The synthetic compare types--gt, lt, ge, and le.
3406@item Wab
3407A memory reference with an absolute address.
3408@item Wbc
3409A memory reference using @code{BC} as a base register, with an optional offset.
3410@item Wca
3411A memory reference using @code{AX}, @code{BC}, @code{DE}, or @code{HL} for the address, for calls.
3412@item Wcv
3413A memory reference using any 16-bit register pair for the address, for calls.
3414@item Wd2
3415A memory reference using @code{DE} as a base register, with an optional offset.
3416@item Wde
3417A memory reference using @code{DE} as a base register, without any offset.
3418@item Wfr
3419Any memory reference to an address in the far address space.
3420@item Wh1
3421A memory reference using @code{HL} as a base register, with an optional one-byte offset.
3422@item Whb
3423A memory reference using @code{HL} as a base register, with @code{B} or @code{C} as the index register.
3424@item Whl
3425A memory reference using @code{HL} as a base register, without any offset.
3426@item Ws1
3427A memory reference using @code{SP} as a base register, with an optional one-byte offset.
3428@item Y
3429Any memory reference to an address in the near address space.
3430@item A
3431The @code{AX} register.
3432@item B
3433The @code{BC} register.
3434@item D
3435The @code{DE} register.
3436@item R
3437@code{A} through @code{L} registers.
3438@item S
3439The @code{SP} register.
3440@item T
3441The @code{HL} register.
3442@item Z08W
3443The 16-bit @code{R8} register.
3444@item Z10W
3445The 16-bit @code{R10} register.
3446@item Zint
3447The registers reserved for interrupts (@code{R24} to @code{R31}).
3448@item a
3449The @code{A} register.
3450@item b
3451The @code{B} register.
3452@item c
3453The @code{C} register.
3454@item d
3455The @code{D} register.
3456@item e
3457The @code{E} register.
3458@item h
3459The @code{H} register.
3460@item l
3461The @code{L} register.
3462@item v
3463The virtual registers.
3464@item w
3465The @code{PSW} register.
3466@item x
3467The @code{X} register.
3468
3469@end table
09cae750
PD
3470
3471@item RISC-V---@file{config/riscv/constraints.md}
3472@table @code
3473
3474@item f
3475A floating-point register (if availiable).
3476
3477@item I
3478An I-type 12-bit signed immediate.
3479
3480@item J
3481Integer zero.
3482
3483@item K
3484A 5-bit unsigned immediate for CSR access instructions.
3485
3486@item A
3487An address that is held in a general-purpose register.
3488
3489@end table
85b8555e 3490
65a324b4
NC
3491@item RX---@file{config/rx/constraints.md}
3492@table @code
3493@item Q
3494An address which does not involve register indirect addressing or
3495pre/post increment/decrement addressing.
3496
3497@item Symbol
3498A symbol reference.
3499
3500@item Int08
3501A constant in the range @minus{}256 to 255, inclusive.
3502
3503@item Sint08
3504A constant in the range @minus{}128 to 127, inclusive.
3505
3506@item Sint16
3507A constant in the range @minus{}32768 to 32767, inclusive.
3508
3509@item Sint24
3510A constant in the range @minus{}8388608 to 8388607, inclusive.
3511
3512@item Uint04
3513A constant in the range 0 to 15, inclusive.
3514
3515@end table
3516
b4fbcb1b
SL
3517@item S/390 and zSeries---@file{config/s390/s390.h}
3518@table @code
3519@item a
3520Address register (general purpose register except r0)
3521
3522@item c
3523Condition code register
3524
3525@item d
3526Data register (arbitrary general purpose register)
3527
3528@item f
3529Floating-point register
3530
3531@item I
3532Unsigned 8-bit constant (0--255)
3533
3534@item J
3535Unsigned 12-bit constant (0--4095)
3536
3537@item K
3538Signed 16-bit constant (@minus{}32768--32767)
3539
3540@item L
3541Value appropriate as displacement.
3542@table @code
3543@item (0..4095)
3544for short displacement
3545@item (@minus{}524288..524287)
3546for long displacement
3547@end table
3548
3549@item M
3550Constant integer with a value of 0x7fffffff.
3551
3552@item N
3553Multiple letter constraint followed by 4 parameter letters.
3554@table @code
3555@item 0..9:
3556number of the part counting from most to least significant
3557@item H,Q:
3558mode of the part
3559@item D,S,H:
3560mode of the containing operand
3561@item 0,F:
3562value of the other parts (F---all bits set)
3563@end table
3564The constraint matches if the specified part of a constant
3565has a value different from its other parts.
3566
3567@item Q
3568Memory reference without index register and with short displacement.
3569
3570@item R
3571Memory reference with index register and short displacement.
3572
3573@item S
3574Memory reference without index register but with long displacement.
3575
3576@item T
3577Memory reference with index register and long displacement.
3578
3579@item U
3580Pointer with short displacement.
3581
3582@item W
3583Pointer with long displacement.
3584
3585@item Y
3586Shift count operand.
3587
3588@end table
3589
03dda8e3 3590@need 1000
74fe790b 3591@item SPARC---@file{config/sparc/sparc.h}
03dda8e3
RK
3592@table @code
3593@item f
53e5f173
EB
3594Floating-point register on the SPARC-V8 architecture and
3595lower floating-point register on the SPARC-V9 architecture.
03dda8e3
RK
3596
3597@item e
8a36672b 3598Floating-point register. It is equivalent to @samp{f} on the
53e5f173
EB
3599SPARC-V8 architecture and contains both lower and upper
3600floating-point registers on the SPARC-V9 architecture.
03dda8e3 3601
8a69f99f
EB
3602@item c
3603Floating-point condition code register.
3604
3605@item d
8a36672b 3606Lower floating-point register. It is only valid on the SPARC-V9
53e5f173 3607architecture when the Visual Instruction Set is available.
8a69f99f
EB
3608
3609@item b
8a36672b 3610Floating-point register. It is only valid on the SPARC-V9 architecture
53e5f173 3611when the Visual Instruction Set is available.
8a69f99f
EB
3612
3613@item h
361464-bit global or out register for the SPARC-V8+ architecture.
3615
923f9ded
DM
3616@item C
3617The constant all-ones, for floating-point.
3618
8b98b5fd
DM
3619@item A
3620Signed 5-bit constant
3621
66e62b49
KH
3622@item D
3623A vector constant
3624
03dda8e3 3625@item I
1e5f973d 3626Signed 13-bit constant
03dda8e3
RK
3627
3628@item J
3629Zero
3630
3631@item K
1e5f973d 363232-bit constant with the low 12 bits clear (a constant that can be
03dda8e3
RK
3633loaded with the @code{sethi} instruction)
3634
7d6040e8 3635@item L
923f9ded
DM
3636A constant in the range supported by @code{movcc} instructions (11-bit
3637signed immediate)
7d6040e8
AO
3638
3639@item M
923f9ded
DM
3640A constant in the range supported by @code{movrcc} instructions (10-bit
3641signed immediate)
7d6040e8
AO
3642
3643@item N
3644Same as @samp{K}, except that it verifies that bits that are not in the
57694e40 3645lower 32-bit range are all zero. Must be used instead of @samp{K} for
7d6040e8
AO
3646modes wider than @code{SImode}
3647
ef0139b1
EB
3648@item O
3649The constant 4096
3650
03dda8e3
RK
3651@item G
3652Floating-point zero
3653
3654@item H
1e5f973d 3655Signed 13-bit constant, sign-extended to 32 or 64 bits
03dda8e3 3656
923f9ded
DM
3657@item P
3658The constant -1
3659
03dda8e3 3660@item Q
62190128
DM
3661Floating-point constant whose integral representation can
3662be moved into an integer register using a single sethi
3663instruction
3664
3665@item R
3666Floating-point constant whose integral representation can
3667be moved into an integer register using a single mov
3668instruction
03dda8e3
RK
3669
3670@item S
62190128
DM
3671Floating-point constant whose integral representation can
3672be moved into an integer register using a high/lo_sum
3673instruction sequence
03dda8e3
RK
3674
3675@item T
3676Memory address aligned to an 8-byte boundary
3677
aaa050aa
DM
3678@item U
3679Even register
3680
7a31a340 3681@item W
c75d6010
JM
3682Memory address for @samp{e} constraint registers
3683
923f9ded
DM
3684@item w
3685Memory address with only a base register
3686
c75d6010
JM
3687@item Y
3688Vector zero
7a31a340 3689
6ca30df6
MH
3690@end table
3691
85d9c13c
TS
3692@item SPU---@file{config/spu/spu.h}
3693@table @code
3694@item a
ff2ce160 3695An immediate which can be loaded with the il/ila/ilh/ilhu instructions. const_int is treated as a 64 bit value.
85d9c13c
TS
3696
3697@item c
ff2ce160 3698An immediate for and/xor/or instructions. const_int is treated as a 64 bit value.
85d9c13c
TS
3699
3700@item d
ff2ce160 3701An immediate for the @code{iohl} instruction. const_int is treated as a 64 bit value.
85d9c13c
TS
3702
3703@item f
ff2ce160 3704An immediate which can be loaded with @code{fsmbi}.
85d9c13c
TS
3705
3706@item A
ff2ce160 3707An immediate which can be loaded with the il/ila/ilh/ilhu instructions. const_int is treated as a 32 bit value.
85d9c13c 3708
b4fbcb1b
SL
3709@item B
3710An immediate for most arithmetic instructions. const_int is treated as a 32 bit value.
9f339dde 3711
b4fbcb1b
SL
3712@item C
3713An immediate for and/xor/or instructions. const_int is treated as a 32 bit value.
9f339dde 3714
b4fbcb1b
SL
3715@item D
3716An immediate for the @code{iohl} instruction. const_int is treated as a 32 bit value.
9f339dde
GK
3717
3718@item I
b4fbcb1b 3719A constant in the range [@minus{}64, 63] for shift/rotate instructions.
9f339dde
GK
3720
3721@item J
b4fbcb1b 3722An unsigned 7-bit constant for conversion/nop/channel instructions.
9f339dde
GK
3723
3724@item K
b4fbcb1b 3725A signed 10-bit constant for most arithmetic instructions.
9f339dde
GK
3726
3727@item M
b4fbcb1b 3728A signed 16 bit immediate for @code{stop}.
9f339dde
GK
3729
3730@item N
b4fbcb1b 3731An unsigned 16-bit constant for @code{iohl} and @code{fsmbi}.
9f339dde
GK
3732
3733@item O
b4fbcb1b 3734An unsigned 7-bit constant whose 3 least significant bits are 0.
9f339dde
GK
3735
3736@item P
b4fbcb1b 3737An unsigned 3-bit constant for 16-byte rotates and shifts
9f339dde
GK
3738
3739@item R
b4fbcb1b 3740Call operand, reg, for indirect calls
9f339dde
GK
3741
3742@item S
b4fbcb1b 3743Call operand, symbol, for relative calls.
9f339dde
GK
3744
3745@item T
b4fbcb1b 3746Call operand, const_int, for absolute calls.
9f339dde
GK
3747
3748@item U
b4fbcb1b
SL
3749An immediate which can be loaded with the il/ila/ilh/ilhu instructions. const_int is sign extended to 128 bit.
3750
3751@item W
3752An immediate for shift and rotate instructions. const_int is treated as a 32 bit value.
3753
3754@item Y
3755An immediate for and/xor/or instructions. const_int is sign extended as a 128 bit.
9f339dde 3756
e2ce66a9 3757@item Z
b4fbcb1b 3758An immediate for the @code{iohl} instruction. const_int is sign extended to 128 bit.
e2ce66a9 3759
9f339dde
GK
3760@end table
3761
bcead286
BS
3762@item TI C6X family---@file{config/c6x/constraints.md}
3763@table @code
3764@item a
3765Register file A (A0--A31).
3766
3767@item b
3768Register file B (B0--B31).
3769
3770@item A
3771Predicate registers in register file A (A0--A2 on C64X and
3772higher, A1 and A2 otherwise).
3773
3774@item B
3775Predicate registers in register file B (B0--B2).
3776
3777@item C
3778A call-used register in register file B (B0--B9, B16--B31).
3779
3780@item Da
3781Register file A, excluding predicate registers (A3--A31,
3782plus A0 if not C64X or higher).
3783
3784@item Db
3785Register file B, excluding predicate registers (B3--B31).
3786
3787@item Iu4
3788Integer constant in the range 0 @dots{} 15.
3789
3790@item Iu5
3791Integer constant in the range 0 @dots{} 31.
3792
3793@item In5
3794Integer constant in the range @minus{}31 @dots{} 0.
3795
3796@item Is5
3797Integer constant in the range @minus{}16 @dots{} 15.
3798
3799@item I5x
3800Integer constant that can be the operand of an ADDA or a SUBA insn.
3801
3802@item IuB
3803Integer constant in the range 0 @dots{} 65535.
3804
3805@item IsB
3806Integer constant in the range @minus{}32768 @dots{} 32767.
3807
3808@item IsC
3809Integer constant in the range @math{-2^{20}} @dots{} @math{2^{20} - 1}.
3810
3811@item Jc
3812Integer constant that is a valid mask for the clr instruction.
3813
3814@item Js
3815Integer constant that is a valid mask for the set instruction.
3816
3817@item Q
3818Memory location with A base register.
3819
3820@item R
3821Memory location with B base register.
3822
3823@ifset INTERNALS
3824@item S0
3825On C64x+ targets, a GP-relative small data reference.
3826
3827@item S1
3828Any kind of @code{SYMBOL_REF}, for use in a call address.
3829
3830@item Si
3831Any kind of immediate operand, unless it matches the S0 constraint.
3832
3833@item T
3834Memory location with B base register, but not using a long offset.
3835
3836@item W
fd250f0d 3837A memory operand with an address that cannot be used in an unaligned access.
bcead286
BS
3838
3839@end ifset
3840@item Z
3841Register B14 (aka DP).
3842
3843@end table
3844
dd552284
WL
3845@item TILE-Gx---@file{config/tilegx/constraints.md}
3846@table @code
3847@item R00
3848@itemx R01
3849@itemx R02
3850@itemx R03
3851@itemx R04
3852@itemx R05
3853@itemx R06
3854@itemx R07
3855@itemx R08
3856@itemx R09
655c5444 3857@itemx R10
dd552284
WL
3858Each of these represents a register constraint for an individual
3859register, from r0 to r10.
3860
3861@item I
3862Signed 8-bit integer constant.
3863
3864@item J
3865Signed 16-bit integer constant.
3866
3867@item K
3868Unsigned 16-bit integer constant.
3869
3870@item L
3871Integer constant that fits in one signed byte when incremented by one
3872(@minus{}129 @dots{} 126).
3873
3874@item m
3875Memory operand. If used together with @samp{<} or @samp{>}, the
3876operand can have postincrement which requires printing with @samp{%In}
3877and @samp{%in} on TILE-Gx. For example:
3878
3879@smallexample
3880asm ("st_add %I0,%1,%i0" : "=m<>" (*mem) : "r" (val));
3881@end smallexample
3882
3883@item M
3884A bit mask suitable for the BFINS instruction.
3885
3886@item N
3887Integer constant that is a byte tiled out eight times.
3888
3889@item O
3890The integer zero constant.
3891
3892@item P
3893Integer constant that is a sign-extended byte tiled out as four shorts.
3894
3895@item Q
3896Integer constant that fits in one signed byte when incremented
3897(@minus{}129 @dots{} 126), but excluding -1.
3898
3899@item S
3900Integer constant that has all 1 bits consecutive and starting at bit 0.
3901
3902@item T
3903A 16-bit fragment of a got, tls, or pc-relative reference.
3904
3905@item U
3906Memory operand except postincrement. This is roughly the same as
3907@samp{m} when not used together with @samp{<} or @samp{>}.
3908
3909@item W
3910An 8-element vector constant with identical elements.
3911
3912@item Y
3913A 4-element vector constant with identical elements.
3914
3915@item Z0
3916The integer constant 0xffffffff.
3917
3918@item Z1
3919The integer constant 0xffffffff00000000.
3920
3921@end table
3922
3923@item TILEPro---@file{config/tilepro/constraints.md}
3924@table @code
3925@item R00
3926@itemx R01
3927@itemx R02
3928@itemx R03
3929@itemx R04
3930@itemx R05
3931@itemx R06
3932@itemx R07
3933@itemx R08
3934@itemx R09
655c5444 3935@itemx R10
dd552284
WL
3936Each of these represents a register constraint for an individual
3937register, from r0 to r10.
3938
3939@item I
3940Signed 8-bit integer constant.
3941
3942@item J
3943Signed 16-bit integer constant.
3944
3945@item K
3946Nonzero integer constant with low 16 bits zero.
3947
3948@item L
3949Integer constant that fits in one signed byte when incremented by one
3950(@minus{}129 @dots{} 126).
3951
3952@item m
3953Memory operand. If used together with @samp{<} or @samp{>}, the
3954operand can have postincrement which requires printing with @samp{%In}
3955and @samp{%in} on TILEPro. For example:
3956
3957@smallexample
3958asm ("swadd %I0,%1,%i0" : "=m<>" (mem) : "r" (val));
3959@end smallexample
3960
3961@item M
3962A bit mask suitable for the MM instruction.
3963
3964@item N
3965Integer constant that is a byte tiled out four times.
3966
3967@item O
3968The integer zero constant.
3969
3970@item P
3971Integer constant that is a sign-extended byte tiled out as two shorts.
3972
3973@item Q
3974Integer constant that fits in one signed byte when incremented
3975(@minus{}129 @dots{} 126), but excluding -1.
3976
3977@item T
3978A symbolic operand, or a 16-bit fragment of a got, tls, or pc-relative
3979reference.
3980
3981@item U
3982Memory operand except postincrement. This is roughly the same as
3983@samp{m} when not used together with @samp{<} or @samp{>}.
3984
3985@item W
3986A 4-element vector constant with identical elements.
3987
3988@item Y
3989A 2-element vector constant with identical elements.
3990
3991@end table
3992
0969ec7d
EB
3993@item Visium---@file{config/visium/constraints.md}
3994@table @code
3995@item b
3996EAM register @code{mdb}
3997
3998@item c
3999EAM register @code{mdc}
4000
4001@item f
4002Floating point register
4003
4004@ifset INTERNALS
4005@item k
4006Register for sibcall optimization
4007@end ifset
4008
4009@item l
4010General register, but not @code{r29}, @code{r30} and @code{r31}
4011
4012@item t
4013Register @code{r1}
4014
4015@item u
4016Register @code{r2}
4017
4018@item v
4019Register @code{r3}
4020
4021@item G
4022Floating-point constant 0.0
4023
4024@item J
4025Integer constant in the range 0 .. 65535 (16-bit immediate)
4026
4027@item K
4028Integer constant in the range 1 .. 31 (5-bit immediate)
4029
4030@item L
4031Integer constant in the range @minus{}65535 .. @minus{}1 (16-bit negative immediate)
4032
4033@item M
4034Integer constant @minus{}1
4035
4036@item O
4037Integer constant 0
4038
4039@item P
4040Integer constant 32
4041@end table
4042
b4fbcb1b
SL
4043@item x86 family---@file{config/i386/constraints.md}
4044@table @code
4045@item R
4046Legacy register---the eight integer registers available on all
4047i386 processors (@code{a}, @code{b}, @code{c}, @code{d},
4048@code{si}, @code{di}, @code{bp}, @code{sp}).
4049
4050@item q
4051Any register accessible as @code{@var{r}l}. In 32-bit mode, @code{a},
4052@code{b}, @code{c}, and @code{d}; in 64-bit mode, any integer register.
4053
4054@item Q
4055Any register accessible as @code{@var{r}h}: @code{a}, @code{b},
4056@code{c}, and @code{d}.
4057
4058@ifset INTERNALS
4059@item l
4060Any register that can be used as the index in a base+index memory
4061access: that is, any general register except the stack pointer.
4062@end ifset
4063
4064@item a
4065The @code{a} register.
4066
4067@item b
4068The @code{b} register.
4069
4070@item c
4071The @code{c} register.
4072
4073@item d
4074The @code{d} register.
4075
4076@item S
4077The @code{si} register.
4078
4079@item D
4080The @code{di} register.
4081
4082@item A
4083The @code{a} and @code{d} registers. This class is used for instructions
4084that return double word results in the @code{ax:dx} register pair. Single
4085word values will be allocated either in @code{ax} or @code{dx}.
4086For example on i386 the following implements @code{rdtsc}:
4087
4088@smallexample
4089unsigned long long rdtsc (void)
4090@{
4091 unsigned long long tick;
4092 __asm__ __volatile__("rdtsc":"=A"(tick));
4093 return tick;
4094@}
4095@end smallexample
4096
4097This is not correct on x86-64 as it would allocate tick in either @code{ax}
4098or @code{dx}. You have to use the following variant instead:
4099
4100@smallexample
4101unsigned long long rdtsc (void)
4102@{
4103 unsigned int tickl, tickh;
4104 __asm__ __volatile__("rdtsc":"=a"(tickl),"=d"(tickh));
4105 return ((unsigned long long)tickh << 32)|tickl;
4106@}
4107@end smallexample
4108
de3fb1a6
SP
4109@item U
4110The call-clobbered integer registers.
b4fbcb1b
SL
4111
4112@item f
4113Any 80387 floating-point (stack) register.
4114
4115@item t
4116Top of 80387 floating-point stack (@code{%st(0)}).
4117
4118@item u
4119Second from top of 80387 floating-point stack (@code{%st(1)}).
4120
de3fb1a6
SP
4121@ifset INTERNALS
4122@item Yk
630ba2fd 4123Any mask register that can be used as a predicate, i.e.@: @code{k1-k7}.
de3fb1a6
SP
4124
4125@item k
4126Any mask register.
4127@end ifset
4128
b4fbcb1b
SL
4129@item y
4130Any MMX register.
4131
4132@item x
4133Any SSE register.
4134
de3fb1a6
SP
4135@item v
4136Any EVEX encodable SSE register (@code{%xmm0-%xmm31}).
4137
4138@ifset INTERNALS
4139@item w
4140Any bound register.
4141@end ifset
4142
b4fbcb1b
SL
4143@item Yz
4144First SSE register (@code{%xmm0}).
4145
4146@ifset INTERNALS
b4fbcb1b
SL
4147@item Yi
4148Any SSE register, when SSE2 and inter-unit moves are enabled.
4149
de3fb1a6
SP
4150@item Yj
4151Any SSE register, when SSE2 and inter-unit moves from vector registers are enabled.
4152
b4fbcb1b
SL
4153@item Ym
4154Any MMX register, when inter-unit moves are enabled.
de3fb1a6
SP
4155
4156@item Yn
4157Any MMX register, when inter-unit moves from vector registers are enabled.
4158
4159@item Yp
4160Any integer register when @code{TARGET_PARTIAL_REG_STALL} is disabled.
4161
4162@item Ya
4163Any integer register when zero extensions with @code{AND} are disabled.
4164
4165@item Yb
4166Any register that can be used as the GOT base when calling@*
4167@code{___tls_get_addr}: that is, any general register except @code{a}
4168and @code{sp} registers, for @option{-fno-plt} if linker supports it.
4169Otherwise, @code{b} register.
4170
4171@item Yf
4172Any x87 register when 80387 floating-point arithmetic is enabled.
4173
4174@item Yr
4175Lower SSE register when avoiding REX prefix and all SSE registers otherwise.
4176
4177@item Yv
4178For AVX512VL, any EVEX-encodable SSE register (@code{%xmm0-%xmm31}),
4179otherwise any SSE register.
4180
4181@item Yh
4182Any EVEX-encodable SSE register, that has number factor of four.
4183
4184@item Bf
4185Flags register operand.
4186
4187@item Bg
4188GOT memory operand.
4189
4190@item Bm
4191Vector memory operand.
4192
4193@item Bc
4194Constant memory operand.
4195
4196@item Bn
4197Memory operand without REX prefix.
4198
4199@item Bs
4200Sibcall memory operand.
4201
4202@item Bw
4203Call memory operand.
4204
4205@item Bz
4206Constant call address operand.
4207
4208@item BC
4209SSE constant -1 operand.
b4fbcb1b
SL
4210@end ifset
4211
4212@item I
4213Integer constant in the range 0 @dots{} 31, for 32-bit shifts.
4214
4215@item J
4216Integer constant in the range 0 @dots{} 63, for 64-bit shifts.
4217
4218@item K
4219Signed 8-bit integer constant.
4220
4221@item L
4222@code{0xFF} or @code{0xFFFF}, for andsi as a zero-extending move.
4223
4224@item M
42250, 1, 2, or 3 (shifts for the @code{lea} instruction).
4226
4227@item N
4228Unsigned 8-bit integer constant (for @code{in} and @code{out}
4229instructions).
4230
4231@ifset INTERNALS
4232@item O
4233Integer constant in the range 0 @dots{} 127, for 128-bit shifts.
4234@end ifset
4235
4236@item G
4237Standard 80387 floating point constant.
4238
4239@item C
aec0b19e 4240SSE constant zero operand.
b4fbcb1b
SL
4241
4242@item e
424332-bit signed integer constant, or a symbolic reference known
4244to fit that range (for immediate operands in sign-extending x86-64
4245instructions).
4246
de3fb1a6
SP
4247@item We
424832-bit signed integer constant, or a symbolic reference known
4249to fit that range (for sign-extending conversion operations that
4250require non-@code{VOIDmode} immediate operands).
4251
4252@item Wz
425332-bit unsigned integer constant, or a symbolic reference known
4254to fit that range (for zero-extending conversion operations that
4255require non-@code{VOIDmode} immediate operands).
4256
4257@item Wd
4258128-bit integer constant where both the high and low 64-bit word
4259satisfy the @code{e} constraint.
4260
b4fbcb1b
SL
4261@item Z
426232-bit unsigned integer constant, or a symbolic reference known
4263to fit that range (for immediate operands in zero-extending x86-64
4264instructions).
4265
de3fb1a6
SP
4266@item Tv
4267VSIB address operand.
4268
4269@item Ts
4270Address operand without segment register.
4271
b4fbcb1b
SL
4272@end table
4273
4274@item Xstormy16---@file{config/stormy16/stormy16.h}
4275@table @code
4276@item a
4277Register r0.
4278
4279@item b
4280Register r1.
4281
4282@item c
4283Register r2.
4284
4285@item d
4286Register r8.
4287
4288@item e
4289Registers r0 through r7.
4290
4291@item t
4292Registers r0 and r1.
4293
4294@item y
4295The carry register.
4296
4297@item z
4298Registers r8 and r9.
4299
4300@item I
4301A constant between 0 and 3 inclusive.
4302
4303@item J
4304A constant that has exactly one bit set.
4305
4306@item K
4307A constant that has exactly one bit clear.
4308
4309@item L
4310A constant between 0 and 255 inclusive.
4311
4312@item M
4313A constant between @minus{}255 and 0 inclusive.
4314
4315@item N
4316A constant between @minus{}3 and 0 inclusive.
4317
4318@item O
4319A constant between 1 and 4 inclusive.
4320
4321@item P
4322A constant between @minus{}4 and @minus{}1 inclusive.
4323
4324@item Q
4325A memory reference that is a stack push.
4326
4327@item R
4328A memory reference that is a stack pop.
4329
4330@item S
4331A memory reference that refers to a constant address of known value.
4332
4333@item T
4334The register indicated by Rx (not implemented yet).
4335
4336@item U
4337A constant that is not between 2 and 15 inclusive.
4338
4339@item Z
4340The constant 0.
4341
4342@end table
4343
887af464 4344@item Xtensa---@file{config/xtensa/constraints.md}
03984308
BW
4345@table @code
4346@item a
4347General-purpose 32-bit register
4348
4349@item b
4350One-bit boolean register
4351
4352@item A
4353MAC16 40-bit accumulator register
4354
4355@item I
4356Signed 12-bit integer constant, for use in MOVI instructions
4357
4358@item J
4359Signed 8-bit integer constant, for use in ADDI instructions
4360
4361@item K
4362Integer constant valid for BccI instructions
4363
4364@item L
4365Unsigned constant valid for BccUI instructions
4366
4367@end table
4368
03dda8e3
RK
4369@end table
4370
7ac28727
AK
4371@ifset INTERNALS
4372@node Disable Insn Alternatives
4373@subsection Disable insn alternatives using the @code{enabled} attribute
4374@cindex enabled
4375
9840b2fa
RS
4376There are three insn attributes that may be used to selectively disable
4377instruction alternatives:
7ac28727 4378
9840b2fa
RS
4379@table @code
4380@item enabled
4381Says whether an alternative is available on the current subtarget.
7ac28727 4382
9840b2fa
RS
4383@item preferred_for_size
4384Says whether an enabled alternative should be used in code that is
4385optimized for size.
7ac28727 4386
9840b2fa
RS
4387@item preferred_for_speed
4388Says whether an enabled alternative should be used in code that is
4389optimized for speed.
4390@end table
4391
4392All these attributes should use @code{(const_int 1)} to allow an alternative
4393or @code{(const_int 0)} to disallow it. The attributes must be a static
4394property of the subtarget; they cannot for example depend on the
4395current operands, on the current optimization level, on the location
4396of the insn within the body of a loop, on whether register allocation
4397has finished, or on the current compiler pass.
4398
4399The @code{enabled} attribute is a correctness property. It tells GCC to act
4400as though the disabled alternatives were never defined in the first place.
4401This is useful when adding new instructions to an existing pattern in
4402cases where the new instructions are only available for certain cpu
4403architecture levels (typically mapped to the @code{-march=} command-line
4404option).
4405
4406In contrast, the @code{preferred_for_size} and @code{preferred_for_speed}
4407attributes are strong optimization hints rather than correctness properties.
4408@code{preferred_for_size} tells GCC which alternatives to consider when
4409adding or modifying an instruction that GCC wants to optimize for size.
4410@code{preferred_for_speed} does the same thing for speed. Note that things
4411like code motion can lead to cases where code optimized for size uses
4412alternatives that are not preferred for size, and similarly for speed.
4413
4414Although @code{define_insn}s can in principle specify the @code{enabled}
4415attribute directly, it is often clearer to have subsiduary attributes
4416for each architectural feature of interest. The @code{define_insn}s
4417can then use these subsiduary attributes to say which alternatives
4418require which features. The example below does this for @code{cpu_facility}.
7ac28727
AK
4419
4420E.g. the following two patterns could easily be merged using the @code{enabled}
4421attribute:
4422
4423@smallexample
4424
4425(define_insn "*movdi_old"
4426 [(set (match_operand:DI 0 "register_operand" "=d")
4427 (match_operand:DI 1 "register_operand" " d"))]
4428 "!TARGET_NEW"
4429 "lgr %0,%1")
4430
4431(define_insn "*movdi_new"
4432 [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4433 (match_operand:DI 1 "register_operand" " d,d,f"))]
4434 "TARGET_NEW"
4435 "@@
4436 lgr %0,%1
4437 ldgr %0,%1
4438 lgdr %0,%1")
4439
4440@end smallexample
4441
4442to:
4443
4444@smallexample
4445
4446(define_insn "*movdi_combined"
4447 [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4448 (match_operand:DI 1 "register_operand" " d,d,f"))]
4449 ""
4450 "@@
4451 lgr %0,%1
4452 ldgr %0,%1
4453 lgdr %0,%1"
4454 [(set_attr "cpu_facility" "*,new,new")])
4455
4456@end smallexample
4457
4458with the @code{enabled} attribute defined like this:
4459
4460@smallexample
4461
4462(define_attr "cpu_facility" "standard,new" (const_string "standard"))
4463
4464(define_attr "enabled" ""
4465 (cond [(eq_attr "cpu_facility" "standard") (const_int 1)
4466 (and (eq_attr "cpu_facility" "new")
4467 (ne (symbol_ref "TARGET_NEW") (const_int 0)))
4468 (const_int 1)]
4469 (const_int 0)))
4470
4471@end smallexample
4472
4473@end ifset
4474
03dda8e3 4475@ifset INTERNALS
f38840db
ZW
4476@node Define Constraints
4477@subsection Defining Machine-Specific Constraints
4478@cindex defining constraints
4479@cindex constraints, defining
4480
4481Machine-specific constraints fall into two categories: register and
4482non-register constraints. Within the latter category, constraints
4483which allow subsets of all possible memory or address operands should
4484be specially marked, to give @code{reload} more information.
4485
4486Machine-specific constraints can be given names of arbitrary length,
4487but they must be entirely composed of letters, digits, underscores
4488(@samp{_}), and angle brackets (@samp{< >}). Like C identifiers, they
ff2ce160 4489must begin with a letter or underscore.
f38840db
ZW
4490
4491In order to avoid ambiguity in operand constraint strings, no
4492constraint can have a name that begins with any other constraint's
4493name. For example, if @code{x} is defined as a constraint name,
4494@code{xy} may not be, and vice versa. As a consequence of this rule,
4495no constraint may begin with one of the generic constraint letters:
4496@samp{E F V X g i m n o p r s}.
4497
4498Register constraints correspond directly to register classes.
4499@xref{Register Classes}. There is thus not much flexibility in their
4500definitions.
4501
4502@deffn {MD Expression} define_register_constraint name regclass docstring
4503All three arguments are string constants.
4504@var{name} is the name of the constraint, as it will appear in
5be527d0
RG
4505@code{match_operand} expressions. If @var{name} is a multi-letter
4506constraint its length shall be the same for all constraints starting
4507with the same letter. @var{regclass} can be either the
f38840db
ZW
4508name of the corresponding register class (@pxref{Register Classes}),
4509or a C expression which evaluates to the appropriate register class.
4510If it is an expression, it must have no side effects, and it cannot
4511look at the operand. The usual use of expressions is to map some
4512register constraints to @code{NO_REGS} when the register class
4513is not available on a given subarchitecture.
4514
4515@var{docstring} is a sentence documenting the meaning of the
4516constraint. Docstrings are explained further below.
4517@end deffn
4518
4519Non-register constraints are more like predicates: the constraint
527a3750 4520definition gives a boolean expression which indicates whether the
f38840db
ZW
4521constraint matches.
4522
4523@deffn {MD Expression} define_constraint name docstring exp
4524The @var{name} and @var{docstring} arguments are the same as for
4525@code{define_register_constraint}, but note that the docstring comes
4526immediately after the name for these expressions. @var{exp} is an RTL
4527expression, obeying the same rules as the RTL expressions in predicate
4528definitions. @xref{Defining Predicates}, for details. If it
4529evaluates true, the constraint matches; if it evaluates false, it
4530doesn't. Constraint expressions should indicate which RTL codes they
4531might match, just like predicate expressions.
4532
4533@code{match_test} C expressions have access to the
4534following variables:
4535
4536@table @var
4537@item op
4538The RTL object defining the operand.
4539@item mode
4540The machine mode of @var{op}.
4541@item ival
4542@samp{INTVAL (@var{op})}, if @var{op} is a @code{const_int}.
4543@item hval
4544@samp{CONST_DOUBLE_HIGH (@var{op})}, if @var{op} is an integer
4545@code{const_double}.
4546@item lval
4547@samp{CONST_DOUBLE_LOW (@var{op})}, if @var{op} is an integer
4548@code{const_double}.
4549@item rval
4550@samp{CONST_DOUBLE_REAL_VALUE (@var{op})}, if @var{op} is a floating-point
3fa1b0e5 4551@code{const_double}.
f38840db
ZW
4552@end table
4553
4554The @var{*val} variables should only be used once another piece of the
4555expression has verified that @var{op} is the appropriate kind of RTL
4556object.
4557@end deffn
4558
4559Most non-register constraints should be defined with
4560@code{define_constraint}. The remaining two definition expressions
4561are only appropriate for constraints that should be handled specially
4562by @code{reload} if they fail to match.
4563
4564@deffn {MD Expression} define_memory_constraint name docstring exp
4565Use this expression for constraints that match a subset of all memory
4566operands: that is, @code{reload} can make them match by converting the
4567operand to the form @samp{@w{(mem (reg @var{X}))}}, where @var{X} is a
4568base register (from the register class specified by
4569@code{BASE_REG_CLASS}, @pxref{Register Classes}).
4570
4571For example, on the S/390, some instructions do not accept arbitrary
4572memory references, but only those that do not make use of an index
4573register. The constraint letter @samp{Q} is defined to represent a
4574memory address of this type. If @samp{Q} is defined with
4575@code{define_memory_constraint}, a @samp{Q} constraint can handle any
4576memory operand, because @code{reload} knows it can simply copy the
4577memory address into a base register if required. This is analogous to
e4ae5e77 4578the way an @samp{o} constraint can handle any memory operand.
f38840db
ZW
4579
4580The syntax and semantics are otherwise identical to
4581@code{define_constraint}.
4582@end deffn
4583
9eb1ca69
VM
4584@deffn {MD Expression} define_special_memory_constraint name docstring exp
4585Use this expression for constraints that match a subset of all memory
4586operands: that is, @code{reload} can not make them match by reloading
4587the address as it is described for @code{define_memory_constraint} or
4588such address reload is undesirable with the performance point of view.
4589
4590For example, @code{define_special_memory_constraint} can be useful if
4591specifically aligned memory is necessary or desirable for some insn
4592operand.
4593
4594The syntax and semantics are otherwise identical to
4595@code{define_constraint}.
4596@end deffn
4597
f38840db
ZW
4598@deffn {MD Expression} define_address_constraint name docstring exp
4599Use this expression for constraints that match a subset of all address
4600operands: that is, @code{reload} can make the constraint match by
4601converting the operand to the form @samp{@w{(reg @var{X})}}, again
4602with @var{X} a base register.
4603
4604Constraints defined with @code{define_address_constraint} can only be
4605used with the @code{address_operand} predicate, or machine-specific
4606predicates that work the same way. They are treated analogously to
4607the generic @samp{p} constraint.
4608
4609The syntax and semantics are otherwise identical to
4610@code{define_constraint}.
4611@end deffn
4612
4613For historical reasons, names beginning with the letters @samp{G H}
4614are reserved for constraints that match only @code{const_double}s, and
4615names beginning with the letters @samp{I J K L M N O P} are reserved
4616for constraints that match only @code{const_int}s. This may change in
4617the future. For the time being, constraints with these names must be
4618written in a stylized form, so that @code{genpreds} can tell you did
4619it correctly:
4620
4621@smallexample
4622@group
4623(define_constraint "[@var{GHIJKLMNOP}]@dots{}"
4624 "@var{doc}@dots{}"
4625 (and (match_code "const_int") ; @r{@code{const_double} for G/H}
4626 @var{condition}@dots{})) ; @r{usually a @code{match_test}}
4627@end group
4628@end smallexample
4629@c the semicolons line up in the formatted manual
4630
4631It is fine to use names beginning with other letters for constraints
4632that match @code{const_double}s or @code{const_int}s.
4633
4634Each docstring in a constraint definition should be one or more complete
4635sentences, marked up in Texinfo format. @emph{They are currently unused.}
4636In the future they will be copied into the GCC manual, in @ref{Machine
4637Constraints}, replacing the hand-maintained tables currently found in
4638that section. Also, in the future the compiler may use this to give
4639more helpful diagnostics when poor choice of @code{asm} constraints
4640causes a reload failure.
4641
4642If you put the pseudo-Texinfo directive @samp{@@internal} at the
4643beginning of a docstring, then (in the future) it will appear only in
4644the internals manual's version of the machine-specific constraint tables.
4645Use this for constraints that should not appear in @code{asm} statements.
4646
4647@node C Constraint Interface
4648@subsection Testing constraints from C
4649@cindex testing constraints
4650@cindex constraints, testing
4651
4652It is occasionally useful to test a constraint from C code rather than
4653implicitly via the constraint string in a @code{match_operand}. The
4654generated file @file{tm_p.h} declares a few interfaces for working
8677664e
RS
4655with constraints. At present these are defined for all constraints
4656except @code{g} (which is equivalent to @code{general_operand}).
f38840db
ZW
4657
4658Some valid constraint names are not valid C identifiers, so there is a
4659mangling scheme for referring to them from C@. Constraint names that
4660do not contain angle brackets or underscores are left unchanged.
4661Underscores are doubled, each @samp{<} is replaced with @samp{_l}, and
4662each @samp{>} with @samp{_g}. Here are some examples:
4663
4664@c the @c's prevent double blank lines in the printed manual.
4665@example
4666@multitable {Original} {Mangled}
cccb0908 4667@item @strong{Original} @tab @strong{Mangled} @c
f38840db
ZW
4668@item @code{x} @tab @code{x} @c
4669@item @code{P42x} @tab @code{P42x} @c
4670@item @code{P4_x} @tab @code{P4__x} @c
4671@item @code{P4>x} @tab @code{P4_gx} @c
4672@item @code{P4>>} @tab @code{P4_g_g} @c
4673@item @code{P4_g>} @tab @code{P4__g_g} @c
4674@end multitable
4675@end example
4676
4677Throughout this section, the variable @var{c} is either a constraint
4678in the abstract sense, or a constant from @code{enum constraint_num};
4679the variable @var{m} is a mangled constraint name (usually as part of
4680a larger identifier).
4681
4682@deftp Enum constraint_num
8677664e 4683For each constraint except @code{g}, there is a corresponding
f38840db
ZW
4684enumeration constant: @samp{CONSTRAINT_} plus the mangled name of the
4685constraint. Functions that take an @code{enum constraint_num} as an
4686argument expect one of these constants.
f38840db
ZW
4687@end deftp
4688
4689@deftypefun {inline bool} satisfies_constraint_@var{m} (rtx @var{exp})
8677664e 4690For each non-register constraint @var{m} except @code{g}, there is
f38840db
ZW
4691one of these functions; it returns @code{true} if @var{exp} satisfies the
4692constraint. These functions are only visible if @file{rtl.h} was included
4693before @file{tm_p.h}.
4694@end deftypefun
4695
4696@deftypefun bool constraint_satisfied_p (rtx @var{exp}, enum constraint_num @var{c})
4697Like the @code{satisfies_constraint_@var{m}} functions, but the
4698constraint to test is given as an argument, @var{c}. If @var{c}
4699specifies a register constraint, this function will always return
4700@code{false}.
4701@end deftypefun
4702
2aeedf58 4703@deftypefun {enum reg_class} reg_class_for_constraint (enum constraint_num @var{c})
f38840db
ZW
4704Returns the register class associated with @var{c}. If @var{c} is not
4705a register constraint, or those registers are not available for the
4706currently selected subtarget, returns @code{NO_REGS}.
4707@end deftypefun
4708
4709Here is an example use of @code{satisfies_constraint_@var{m}}. In
4710peephole optimizations (@pxref{Peephole Definitions}), operand
4711constraint strings are ignored, so if there are relevant constraints,
4712they must be tested in the C condition. In the example, the
4713optimization is applied if operand 2 does @emph{not} satisfy the
4714@samp{K} constraint. (This is a simplified version of a peephole
4715definition from the i386 machine description.)
4716
4717@smallexample
4718(define_peephole2
4719 [(match_scratch:SI 3 "r")
4720 (set (match_operand:SI 0 "register_operand" "")
6ccde948
RW
4721 (mult:SI (match_operand:SI 1 "memory_operand" "")
4722 (match_operand:SI 2 "immediate_operand" "")))]
f38840db
ZW
4723
4724 "!satisfies_constraint_K (operands[2])"
4725
4726 [(set (match_dup 3) (match_dup 1))
4727 (set (match_dup 0) (mult:SI (match_dup 3) (match_dup 2)))]
4728
4729 "")
4730@end smallexample
4731
03dda8e3
RK
4732@node Standard Names
4733@section Standard Pattern Names For Generation
4734@cindex standard pattern names
4735@cindex pattern names
4736@cindex names, pattern
4737
4738Here is a table of the instruction names that are meaningful in the RTL
4739generation pass of the compiler. Giving one of these names to an
4740instruction pattern tells the RTL generation pass that it can use the
556e0f21 4741pattern to accomplish a certain task.
03dda8e3
RK
4742
4743@table @asis
4744@cindex @code{mov@var{m}} instruction pattern
4745@item @samp{mov@var{m}}
4bd0bee9 4746Here @var{m} stands for a two-letter machine mode name, in lowercase.
03dda8e3
RK
4747This instruction pattern moves data with that machine mode from operand
47481 to operand 0. For example, @samp{movsi} moves full-word data.
4749
4750If operand 0 is a @code{subreg} with mode @var{m} of a register whose
4751own mode is wider than @var{m}, the effect of this instruction is
4752to store the specified value in the part of the register that corresponds
8feb4e28
JL
4753to mode @var{m}. Bits outside of @var{m}, but which are within the
4754same target word as the @code{subreg} are undefined. Bits which are
4755outside the target word are left unchanged.
03dda8e3
RK
4756
4757This class of patterns is special in several ways. First of all, each
65945ec1
HPN
4758of these names up to and including full word size @emph{must} be defined,
4759because there is no other way to copy a datum from one place to another.
4760If there are patterns accepting operands in larger modes,
4761@samp{mov@var{m}} must be defined for integer modes of those sizes.
03dda8e3
RK
4762
4763Second, these patterns are not used solely in the RTL generation pass.
4764Even the reload pass can generate move insns to copy values from stack
4765slots into temporary registers. When it does so, one of the operands is
4766a hard register and the other is an operand that can need to be reloaded
4767into a register.
4768
4769@findex force_reg
4770Therefore, when given such a pair of operands, the pattern must generate
4771RTL which needs no reloading and needs no temporary registers---no
4772registers other than the operands. For example, if you support the
4773pattern with a @code{define_expand}, then in such a case the
4774@code{define_expand} mustn't call @code{force_reg} or any other such
4775function which might generate new pseudo registers.
4776
4777This requirement exists even for subword modes on a RISC machine where
4778fetching those modes from memory normally requires several insns and
39ed8974 4779some temporary registers.
03dda8e3
RK
4780
4781@findex change_address
4782During reload a memory reference with an invalid address may be passed
4783as an operand. Such an address will be replaced with a valid address
4784later in the reload pass. In this case, nothing may be done with the
4785address except to use it as it stands. If it is copied, it will not be
4786replaced with a valid address. No attempt should be made to make such
4787an address into a valid address and no routine (such as
4788@code{change_address}) that will do so may be called. Note that
4789@code{general_operand} will fail when applied to such an address.
4790
4791@findex reload_in_progress
4792The global variable @code{reload_in_progress} (which must be explicitly
4793declared if required) can be used to determine whether such special
4794handling is required.
4795
4796The variety of operands that have reloads depends on the rest of the
4797machine description, but typically on a RISC machine these can only be
4798pseudo registers that did not get hard registers, while on other
4799machines explicit memory references will get optional reloads.
4800
4801If a scratch register is required to move an object to or from memory,
f1db3576
JL
4802it can be allocated using @code{gen_reg_rtx} prior to life analysis.
4803
9c34dbbf 4804If there are cases which need scratch registers during or after reload,
8a99f6f9 4805you must provide an appropriate secondary_reload target hook.
03dda8e3 4806
ef4375b2
KZ
4807@findex can_create_pseudo_p
4808The macro @code{can_create_pseudo_p} can be used to determine if it
f1db3576
JL
4809is unsafe to create new pseudo registers. If this variable is nonzero, then
4810it is unsafe to call @code{gen_reg_rtx} to allocate a new pseudo.
4811
956d6950 4812The constraints on a @samp{mov@var{m}} must permit moving any hard
03dda8e3 4813register to any other hard register provided that
f939c3e6 4814@code{TARGET_HARD_REGNO_MODE_OK} permits mode @var{m} in both registers and
de8f4b07
AS
4815@code{TARGET_REGISTER_MOVE_COST} applied to their classes returns a value
4816of 2.
03dda8e3 4817
956d6950 4818It is obligatory to support floating point @samp{mov@var{m}}
03dda8e3
RK
4819instructions into and out of any registers that can hold fixed point
4820values, because unions and structures (which have modes @code{SImode} or
4821@code{DImode}) can be in those registers and they may have floating
4822point members.
4823
956d6950 4824There may also be a need to support fixed point @samp{mov@var{m}}
03dda8e3
RK
4825instructions in and out of floating point registers. Unfortunately, I
4826have forgotten why this was so, and I don't know whether it is still
f939c3e6 4827true. If @code{TARGET_HARD_REGNO_MODE_OK} rejects fixed point values in
03dda8e3 4828floating point registers, then the constraints of the fixed point
956d6950 4829@samp{mov@var{m}} instructions must be designed to avoid ever trying to
03dda8e3
RK
4830reload into a floating point register.
4831
4832@cindex @code{reload_in} instruction pattern
4833@cindex @code{reload_out} instruction pattern
4834@item @samp{reload_in@var{m}}
4835@itemx @samp{reload_out@var{m}}
8a99f6f9
R
4836These named patterns have been obsoleted by the target hook
4837@code{secondary_reload}.
4838
03dda8e3
RK
4839Like @samp{mov@var{m}}, but used when a scratch register is required to
4840move between operand 0 and operand 1. Operand 2 describes the scratch
4841register. See the discussion of the @code{SECONDARY_RELOAD_CLASS}
4842macro in @pxref{Register Classes}.
4843
d989f648 4844There are special restrictions on the form of the @code{match_operand}s
f282ffb3 4845used in these patterns. First, only the predicate for the reload
560dbedd
RH
4846operand is examined, i.e., @code{reload_in} examines operand 1, but not
4847the predicates for operand 0 or 2. Second, there may be only one
d989f648
RH
4848alternative in the constraints. Third, only a single register class
4849letter may be used for the constraint; subsequent constraint letters
4850are ignored. As a special exception, an empty constraint string
4851matches the @code{ALL_REGS} register class. This may relieve ports
4852of the burden of defining an @code{ALL_REGS} constraint letter just
4853for these patterns.
4854
03dda8e3
RK
4855@cindex @code{movstrict@var{m}} instruction pattern
4856@item @samp{movstrict@var{m}}
4857Like @samp{mov@var{m}} except that if operand 0 is a @code{subreg}
4858with mode @var{m} of a register whose natural mode is wider,
4859the @samp{movstrict@var{m}} instruction is guaranteed not to alter
4860any of the register except the part which belongs to mode @var{m}.
4861
1e0598e2
RH
4862@cindex @code{movmisalign@var{m}} instruction pattern
4863@item @samp{movmisalign@var{m}}
4864This variant of a move pattern is designed to load or store a value
4865from a memory address that is not naturally aligned for its mode.
4866For a store, the memory will be in operand 0; for a load, the memory
4867will be in operand 1. The other operand is guaranteed not to be a
4868memory, so that it's easy to tell whether this is a load or store.
4869
4870This pattern is used by the autovectorizer, and when expanding a
4871@code{MISALIGNED_INDIRECT_REF} expression.
4872
03dda8e3
RK
4873@cindex @code{load_multiple} instruction pattern
4874@item @samp{load_multiple}
4875Load several consecutive memory locations into consecutive registers.
4876Operand 0 is the first of the consecutive registers, operand 1
4877is the first memory location, and operand 2 is a constant: the
4878number of consecutive registers.
4879
4880Define this only if the target machine really has such an instruction;
4881do not define this if the most efficient way of loading consecutive
4882registers from memory is to do them one at a time.
4883
4884On some machines, there are restrictions as to which consecutive
4885registers can be stored into memory, such as particular starting or
4886ending register numbers or only a range of valid counts. For those
4887machines, use a @code{define_expand} (@pxref{Expander Definitions})
4888and make the pattern fail if the restrictions are not met.
4889
4890Write the generated insn as a @code{parallel} with elements being a
4891@code{set} of one register from the appropriate memory location (you may
4892also need @code{use} or @code{clobber} elements). Use a
4893@code{match_parallel} (@pxref{RTL Template}) to recognize the insn. See
c9693e96 4894@file{rs6000.md} for examples of the use of this insn pattern.
03dda8e3
RK
4895
4896@cindex @samp{store_multiple} instruction pattern
4897@item @samp{store_multiple}
4898Similar to @samp{load_multiple}, but store several consecutive registers
4899into consecutive memory locations. Operand 0 is the first of the
4900consecutive memory locations, operand 1 is the first register, and
4901operand 2 is a constant: the number of consecutive registers.
4902
272c6793
RS
4903@cindex @code{vec_load_lanes@var{m}@var{n}} instruction pattern
4904@item @samp{vec_load_lanes@var{m}@var{n}}
4905Perform an interleaved load of several vectors from memory operand 1
4906into register operand 0. Both operands have mode @var{m}. The register
4907operand is viewed as holding consecutive vectors of mode @var{n},
4908while the memory operand is a flat array that contains the same number
4909of elements. The operation is equivalent to:
4910
4911@smallexample
4912int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4913for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4914 for (i = 0; i < c; i++)
4915 operand0[i][j] = operand1[j * c + i];
4916@end smallexample
4917
4918For example, @samp{vec_load_lanestiv4hi} loads 8 16-bit values
4919from memory into a register of mode @samp{TI}@. The register
4920contains two consecutive vectors of mode @samp{V4HI}@.
4921
4922This pattern can only be used if:
4923@smallexample
4924TARGET_ARRAY_MODE_SUPPORTED_P (@var{n}, @var{c})
4925@end smallexample
4926is true. GCC assumes that, if a target supports this kind of
4927instruction for some mode @var{n}, it also supports unaligned
4928loads for vectors of mode @var{n}.
4929
a54a5997
RS
4930This pattern is not allowed to @code{FAIL}.
4931
7e11fc7f
RS
4932@cindex @code{vec_mask_load_lanes@var{m}@var{n}} instruction pattern
4933@item @samp{vec_mask_load_lanes@var{m}@var{n}}
4934Like @samp{vec_load_lanes@var{m}@var{n}}, but takes an additional
4935mask operand (operand 2) that specifies which elements of the destination
4936vectors should be loaded. Other elements of the destination
4937vectors are set to zero. The operation is equivalent to:
4938
4939@smallexample
4940int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4941for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4942 if (operand2[j])
4943 for (i = 0; i < c; i++)
4944 operand0[i][j] = operand1[j * c + i];
4945 else
4946 for (i = 0; i < c; i++)
4947 operand0[i][j] = 0;
4948@end smallexample
4949
4950This pattern is not allowed to @code{FAIL}.
4951
272c6793
RS
4952@cindex @code{vec_store_lanes@var{m}@var{n}} instruction pattern
4953@item @samp{vec_store_lanes@var{m}@var{n}}
4954Equivalent to @samp{vec_load_lanes@var{m}@var{n}}, with the memory
4955and register operands reversed. That is, the instruction is
4956equivalent to:
4957
4958@smallexample
4959int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4960for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4961 for (i = 0; i < c; i++)
4962 operand0[j * c + i] = operand1[i][j];
4963@end smallexample
4964
4965for a memory operand 0 and register operand 1.
4966
a54a5997
RS
4967This pattern is not allowed to @code{FAIL}.
4968
7e11fc7f
RS
4969@cindex @code{vec_mask_store_lanes@var{m}@var{n}} instruction pattern
4970@item @samp{vec_mask_store_lanes@var{m}@var{n}}
4971Like @samp{vec_store_lanes@var{m}@var{n}}, but takes an additional
4972mask operand (operand 2) that specifies which elements of the source
4973vectors should be stored. The operation is equivalent to:
4974
4975@smallexample
4976int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4977for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4978 if (operand2[j])
4979 for (i = 0; i < c; i++)
4980 operand0[j * c + i] = operand1[i][j];
4981@end smallexample
4982
4983This pattern is not allowed to @code{FAIL}.
4984
bfaa08b7
RS
4985@cindex @code{gather_load@var{m}} instruction pattern
4986@item @samp{gather_load@var{m}}
4987Load several separate memory locations into a vector of mode @var{m}.
4988Operand 1 is a scalar base address and operand 2 is a vector of
4989offsets from that base. Operand 0 is a destination vector with the
4990same number of elements as the offset. For each element index @var{i}:
4991
4992@itemize @bullet
4993@item
4994extend the offset element @var{i} to address width, using zero
4995extension if operand 3 is 1 and sign extension if operand 3 is zero;
4996@item
4997multiply the extended offset by operand 4;
4998@item
4999add the result to the base; and
5000@item
5001load the value at that address into element @var{i} of operand 0.
5002@end itemize
5003
5004The value of operand 3 does not matter if the offsets are already
5005address width.
5006
5007@cindex @code{mask_gather_load@var{m}} instruction pattern
5008@item @samp{mask_gather_load@var{m}}
5009Like @samp{gather_load@var{m}}, but takes an extra mask operand as
5010operand 5. Bit @var{i} of the mask is set if element @var{i}
5011of the result should be loaded from memory and clear if element @var{i}
5012of the result should be set to zero.
5013
f307441a
RS
5014@cindex @code{scatter_store@var{m}} instruction pattern
5015@item @samp{scatter_store@var{m}}
5016Store a vector of mode @var{m} into several distinct memory locations.
5017Operand 0 is a scalar base address and operand 1 is a vector of offsets
5018from that base. Operand 4 is the vector of values that should be stored,
5019which has the same number of elements as the offset. For each element
5020index @var{i}:
5021
5022@itemize @bullet
5023@item
5024extend the offset element @var{i} to address width, using zero
5025extension if operand 2 is 1 and sign extension if operand 2 is zero;
5026@item
5027multiply the extended offset by operand 3;
5028@item
5029add the result to the base; and
5030@item
5031store element @var{i} of operand 4 to that address.
5032@end itemize
5033
5034The value of operand 2 does not matter if the offsets are already
5035address width.
5036
5037@cindex @code{mask_scatter_store@var{m}} instruction pattern
5038@item @samp{mask_scatter_store@var{m}}
5039Like @samp{scatter_store@var{m}}, but takes an extra mask operand as
5040operand 5. Bit @var{i} of the mask is set if element @var{i}
5041of the result should be stored to memory.
5042
ef1140a9
JH
5043@cindex @code{vec_set@var{m}} instruction pattern
5044@item @samp{vec_set@var{m}}
5045Set given field in the vector value. Operand 0 is the vector to modify,
5046operand 1 is new value of field and operand 2 specify the field index.
5047
ff03930a
JJ
5048@cindex @code{vec_extract@var{m}@var{n}} instruction pattern
5049@item @samp{vec_extract@var{m}@var{n}}
ef1140a9 5050Extract given field from the vector value. Operand 1 is the vector, operand 2
ff03930a
JJ
5051specify field index and operand 0 place to store value into. The
5052@var{n} mode is the mode of the field or vector of fields that should be
5053extracted, should be either element mode of the vector mode @var{m}, or
5054a vector mode with the same element mode and smaller number of elements.
5055If @var{n} is a vector mode, the index is counted in units of that mode.
5056
5057@cindex @code{vec_init@var{m}@var{n}} instruction pattern
5058@item @samp{vec_init@var{m}@var{n}}
425a2bde 5059Initialize the vector to given values. Operand 0 is the vector to initialize
ff03930a
JJ
5060and operand 1 is parallel containing values for individual fields. The
5061@var{n} mode is the mode of the elements, should be either element mode of
5062the vector mode @var{m}, or a vector mode with the same element mode and
5063smaller number of elements.
ef1140a9 5064
be4c1d4a
RS
5065@cindex @code{vec_duplicate@var{m}} instruction pattern
5066@item @samp{vec_duplicate@var{m}}
5067Initialize vector output operand 0 so that each element has the value given
5068by scalar input operand 1. The vector has mode @var{m} and the scalar has
5069the mode appropriate for one element of @var{m}.
5070
5071This pattern only handles duplicates of non-constant inputs. Constant
5072vectors go through the @code{mov@var{m}} pattern instead.
5073
5074This pattern is not allowed to @code{FAIL}.
5075
9adab579
RS
5076@cindex @code{vec_series@var{m}} instruction pattern
5077@item @samp{vec_series@var{m}}
5078Initialize vector output operand 0 so that element @var{i} is equal to
5079operand 1 plus @var{i} times operand 2. In other words, create a linear
5080series whose base value is operand 1 and whose step is operand 2.
5081
5082The vector output has mode @var{m} and the scalar inputs have the mode
5083appropriate for one element of @var{m}. This pattern is not used for
5084floating-point vectors, in order to avoid having to specify the
5085rounding behavior for @var{i} > 1.
5086
5087This pattern is not allowed to @code{FAIL}.
5088
7cfb4d93
RS
5089@cindex @code{while_ult@var{m}@var{n}} instruction pattern
5090@item @code{while_ult@var{m}@var{n}}
5091Set operand 0 to a mask that is true while incrementing operand 1
5092gives a value that is less than operand 2. Operand 0 has mode @var{n}
5093and operands 1 and 2 are scalar integers of mode @var{m}.
5094The operation is equivalent to:
5095
5096@smallexample
5097operand0[0] = operand1 < operand2;
5098for (i = 1; i < GET_MODE_NUNITS (@var{n}); i++)
5099 operand0[i] = operand0[i - 1] && (operand1 + i < operand2);
5100@end smallexample
5101
12fb875f
IE
5102@cindex @code{vec_cmp@var{m}@var{n}} instruction pattern
5103@item @samp{vec_cmp@var{m}@var{n}}
5104Output a vector comparison. Operand 0 of mode @var{n} is the destination for
5105predicate in operand 1 which is a signed vector comparison with operands of
5106mode @var{m} in operands 2 and 3. Predicate is computed by element-wise
5107evaluation of the vector comparison with a truth value of all-ones and a false
5108value of all-zeros.
5109
5110@cindex @code{vec_cmpu@var{m}@var{n}} instruction pattern
5111@item @samp{vec_cmpu@var{m}@var{n}}
5112Similar to @code{vec_cmp@var{m}@var{n}} but perform unsigned vector comparison.
5113
96592eed
JJ
5114@cindex @code{vec_cmpeq@var{m}@var{n}} instruction pattern
5115@item @samp{vec_cmpeq@var{m}@var{n}}
5116Similar to @code{vec_cmp@var{m}@var{n}} but perform equality or non-equality
5117vector comparison only. If @code{vec_cmp@var{m}@var{n}}
5118or @code{vec_cmpu@var{m}@var{n}} instruction pattern is supported,
5119it will be preferred over @code{vec_cmpeq@var{m}@var{n}}, so there is
5120no need to define this instruction pattern if the others are supported.
5121
e9e1d143
RG
5122@cindex @code{vcond@var{m}@var{n}} instruction pattern
5123@item @samp{vcond@var{m}@var{n}}
5124Output a conditional vector move. Operand 0 is the destination to
5125receive a combination of operand 1 and operand 2, which are of mode @var{m},
12fb875f 5126dependent on the outcome of the predicate in operand 3 which is a signed
e9e1d143
RG
5127vector comparison with operands of mode @var{n} in operands 4 and 5. The
5128modes @var{m} and @var{n} should have the same size. Operand 0
5129will be set to the value @var{op1} & @var{msk} | @var{op2} & ~@var{msk}
5130where @var{msk} is computed by element-wise evaluation of the vector
5131comparison with a truth value of all-ones and a false value of all-zeros.
5132
12fb875f
IE
5133@cindex @code{vcondu@var{m}@var{n}} instruction pattern
5134@item @samp{vcondu@var{m}@var{n}}
5135Similar to @code{vcond@var{m}@var{n}} but performs unsigned vector
5136comparison.
5137
96592eed
JJ
5138@cindex @code{vcondeq@var{m}@var{n}} instruction pattern
5139@item @samp{vcondeq@var{m}@var{n}}
5140Similar to @code{vcond@var{m}@var{n}} but performs equality or
5141non-equality vector comparison only. If @code{vcond@var{m}@var{n}}
5142or @code{vcondu@var{m}@var{n}} instruction pattern is supported,
5143it will be preferred over @code{vcondeq@var{m}@var{n}}, so there is
5144no need to define this instruction pattern if the others are supported.
5145
12fb875f
IE
5146@cindex @code{vcond_mask_@var{m}@var{n}} instruction pattern
5147@item @samp{vcond_mask_@var{m}@var{n}}
5148Similar to @code{vcond@var{m}@var{n}} but operand 3 holds a pre-computed
5149result of vector comparison.
5150
5151@cindex @code{maskload@var{m}@var{n}} instruction pattern
5152@item @samp{maskload@var{m}@var{n}}
5153Perform a masked load of vector from memory operand 1 of mode @var{m}
5154into register operand 0. Mask is provided in register operand 2 of
5155mode @var{n}.
5156
a54a5997
RS
5157This pattern is not allowed to @code{FAIL}.
5158
12fb875f 5159@cindex @code{maskstore@var{m}@var{n}} instruction pattern
a54a5997 5160@item @samp{maskstore@var{m}@var{n}}
12fb875f
IE
5161Perform a masked store of vector from register operand 1 of mode @var{m}
5162into memory operand 0. Mask is provided in register operand 2 of
5163mode @var{n}.
5164
a54a5997
RS
5165This pattern is not allowed to @code{FAIL}.
5166
2205ed25
RH
5167@cindex @code{vec_perm@var{m}} instruction pattern
5168@item @samp{vec_perm@var{m}}
5169Output a (variable) vector permutation. Operand 0 is the destination
5170to receive elements from operand 1 and operand 2, which are of mode
5171@var{m}. Operand 3 is the @dfn{selector}. It is an integral mode
5172vector of the same width and number of elements as mode @var{m}.
5173
5174The input elements are numbered from 0 in operand 1 through
5175@math{2*@var{N}-1} in operand 2. The elements of the selector must
5176be computed modulo @math{2*@var{N}}. Note that if
5177@code{rtx_equal_p(operand1, operand2)}, this can be implemented
5178with just operand 1 and selector elements modulo @var{N}.
5179
d7943c8b
RH
5180In order to make things easy for a number of targets, if there is no
5181@samp{vec_perm} pattern for mode @var{m}, but there is for mode @var{q}
5182where @var{q} is a vector of @code{QImode} of the same width as @var{m},
5183the middle-end will lower the mode @var{m} @code{VEC_PERM_EXPR} to
5184mode @var{q}.
5185
f151c9e1
RS
5186See also @code{TARGET_VECTORIZER_VEC_PERM_CONST}, which performs
5187the analogous operation for constant selectors.
2205ed25 5188
759915ca
EC
5189@cindex @code{push@var{m}1} instruction pattern
5190@item @samp{push@var{m}1}
299c5111 5191Output a push instruction. Operand 0 is value to push. Used only when
38f4324c
JH
5192@code{PUSH_ROUNDING} is defined. For historical reason, this pattern may be
5193missing and in such case an @code{mov} expander is used instead, with a
6e9aac46 5194@code{MEM} expression forming the push operation. The @code{mov} expander
38f4324c
JH
5195method is deprecated.
5196
03dda8e3
RK
5197@cindex @code{add@var{m}3} instruction pattern
5198@item @samp{add@var{m}3}
5199Add operand 2 and operand 1, storing the result in operand 0. All operands
5200must have mode @var{m}. This can be used even on two-address machines, by
5201means of constraints requiring operands 1 and 0 to be the same location.
5202
0f996086
CF
5203@cindex @code{ssadd@var{m}3} instruction pattern
5204@cindex @code{usadd@var{m}3} instruction pattern
03dda8e3 5205@cindex @code{sub@var{m}3} instruction pattern
0f996086
CF
5206@cindex @code{sssub@var{m}3} instruction pattern
5207@cindex @code{ussub@var{m}3} instruction pattern
03dda8e3 5208@cindex @code{mul@var{m}3} instruction pattern
0f996086
CF
5209@cindex @code{ssmul@var{m}3} instruction pattern
5210@cindex @code{usmul@var{m}3} instruction pattern
03dda8e3 5211@cindex @code{div@var{m}3} instruction pattern
0f996086 5212@cindex @code{ssdiv@var{m}3} instruction pattern
03dda8e3 5213@cindex @code{udiv@var{m}3} instruction pattern
0f996086 5214@cindex @code{usdiv@var{m}3} instruction pattern
03dda8e3
RK
5215@cindex @code{mod@var{m}3} instruction pattern
5216@cindex @code{umod@var{m}3} instruction pattern
03dda8e3
RK
5217@cindex @code{umin@var{m}3} instruction pattern
5218@cindex @code{umax@var{m}3} instruction pattern
5219@cindex @code{and@var{m}3} instruction pattern
5220@cindex @code{ior@var{m}3} instruction pattern
5221@cindex @code{xor@var{m}3} instruction pattern
0f996086 5222@item @samp{ssadd@var{m}3}, @samp{usadd@var{m}3}
f457c50c
AS
5223@itemx @samp{sub@var{m}3}, @samp{sssub@var{m}3}, @samp{ussub@var{m}3}
5224@itemx @samp{mul@var{m}3}, @samp{ssmul@var{m}3}, @samp{usmul@var{m}3}
0f996086
CF
5225@itemx @samp{div@var{m}3}, @samp{ssdiv@var{m}3}
5226@itemx @samp{udiv@var{m}3}, @samp{usdiv@var{m}3}
7ae4d8d4
RH
5227@itemx @samp{mod@var{m}3}, @samp{umod@var{m}3}
5228@itemx @samp{umin@var{m}3}, @samp{umax@var{m}3}
03dda8e3
RK
5229@itemx @samp{and@var{m}3}, @samp{ior@var{m}3}, @samp{xor@var{m}3}
5230Similar, for other arithmetic operations.
7ae4d8d4 5231
481efdd9
EB
5232@cindex @code{addv@var{m}4} instruction pattern
5233@item @samp{addv@var{m}4}
5234Like @code{add@var{m}3} but takes a @code{code_label} as operand 3 and
5235emits code to jump to it if signed overflow occurs during the addition.
5236This pattern is used to implement the built-in functions performing
5237signed integer addition with overflow checking.
5238
5239@cindex @code{subv@var{m}4} instruction pattern
5240@cindex @code{mulv@var{m}4} instruction pattern
5241@item @samp{subv@var{m}4}, @samp{mulv@var{m}4}
5242Similar, for other signed arithmetic operations.
5243
cde9d596
RH
5244@cindex @code{uaddv@var{m}4} instruction pattern
5245@item @samp{uaddv@var{m}4}
5246Like @code{addv@var{m}4} but for unsigned addition. That is to
5247say, the operation is the same as signed addition but the jump
481efdd9
EB
5248is taken only on unsigned overflow.
5249
cde9d596
RH
5250@cindex @code{usubv@var{m}4} instruction pattern
5251@cindex @code{umulv@var{m}4} instruction pattern
5252@item @samp{usubv@var{m}4}, @samp{umulv@var{m}4}
5253Similar, for other unsigned arithmetic operations.
5254
481efdd9
EB
5255@cindex @code{addptr@var{m}3} instruction pattern
5256@item @samp{addptr@var{m}3}
5257Like @code{add@var{m}3} but is guaranteed to only be used for address
5258calculations. The expanded code is not allowed to clobber the
5259condition code. It only needs to be defined if @code{add@var{m}3}
5260sets the condition code. If adds used for address calculations and
5261normal adds are not compatible it is required to expand a distinct
630ba2fd 5262pattern (e.g.@: using an unspec). The pattern is used by LRA to emit
481efdd9
EB
5263address calculations. @code{add@var{m}3} is used if
5264@code{addptr@var{m}3} is not defined.
5265
1b1562a5
MM
5266@cindex @code{fma@var{m}4} instruction pattern
5267@item @samp{fma@var{m}4}
5268Multiply operand 2 and operand 1, then add operand 3, storing the
d6373302
KZ
5269result in operand 0 without doing an intermediate rounding step. All
5270operands must have mode @var{m}. This pattern is used to implement
5271the @code{fma}, @code{fmaf}, and @code{fmal} builtin functions from
5272the ISO C99 standard.
1b1562a5 5273
16949072
RG
5274@cindex @code{fms@var{m}4} instruction pattern
5275@item @samp{fms@var{m}4}
5276Like @code{fma@var{m}4}, except operand 3 subtracted from the
5277product instead of added to the product. This is represented
5278in the rtl as
5279
5280@smallexample
5281(fma:@var{m} @var{op1} @var{op2} (neg:@var{m} @var{op3}))
5282@end smallexample
5283
5284@cindex @code{fnma@var{m}4} instruction pattern
5285@item @samp{fnma@var{m}4}
5286Like @code{fma@var{m}4} except that the intermediate product
5287is negated before being added to operand 3. This is represented
5288in the rtl as
5289
5290@smallexample
5291(fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} @var{op3})
5292@end smallexample
5293
5294@cindex @code{fnms@var{m}4} instruction pattern
5295@item @samp{fnms@var{m}4}
5296Like @code{fms@var{m}4} except that the intermediate product
5297is negated before subtracting operand 3. This is represented
5298in the rtl as
5299
5300@smallexample
5301(fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} (neg:@var{m} @var{op3}))
5302@end smallexample
5303
b71b019a
JH
5304@cindex @code{min@var{m}3} instruction pattern
5305@cindex @code{max@var{m}3} instruction pattern
7ae4d8d4
RH
5306@item @samp{smin@var{m}3}, @samp{smax@var{m}3}
5307Signed minimum and maximum operations. When used with floating point,
5308if both operands are zeros, or if either operand is @code{NaN}, then
5309it is unspecified which of the two operands is returned as the result.
03dda8e3 5310
ccb57bb0
DS
5311@cindex @code{fmin@var{m}3} instruction pattern
5312@cindex @code{fmax@var{m}3} instruction pattern
5313@item @samp{fmin@var{m}3}, @samp{fmax@var{m}3}
5314IEEE-conformant minimum and maximum operations. If one operand is a quiet
5315@code{NaN}, then the other operand is returned. If both operands are quiet
5316@code{NaN}, then a quiet @code{NaN} is returned. In the case when gcc supports
18ea359a 5317signaling @code{NaN} (-fsignaling-nans) an invalid floating point exception is
ccb57bb0
DS
5318raised and a quiet @code{NaN} is returned.
5319
a54a5997
RS
5320All operands have mode @var{m}, which is a scalar or vector
5321floating-point mode. These patterns are not allowed to @code{FAIL}.
5322
d43a252e
AL
5323@cindex @code{reduc_smin_scal_@var{m}} instruction pattern
5324@cindex @code{reduc_smax_scal_@var{m}} instruction pattern
5325@item @samp{reduc_smin_scal_@var{m}}, @samp{reduc_smax_scal_@var{m}}
5326Find the signed minimum/maximum of the elements of a vector. The vector is
5327operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5328the elements of the input vector.
5329
5330@cindex @code{reduc_umin_scal_@var{m}} instruction pattern
5331@cindex @code{reduc_umax_scal_@var{m}} instruction pattern
5332@item @samp{reduc_umin_scal_@var{m}}, @samp{reduc_umax_scal_@var{m}}
5333Find the unsigned minimum/maximum of the elements of a vector. The vector is
5334operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5335the elements of the input vector.
5336
5337@cindex @code{reduc_plus_scal_@var{m}} instruction pattern
5338@item @samp{reduc_plus_scal_@var{m}}
5339Compute the sum of the elements of a vector. The vector is operand 1, and
5340operand 0 is the scalar result, with mode equal to the mode of the elements of
5341the input vector.
61abee65 5342
898f07b0
RS
5343@cindex @code{reduc_and_scal_@var{m}} instruction pattern
5344@item @samp{reduc_and_scal_@var{m}}
5345@cindex @code{reduc_ior_scal_@var{m}} instruction pattern
5346@itemx @samp{reduc_ior_scal_@var{m}}
5347@cindex @code{reduc_xor_scal_@var{m}} instruction pattern
5348@itemx @samp{reduc_xor_scal_@var{m}}
5349Compute the bitwise @code{AND}/@code{IOR}/@code{XOR} reduction of the elements
5350of a vector of mode @var{m}. Operand 1 is the vector input and operand 0
5351is the scalar result. The mode of the scalar result is the same as one
5352element of @var{m}.
5353
bfe1bb57
RS
5354@cindex @code{extract_last_@var{m}} instruction pattern
5355@item @code{extract_last_@var{m}}
5356Find the last set bit in mask operand 1 and extract the associated element
5357of vector operand 2. Store the result in scalar operand 0. Operand 2
5358has vector mode @var{m} while operand 0 has the mode appropriate for one
5359element of @var{m}. Operand 1 has the usual mask mode for vectors of mode
5360@var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5361
bb6c2b68
RS
5362@cindex @code{fold_extract_last_@var{m}} instruction pattern
5363@item @code{fold_extract_last_@var{m}}
5364If any bits of mask operand 2 are set, find the last set bit, extract
5365the associated element from vector operand 3, and store the result
5366in operand 0. Store operand 1 in operand 0 otherwise. Operand 3
5367has mode @var{m} and operands 0 and 1 have the mode appropriate for
5368one element of @var{m}. Operand 2 has the usual mask mode for vectors
5369of mode @var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5370
b781a135
RS
5371@cindex @code{fold_left_plus_@var{m}} instruction pattern
5372@item @code{fold_left_plus_@var{m}}
5373Take scalar operand 1 and successively add each element from vector
5374operand 2. Store the result in scalar operand 0. The vector has
5375mode @var{m} and the scalars have the mode appropriate for one
5376element of @var{m}. The operation is strictly in-order: there is
5377no reassociation.
5378
20f06221
DN
5379@cindex @code{sdot_prod@var{m}} instruction pattern
5380@item @samp{sdot_prod@var{m}}
5381@cindex @code{udot_prod@var{m}} instruction pattern
544aee0d 5382@itemx @samp{udot_prod@var{m}}
ff2ce160
MS
5383Compute the sum of the products of two signed/unsigned elements.
5384Operand 1 and operand 2 are of the same mode. Their product, which is of a
5385wider mode, is computed and added to operand 3. Operand 3 is of a mode equal or
20f06221 5386wider than the mode of the product. The result is placed in operand 0, which
ff2ce160 5387is of the same mode as operand 3.
20f06221 5388
79d652a5
CH
5389@cindex @code{ssad@var{m}} instruction pattern
5390@item @samp{ssad@var{m}}
5391@cindex @code{usad@var{m}} instruction pattern
5392@item @samp{usad@var{m}}
5393Compute the sum of absolute differences of two signed/unsigned elements.
5394Operand 1 and operand 2 are of the same mode. Their absolute difference, which
5395is of a wider mode, is computed and added to operand 3. Operand 3 is of a mode
5396equal or wider than the mode of the absolute difference. The result is placed
5397in operand 0, which is of the same mode as operand 3.
5398
97532d1a
MC
5399@cindex @code{widen_ssum@var{m3}} instruction pattern
5400@item @samp{widen_ssum@var{m3}}
5401@cindex @code{widen_usum@var{m3}} instruction pattern
5402@itemx @samp{widen_usum@var{m3}}
ff2ce160 5403Operands 0 and 2 are of the same mode, which is wider than the mode of
20f06221
DN
5404operand 1. Add operand 1 to operand 2 and place the widened result in
5405operand 0. (This is used express accumulation of elements into an accumulator
5406of a wider mode.)
5407
f1739b48
RS
5408@cindex @code{vec_shl_insert_@var{m}} instruction pattern
5409@item @samp{vec_shl_insert_@var{m}}
630ba2fd 5410Shift the elements in vector input operand 1 left one element (i.e.@:
f1739b48
RS
5411away from element 0) and fill the vacated element 0 with the scalar
5412in operand 2. Store the result in vector output operand 0. Operands
54130 and 1 have mode @var{m} and operand 2 has the mode appropriate for
5414one element of @var{m}.
5415
61abee65 5416@cindex @code{vec_shr_@var{m}} instruction pattern
e29dfbf0 5417@item @samp{vec_shr_@var{m}}
630ba2fd 5418Whole vector right shift in bits, i.e.@: towards element 0.
61abee65 5419Operand 1 is a vector to be shifted.
759915ca 5420Operand 2 is an integer shift amount in bits.
61abee65
DN
5421Operand 0 is where the resulting shifted vector is stored.
5422The output and input vectors should have the same modes.
5423
8115817b
UB
5424@cindex @code{vec_pack_trunc_@var{m}} instruction pattern
5425@item @samp{vec_pack_trunc_@var{m}}
5426Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5427are vectors of the same mode having N integral or floating point elements
0ee2ea09 5428of size S@. Operand 0 is the resulting vector in which 2*N elements of
8115817b
UB
5429size N/2 are concatenated after narrowing them down using truncation.
5430
4714942e
JJ
5431@cindex @code{vec_pack_sbool_trunc_@var{m}} instruction pattern
5432@item @samp{vec_pack_sbool_trunc_@var{m}}
5433Narrow and merge the elements of two vectors. Operands 1 and 2 are vectors
5434of the same type having N boolean elements. Operand 0 is the resulting
5435vector in which 2*N elements are concatenated. The last operand (operand 3)
5436is the number of elements in the output vector 2*N as a @code{CONST_INT}.
5437This instruction pattern is used when all the vector input and output
5438operands have the same scalar mode @var{m} and thus using
5439@code{vec_pack_trunc_@var{m}} would be ambiguous.
5440
89d67cca
DN
5441@cindex @code{vec_pack_ssat_@var{m}} instruction pattern
5442@cindex @code{vec_pack_usat_@var{m}} instruction pattern
8115817b
UB
5443@item @samp{vec_pack_ssat_@var{m}}, @samp{vec_pack_usat_@var{m}}
5444Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5445are vectors of the same mode having N integral elements of size S.
89d67cca 5446Operand 0 is the resulting vector in which the elements of the two input
8115817b
UB
5447vectors are concatenated after narrowing them down using signed/unsigned
5448saturating arithmetic.
89d67cca 5449
d9987fb4
UB
5450@cindex @code{vec_pack_sfix_trunc_@var{m}} instruction pattern
5451@cindex @code{vec_pack_ufix_trunc_@var{m}} instruction pattern
5452@item @samp{vec_pack_sfix_trunc_@var{m}}, @samp{vec_pack_ufix_trunc_@var{m}}
5453Narrow, convert to signed/unsigned integral type and merge the elements
5454of two vectors. Operands 1 and 2 are vectors of the same mode having N
0ee2ea09 5455floating point elements of size S@. Operand 0 is the resulting vector
d9987fb4
UB
5456in which 2*N elements of size N/2 are concatenated.
5457
1bda738b
JJ
5458@cindex @code{vec_packs_float_@var{m}} instruction pattern
5459@cindex @code{vec_packu_float_@var{m}} instruction pattern
5460@item @samp{vec_packs_float_@var{m}}, @samp{vec_packu_float_@var{m}}
5461Narrow, convert to floating point type and merge the elements
5462of two vectors. Operands 1 and 2 are vectors of the same mode having N
5463signed/unsigned integral elements of size S@. Operand 0 is the resulting vector
5464in which 2*N elements of size N/2 are concatenated.
5465
89d67cca
DN
5466@cindex @code{vec_unpacks_hi_@var{m}} instruction pattern
5467@cindex @code{vec_unpacks_lo_@var{m}} instruction pattern
8115817b
UB
5468@item @samp{vec_unpacks_hi_@var{m}}, @samp{vec_unpacks_lo_@var{m}}
5469Extract and widen (promote) the high/low part of a vector of signed
5470integral or floating point elements. The input vector (operand 1) has N
0ee2ea09 5471elements of size S@. Widen (promote) the high/low elements of the vector
8115817b
UB
5472using signed or floating point extension and place the resulting N/2
5473values of size 2*S in the output vector (operand 0).
5474
89d67cca
DN
5475@cindex @code{vec_unpacku_hi_@var{m}} instruction pattern
5476@cindex @code{vec_unpacku_lo_@var{m}} instruction pattern
8115817b
UB
5477@item @samp{vec_unpacku_hi_@var{m}}, @samp{vec_unpacku_lo_@var{m}}
5478Extract and widen (promote) the high/low part of a vector of unsigned
5479integral elements. The input vector (operand 1) has N elements of size S.
5480Widen (promote) the high/low elements of the vector using zero extension and
5481place the resulting N/2 values of size 2*S in the output vector (operand 0).
89d67cca 5482
4714942e
JJ
5483@cindex @code{vec_unpacks_sbool_hi_@var{m}} instruction pattern
5484@cindex @code{vec_unpacks_sbool_lo_@var{m}} instruction pattern
5485@item @samp{vec_unpacks_sbool_hi_@var{m}}, @samp{vec_unpacks_sbool_lo_@var{m}}
5486Extract the high/low part of a vector of boolean elements that have scalar
5487mode @var{m}. The input vector (operand 1) has N elements, the output
5488vector (operand 0) has N/2 elements. The last operand (operand 2) is the
5489number of elements of the input vector N as a @code{CONST_INT}. These
5490patterns are used if both the input and output vectors have the same scalar
5491mode @var{m} and thus using @code{vec_unpacks_hi_@var{m}} or
5492@code{vec_unpacks_lo_@var{m}} would be ambiguous.
5493
d9987fb4
UB
5494@cindex @code{vec_unpacks_float_hi_@var{m}} instruction pattern
5495@cindex @code{vec_unpacks_float_lo_@var{m}} instruction pattern
5496@cindex @code{vec_unpacku_float_hi_@var{m}} instruction pattern
5497@cindex @code{vec_unpacku_float_lo_@var{m}} instruction pattern
5498@item @samp{vec_unpacks_float_hi_@var{m}}, @samp{vec_unpacks_float_lo_@var{m}}
5499@itemx @samp{vec_unpacku_float_hi_@var{m}}, @samp{vec_unpacku_float_lo_@var{m}}
5500Extract, convert to floating point type and widen the high/low part of a
5501vector of signed/unsigned integral elements. The input vector (operand 1)
0ee2ea09 5502has N elements of size S@. Convert the high/low elements of the vector using
d9987fb4
UB
5503floating point conversion and place the resulting N/2 values of size 2*S in
5504the output vector (operand 0).
5505
1bda738b
JJ
5506@cindex @code{vec_unpack_sfix_trunc_hi_@var{m}} instruction pattern
5507@cindex @code{vec_unpack_sfix_trunc_lo_@var{m}} instruction pattern
5508@cindex @code{vec_unpack_ufix_trunc_hi_@var{m}} instruction pattern
5509@cindex @code{vec_unpack_ufix_trunc_lo_@var{m}} instruction pattern
5510@item @samp{vec_unpack_sfix_trunc_hi_@var{m}},
5511@itemx @samp{vec_unpack_sfix_trunc_lo_@var{m}}
5512@itemx @samp{vec_unpack_ufix_trunc_hi_@var{m}}
5513@itemx @samp{vec_unpack_ufix_trunc_lo_@var{m}}
5514Extract, convert to signed/unsigned integer type and widen the high/low part of a
5515vector of floating point elements. The input vector (operand 1)
5516has N elements of size S@. Convert the high/low elements of the vector
5517to integers and place the resulting N/2 values of size 2*S in
5518the output vector (operand 0).
5519
89d67cca 5520@cindex @code{vec_widen_umult_hi_@var{m}} instruction pattern
3f30a9a6 5521@cindex @code{vec_widen_umult_lo_@var{m}} instruction pattern
89d67cca
DN
5522@cindex @code{vec_widen_smult_hi_@var{m}} instruction pattern
5523@cindex @code{vec_widen_smult_lo_@var{m}} instruction pattern
3f30a9a6
RH
5524@cindex @code{vec_widen_umult_even_@var{m}} instruction pattern
5525@cindex @code{vec_widen_umult_odd_@var{m}} instruction pattern
5526@cindex @code{vec_widen_smult_even_@var{m}} instruction pattern
5527@cindex @code{vec_widen_smult_odd_@var{m}} instruction pattern
d9987fb4
UB
5528@item @samp{vec_widen_umult_hi_@var{m}}, @samp{vec_widen_umult_lo_@var{m}}
5529@itemx @samp{vec_widen_smult_hi_@var{m}}, @samp{vec_widen_smult_lo_@var{m}}
3f30a9a6
RH
5530@itemx @samp{vec_widen_umult_even_@var{m}}, @samp{vec_widen_umult_odd_@var{m}}
5531@itemx @samp{vec_widen_smult_even_@var{m}}, @samp{vec_widen_smult_odd_@var{m}}
8115817b 5532Signed/Unsigned widening multiplication. The two inputs (operands 1 and 2)
0ee2ea09 5533are vectors with N signed/unsigned elements of size S@. Multiply the high/low
3f30a9a6 5534or even/odd elements of the two vectors, and put the N/2 products of size 2*S
4a271b7e
BM
5535in the output vector (operand 0). A target shouldn't implement even/odd pattern
5536pair if it is less efficient than lo/hi one.
89d67cca 5537
36ba4aae
IR
5538@cindex @code{vec_widen_ushiftl_hi_@var{m}} instruction pattern
5539@cindex @code{vec_widen_ushiftl_lo_@var{m}} instruction pattern
5540@cindex @code{vec_widen_sshiftl_hi_@var{m}} instruction pattern
5541@cindex @code{vec_widen_sshiftl_lo_@var{m}} instruction pattern
5542@item @samp{vec_widen_ushiftl_hi_@var{m}}, @samp{vec_widen_ushiftl_lo_@var{m}}
5543@itemx @samp{vec_widen_sshiftl_hi_@var{m}}, @samp{vec_widen_sshiftl_lo_@var{m}}
5544Signed/Unsigned widening shift left. The first input (operand 1) is a vector
5545with N signed/unsigned elements of size S@. Operand 2 is a constant. Shift
5546the high/low elements of operand 1, and put the N/2 results of size 2*S in the
5547output vector (operand 0).
5548
03dda8e3
RK
5549@cindex @code{mulhisi3} instruction pattern
5550@item @samp{mulhisi3}
5551Multiply operands 1 and 2, which have mode @code{HImode}, and store
5552a @code{SImode} product in operand 0.
5553
5554@cindex @code{mulqihi3} instruction pattern
5555@cindex @code{mulsidi3} instruction pattern
5556@item @samp{mulqihi3}, @samp{mulsidi3}
5557Similar widening-multiplication instructions of other widths.
5558
5559@cindex @code{umulqihi3} instruction pattern
5560@cindex @code{umulhisi3} instruction pattern
5561@cindex @code{umulsidi3} instruction pattern
5562@item @samp{umulqihi3}, @samp{umulhisi3}, @samp{umulsidi3}
5563Similar widening-multiplication instructions that do unsigned
5564multiplication.
5565
8b44057d
BS
5566@cindex @code{usmulqihi3} instruction pattern
5567@cindex @code{usmulhisi3} instruction pattern
5568@cindex @code{usmulsidi3} instruction pattern
5569@item @samp{usmulqihi3}, @samp{usmulhisi3}, @samp{usmulsidi3}
5570Similar widening-multiplication instructions that interpret the first
5571operand as unsigned and the second operand as signed, then do a signed
5572multiplication.
5573
03dda8e3 5574@cindex @code{smul@var{m}3_highpart} instruction pattern
759c58af 5575@item @samp{smul@var{m}3_highpart}
03dda8e3
RK
5576Perform a signed multiplication of operands 1 and 2, which have mode
5577@var{m}, and store the most significant half of the product in operand 0.
5578The least significant half of the product is discarded.
5579
5580@cindex @code{umul@var{m}3_highpart} instruction pattern
5581@item @samp{umul@var{m}3_highpart}
5582Similar, but the multiplication is unsigned.
5583
7f9844ca
RS
5584@cindex @code{madd@var{m}@var{n}4} instruction pattern
5585@item @samp{madd@var{m}@var{n}4}
5586Multiply operands 1 and 2, sign-extend them to mode @var{n}, add
5587operand 3, and store the result in operand 0. Operands 1 and 2
5588have mode @var{m} and operands 0 and 3 have mode @var{n}.
0f996086 5589Both modes must be integer or fixed-point modes and @var{n} must be twice
7f9844ca
RS
5590the size of @var{m}.
5591
5592In other words, @code{madd@var{m}@var{n}4} is like
5593@code{mul@var{m}@var{n}3} except that it also adds operand 3.
5594
5595These instructions are not allowed to @code{FAIL}.
5596
5597@cindex @code{umadd@var{m}@var{n}4} instruction pattern
5598@item @samp{umadd@var{m}@var{n}4}
5599Like @code{madd@var{m}@var{n}4}, but zero-extend the multiplication
5600operands instead of sign-extending them.
5601
0f996086
CF
5602@cindex @code{ssmadd@var{m}@var{n}4} instruction pattern
5603@item @samp{ssmadd@var{m}@var{n}4}
5604Like @code{madd@var{m}@var{n}4}, but all involved operations must be
5605signed-saturating.
5606
5607@cindex @code{usmadd@var{m}@var{n}4} instruction pattern
5608@item @samp{usmadd@var{m}@var{n}4}
5609Like @code{umadd@var{m}@var{n}4}, but all involved operations must be
5610unsigned-saturating.
5611
14661f36
CF
5612@cindex @code{msub@var{m}@var{n}4} instruction pattern
5613@item @samp{msub@var{m}@var{n}4}
5614Multiply operands 1 and 2, sign-extend them to mode @var{n}, subtract the
5615result from operand 3, and store the result in operand 0. Operands 1 and 2
5616have mode @var{m} and operands 0 and 3 have mode @var{n}.
0f996086 5617Both modes must be integer or fixed-point modes and @var{n} must be twice
14661f36
CF
5618the size of @var{m}.
5619
5620In other words, @code{msub@var{m}@var{n}4} is like
5621@code{mul@var{m}@var{n}3} except that it also subtracts the result
5622from operand 3.
5623
5624These instructions are not allowed to @code{FAIL}.
5625
5626@cindex @code{umsub@var{m}@var{n}4} instruction pattern
5627@item @samp{umsub@var{m}@var{n}4}
5628Like @code{msub@var{m}@var{n}4}, but zero-extend the multiplication
5629operands instead of sign-extending them.
5630
0f996086
CF
5631@cindex @code{ssmsub@var{m}@var{n}4} instruction pattern
5632@item @samp{ssmsub@var{m}@var{n}4}
5633Like @code{msub@var{m}@var{n}4}, but all involved operations must be
5634signed-saturating.
5635
5636@cindex @code{usmsub@var{m}@var{n}4} instruction pattern
5637@item @samp{usmsub@var{m}@var{n}4}
5638Like @code{umsub@var{m}@var{n}4}, but all involved operations must be
5639unsigned-saturating.
5640
03dda8e3
RK
5641@cindex @code{divmod@var{m}4} instruction pattern
5642@item @samp{divmod@var{m}4}
5643Signed division that produces both a quotient and a remainder.
5644Operand 1 is divided by operand 2 to produce a quotient stored
5645in operand 0 and a remainder stored in operand 3.
5646
5647For machines with an instruction that produces both a quotient and a
5648remainder, provide a pattern for @samp{divmod@var{m}4} but do not
5649provide patterns for @samp{div@var{m}3} and @samp{mod@var{m}3}. This
5650allows optimization in the relatively common case when both the quotient
5651and remainder are computed.
5652
5653If an instruction that just produces a quotient or just a remainder
5654exists and is more efficient than the instruction that produces both,
5655write the output routine of @samp{divmod@var{m}4} to call
5656@code{find_reg_note} and look for a @code{REG_UNUSED} note on the
5657quotient or remainder and generate the appropriate instruction.
5658
5659@cindex @code{udivmod@var{m}4} instruction pattern
5660@item @samp{udivmod@var{m}4}
5661Similar, but does unsigned division.
5662
273a2526 5663@anchor{shift patterns}
03dda8e3 5664@cindex @code{ashl@var{m}3} instruction pattern
0f996086
CF
5665@cindex @code{ssashl@var{m}3} instruction pattern
5666@cindex @code{usashl@var{m}3} instruction pattern
5667@item @samp{ashl@var{m}3}, @samp{ssashl@var{m}3}, @samp{usashl@var{m}3}
03dda8e3
RK
5668Arithmetic-shift operand 1 left by a number of bits specified by operand
56692, and store the result in operand 0. Here @var{m} is the mode of
5670operand 0 and operand 1; operand 2's mode is specified by the
5671instruction pattern, and the compiler will convert the operand to that
78250306
JJ
5672mode before generating the instruction. The shift or rotate expander
5673or instruction pattern should explicitly specify the mode of the operand 2,
5674it should never be @code{VOIDmode}. The meaning of out-of-range shift
273a2526 5675counts can optionally be specified by @code{TARGET_SHIFT_TRUNCATION_MASK}.
71d46ca5 5676@xref{TARGET_SHIFT_TRUNCATION_MASK}. Operand 2 is always a scalar type.
03dda8e3
RK
5677
5678@cindex @code{ashr@var{m}3} instruction pattern
5679@cindex @code{lshr@var{m}3} instruction pattern
5680@cindex @code{rotl@var{m}3} instruction pattern
5681@cindex @code{rotr@var{m}3} instruction pattern
5682@item @samp{ashr@var{m}3}, @samp{lshr@var{m}3}, @samp{rotl@var{m}3}, @samp{rotr@var{m}3}
5683Other shift and rotate instructions, analogous to the
71d46ca5
MM
5684@code{ashl@var{m}3} instructions. Operand 2 is always a scalar type.
5685
5686@cindex @code{vashl@var{m}3} instruction pattern
5687@cindex @code{vashr@var{m}3} instruction pattern
5688@cindex @code{vlshr@var{m}3} instruction pattern
5689@cindex @code{vrotl@var{m}3} instruction pattern
5690@cindex @code{vrotr@var{m}3} instruction pattern
5691@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}
5692Vector shift and rotate instructions that take vectors as operand 2
5693instead of a scalar type.
03dda8e3 5694
0267732b
RS
5695@cindex @code{avg@var{m}3_floor} instruction pattern
5696@cindex @code{uavg@var{m}3_floor} instruction pattern
5697@item @samp{avg@var{m}3_floor}
5698@itemx @samp{uavg@var{m}3_floor}
5699Signed and unsigned average instructions. These instructions add
5700operands 1 and 2 without truncation, divide the result by 2,
5701round towards -Inf, and store the result in operand 0. This is
5702equivalent to the C code:
5703@smallexample
5704narrow op0, op1, op2;
5705@dots{}
5706op0 = (narrow) (((wide) op1 + (wide) op2) >> 1);
5707@end smallexample
5708where the sign of @samp{narrow} determines whether this is a signed
5709or unsigned operation.
5710
5711@cindex @code{avg@var{m}3_ceil} instruction pattern
5712@cindex @code{uavg@var{m}3_ceil} instruction pattern
5713@item @samp{avg@var{m}3_ceil}
5714@itemx @samp{uavg@var{m}3_ceil}
5715Like @samp{avg@var{m}3_floor} and @samp{uavg@var{m}3_floor}, but round
5716towards +Inf. This is equivalent to the C code:
5717@smallexample
5718narrow op0, op1, op2;
5719@dots{}
5720op0 = (narrow) (((wide) op1 + (wide) op2 + 1) >> 1);
5721@end smallexample
5722
ac868f29
EB
5723@cindex @code{bswap@var{m}2} instruction pattern
5724@item @samp{bswap@var{m}2}
5725Reverse the order of bytes of operand 1 and store the result in operand 0.
5726
03dda8e3 5727@cindex @code{neg@var{m}2} instruction pattern
0f996086
CF
5728@cindex @code{ssneg@var{m}2} instruction pattern
5729@cindex @code{usneg@var{m}2} instruction pattern
5730@item @samp{neg@var{m}2}, @samp{ssneg@var{m}2}, @samp{usneg@var{m}2}
03dda8e3
RK
5731Negate operand 1 and store the result in operand 0.
5732
481efdd9
EB
5733@cindex @code{negv@var{m}3} instruction pattern
5734@item @samp{negv@var{m}3}
5735Like @code{neg@var{m}2} but takes a @code{code_label} as operand 2 and
5736emits code to jump to it if signed overflow occurs during the negation.
5737
03dda8e3
RK
5738@cindex @code{abs@var{m}2} instruction pattern
5739@item @samp{abs@var{m}2}
5740Store the absolute value of operand 1 into operand 0.
5741
5742@cindex @code{sqrt@var{m}2} instruction pattern
5743@item @samp{sqrt@var{m}2}
a54a5997
RS
5744Store the square root of operand 1 into operand 0. Both operands have
5745mode @var{m}, which is a scalar or vector floating-point mode.
03dda8e3 5746
a54a5997 5747This pattern is not allowed to @code{FAIL}.
e7b489c8 5748
ee62a5a6
RS
5749@cindex @code{rsqrt@var{m}2} instruction pattern
5750@item @samp{rsqrt@var{m}2}
5751Store the reciprocal of the square root of operand 1 into operand 0.
a54a5997
RS
5752Both operands have mode @var{m}, which is a scalar or vector
5753floating-point mode.
5754
ee62a5a6
RS
5755On most architectures this pattern is only approximate, so either
5756its C condition or the @code{TARGET_OPTAB_SUPPORTED_P} hook should
5757check for the appropriate math flags. (Using the C condition is
5758more direct, but using @code{TARGET_OPTAB_SUPPORTED_P} can be useful
5759if a target-specific built-in also uses the @samp{rsqrt@var{m}2}
5760pattern.)
5761
5762This pattern is not allowed to @code{FAIL}.
5763
17b98269
UB
5764@cindex @code{fmod@var{m}3} instruction pattern
5765@item @samp{fmod@var{m}3}
5766Store the remainder of dividing operand 1 by operand 2 into
a54a5997
RS
5767operand 0, rounded towards zero to an integer. All operands have
5768mode @var{m}, which is a scalar or vector floating-point mode.
17b98269 5769
a54a5997 5770This pattern is not allowed to @code{FAIL}.
17b98269
UB
5771
5772@cindex @code{remainder@var{m}3} instruction pattern
5773@item @samp{remainder@var{m}3}
5774Store the remainder of dividing operand 1 by operand 2 into
a54a5997
RS
5775operand 0, rounded to the nearest integer. All operands have
5776mode @var{m}, which is a scalar or vector floating-point mode.
5777
5778This pattern is not allowed to @code{FAIL}.
5779
5780@cindex @code{scalb@var{m}3} instruction pattern
5781@item @samp{scalb@var{m}3}
5782Raise @code{FLT_RADIX} to the power of operand 2, multiply it by
5783operand 1, and store the result in operand 0. All operands have
5784mode @var{m}, which is a scalar or vector floating-point mode.
17b98269 5785
a54a5997
RS
5786This pattern is not allowed to @code{FAIL}.
5787
5788@cindex @code{ldexp@var{m}3} instruction pattern
5789@item @samp{ldexp@var{m}3}
5790Raise 2 to the power of operand 2, multiply it by operand 1, and store
5791the result in operand 0. Operands 0 and 1 have mode @var{m}, which is
5792a scalar or vector floating-point mode. Operand 2's mode has
5793the same number of elements as @var{m} and each element is wide
5794enough to store an @code{int}. The integers are signed.
5795
5796This pattern is not allowed to @code{FAIL}.
17b98269 5797
e7b489c8
RS
5798@cindex @code{cos@var{m}2} instruction pattern
5799@item @samp{cos@var{m}2}
a54a5997
RS
5800Store the cosine of operand 1 into operand 0. Both operands have
5801mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5802
a54a5997 5803This pattern is not allowed to @code{FAIL}.
e7b489c8
RS
5804
5805@cindex @code{sin@var{m}2} instruction pattern
5806@item @samp{sin@var{m}2}
a54a5997
RS
5807Store the sine of operand 1 into operand 0. Both operands have
5808mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5809
a54a5997 5810This pattern is not allowed to @code{FAIL}.
e7b489c8 5811
6d1f6aff
OE
5812@cindex @code{sincos@var{m}3} instruction pattern
5813@item @samp{sincos@var{m}3}
6ba9e401 5814Store the cosine of operand 2 into operand 0 and the sine of
a54a5997
RS
5815operand 2 into operand 1. All operands have mode @var{m},
5816which is a scalar or vector floating-point mode.
6d1f6aff 5817
6d1f6aff
OE
5818Targets that can calculate the sine and cosine simultaneously can
5819implement this pattern as opposed to implementing individual
5820@code{sin@var{m}2} and @code{cos@var{m}2} patterns. The @code{sin}
5821and @code{cos} built-in functions will then be expanded to the
5822@code{sincos@var{m}3} pattern, with one of the output values
5823left unused.
5824
a54a5997
RS
5825@cindex @code{tan@var{m}2} instruction pattern
5826@item @samp{tan@var{m}2}
5827Store the tangent of operand 1 into operand 0. Both operands have
5828mode @var{m}, which is a scalar or vector floating-point mode.
5829
5830This pattern is not allowed to @code{FAIL}.
5831
5832@cindex @code{asin@var{m}2} instruction pattern
5833@item @samp{asin@var{m}2}
5834Store the arc sine of operand 1 into operand 0. Both operands have
5835mode @var{m}, which is a scalar or vector floating-point mode.
5836
5837This pattern is not allowed to @code{FAIL}.
5838
5839@cindex @code{acos@var{m}2} instruction pattern
5840@item @samp{acos@var{m}2}
5841Store the arc cosine of operand 1 into operand 0. Both operands have
5842mode @var{m}, which is a scalar or vector floating-point mode.
5843
5844This pattern is not allowed to @code{FAIL}.
5845
5846@cindex @code{atan@var{m}2} instruction pattern
5847@item @samp{atan@var{m}2}
5848Store the arc tangent of operand 1 into operand 0. Both operands have
5849mode @var{m}, which is a scalar or vector floating-point mode.
5850
5851This pattern is not allowed to @code{FAIL}.
5852
e7b489c8
RS
5853@cindex @code{exp@var{m}2} instruction pattern
5854@item @samp{exp@var{m}2}
a54a5997
RS
5855Raise e (the base of natural logarithms) to the power of operand 1
5856and store the result in operand 0. Both operands have mode @var{m},
5857which is a scalar or vector floating-point mode.
5858
5859This pattern is not allowed to @code{FAIL}.
5860
5861@cindex @code{expm1@var{m}2} instruction pattern
5862@item @samp{expm1@var{m}2}
5863Raise e (the base of natural logarithms) to the power of operand 1,
5864subtract 1, and store the result in operand 0. Both operands have
5865mode @var{m}, which is a scalar or vector floating-point mode.
5866
5867For inputs close to zero, the pattern is expected to be more
5868accurate than a separate @code{exp@var{m}2} and @code{sub@var{m}3}
5869would be.
5870
5871This pattern is not allowed to @code{FAIL}.
5872
5873@cindex @code{exp10@var{m}2} instruction pattern
5874@item @samp{exp10@var{m}2}
5875Raise 10 to the power of operand 1 and store the result in operand 0.
5876Both operands have mode @var{m}, which is a scalar or vector
5877floating-point mode.
5878
5879This pattern is not allowed to @code{FAIL}.
5880
5881@cindex @code{exp2@var{m}2} instruction pattern
5882@item @samp{exp2@var{m}2}
5883Raise 2 to the power of operand 1 and store the result in operand 0.
5884Both operands have mode @var{m}, which is a scalar or vector
5885floating-point mode.
e7b489c8 5886
a54a5997 5887This pattern is not allowed to @code{FAIL}.
e7b489c8
RS
5888
5889@cindex @code{log@var{m}2} instruction pattern
5890@item @samp{log@var{m}2}
a54a5997
RS
5891Store the natural logarithm of operand 1 into operand 0. Both operands
5892have mode @var{m}, which is a scalar or vector floating-point mode.
5893
5894This pattern is not allowed to @code{FAIL}.
5895
5896@cindex @code{log1p@var{m}2} instruction pattern
5897@item @samp{log1p@var{m}2}
5898Add 1 to operand 1, compute the natural logarithm, and store
5899the result in operand 0. Both operands have mode @var{m}, which is
5900a scalar or vector floating-point mode.
5901
5902For inputs close to zero, the pattern is expected to be more
5903accurate than a separate @code{add@var{m}3} and @code{log@var{m}2}
5904would be.
5905
5906This pattern is not allowed to @code{FAIL}.
5907
5908@cindex @code{log10@var{m}2} instruction pattern
5909@item @samp{log10@var{m}2}
5910Store the base-10 logarithm of operand 1 into operand 0. Both operands
5911have mode @var{m}, which is a scalar or vector floating-point mode.
5912
5913This pattern is not allowed to @code{FAIL}.
5914
5915@cindex @code{log2@var{m}2} instruction pattern
5916@item @samp{log2@var{m}2}
5917Store the base-2 logarithm of operand 1 into operand 0. Both operands
5918have mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5919
a54a5997
RS
5920This pattern is not allowed to @code{FAIL}.
5921
5922@cindex @code{logb@var{m}2} instruction pattern
5923@item @samp{logb@var{m}2}
5924Store the base-@code{FLT_RADIX} logarithm of operand 1 into operand 0.
5925Both operands have mode @var{m}, which is a scalar or vector
5926floating-point mode.
5927
5928This pattern is not allowed to @code{FAIL}.
5929
5930@cindex @code{significand@var{m}2} instruction pattern
5931@item @samp{significand@var{m}2}
5932Store the significand of floating-point operand 1 in operand 0.
5933Both operands have mode @var{m}, which is a scalar or vector
5934floating-point mode.
5935
5936This pattern is not allowed to @code{FAIL}.
03dda8e3 5937
b5e01d4b
RS
5938@cindex @code{pow@var{m}3} instruction pattern
5939@item @samp{pow@var{m}3}
5940Store the value of operand 1 raised to the exponent operand 2
a54a5997
RS
5941into operand 0. All operands have mode @var{m}, which is a scalar
5942or vector floating-point mode.
b5e01d4b 5943
a54a5997 5944This pattern is not allowed to @code{FAIL}.
b5e01d4b
RS
5945
5946@cindex @code{atan2@var{m}3} instruction pattern
5947@item @samp{atan2@var{m}3}
5948Store the arc tangent (inverse tangent) of operand 1 divided by
5949operand 2 into operand 0, using the signs of both arguments to
a54a5997
RS
5950determine the quadrant of the result. All operands have mode
5951@var{m}, which is a scalar or vector floating-point mode.
b5e01d4b 5952
a54a5997 5953This pattern is not allowed to @code{FAIL}.
b5e01d4b 5954
4977bab6
ZW
5955@cindex @code{floor@var{m}2} instruction pattern
5956@item @samp{floor@var{m}2}
a54a5997
RS
5957Store the largest integral value not greater than operand 1 in operand 0.
5958Both operands have mode @var{m}, which is a scalar or vector
0d2f700f
JM
5959floating-point mode. If @option{-ffp-int-builtin-inexact} is in
5960effect, the ``inexact'' exception may be raised for noninteger
5961operands; otherwise, it may not.
4977bab6 5962
a54a5997 5963This pattern is not allowed to @code{FAIL}.
4977bab6 5964
10553f10
UB
5965@cindex @code{btrunc@var{m}2} instruction pattern
5966@item @samp{btrunc@var{m}2}
a54a5997
RS
5967Round operand 1 to an integer, towards zero, and store the result in
5968operand 0. Both operands have mode @var{m}, which is a scalar or
0d2f700f
JM
5969vector floating-point mode. If @option{-ffp-int-builtin-inexact} is
5970in effect, the ``inexact'' exception may be raised for noninteger
5971operands; otherwise, it may not.
4977bab6 5972
a54a5997 5973This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5974
5975@cindex @code{round@var{m}2} instruction pattern
5976@item @samp{round@var{m}2}
a54a5997
RS
5977Round operand 1 to the nearest integer, rounding away from zero in the
5978event of a tie, and store the result in operand 0. Both operands have
0d2f700f
JM
5979mode @var{m}, which is a scalar or vector floating-point mode. If
5980@option{-ffp-int-builtin-inexact} is in effect, the ``inexact''
5981exception may be raised for noninteger operands; otherwise, it may
5982not.
4977bab6 5983
a54a5997 5984This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5985
5986@cindex @code{ceil@var{m}2} instruction pattern
5987@item @samp{ceil@var{m}2}
a54a5997
RS
5988Store the smallest integral value not less than operand 1 in operand 0.
5989Both operands have mode @var{m}, which is a scalar or vector
0d2f700f
JM
5990floating-point mode. If @option{-ffp-int-builtin-inexact} is in
5991effect, the ``inexact'' exception may be raised for noninteger
5992operands; otherwise, it may not.
4977bab6 5993
a54a5997 5994This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5995
5996@cindex @code{nearbyint@var{m}2} instruction pattern
5997@item @samp{nearbyint@var{m}2}
a54a5997
RS
5998Round operand 1 to an integer, using the current rounding mode, and
5999store the result in operand 0. Do not raise an inexact condition when
6000the result is different from the argument. Both operands have mode
6001@var{m}, which is a scalar or vector floating-point mode.
4977bab6 6002
a54a5997 6003This pattern is not allowed to @code{FAIL}.
4977bab6 6004
10553f10
UB
6005@cindex @code{rint@var{m}2} instruction pattern
6006@item @samp{rint@var{m}2}
a54a5997
RS
6007Round operand 1 to an integer, using the current rounding mode, and
6008store the result in operand 0. Raise an inexact condition when
6009the result is different from the argument. Both operands have mode
6010@var{m}, which is a scalar or vector floating-point mode.
10553f10 6011
a54a5997 6012This pattern is not allowed to @code{FAIL}.
10553f10 6013
bb7f0423
RG
6014@cindex @code{lrint@var{m}@var{n}2}
6015@item @samp{lrint@var{m}@var{n}2}
6016Convert operand 1 (valid for floating point mode @var{m}) to fixed
6017point mode @var{n} as a signed number according to the current
6018rounding mode and store in operand 0 (which has mode @var{n}).
6019
4d81bf84 6020@cindex @code{lround@var{m}@var{n}2}
e0d4c0b3 6021@item @samp{lround@var{m}@var{n}2}
4d81bf84
RG
6022Convert operand 1 (valid for floating point mode @var{m}) to fixed
6023point mode @var{n} as a signed number rounding to nearest and away
6024from zero and store in operand 0 (which has mode @var{n}).
6025
c3a4177f 6026@cindex @code{lfloor@var{m}@var{n}2}
e0d4c0b3 6027@item @samp{lfloor@var{m}@var{n}2}
c3a4177f
RG
6028Convert operand 1 (valid for floating point mode @var{m}) to fixed
6029point mode @var{n} as a signed number rounding down and store in
6030operand 0 (which has mode @var{n}).
6031
6032@cindex @code{lceil@var{m}@var{n}2}
e0d4c0b3 6033@item @samp{lceil@var{m}@var{n}2}
c3a4177f
RG
6034Convert operand 1 (valid for floating point mode @var{m}) to fixed
6035point mode @var{n} as a signed number rounding up and store in
6036operand 0 (which has mode @var{n}).
6037
d35a40fc
DE
6038@cindex @code{copysign@var{m}3} instruction pattern
6039@item @samp{copysign@var{m}3}
6040Store a value with the magnitude of operand 1 and the sign of operand
a54a5997
RS
60412 into operand 0. All operands have mode @var{m}, which is a scalar or
6042vector floating-point mode.
d35a40fc 6043
a54a5997 6044This pattern is not allowed to @code{FAIL}.
d35a40fc 6045
cb369975
TC
6046@cindex @code{xorsign@var{m}3} instruction pattern
6047@item @samp{xorsign@var{m}3}
6048Equivalent to @samp{op0 = op1 * copysign (1.0, op2)}: store a value with
6049the magnitude of operand 1 and the sign of operand 2 into operand 0.
6050All operands have mode @var{m}, which is a scalar or vector
6051floating-point mode.
6052
6053This pattern is not allowed to @code{FAIL}.
6054
03dda8e3
RK
6055@cindex @code{ffs@var{m}2} instruction pattern
6056@item @samp{ffs@var{m}2}
6057Store into operand 0 one plus the index of the least significant 1-bit
a54a5997 6058of operand 1. If operand 1 is zero, store zero.
03dda8e3 6059
a54a5997
RS
6060@var{m} is either a scalar or vector integer mode. When it is a scalar,
6061operand 1 has mode @var{m} but operand 0 can have whatever scalar
6062integer mode is suitable for the target. The compiler will insert
6063conversion instructions as necessary (typically to convert the result
6064to the same width as @code{int}). When @var{m} is a vector, both
6065operands must have mode @var{m}.
6066
6067This pattern is not allowed to @code{FAIL}.
03dda8e3 6068
e7a45277
KT
6069@cindex @code{clrsb@var{m}2} instruction pattern
6070@item @samp{clrsb@var{m}2}
6071Count leading redundant sign bits.
6072Store into operand 0 the number of redundant sign bits in operand 1, starting
6073at the most significant bit position.
6074A redundant sign bit is defined as any sign bit after the first. As such,
6075this count will be one less than the count of leading sign bits.
6076
a54a5997
RS
6077@var{m} is either a scalar or vector integer mode. When it is a scalar,
6078operand 1 has mode @var{m} but operand 0 can have whatever scalar
6079integer mode is suitable for the target. The compiler will insert
6080conversion instructions as necessary (typically to convert the result
6081to the same width as @code{int}). When @var{m} is a vector, both
6082operands must have mode @var{m}.
6083
6084This pattern is not allowed to @code{FAIL}.
6085
2928cd7a
RH
6086@cindex @code{clz@var{m}2} instruction pattern
6087@item @samp{clz@var{m}2}
e7a45277
KT
6088Store into operand 0 the number of leading 0-bits in operand 1, starting
6089at the most significant bit position. If operand 1 is 0, the
2a6627c2
JN
6090@code{CLZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
6091the result is undefined or has a useful value.
a54a5997
RS
6092
6093@var{m} is either a scalar or vector integer mode. When it is a scalar,
6094operand 1 has mode @var{m} but operand 0 can have whatever scalar
6095integer mode is suitable for the target. The compiler will insert
6096conversion instructions as necessary (typically to convert the result
6097to the same width as @code{int}). When @var{m} is a vector, both
6098operands must have mode @var{m}.
6099
6100This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6101
6102@cindex @code{ctz@var{m}2} instruction pattern
6103@item @samp{ctz@var{m}2}
e7a45277
KT
6104Store into operand 0 the number of trailing 0-bits in operand 1, starting
6105at the least significant bit position. If operand 1 is 0, the
2a6627c2
JN
6106@code{CTZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
6107the result is undefined or has a useful value.
a54a5997
RS
6108
6109@var{m} is either a scalar or vector integer mode. When it is a scalar,
6110operand 1 has mode @var{m} but operand 0 can have whatever scalar
6111integer mode is suitable for the target. The compiler will insert
6112conversion instructions as necessary (typically to convert the result
6113to the same width as @code{int}). When @var{m} is a vector, both
6114operands must have mode @var{m}.
6115
6116This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6117
6118@cindex @code{popcount@var{m}2} instruction pattern
6119@item @samp{popcount@var{m}2}
a54a5997
RS
6120Store into operand 0 the number of 1-bits in operand 1.
6121
6122@var{m} is either a scalar or vector integer mode. When it is a scalar,
6123operand 1 has mode @var{m} but operand 0 can have whatever scalar
6124integer mode is suitable for the target. The compiler will insert
6125conversion instructions as necessary (typically to convert the result
6126to the same width as @code{int}). When @var{m} is a vector, both
6127operands must have mode @var{m}.
6128
6129This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6130
6131@cindex @code{parity@var{m}2} instruction pattern
6132@item @samp{parity@var{m}2}
e7a45277 6133Store into operand 0 the parity of operand 1, i.e.@: the number of 1-bits
a54a5997
RS
6134in operand 1 modulo 2.
6135
6136@var{m} is either a scalar or vector integer mode. When it is a scalar,
6137operand 1 has mode @var{m} but operand 0 can have whatever scalar
6138integer mode is suitable for the target. The compiler will insert
6139conversion instructions as necessary (typically to convert the result
6140to the same width as @code{int}). When @var{m} is a vector, both
6141operands must have mode @var{m}.
6142
6143This pattern is not allowed to @code{FAIL}.
2928cd7a 6144
03dda8e3
RK
6145@cindex @code{one_cmpl@var{m}2} instruction pattern
6146@item @samp{one_cmpl@var{m}2}
6147Store the bitwise-complement of operand 1 into operand 0.
6148
70128ad9
AO
6149@cindex @code{movmem@var{m}} instruction pattern
6150@item @samp{movmem@var{m}}
beed8fc0
AO
6151Block move instruction. The destination and source blocks of memory
6152are the first two operands, and both are @code{mem:BLK}s with an
6153address in mode @code{Pmode}.
e5e809f4 6154
03dda8e3 6155The number of bytes to move is the third operand, in mode @var{m}.
5689294c 6156Usually, you specify @code{Pmode} for @var{m}. However, if you can
e5e809f4 6157generate better code knowing the range of valid lengths is smaller than
5689294c
L
6158those representable in a full Pmode pointer, you should provide
6159a pattern with a
e5e809f4
JL
6160mode corresponding to the range of values you can handle efficiently
6161(e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
5689294c 6162that appear negative) and also a pattern with @code{Pmode}.
03dda8e3
RK
6163
6164The fourth operand is the known shared alignment of the source and
6165destination, in the form of a @code{const_int} rtx. Thus, if the
6166compiler knows that both source and destination are word-aligned,
6167it may provide the value 4 for this operand.
6168
079a182e
JH
6169Optional operands 5 and 6 specify expected alignment and size of block
6170respectively. The expected alignment differs from alignment in operand 4
6171in a way that the blocks are not required to be aligned according to it in
9946ca2d
RA
6172all cases. This expected alignment is also in bytes, just like operand 4.
6173Expected size, when unknown, is set to @code{(const_int -1)}.
079a182e 6174
70128ad9 6175Descriptions of multiple @code{movmem@var{m}} patterns can only be
4693911f 6176beneficial if the patterns for smaller modes have fewer restrictions
8c01d9b6 6177on their first, second and fourth operands. Note that the mode @var{m}
70128ad9 6178in @code{movmem@var{m}} does not impose any restriction on the mode of
8c01d9b6
JL
6179individually moved data units in the block.
6180
03dda8e3
RK
6181These patterns need not give special consideration to the possibility
6182that the source and destination strings might overlap.
6183
beed8fc0
AO
6184@cindex @code{movstr} instruction pattern
6185@item @samp{movstr}
6186String copy instruction, with @code{stpcpy} semantics. Operand 0 is
6187an output operand in mode @code{Pmode}. The addresses of the
6188destination and source strings are operands 1 and 2, and both are
6189@code{mem:BLK}s with addresses in mode @code{Pmode}. The execution of
6190the expansion of this pattern should store in operand 0 the address in
6191which the @code{NUL} terminator was stored in the destination string.
6192
3918b108
JH
6193This patern has also several optional operands that are same as in
6194@code{setmem}.
6195
57e84f18
AS
6196@cindex @code{setmem@var{m}} instruction pattern
6197@item @samp{setmem@var{m}}
6198Block set instruction. The destination string is the first operand,
beed8fc0 6199given as a @code{mem:BLK} whose address is in mode @code{Pmode}. The
57e84f18
AS
6200number of bytes to set is the second operand, in mode @var{m}. The value to
6201initialize the memory with is the third operand. Targets that only support the
6202clearing of memory should reject any value that is not the constant 0. See
beed8fc0 6203@samp{movmem@var{m}} for a discussion of the choice of mode.
03dda8e3 6204
57e84f18 6205The fourth operand is the known alignment of the destination, in the form
03dda8e3
RK
6206of a @code{const_int} rtx. Thus, if the compiler knows that the
6207destination is word-aligned, it may provide the value 4 for this
6208operand.
6209
079a182e
JH
6210Optional operands 5 and 6 specify expected alignment and size of block
6211respectively. The expected alignment differs from alignment in operand 4
6212in a way that the blocks are not required to be aligned according to it in
9946ca2d
RA
6213all cases. This expected alignment is also in bytes, just like operand 4.
6214Expected size, when unknown, is set to @code{(const_int -1)}.
3918b108
JH
6215Operand 7 is the minimal size of the block and operand 8 is the
6216maximal size of the block (NULL if it can not be represented as CONST_INT).
630ba2fd
SB
6217Operand 9 is the probable maximal size (i.e.@: we can not rely on it for
6218correctness, but it can be used for choosing proper code sequence for a
6219given size).
079a182e 6220
57e84f18 6221The use for multiple @code{setmem@var{m}} is as for @code{movmem@var{m}}.
8c01d9b6 6222
40c1d5f8
AS
6223@cindex @code{cmpstrn@var{m}} instruction pattern
6224@item @samp{cmpstrn@var{m}}
358b8f01 6225String compare instruction, with five operands. Operand 0 is the output;
03dda8e3 6226it has mode @var{m}. The remaining four operands are like the operands
70128ad9 6227of @samp{movmem@var{m}}. The two memory blocks specified are compared
5cc2f4f3
KG
6228byte by byte in lexicographic order starting at the beginning of each
6229string. The instruction is not allowed to prefetch more than one byte
6230at a time since either string may end in the first byte and reading past
6231that may access an invalid page or segment and cause a fault. The
9b0f6f5e
NC
6232comparison terminates early if the fetched bytes are different or if
6233they are equal to zero. The effect of the instruction is to store a
6234value in operand 0 whose sign indicates the result of the comparison.
03dda8e3 6235
40c1d5f8
AS
6236@cindex @code{cmpstr@var{m}} instruction pattern
6237@item @samp{cmpstr@var{m}}
6238String compare instruction, without known maximum length. Operand 0 is the
6239output; it has mode @var{m}. The second and third operand are the blocks of
6240memory to be compared; both are @code{mem:BLK} with an address in mode
6241@code{Pmode}.
6242
6243The fourth operand is the known shared alignment of the source and
6244destination, in the form of a @code{const_int} rtx. Thus, if the
6245compiler knows that both source and destination are word-aligned,
6246it may provide the value 4 for this operand.
6247
6248The two memory blocks specified are compared byte by byte in lexicographic
6249order starting at the beginning of each string. The instruction is not allowed
6250to prefetch more than one byte at a time since either string may end in the
6251first byte and reading past that may access an invalid page or segment and
9b0f6f5e
NC
6252cause a fault. The comparison will terminate when the fetched bytes
6253are different or if they are equal to zero. The effect of the
6254instruction is to store a value in operand 0 whose sign indicates the
6255result of the comparison.
40c1d5f8 6256
358b8f01
JJ
6257@cindex @code{cmpmem@var{m}} instruction pattern
6258@item @samp{cmpmem@var{m}}
6259Block compare instruction, with five operands like the operands
6260of @samp{cmpstr@var{m}}. The two memory blocks specified are compared
6261byte by byte in lexicographic order starting at the beginning of each
6262block. Unlike @samp{cmpstr@var{m}} the instruction can prefetch
9b0f6f5e
NC
6263any bytes in the two memory blocks. Also unlike @samp{cmpstr@var{m}}
6264the comparison will not stop if both bytes are zero. The effect of
6265the instruction is to store a value in operand 0 whose sign indicates
6266the result of the comparison.
358b8f01 6267
03dda8e3
RK
6268@cindex @code{strlen@var{m}} instruction pattern
6269@item @samp{strlen@var{m}}
6270Compute the length of a string, with three operands.
6271Operand 0 is the result (of mode @var{m}), operand 1 is
6272a @code{mem} referring to the first character of the string,
6273operand 2 is the character to search for (normally zero),
6274and operand 3 is a constant describing the known alignment
6275of the beginning of the string.
6276
e0d4c0b3 6277@cindex @code{float@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6278@item @samp{float@var{m}@var{n}2}
6279Convert signed integer operand 1 (valid for fixed point mode @var{m}) to
6280floating point mode @var{n} and store in operand 0 (which has mode
6281@var{n}).
6282
e0d4c0b3 6283@cindex @code{floatuns@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6284@item @samp{floatuns@var{m}@var{n}2}
6285Convert unsigned integer operand 1 (valid for fixed point mode @var{m})
6286to floating point mode @var{n} and store in operand 0 (which has mode
6287@var{n}).
6288
e0d4c0b3 6289@cindex @code{fix@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6290@item @samp{fix@var{m}@var{n}2}
6291Convert operand 1 (valid for floating point mode @var{m}) to fixed
6292point mode @var{n} as a signed number and store in operand 0 (which
6293has mode @var{n}). This instruction's result is defined only when
6294the value of operand 1 is an integer.
6295
0e1d7f32
AH
6296If the machine description defines this pattern, it also needs to
6297define the @code{ftrunc} pattern.
6298
e0d4c0b3 6299@cindex @code{fixuns@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6300@item @samp{fixuns@var{m}@var{n}2}
6301Convert operand 1 (valid for floating point mode @var{m}) to fixed
6302point mode @var{n} as an unsigned number and store in operand 0 (which
6303has mode @var{n}). This instruction's result is defined only when the
6304value of operand 1 is an integer.
6305
6306@cindex @code{ftrunc@var{m}2} instruction pattern
6307@item @samp{ftrunc@var{m}2}
6308Convert operand 1 (valid for floating point mode @var{m}) to an
6309integer value, still represented in floating point mode @var{m}, and
6310store it in operand 0 (valid for floating point mode @var{m}).
6311
e0d4c0b3 6312@cindex @code{fix_trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6313@item @samp{fix_trunc@var{m}@var{n}2}
6314Like @samp{fix@var{m}@var{n}2} but works for any floating point value
6315of mode @var{m} by converting the value to an integer.
6316
e0d4c0b3 6317@cindex @code{fixuns_trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6318@item @samp{fixuns_trunc@var{m}@var{n}2}
6319Like @samp{fixuns@var{m}@var{n}2} but works for any floating point
6320value of mode @var{m} by converting the value to an integer.
6321
e0d4c0b3 6322@cindex @code{trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6323@item @samp{trunc@var{m}@var{n}2}
6324Truncate operand 1 (valid for mode @var{m}) to mode @var{n} and
6325store in operand 0 (which has mode @var{n}). Both modes must be fixed
6326point or both floating point.
6327
e0d4c0b3 6328@cindex @code{extend@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6329@item @samp{extend@var{m}@var{n}2}
6330Sign-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6331store in operand 0 (which has mode @var{n}). Both modes must be fixed
6332point or both floating point.
6333
e0d4c0b3 6334@cindex @code{zero_extend@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6335@item @samp{zero_extend@var{m}@var{n}2}
6336Zero-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6337store in operand 0 (which has mode @var{n}). Both modes must be fixed
6338point.
6339
e0d4c0b3 6340@cindex @code{fract@var{m}@var{n}2} instruction pattern
0f996086
CF
6341@item @samp{fract@var{m}@var{n}2}
6342Convert operand 1 of mode @var{m} to mode @var{n} and store in
6343operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6344could be fixed-point to fixed-point, signed integer to fixed-point,
6345fixed-point to signed integer, floating-point to fixed-point,
6346or fixed-point to floating-point.
6347When overflows or underflows happen, the results are undefined.
6348
e0d4c0b3 6349@cindex @code{satfract@var{m}@var{n}2} instruction pattern
0f996086
CF
6350@item @samp{satfract@var{m}@var{n}2}
6351Convert operand 1 of mode @var{m} to mode @var{n} and store in
6352operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6353could be fixed-point to fixed-point, signed integer to fixed-point,
6354or floating-point to fixed-point.
6355When overflows or underflows happen, the instruction saturates the
6356results to the maximum or the minimum.
6357
e0d4c0b3 6358@cindex @code{fractuns@var{m}@var{n}2} instruction pattern
0f996086
CF
6359@item @samp{fractuns@var{m}@var{n}2}
6360Convert operand 1 of mode @var{m} to mode @var{n} and store in
6361operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6362could be unsigned integer to fixed-point, or
6363fixed-point to unsigned integer.
6364When overflows or underflows happen, the results are undefined.
6365
e0d4c0b3 6366@cindex @code{satfractuns@var{m}@var{n}2} instruction pattern
0f996086
CF
6367@item @samp{satfractuns@var{m}@var{n}2}
6368Convert unsigned integer operand 1 of mode @var{m} to fixed-point mode
6369@var{n} and store in operand 0 (which has mode @var{n}).
6370When overflows or underflows happen, the instruction saturates the
6371results to the maximum or the minimum.
6372
d2eeb2d1
RS
6373@cindex @code{extv@var{m}} instruction pattern
6374@item @samp{extv@var{m}}
6375Extract a bit-field from register operand 1, sign-extend it, and store
6376it in operand 0. Operand 2 specifies the width of the field in bits
6377and operand 3 the starting bit, which counts from the most significant
6378bit if @samp{BITS_BIG_ENDIAN} is true and from the least significant bit
6379otherwise.
6380
6381Operands 0 and 1 both have mode @var{m}. Operands 2 and 3 have a
6382target-specific mode.
6383
6384@cindex @code{extvmisalign@var{m}} instruction pattern
6385@item @samp{extvmisalign@var{m}}
6386Extract a bit-field from memory operand 1, sign extend it, and store
6387it in operand 0. Operand 2 specifies the width in bits and operand 3
6388the starting bit. The starting bit is always somewhere in the first byte of
6389operand 1; it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6390is true and from the least significant bit otherwise.
6391
6392Operand 0 has mode @var{m} while operand 1 has @code{BLK} mode.
6393Operands 2 and 3 have a target-specific mode.
6394
6395The instruction must not read beyond the last byte of the bit-field.
6396
6397@cindex @code{extzv@var{m}} instruction pattern
6398@item @samp{extzv@var{m}}
6399Like @samp{extv@var{m}} except that the bit-field value is zero-extended.
6400
6401@cindex @code{extzvmisalign@var{m}} instruction pattern
6402@item @samp{extzvmisalign@var{m}}
6403Like @samp{extvmisalign@var{m}} except that the bit-field value is
6404zero-extended.
6405
6406@cindex @code{insv@var{m}} instruction pattern
6407@item @samp{insv@var{m}}
6408Insert operand 3 into a bit-field of register operand 0. Operand 1
6409specifies the width of the field in bits and operand 2 the starting bit,
6410which counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6411is true and from the least significant bit otherwise.
6412
6413Operands 0 and 3 both have mode @var{m}. Operands 1 and 2 have a
6414target-specific mode.
6415
6416@cindex @code{insvmisalign@var{m}} instruction pattern
6417@item @samp{insvmisalign@var{m}}
6418Insert operand 3 into a bit-field of memory operand 0. Operand 1
6419specifies the width of the field in bits and operand 2 the starting bit.
6420The starting bit is always somewhere in the first byte of operand 0;
6421it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6422is true and from the least significant bit otherwise.
6423
6424Operand 3 has mode @var{m} while operand 0 has @code{BLK} mode.
6425Operands 1 and 2 have a target-specific mode.
6426
6427The instruction must not read or write beyond the last byte of the bit-field.
6428
03dda8e3
RK
6429@cindex @code{extv} instruction pattern
6430@item @samp{extv}
c771326b 6431Extract a bit-field from operand 1 (a register or memory operand), where
03dda8e3
RK
6432operand 2 specifies the width in bits and operand 3 the starting bit,
6433and store it in operand 0. Operand 0 must have mode @code{word_mode}.
6434Operand 1 may have mode @code{byte_mode} or @code{word_mode}; often
6435@code{word_mode} is allowed only for registers. Operands 2 and 3 must
6436be valid for @code{word_mode}.
6437
6438The RTL generation pass generates this instruction only with constants
3ab997e8 6439for operands 2 and 3 and the constant is never zero for operand 2.
03dda8e3
RK
6440
6441The bit-field value is sign-extended to a full word integer
6442before it is stored in operand 0.
6443
d2eeb2d1
RS
6444This pattern is deprecated; please use @samp{extv@var{m}} and
6445@code{extvmisalign@var{m}} instead.
6446
03dda8e3
RK
6447@cindex @code{extzv} instruction pattern
6448@item @samp{extzv}
6449Like @samp{extv} except that the bit-field value is zero-extended.
6450
d2eeb2d1
RS
6451This pattern is deprecated; please use @samp{extzv@var{m}} and
6452@code{extzvmisalign@var{m}} instead.
6453
03dda8e3
RK
6454@cindex @code{insv} instruction pattern
6455@item @samp{insv}
c771326b
JM
6456Store operand 3 (which must be valid for @code{word_mode}) into a
6457bit-field in operand 0, where operand 1 specifies the width in bits and
03dda8e3
RK
6458operand 2 the starting bit. Operand 0 may have mode @code{byte_mode} or
6459@code{word_mode}; often @code{word_mode} is allowed only for registers.
6460Operands 1 and 2 must be valid for @code{word_mode}.
6461
6462The RTL generation pass generates this instruction only with constants
3ab997e8 6463for operands 1 and 2 and the constant is never zero for operand 1.
03dda8e3 6464
d2eeb2d1
RS
6465This pattern is deprecated; please use @samp{insv@var{m}} and
6466@code{insvmisalign@var{m}} instead.
6467
03dda8e3
RK
6468@cindex @code{mov@var{mode}cc} instruction pattern
6469@item @samp{mov@var{mode}cc}
6470Conditionally move operand 2 or operand 3 into operand 0 according to the
6471comparison in operand 1. If the comparison is true, operand 2 is moved
6472into operand 0, otherwise operand 3 is moved.
6473
6474The mode of the operands being compared need not be the same as the operands
6475being moved. Some machines, sparc64 for example, have instructions that
6476conditionally move an integer value based on the floating point condition
6477codes and vice versa.
6478
6479If the machine does not have conditional move instructions, do not
6480define these patterns.
6481
068f5dea 6482@cindex @code{add@var{mode}cc} instruction pattern
4b5cc2b3 6483@item @samp{add@var{mode}cc}
068f5dea
JH
6484Similar to @samp{mov@var{mode}cc} but for conditional addition. Conditionally
6485move operand 2 or (operands 2 + operand 3) into operand 0 according to the
5285c21c 6486comparison in operand 1. If the comparison is false, operand 2 is moved into
4b5cc2b3 6487operand 0, otherwise (operand 2 + operand 3) is moved.
068f5dea 6488
0972596e
RS
6489@cindex @code{cond_add@var{mode}} instruction pattern
6490@cindex @code{cond_sub@var{mode}} instruction pattern
6c4fd4a9
RS
6491@cindex @code{cond_mul@var{mode}} instruction pattern
6492@cindex @code{cond_div@var{mode}} instruction pattern
6493@cindex @code{cond_udiv@var{mode}} instruction pattern
6494@cindex @code{cond_mod@var{mode}} instruction pattern
6495@cindex @code{cond_umod@var{mode}} instruction pattern
0972596e
RS
6496@cindex @code{cond_and@var{mode}} instruction pattern
6497@cindex @code{cond_ior@var{mode}} instruction pattern
6498@cindex @code{cond_xor@var{mode}} instruction pattern
6499@cindex @code{cond_smin@var{mode}} instruction pattern
6500@cindex @code{cond_smax@var{mode}} instruction pattern
6501@cindex @code{cond_umin@var{mode}} instruction pattern
6502@cindex @code{cond_umax@var{mode}} instruction pattern
6503@item @samp{cond_add@var{mode}}
6504@itemx @samp{cond_sub@var{mode}}
6c4fd4a9
RS
6505@itemx @samp{cond_mul@var{mode}}
6506@itemx @samp{cond_div@var{mode}}
6507@itemx @samp{cond_udiv@var{mode}}
6508@itemx @samp{cond_mod@var{mode}}
6509@itemx @samp{cond_umod@var{mode}}
0972596e
RS
6510@itemx @samp{cond_and@var{mode}}
6511@itemx @samp{cond_ior@var{mode}}
6512@itemx @samp{cond_xor@var{mode}}
6513@itemx @samp{cond_smin@var{mode}}
6514@itemx @samp{cond_smax@var{mode}}
6515@itemx @samp{cond_umin@var{mode}}
6516@itemx @samp{cond_umax@var{mode}}
9d4ac06e
RS
6517When operand 1 is true, perform an operation on operands 2 and 3 and
6518store the result in operand 0, otherwise store operand 4 in operand 0.
6519The operation works elementwise if the operands are vectors.
6520
6521The scalar case is equivalent to:
6522
6523@smallexample
6524op0 = op1 ? op2 @var{op} op3 : op4;
6525@end smallexample
6526
6527while the vector case is equivalent to:
0972596e
RS
6528
6529@smallexample
9d4ac06e
RS
6530for (i = 0; i < GET_MODE_NUNITS (@var{m}); i++)
6531 op0[i] = op1[i] ? op2[i] @var{op} op3[i] : op4[i];
0972596e
RS
6532@end smallexample
6533
6534where, for example, @var{op} is @code{+} for @samp{cond_add@var{mode}}.
6535
6536When defined for floating-point modes, the contents of @samp{op3[i]}
6537are not interpreted if @var{op1[i]} is false, just like they would not
6538be in a normal C @samp{?:} condition.
6539
9d4ac06e
RS
6540Operands 0, 2, 3 and 4 all have mode @var{m}. Operand 1 is a scalar
6541integer if @var{m} is scalar, otherwise it has the mode returned by
6542@code{TARGET_VECTORIZE_GET_MASK_MODE}.
0972596e 6543
b41d1f6e
RS
6544@cindex @code{cond_fma@var{mode}} instruction pattern
6545@cindex @code{cond_fms@var{mode}} instruction pattern
6546@cindex @code{cond_fnma@var{mode}} instruction pattern
6547@cindex @code{cond_fnms@var{mode}} instruction pattern
6548@item @samp{cond_fma@var{mode}}
6549@itemx @samp{cond_fms@var{mode}}
6550@itemx @samp{cond_fnma@var{mode}}
6551@itemx @samp{cond_fnms@var{mode}}
6552Like @samp{cond_add@var{m}}, except that the conditional operation
6553takes 3 operands rather than two. For example, the vector form of
6554@samp{cond_fma@var{mode}} is equivalent to:
6555
6556@smallexample
6557for (i = 0; i < GET_MODE_NUNITS (@var{m}); i++)
6558 op0[i] = op1[i] ? fma (op2[i], op3[i], op4[i]) : op5[i];
6559@end smallexample
6560
ce68b5cf
KT
6561@cindex @code{neg@var{mode}cc} instruction pattern
6562@item @samp{neg@var{mode}cc}
6563Similar to @samp{mov@var{mode}cc} but for conditional negation. Conditionally
6564move the negation of operand 2 or the unchanged operand 3 into operand 0
6565according to the comparison in operand 1. If the comparison is true, the negation
6566of operand 2 is moved into operand 0, otherwise operand 3 is moved.
6567
6568@cindex @code{not@var{mode}cc} instruction pattern
6569@item @samp{not@var{mode}cc}
6570Similar to @samp{neg@var{mode}cc} but for conditional complement.
6571Conditionally move the bitwise complement of operand 2 or the unchanged
6572operand 3 into operand 0 according to the comparison in operand 1.
6573If the comparison is true, the complement of operand 2 is moved into
6574operand 0, otherwise operand 3 is moved.
6575
f90b7a5a
PB
6576@cindex @code{cstore@var{mode}4} instruction pattern
6577@item @samp{cstore@var{mode}4}
6578Store zero or nonzero in operand 0 according to whether a comparison
6579is true. Operand 1 is a comparison operator. Operand 2 and operand 3
6580are the first and second operand of the comparison, respectively.
6581You specify the mode that operand 0 must have when you write the
6582@code{match_operand} expression. The compiler automatically sees which
6583mode you have used and supplies an operand of that mode.
03dda8e3
RK
6584
6585The value stored for a true condition must have 1 as its low bit, or
6586else must be negative. Otherwise the instruction is not suitable and
6587you should omit it from the machine description. You describe to the
6588compiler exactly which value is stored by defining the macro
6589@code{STORE_FLAG_VALUE} (@pxref{Misc}). If a description cannot be
ac5eda13
PB
6590found that can be used for all the possible comparison operators, you
6591should pick one and use a @code{define_expand} to map all results
6592onto the one you chose.
6593
6594These operations may @code{FAIL}, but should do so only in relatively
6595uncommon cases; if they would @code{FAIL} for common cases involving
6596integer comparisons, it is best to restrict the predicates to not
6597allow these operands. Likewise if a given comparison operator will
6598always fail, independent of the operands (for floating-point modes, the
6599@code{ordered_comparison_operator} predicate is often useful in this case).
6600
6601If this pattern is omitted, the compiler will generate a conditional
6602branch---for example, it may copy a constant one to the target and branching
6603around an assignment of zero to the target---or a libcall. If the predicate
6604for operand 1 only rejects some operators, it will also try reordering the
6605operands and/or inverting the result value (e.g.@: by an exclusive OR).
6606These possibilities could be cheaper or equivalent to the instructions
6607used for the @samp{cstore@var{mode}4} pattern followed by those required
6608to convert a positive result from @code{STORE_FLAG_VALUE} to 1; in this
6609case, you can and should make operand 1's predicate reject some operators
6610in the @samp{cstore@var{mode}4} pattern, or remove the pattern altogether
6611from the machine description.
03dda8e3 6612
66c87bae
KH
6613@cindex @code{cbranch@var{mode}4} instruction pattern
6614@item @samp{cbranch@var{mode}4}
6615Conditional branch instruction combined with a compare instruction.
6616Operand 0 is a comparison operator. Operand 1 and operand 2 are the
6617first and second operands of the comparison, respectively. Operand 3
481efdd9 6618is the @code{code_label} to jump to.
66c87bae 6619
d26eedb6
HPN
6620@cindex @code{jump} instruction pattern
6621@item @samp{jump}
6622A jump inside a function; an unconditional branch. Operand 0 is the
481efdd9
EB
6623@code{code_label} to jump to. This pattern name is mandatory on all
6624machines.
d26eedb6 6625
03dda8e3
RK
6626@cindex @code{call} instruction pattern
6627@item @samp{call}
6628Subroutine call instruction returning no value. Operand 0 is the
6629function to call; operand 1 is the number of bytes of arguments pushed
f5963e61
JL
6630as a @code{const_int}; operand 2 is the number of registers used as
6631operands.
03dda8e3
RK
6632
6633On most machines, operand 2 is not actually stored into the RTL
6634pattern. It is supplied for the sake of some RISC machines which need
6635to put this information into the assembler code; they can put it in
6636the RTL instead of operand 1.
6637
6638Operand 0 should be a @code{mem} RTX whose address is the address of the
6639function. Note, however, that this address can be a @code{symbol_ref}
6640expression even if it would not be a legitimate memory address on the
6641target machine. If it is also not a valid argument for a call
6642instruction, the pattern for this operation should be a
6643@code{define_expand} (@pxref{Expander Definitions}) that places the
6644address into a register and uses that register in the call instruction.
6645
6646@cindex @code{call_value} instruction pattern
6647@item @samp{call_value}
6648Subroutine call instruction returning a value. Operand 0 is the hard
6649register in which the value is returned. There are three more
6650operands, the same as the three operands of the @samp{call}
6651instruction (but with numbers increased by one).
6652
6653Subroutines that return @code{BLKmode} objects use the @samp{call}
6654insn.
6655
6656@cindex @code{call_pop} instruction pattern
6657@cindex @code{call_value_pop} instruction pattern
6658@item @samp{call_pop}, @samp{call_value_pop}
6659Similar to @samp{call} and @samp{call_value}, except used if defined and
df2a54e9 6660if @code{RETURN_POPS_ARGS} is nonzero. They should emit a @code{parallel}
03dda8e3
RK
6661that contains both the function call and a @code{set} to indicate the
6662adjustment made to the frame pointer.
6663
df2a54e9 6664For machines where @code{RETURN_POPS_ARGS} can be nonzero, the use of these
03dda8e3
RK
6665patterns increases the number of functions for which the frame pointer
6666can be eliminated, if desired.
6667
6668@cindex @code{untyped_call} instruction pattern
6669@item @samp{untyped_call}
6670Subroutine call instruction returning a value of any type. Operand 0 is
6671the function to call; operand 1 is a memory location where the result of
6672calling the function is to be stored; operand 2 is a @code{parallel}
6673expression where each element is a @code{set} expression that indicates
6674the saving of a function return value into the result block.
6675
6676This instruction pattern should be defined to support
6677@code{__builtin_apply} on machines where special instructions are needed
6678to call a subroutine with arbitrary arguments or to save the value
6679returned. This instruction pattern is required on machines that have
e979f9e8
JM
6680multiple registers that can hold a return value
6681(i.e.@: @code{FUNCTION_VALUE_REGNO_P} is true for more than one register).
03dda8e3
RK
6682
6683@cindex @code{return} instruction pattern
6684@item @samp{return}
6685Subroutine return instruction. This instruction pattern name should be
6686defined only if a single instruction can do all the work of returning
6687from a function.
6688
6689Like the @samp{mov@var{m}} patterns, this pattern is also used after the
6690RTL generation phase. In this case it is to support machines where
6691multiple instructions are usually needed to return from a function, but
6692some class of functions only requires one instruction to implement a
6693return. Normally, the applicable functions are those which do not need
6694to save any registers or allocate stack space.
6695
26898771
BS
6696It is valid for this pattern to expand to an instruction using
6697@code{simple_return} if no epilogue is required.
6698
6699@cindex @code{simple_return} instruction pattern
6700@item @samp{simple_return}
6701Subroutine return instruction. This instruction pattern name should be
6702defined only if a single instruction can do all the work of returning
6703from a function on a path where no epilogue is required. This pattern
6704is very similar to the @code{return} instruction pattern, but it is emitted
6705only by the shrink-wrapping optimization on paths where the function
6706prologue has not been executed, and a function return should occur without
6707any of the effects of the epilogue. Additional uses may be introduced on
6708paths where both the prologue and the epilogue have executed.
6709
03dda8e3
RK
6710@findex reload_completed
6711@findex leaf_function_p
6712For such machines, the condition specified in this pattern should only
df2a54e9 6713be true when @code{reload_completed} is nonzero and the function's
03dda8e3
RK
6714epilogue would only be a single instruction. For machines with register
6715windows, the routine @code{leaf_function_p} may be used to determine if
6716a register window push is required.
6717
6718Machines that have conditional return instructions should define patterns
6719such as
6720
6721@smallexample
6722(define_insn ""
6723 [(set (pc)
6724 (if_then_else (match_operator
6725 0 "comparison_operator"
6726 [(cc0) (const_int 0)])
6727 (return)
6728 (pc)))]
6729 "@var{condition}"
6730 "@dots{}")
6731@end smallexample
6732
6733where @var{condition} would normally be the same condition specified on the
6734named @samp{return} pattern.
6735
6736@cindex @code{untyped_return} instruction pattern
6737@item @samp{untyped_return}
6738Untyped subroutine return instruction. This instruction pattern should
6739be defined to support @code{__builtin_return} on machines where special
6740instructions are needed to return a value of any type.
6741
6742Operand 0 is a memory location where the result of calling a function
6743with @code{__builtin_apply} is stored; operand 1 is a @code{parallel}
6744expression where each element is a @code{set} expression that indicates
6745the restoring of a function return value from the result block.
6746
6747@cindex @code{nop} instruction pattern
6748@item @samp{nop}
6749No-op instruction. This instruction pattern name should always be defined
6750to output a no-op in assembler code. @code{(const_int 0)} will do as an
6751RTL pattern.
6752
6753@cindex @code{indirect_jump} instruction pattern
6754@item @samp{indirect_jump}
6755An instruction to jump to an address which is operand zero.
6756This pattern name is mandatory on all machines.
6757
6758@cindex @code{casesi} instruction pattern
6759@item @samp{casesi}
6760Instruction to jump through a dispatch table, including bounds checking.
6761This instruction takes five operands:
6762
6763@enumerate
6764@item
6765The index to dispatch on, which has mode @code{SImode}.
6766
6767@item
6768The lower bound for indices in the table, an integer constant.
6769
6770@item
6771The total range of indices in the table---the largest index
6772minus the smallest one (both inclusive).
6773
6774@item
6775A label that precedes the table itself.
6776
6777@item
6778A label to jump to if the index has a value outside the bounds.
03dda8e3
RK
6779@end enumerate
6780
e4ae5e77 6781The table is an @code{addr_vec} or @code{addr_diff_vec} inside of a
da5c6bde 6782@code{jump_table_data}. The number of elements in the table is one plus the
03dda8e3
RK
6783difference between the upper bound and the lower bound.
6784
6785@cindex @code{tablejump} instruction pattern
6786@item @samp{tablejump}
6787Instruction to jump to a variable address. This is a low-level
6788capability which can be used to implement a dispatch table when there
6789is no @samp{casesi} pattern.
6790
6791This pattern requires two operands: the address or offset, and a label
6792which should immediately precede the jump table. If the macro
f1f5f142
JL
6793@code{CASE_VECTOR_PC_RELATIVE} evaluates to a nonzero value then the first
6794operand is an offset which counts from the address of the table; otherwise,
6795it is an absolute address to jump to. In either case, the first operand has
03dda8e3
RK
6796mode @code{Pmode}.
6797
6798The @samp{tablejump} insn is always the last insn before the jump
6799table it uses. Its assembler code normally has no need to use the
6800second operand, but you should incorporate it in the RTL pattern so
6801that the jump optimizer will not delete the table as unreachable code.
6802
6e4fcc95 6803
6e4fcc95
MH
6804@cindex @code{doloop_end} instruction pattern
6805@item @samp{doloop_end}
1d0216c8
RS
6806Conditional branch instruction that decrements a register and
6807jumps if the register is nonzero. Operand 0 is the register to
6808decrement and test; operand 1 is the label to jump to if the
6809register is nonzero.
5c25e11d 6810@xref{Looping Patterns}.
6e4fcc95
MH
6811
6812This optional instruction pattern should be defined for machines with
6813low-overhead looping instructions as the loop optimizer will try to
1d0216c8
RS
6814modify suitable loops to utilize it. The target hook
6815@code{TARGET_CAN_USE_DOLOOP_P} controls the conditions under which
6816low-overhead loops can be used.
6e4fcc95
MH
6817
6818@cindex @code{doloop_begin} instruction pattern
6819@item @samp{doloop_begin}
6820Companion instruction to @code{doloop_end} required for machines that
1d0216c8
RS
6821need to perform some initialization, such as loading a special counter
6822register. Operand 1 is the associated @code{doloop_end} pattern and
6823operand 0 is the register that it decrements.
6e4fcc95 6824
1d0216c8
RS
6825If initialization insns do not always need to be emitted, use a
6826@code{define_expand} (@pxref{Expander Definitions}) and make it fail.
6e4fcc95 6827
03dda8e3
RK
6828@cindex @code{canonicalize_funcptr_for_compare} instruction pattern
6829@item @samp{canonicalize_funcptr_for_compare}
6830Canonicalize the function pointer in operand 1 and store the result
6831into operand 0.
6832
6833Operand 0 is always a @code{reg} and has mode @code{Pmode}; operand 1
6834may be a @code{reg}, @code{mem}, @code{symbol_ref}, @code{const_int}, etc
6835and also has mode @code{Pmode}.
6836
6837Canonicalization of a function pointer usually involves computing
6838the address of the function which would be called if the function
6839pointer were used in an indirect call.
6840
6841Only define this pattern if function pointers on the target machine
6842can have different values but still call the same function when
6843used in an indirect call.
6844
6845@cindex @code{save_stack_block} instruction pattern
6846@cindex @code{save_stack_function} instruction pattern
6847@cindex @code{save_stack_nonlocal} instruction pattern
6848@cindex @code{restore_stack_block} instruction pattern
6849@cindex @code{restore_stack_function} instruction pattern
6850@cindex @code{restore_stack_nonlocal} instruction pattern
6851@item @samp{save_stack_block}
6852@itemx @samp{save_stack_function}
6853@itemx @samp{save_stack_nonlocal}
6854@itemx @samp{restore_stack_block}
6855@itemx @samp{restore_stack_function}
6856@itemx @samp{restore_stack_nonlocal}
6857Most machines save and restore the stack pointer by copying it to or
6858from an object of mode @code{Pmode}. Do not define these patterns on
6859such machines.
6860
6861Some machines require special handling for stack pointer saves and
6862restores. On those machines, define the patterns corresponding to the
6863non-standard cases by using a @code{define_expand} (@pxref{Expander
6864Definitions}) that produces the required insns. The three types of
6865saves and restores are:
6866
6867@enumerate
6868@item
6869@samp{save_stack_block} saves the stack pointer at the start of a block
6870that allocates a variable-sized object, and @samp{restore_stack_block}
6871restores the stack pointer when the block is exited.
6872
6873@item
6874@samp{save_stack_function} and @samp{restore_stack_function} do a
6875similar job for the outermost block of a function and are used when the
6876function allocates variable-sized objects or calls @code{alloca}. Only
6877the epilogue uses the restored stack pointer, allowing a simpler save or
6878restore sequence on some machines.
6879
6880@item
6881@samp{save_stack_nonlocal} is used in functions that contain labels
6882branched to by nested functions. It saves the stack pointer in such a
6883way that the inner function can use @samp{restore_stack_nonlocal} to
6884restore the stack pointer. The compiler generates code to restore the
6885frame and argument pointer registers, but some machines require saving
6886and restoring additional data such as register window information or
6887stack backchains. Place insns in these patterns to save and restore any
6888such required data.
6889@end enumerate
6890
6891When saving the stack pointer, operand 0 is the save area and operand 1
73c8090f
DE
6892is the stack pointer. The mode used to allocate the save area defaults
6893to @code{Pmode} but you can override that choice by defining the
7e390c9d 6894@code{STACK_SAVEAREA_MODE} macro (@pxref{Storage Layout}). You must
73c8090f
DE
6895specify an integral mode, or @code{VOIDmode} if no save area is needed
6896for a particular type of save (either because no save is needed or
6897because a machine-specific save area can be used). Operand 0 is the
6898stack pointer and operand 1 is the save area for restore operations. If
6899@samp{save_stack_block} is defined, operand 0 must not be
6900@code{VOIDmode} since these saves can be arbitrarily nested.
03dda8e3
RK
6901
6902A save area is a @code{mem} that is at a constant offset from
6903@code{virtual_stack_vars_rtx} when the stack pointer is saved for use by
6904nonlocal gotos and a @code{reg} in the other two cases.
6905
6906@cindex @code{allocate_stack} instruction pattern
6907@item @samp{allocate_stack}
72938a4c 6908Subtract (or add if @code{STACK_GROWS_DOWNWARD} is undefined) operand 1 from
03dda8e3
RK
6909the stack pointer to create space for dynamically allocated data.
6910
72938a4c
MM
6911Store the resultant pointer to this space into operand 0. If you
6912are allocating space from the main stack, do this by emitting a
6913move insn to copy @code{virtual_stack_dynamic_rtx} to operand 0.
6914If you are allocating the space elsewhere, generate code to copy the
6915location of the space to operand 0. In the latter case, you must
956d6950 6916ensure this space gets freed when the corresponding space on the main
72938a4c
MM
6917stack is free.
6918
03dda8e3
RK
6919Do not define this pattern if all that must be done is the subtraction.
6920Some machines require other operations such as stack probes or
6921maintaining the back chain. Define this pattern to emit those
6922operations in addition to updating the stack pointer.
6923
861bb6c1
JL
6924@cindex @code{check_stack} instruction pattern
6925@item @samp{check_stack}
507d0069
EB
6926If stack checking (@pxref{Stack Checking}) cannot be done on your system by
6927probing the stack, define this pattern to perform the needed check and signal
6928an error if the stack has overflowed. The single operand is the address in
6929the stack farthest from the current stack pointer that you need to validate.
6930Normally, on platforms where this pattern is needed, you would obtain the
6931stack limit from a global or thread-specific variable or register.
d809253a 6932
7b84aac0
EB
6933@cindex @code{probe_stack_address} instruction pattern
6934@item @samp{probe_stack_address}
6935If stack checking (@pxref{Stack Checking}) can be done on your system by
6936probing the stack but without the need to actually access it, define this
6937pattern and signal an error if the stack has overflowed. The single operand
6938is the memory address in the stack that needs to be probed.
6939
d809253a
EB
6940@cindex @code{probe_stack} instruction pattern
6941@item @samp{probe_stack}
507d0069
EB
6942If stack checking (@pxref{Stack Checking}) can be done on your system by
6943probing the stack but doing it with a ``store zero'' instruction is not valid
6944or optimal, define this pattern to do the probing differently and signal an
6945error if the stack has overflowed. The single operand is the memory reference
6946in the stack that needs to be probed.
861bb6c1 6947
03dda8e3
RK
6948@cindex @code{nonlocal_goto} instruction pattern
6949@item @samp{nonlocal_goto}
6950Emit code to generate a non-local goto, e.g., a jump from one function
6951to a label in an outer function. This pattern has four arguments,
6952each representing a value to be used in the jump. The first
45bb86fd 6953argument is to be loaded into the frame pointer, the second is
03dda8e3
RK
6954the address to branch to (code to dispatch to the actual label),
6955the third is the address of a location where the stack is saved,
6956and the last is the address of the label, to be placed in the
6957location for the incoming static chain.
6958
f0523f02 6959On most machines you need not define this pattern, since GCC will
03dda8e3
RK
6960already generate the correct code, which is to load the frame pointer
6961and static chain, restore the stack (using the
6962@samp{restore_stack_nonlocal} pattern, if defined), and jump indirectly
6963to the dispatcher. You need only define this pattern if this code will
6964not work on your machine.
6965
6966@cindex @code{nonlocal_goto_receiver} instruction pattern
6967@item @samp{nonlocal_goto_receiver}
6968This pattern, if defined, contains code needed at the target of a
161d7b59 6969nonlocal goto after the code already generated by GCC@. You will not
03dda8e3
RK
6970normally need to define this pattern. A typical reason why you might
6971need this pattern is if some value, such as a pointer to a global table,
c30ddbc9 6972must be restored when the frame pointer is restored. Note that a nonlocal
89bcce1b 6973goto only occurs within a unit-of-translation, so a global table pointer
c30ddbc9
RH
6974that is shared by all functions of a given module need not be restored.
6975There are no arguments.
861bb6c1
JL
6976
6977@cindex @code{exception_receiver} instruction pattern
6978@item @samp{exception_receiver}
6979This pattern, if defined, contains code needed at the site of an
6980exception handler that isn't needed at the site of a nonlocal goto. You
6981will not normally need to define this pattern. A typical reason why you
6982might need this pattern is if some value, such as a pointer to a global
6983table, must be restored after control flow is branched to the handler of
6984an exception. There are no arguments.
c85f7c16 6985
c30ddbc9
RH
6986@cindex @code{builtin_setjmp_setup} instruction pattern
6987@item @samp{builtin_setjmp_setup}
6988This pattern, if defined, contains additional code needed to initialize
6989the @code{jmp_buf}. You will not normally need to define this pattern.
6990A typical reason why you might need this pattern is if some value, such
6991as a pointer to a global table, must be restored. Though it is
6992preferred that the pointer value be recalculated if possible (given the
6993address of a label for instance). The single argument is a pointer to
6994the @code{jmp_buf}. Note that the buffer is five words long and that
6995the first three are normally used by the generic mechanism.
6996
c85f7c16
JL
6997@cindex @code{builtin_setjmp_receiver} instruction pattern
6998@item @samp{builtin_setjmp_receiver}
e4ae5e77 6999This pattern, if defined, contains code needed at the site of a
c771326b 7000built-in setjmp that isn't needed at the site of a nonlocal goto. You
c85f7c16
JL
7001will not normally need to define this pattern. A typical reason why you
7002might need this pattern is if some value, such as a pointer to a global
c30ddbc9 7003table, must be restored. It takes one argument, which is the label
073a8998 7004to which builtin_longjmp transferred control; this pattern may be emitted
c30ddbc9
RH
7005at a small offset from that label.
7006
7007@cindex @code{builtin_longjmp} instruction pattern
7008@item @samp{builtin_longjmp}
7009This pattern, if defined, performs the entire action of the longjmp.
7010You will not normally need to define this pattern unless you also define
7011@code{builtin_setjmp_setup}. The single argument is a pointer to the
7012@code{jmp_buf}.
f69864aa 7013
52a11cbf
RH
7014@cindex @code{eh_return} instruction pattern
7015@item @samp{eh_return}
f69864aa 7016This pattern, if defined, affects the way @code{__builtin_eh_return},
52a11cbf
RH
7017and thence the call frame exception handling library routines, are
7018built. It is intended to handle non-trivial actions needed along
7019the abnormal return path.
7020
34dc173c 7021The address of the exception handler to which the function should return
daf2f129 7022is passed as operand to this pattern. It will normally need to copied by
34dc173c
UW
7023the pattern to some special register or memory location.
7024If the pattern needs to determine the location of the target call
7025frame in order to do so, it may use @code{EH_RETURN_STACKADJ_RTX},
7026if defined; it will have already been assigned.
7027
7028If this pattern is not defined, the default action will be to simply
7029copy the return address to @code{EH_RETURN_HANDLER_RTX}. Either
7030that macro or this pattern needs to be defined if call frame exception
7031handling is to be used.
0b433de6
JL
7032
7033@cindex @code{prologue} instruction pattern
17b53c33 7034@anchor{prologue instruction pattern}
0b433de6
JL
7035@item @samp{prologue}
7036This pattern, if defined, emits RTL for entry to a function. The function
b192711e 7037entry is responsible for setting up the stack frame, initializing the frame
0b433de6
JL
7038pointer register, saving callee saved registers, etc.
7039
7040Using a prologue pattern is generally preferred over defining
17b53c33 7041@code{TARGET_ASM_FUNCTION_PROLOGUE} to emit assembly code for the prologue.
0b433de6
JL
7042
7043The @code{prologue} pattern is particularly useful for targets which perform
7044instruction scheduling.
7045
12c5ffe5
EB
7046@cindex @code{window_save} instruction pattern
7047@anchor{window_save instruction pattern}
7048@item @samp{window_save}
7049This pattern, if defined, emits RTL for a register window save. It should
7050be defined if the target machine has register windows but the window events
7051are decoupled from calls to subroutines. The canonical example is the SPARC
7052architecture.
7053
0b433de6 7054@cindex @code{epilogue} instruction pattern
17b53c33 7055@anchor{epilogue instruction pattern}
0b433de6 7056@item @samp{epilogue}
396ad517 7057This pattern emits RTL for exit from a function. The function
b192711e 7058exit is responsible for deallocating the stack frame, restoring callee saved
0b433de6
JL
7059registers and emitting the return instruction.
7060
7061Using an epilogue pattern is generally preferred over defining
17b53c33 7062@code{TARGET_ASM_FUNCTION_EPILOGUE} to emit assembly code for the epilogue.
0b433de6
JL
7063
7064The @code{epilogue} pattern is particularly useful for targets which perform
7065instruction scheduling or which have delay slots for their return instruction.
7066
7067@cindex @code{sibcall_epilogue} instruction pattern
7068@item @samp{sibcall_epilogue}
7069This pattern, if defined, emits RTL for exit from a function without the final
7070branch back to the calling function. This pattern will be emitted before any
7071sibling call (aka tail call) sites.
7072
7073The @code{sibcall_epilogue} pattern must not clobber any arguments used for
7074parameter passing or any stack slots for arguments passed to the current
ebb48a4d 7075function.
a157febd
GK
7076
7077@cindex @code{trap} instruction pattern
7078@item @samp{trap}
7079This pattern, if defined, signals an error, typically by causing some
4b1ea1f3 7080kind of signal to be raised.
a157febd 7081
f90b7a5a
PB
7082@cindex @code{ctrap@var{MM}4} instruction pattern
7083@item @samp{ctrap@var{MM}4}
a157febd 7084Conditional trap instruction. Operand 0 is a piece of RTL which
f90b7a5a
PB
7085performs a comparison, and operands 1 and 2 are the arms of the
7086comparison. Operand 3 is the trap code, an integer.
a157febd 7087
f90b7a5a 7088A typical @code{ctrap} pattern looks like
a157febd
GK
7089
7090@smallexample
f90b7a5a 7091(define_insn "ctrapsi4"
ebb48a4d 7092 [(trap_if (match_operator 0 "trap_operator"
f90b7a5a 7093 [(match_operand 1 "register_operand")
73b8bfe1 7094 (match_operand 2 "immediate_operand")])
f90b7a5a 7095 (match_operand 3 "const_int_operand" "i"))]
a157febd
GK
7096 ""
7097 "@dots{}")
7098@end smallexample
7099
e83d297b
JJ
7100@cindex @code{prefetch} instruction pattern
7101@item @samp{prefetch}
e83d297b
JJ
7102This pattern, if defined, emits code for a non-faulting data prefetch
7103instruction. Operand 0 is the address of the memory to prefetch. Operand 1
7104is a constant 1 if the prefetch is preparing for a write to the memory
7105address, or a constant 0 otherwise. Operand 2 is the expected degree of
7106temporal locality of the data and is a value between 0 and 3, inclusive; 0
7107means that the data has no temporal locality, so it need not be left in the
7108cache after the access; 3 means that the data has a high degree of temporal
7109locality and should be left in all levels of cache possible; 1 and 2 mean,
7110respectively, a low or moderate degree of temporal locality.
7111
7112Targets that do not support write prefetches or locality hints can ignore
7113the values of operands 1 and 2.
7114
b6bd3371
DE
7115@cindex @code{blockage} instruction pattern
7116@item @samp{blockage}
b6bd3371 7117This pattern defines a pseudo insn that prevents the instruction
adddc347
HPN
7118scheduler and other passes from moving instructions and using register
7119equivalences across the boundary defined by the blockage insn.
7120This needs to be an UNSPEC_VOLATILE pattern or a volatile ASM.
b6bd3371 7121
51ced7e4
UB
7122@cindex @code{memory_blockage} instruction pattern
7123@item @samp{memory_blockage}
7124This pattern, if defined, represents a compiler memory barrier, and will be
7125placed at points across which RTL passes may not propagate memory accesses.
7126This instruction needs to read and write volatile BLKmode memory. It does
7127not need to generate any machine instruction. If this pattern is not defined,
7128the compiler falls back to emitting an instruction corresponding
7129to @code{asm volatile ("" ::: "memory")}.
7130
48ae6c13
RH
7131@cindex @code{memory_barrier} instruction pattern
7132@item @samp{memory_barrier}
48ae6c13
RH
7133If the target memory model is not fully synchronous, then this pattern
7134should be defined to an instruction that orders both loads and stores
7135before the instruction with respect to loads and stores after the instruction.
7136This pattern has no operands.
7137
425fc685
RE
7138@cindex @code{speculation_barrier} instruction pattern
7139@item @samp{speculation_barrier}
7140If the target can support speculative execution, then this pattern should
7141be defined to an instruction that will block subsequent execution until
7142any prior speculation conditions has been resolved. The pattern must also
7143ensure that the compiler cannot move memory operations past the barrier,
7144so it needs to be an UNSPEC_VOLATILE pattern. The pattern has no
7145operands.
7146
7147If this pattern is not defined then the default expansion of
7148@code{__builtin_speculation_safe_value} will emit a warning. You can
7149suppress this warning by defining this pattern with a final condition
7150of @code{0} (zero), which tells the compiler that a speculation
7151barrier is not needed for this target.
7152
48ae6c13
RH
7153@cindex @code{sync_compare_and_swap@var{mode}} instruction pattern
7154@item @samp{sync_compare_and_swap@var{mode}}
48ae6c13
RH
7155This pattern, if defined, emits code for an atomic compare-and-swap
7156operation. Operand 1 is the memory on which the atomic operation is
7157performed. Operand 2 is the ``old'' value to be compared against the
7158current contents of the memory location. Operand 3 is the ``new'' value
7159to store in the memory if the compare succeeds. Operand 0 is the result
915167f5
GK
7160of the operation; it should contain the contents of the memory
7161before the operation. If the compare succeeds, this should obviously be
7162a copy of operand 2.
48ae6c13
RH
7163
7164This pattern must show that both operand 0 and operand 1 are modified.
7165
915167f5
GK
7166This pattern must issue any memory barrier instructions such that all
7167memory operations before the atomic operation occur before the atomic
7168operation and all memory operations after the atomic operation occur
7169after the atomic operation.
48ae6c13 7170
4a77c72b 7171For targets where the success or failure of the compare-and-swap
f90b7a5a
PB
7172operation is available via the status flags, it is possible to
7173avoid a separate compare operation and issue the subsequent
7174branch or store-flag operation immediately after the compare-and-swap.
7175To this end, GCC will look for a @code{MODE_CC} set in the
7176output of @code{sync_compare_and_swap@var{mode}}; if the machine
7177description includes such a set, the target should also define special
7178@code{cbranchcc4} and/or @code{cstorecc4} instructions. GCC will then
7179be able to take the destination of the @code{MODE_CC} set and pass it
7180to the @code{cbranchcc4} or @code{cstorecc4} pattern as the first
7181operand of the comparison (the second will be @code{(const_int 0)}).
48ae6c13 7182
cedb4a1a
RH
7183For targets where the operating system may provide support for this
7184operation via library calls, the @code{sync_compare_and_swap_optab}
7185may be initialized to a function with the same interface as the
7186@code{__sync_val_compare_and_swap_@var{n}} built-in. If the entire
7187set of @var{__sync} builtins are supported via library calls, the
7188target can initialize all of the optabs at once with
7189@code{init_sync_libfuncs}.
7190For the purposes of C++11 @code{std::atomic::is_lock_free}, it is
7191assumed that these library calls do @emph{not} use any kind of
7192interruptable locking.
7193
48ae6c13
RH
7194@cindex @code{sync_add@var{mode}} instruction pattern
7195@cindex @code{sync_sub@var{mode}} instruction pattern
7196@cindex @code{sync_ior@var{mode}} instruction pattern
7197@cindex @code{sync_and@var{mode}} instruction pattern
7198@cindex @code{sync_xor@var{mode}} instruction pattern
7199@cindex @code{sync_nand@var{mode}} instruction pattern
7200@item @samp{sync_add@var{mode}}, @samp{sync_sub@var{mode}}
7201@itemx @samp{sync_ior@var{mode}}, @samp{sync_and@var{mode}}
7202@itemx @samp{sync_xor@var{mode}}, @samp{sync_nand@var{mode}}
48ae6c13
RH
7203These patterns emit code for an atomic operation on memory.
7204Operand 0 is the memory on which the atomic operation is performed.
7205Operand 1 is the second operand to the binary operator.
7206
915167f5
GK
7207This pattern must issue any memory barrier instructions such that all
7208memory operations before the atomic operation occur before the atomic
7209operation and all memory operations after the atomic operation occur
7210after the atomic operation.
48ae6c13
RH
7211
7212If these patterns are not defined, the operation will be constructed
7213from a compare-and-swap operation, if defined.
7214
7215@cindex @code{sync_old_add@var{mode}} instruction pattern
7216@cindex @code{sync_old_sub@var{mode}} instruction pattern
7217@cindex @code{sync_old_ior@var{mode}} instruction pattern
7218@cindex @code{sync_old_and@var{mode}} instruction pattern
7219@cindex @code{sync_old_xor@var{mode}} instruction pattern
7220@cindex @code{sync_old_nand@var{mode}} instruction pattern
7221@item @samp{sync_old_add@var{mode}}, @samp{sync_old_sub@var{mode}}
7222@itemx @samp{sync_old_ior@var{mode}}, @samp{sync_old_and@var{mode}}
7223@itemx @samp{sync_old_xor@var{mode}}, @samp{sync_old_nand@var{mode}}
c29c1030 7224These patterns emit code for an atomic operation on memory,
48ae6c13
RH
7225and return the value that the memory contained before the operation.
7226Operand 0 is the result value, operand 1 is the memory on which the
7227atomic operation is performed, and operand 2 is the second operand
7228to the binary operator.
7229
915167f5
GK
7230This pattern must issue any memory barrier instructions such that all
7231memory operations before the atomic operation occur before the atomic
7232operation and all memory operations after the atomic operation occur
7233after the atomic operation.
48ae6c13
RH
7234
7235If these patterns are not defined, the operation will be constructed
7236from a compare-and-swap operation, if defined.
7237
7238@cindex @code{sync_new_add@var{mode}} instruction pattern
7239@cindex @code{sync_new_sub@var{mode}} instruction pattern
7240@cindex @code{sync_new_ior@var{mode}} instruction pattern
7241@cindex @code{sync_new_and@var{mode}} instruction pattern
7242@cindex @code{sync_new_xor@var{mode}} instruction pattern
7243@cindex @code{sync_new_nand@var{mode}} instruction pattern
7244@item @samp{sync_new_add@var{mode}}, @samp{sync_new_sub@var{mode}}
7245@itemx @samp{sync_new_ior@var{mode}}, @samp{sync_new_and@var{mode}}
7246@itemx @samp{sync_new_xor@var{mode}}, @samp{sync_new_nand@var{mode}}
48ae6c13
RH
7247These patterns are like their @code{sync_old_@var{op}} counterparts,
7248except that they return the value that exists in the memory location
7249after the operation, rather than before the operation.
7250
7251@cindex @code{sync_lock_test_and_set@var{mode}} instruction pattern
7252@item @samp{sync_lock_test_and_set@var{mode}}
48ae6c13
RH
7253This pattern takes two forms, based on the capabilities of the target.
7254In either case, operand 0 is the result of the operand, operand 1 is
7255the memory on which the atomic operation is performed, and operand 2
7256is the value to set in the lock.
7257
7258In the ideal case, this operation is an atomic exchange operation, in
7259which the previous value in memory operand is copied into the result
7260operand, and the value operand is stored in the memory operand.
7261
7262For less capable targets, any value operand that is not the constant 1
7263should be rejected with @code{FAIL}. In this case the target may use
7264an atomic test-and-set bit operation. The result operand should contain
72651 if the bit was previously set and 0 if the bit was previously clear.
7266The true contents of the memory operand are implementation defined.
7267
7268This pattern must issue any memory barrier instructions such that the
915167f5
GK
7269pattern as a whole acts as an acquire barrier, that is all memory
7270operations after the pattern do not occur until the lock is acquired.
48ae6c13
RH
7271
7272If this pattern is not defined, the operation will be constructed from
7273a compare-and-swap operation, if defined.
7274
7275@cindex @code{sync_lock_release@var{mode}} instruction pattern
7276@item @samp{sync_lock_release@var{mode}}
48ae6c13
RH
7277This pattern, if defined, releases a lock set by
7278@code{sync_lock_test_and_set@var{mode}}. Operand 0 is the memory
8635a919
GK
7279that contains the lock; operand 1 is the value to store in the lock.
7280
7281If the target doesn't implement full semantics for
7282@code{sync_lock_test_and_set@var{mode}}, any value operand which is not
7283the constant 0 should be rejected with @code{FAIL}, and the true contents
7284of the memory operand are implementation defined.
48ae6c13
RH
7285
7286This pattern must issue any memory barrier instructions such that the
915167f5
GK
7287pattern as a whole acts as a release barrier, that is the lock is
7288released only after all previous memory operations have completed.
48ae6c13
RH
7289
7290If this pattern is not defined, then a @code{memory_barrier} pattern
8635a919 7291will be emitted, followed by a store of the value to the memory operand.
48ae6c13 7292
86951993
AM
7293@cindex @code{atomic_compare_and_swap@var{mode}} instruction pattern
7294@item @samp{atomic_compare_and_swap@var{mode}}
7295This pattern, if defined, emits code for an atomic compare-and-swap
7296operation with memory model semantics. Operand 2 is the memory on which
7297the atomic operation is performed. Operand 0 is an output operand which
7298is set to true or false based on whether the operation succeeded. Operand
72991 is an output operand which is set to the contents of the memory before
7300the operation was attempted. Operand 3 is the value that is expected to
7301be in memory. Operand 4 is the value to put in memory if the expected
7302value is found there. Operand 5 is set to 1 if this compare and swap is to
7303be treated as a weak operation. Operand 6 is the memory model to be used
7304if the operation is a success. Operand 7 is the memory model to be used
7305if the operation fails.
7306
7307If memory referred to in operand 2 contains the value in operand 3, then
7308operand 4 is stored in memory pointed to by operand 2 and fencing based on
7309the memory model in operand 6 is issued.
7310
7311If memory referred to in operand 2 does not contain the value in operand 3,
7312then fencing based on the memory model in operand 7 is issued.
7313
7314If a target does not support weak compare-and-swap operations, or the port
7315elects not to implement weak operations, the argument in operand 5 can be
7316ignored. Note a strong implementation must be provided.
7317
7318If this pattern is not provided, the @code{__atomic_compare_exchange}
7319built-in functions will utilize the legacy @code{sync_compare_and_swap}
7320pattern with an @code{__ATOMIC_SEQ_CST} memory model.
7321
7322@cindex @code{atomic_load@var{mode}} instruction pattern
7323@item @samp{atomic_load@var{mode}}
7324This pattern implements an atomic load operation with memory model
7325semantics. Operand 1 is the memory address being loaded from. Operand 0
7326is the result of the load. Operand 2 is the memory model to be used for
7327the load operation.
7328
7329If not present, the @code{__atomic_load} built-in function will either
7330resort to a normal load with memory barriers, or a compare-and-swap
7331operation if a normal load would not be atomic.
7332
7333@cindex @code{atomic_store@var{mode}} instruction pattern
7334@item @samp{atomic_store@var{mode}}
7335This pattern implements an atomic store operation with memory model
7336semantics. Operand 0 is the memory address being stored to. Operand 1
7337is the value to be written. Operand 2 is the memory model to be used for
7338the operation.
7339
7340If not present, the @code{__atomic_store} built-in function will attempt to
7341perform a normal store and surround it with any required memory fences. If
7342the store would not be atomic, then an @code{__atomic_exchange} is
7343attempted with the result being ignored.
7344
7345@cindex @code{atomic_exchange@var{mode}} instruction pattern
7346@item @samp{atomic_exchange@var{mode}}
7347This pattern implements an atomic exchange operation with memory model
7348semantics. Operand 1 is the memory location the operation is performed on.
7349Operand 0 is an output operand which is set to the original value contained
7350in the memory pointed to by operand 1. Operand 2 is the value to be
7351stored. Operand 3 is the memory model to be used.
7352
7353If this pattern is not present, the built-in function
7354@code{__atomic_exchange} will attempt to preform the operation with a
7355compare and swap loop.
7356
7357@cindex @code{atomic_add@var{mode}} instruction pattern
7358@cindex @code{atomic_sub@var{mode}} instruction pattern
7359@cindex @code{atomic_or@var{mode}} instruction pattern
7360@cindex @code{atomic_and@var{mode}} instruction pattern
7361@cindex @code{atomic_xor@var{mode}} instruction pattern
7362@cindex @code{atomic_nand@var{mode}} instruction pattern
7363@item @samp{atomic_add@var{mode}}, @samp{atomic_sub@var{mode}}
7364@itemx @samp{atomic_or@var{mode}}, @samp{atomic_and@var{mode}}
7365@itemx @samp{atomic_xor@var{mode}}, @samp{atomic_nand@var{mode}}
86951993
AM
7366These patterns emit code for an atomic operation on memory with memory
7367model semantics. Operand 0 is the memory on which the atomic operation is
7368performed. Operand 1 is the second operand to the binary operator.
7369Operand 2 is the memory model to be used by the operation.
7370
7371If these patterns are not defined, attempts will be made to use legacy
c29c1030 7372@code{sync} patterns, or equivalent patterns which return a result. If
86951993
AM
7373none of these are available a compare-and-swap loop will be used.
7374
7375@cindex @code{atomic_fetch_add@var{mode}} instruction pattern
7376@cindex @code{atomic_fetch_sub@var{mode}} instruction pattern
7377@cindex @code{atomic_fetch_or@var{mode}} instruction pattern
7378@cindex @code{atomic_fetch_and@var{mode}} instruction pattern
7379@cindex @code{atomic_fetch_xor@var{mode}} instruction pattern
7380@cindex @code{atomic_fetch_nand@var{mode}} instruction pattern
7381@item @samp{atomic_fetch_add@var{mode}}, @samp{atomic_fetch_sub@var{mode}}
7382@itemx @samp{atomic_fetch_or@var{mode}}, @samp{atomic_fetch_and@var{mode}}
7383@itemx @samp{atomic_fetch_xor@var{mode}}, @samp{atomic_fetch_nand@var{mode}}
86951993
AM
7384These patterns emit code for an atomic operation on memory with memory
7385model semantics, and return the original value. Operand 0 is an output
7386operand which contains the value of the memory location before the
7387operation was performed. Operand 1 is the memory on which the atomic
7388operation is performed. Operand 2 is the second operand to the binary
7389operator. Operand 3 is the memory model to be used by the operation.
7390
7391If these patterns are not defined, attempts will be made to use legacy
7392@code{sync} patterns. If none of these are available a compare-and-swap
7393loop will be used.
7394
7395@cindex @code{atomic_add_fetch@var{mode}} instruction pattern
7396@cindex @code{atomic_sub_fetch@var{mode}} instruction pattern
7397@cindex @code{atomic_or_fetch@var{mode}} instruction pattern
7398@cindex @code{atomic_and_fetch@var{mode}} instruction pattern
7399@cindex @code{atomic_xor_fetch@var{mode}} instruction pattern
7400@cindex @code{atomic_nand_fetch@var{mode}} instruction pattern
7401@item @samp{atomic_add_fetch@var{mode}}, @samp{atomic_sub_fetch@var{mode}}
7402@itemx @samp{atomic_or_fetch@var{mode}}, @samp{atomic_and_fetch@var{mode}}
7403@itemx @samp{atomic_xor_fetch@var{mode}}, @samp{atomic_nand_fetch@var{mode}}
86951993
AM
7404These patterns emit code for an atomic operation on memory with memory
7405model semantics and return the result after the operation is performed.
7406Operand 0 is an output operand which contains the value after the
7407operation. Operand 1 is the memory on which the atomic operation is
7408performed. Operand 2 is the second operand to the binary operator.
7409Operand 3 is the memory model to be used by the operation.
7410
7411If these patterns are not defined, attempts will be made to use legacy
c29c1030 7412@code{sync} patterns, or equivalent patterns which return the result before
86951993
AM
7413the operation followed by the arithmetic operation required to produce the
7414result. If none of these are available a compare-and-swap loop will be
7415used.
7416
f8a27aa6
RH
7417@cindex @code{atomic_test_and_set} instruction pattern
7418@item @samp{atomic_test_and_set}
f8a27aa6
RH
7419This pattern emits code for @code{__builtin_atomic_test_and_set}.
7420Operand 0 is an output operand which is set to true if the previous
7421previous contents of the byte was "set", and false otherwise. Operand 1
7422is the @code{QImode} memory to be modified. Operand 2 is the memory
7423model to be used.
7424
7425The specific value that defines "set" is implementation defined, and
7426is normally based on what is performed by the native atomic test and set
7427instruction.
7428
adedd5c1
JJ
7429@cindex @code{atomic_bit_test_and_set@var{mode}} instruction pattern
7430@cindex @code{atomic_bit_test_and_complement@var{mode}} instruction pattern
7431@cindex @code{atomic_bit_test_and_reset@var{mode}} instruction pattern
7432@item @samp{atomic_bit_test_and_set@var{mode}}
7433@itemx @samp{atomic_bit_test_and_complement@var{mode}}
7434@itemx @samp{atomic_bit_test_and_reset@var{mode}}
7435These patterns emit code for an atomic bitwise operation on memory with memory
7436model semantics, and return the original value of the specified bit.
7437Operand 0 is an output operand which contains the value of the specified bit
7438from the memory location before the operation was performed. Operand 1 is the
7439memory on which the atomic operation is performed. Operand 2 is the bit within
7440the operand, starting with least significant bit. Operand 3 is the memory model
7441to be used by the operation. Operand 4 is a flag - it is @code{const1_rtx}
7442if operand 0 should contain the original value of the specified bit in the
7443least significant bit of the operand, and @code{const0_rtx} if the bit should
7444be in its original position in the operand.
7445@code{atomic_bit_test_and_set@var{mode}} atomically sets the specified bit after
7446remembering its original value, @code{atomic_bit_test_and_complement@var{mode}}
7447inverts the specified bit and @code{atomic_bit_test_and_reset@var{mode}} clears
7448the specified bit.
7449
7450If these patterns are not defined, attempts will be made to use
7451@code{atomic_fetch_or@var{mode}}, @code{atomic_fetch_xor@var{mode}} or
7452@code{atomic_fetch_and@var{mode}} instruction patterns, or their @code{sync}
7453counterparts. If none of these are available a compare-and-swap
7454loop will be used.
7455
5e5ccf0d
AM
7456@cindex @code{mem_thread_fence} instruction pattern
7457@item @samp{mem_thread_fence}
86951993
AM
7458This pattern emits code required to implement a thread fence with
7459memory model semantics. Operand 0 is the memory model to be used.
7460
5e5ccf0d
AM
7461For the @code{__ATOMIC_RELAXED} model no instructions need to be issued
7462and this expansion is not invoked.
7463
7464The compiler always emits a compiler memory barrier regardless of what
7465expanding this pattern produced.
7466
7467If this pattern is not defined, the compiler falls back to expanding the
7468@code{memory_barrier} pattern, then to emitting @code{__sync_synchronize}
7469library call, and finally to just placing a compiler memory barrier.
86951993 7470
f959607b
CLT
7471@cindex @code{get_thread_pointer@var{mode}} instruction pattern
7472@cindex @code{set_thread_pointer@var{mode}} instruction pattern
7473@item @samp{get_thread_pointer@var{mode}}
7474@itemx @samp{set_thread_pointer@var{mode}}
7475These patterns emit code that reads/sets the TLS thread pointer. Currently,
7476these are only needed if the target needs to support the
7477@code{__builtin_thread_pointer} and @code{__builtin_set_thread_pointer}
7478builtins.
7479
7480The get/set patterns have a single output/input operand respectively,
7481with @var{mode} intended to be @code{Pmode}.
7482
89d75572
TP
7483@cindex @code{stack_protect_combined_set} instruction pattern
7484@item @samp{stack_protect_combined_set}
7485This pattern, if defined, moves a @code{ptr_mode} value from an address
7486whose declaration RTX is given in operand 1 to the memory in operand 0
7487without leaving the value in a register afterward. If several
7488instructions are needed by the target to perform the operation (eg. to
7489load the address from a GOT entry then load the @code{ptr_mode} value
7490and finally store it), it is the backend's responsibility to ensure no
7491intermediate result gets spilled. This is to avoid leaking the value
7492some place that an attacker might use to rewrite the stack guard slot
7493after having clobbered it.
7494
7495If this pattern is not defined, then the address declaration is
7496expanded first in the standard way and a @code{stack_protect_set}
7497pattern is then generated to move the value from that address to the
7498address in operand 0.
7499
7d69de61
RH
7500@cindex @code{stack_protect_set} instruction pattern
7501@item @samp{stack_protect_set}
89d75572
TP
7502This pattern, if defined, moves a @code{ptr_mode} value from the valid
7503memory location in operand 1 to the memory in operand 0 without leaving
7504the value in a register afterward. This is to avoid leaking the value
7505some place that an attacker might use to rewrite the stack guard slot
7506after having clobbered it.
7507
7508Note: on targets where the addressing modes do not allow to load
7509directly from stack guard address, the address is expanded in a standard
7510way first which could cause some spills.
7d69de61
RH
7511
7512If this pattern is not defined, then a plain move pattern is generated.
7513
89d75572
TP
7514@cindex @code{stack_protect_combined_test} instruction pattern
7515@item @samp{stack_protect_combined_test}
7516This pattern, if defined, compares a @code{ptr_mode} value from an
7517address whose declaration RTX is given in operand 1 with the memory in
7518operand 0 without leaving the value in a register afterward and
7519branches to operand 2 if the values were equal. If several
7520instructions are needed by the target to perform the operation (eg. to
7521load the address from a GOT entry then load the @code{ptr_mode} value
7522and finally store it), it is the backend's responsibility to ensure no
7523intermediate result gets spilled. This is to avoid leaking the value
7524some place that an attacker might use to rewrite the stack guard slot
7525after having clobbered it.
7526
7527If this pattern is not defined, then the address declaration is
7528expanded first in the standard way and a @code{stack_protect_test}
7529pattern is then generated to compare the value from that address to the
7530value at the memory in operand 0.
7531
7d69de61
RH
7532@cindex @code{stack_protect_test} instruction pattern
7533@item @samp{stack_protect_test}
643e867f 7534This pattern, if defined, compares a @code{ptr_mode} value from the
89d75572
TP
7535valid memory location in operand 1 with the memory in operand 0 without
7536leaving the value in a register afterward and branches to operand 2 if
7537the values were equal.
7d69de61 7538
3aebbe5f
JJ
7539If this pattern is not defined, then a plain compare pattern and
7540conditional branch pattern is used.
7d69de61 7541
677feb77
DD
7542@cindex @code{clear_cache} instruction pattern
7543@item @samp{clear_cache}
677feb77
DD
7544This pattern, if defined, flushes the instruction cache for a region of
7545memory. The region is bounded to by the Pmode pointers in operand 0
7546inclusive and operand 1 exclusive.
7547
7548If this pattern is not defined, a call to the library function
7549@code{__clear_cache} is used.
7550
03dda8e3
RK
7551@end table
7552
a5249a21
HPN
7553@end ifset
7554@c Each of the following nodes are wrapped in separate
7555@c "@ifset INTERNALS" to work around memory limits for the default
7556@c configuration in older tetex distributions. Known to not work:
7557@c tetex-1.0.7, known to work: tetex-2.0.2.
7558@ifset INTERNALS
03dda8e3
RK
7559@node Pattern Ordering
7560@section When the Order of Patterns Matters
7561@cindex Pattern Ordering
7562@cindex Ordering of Patterns
7563
7564Sometimes an insn can match more than one instruction pattern. Then the
7565pattern that appears first in the machine description is the one used.
7566Therefore, more specific patterns (patterns that will match fewer things)
7567and faster instructions (those that will produce better code when they
7568do match) should usually go first in the description.
7569
7570In some cases the effect of ordering the patterns can be used to hide
7571a pattern when it is not valid. For example, the 68000 has an
7572instruction for converting a fullword to floating point and another
7573for converting a byte to floating point. An instruction converting
7574an integer to floating point could match either one. We put the
7575pattern to convert the fullword first to make sure that one will
7576be used rather than the other. (Otherwise a large integer might
7577be generated as a single-byte immediate quantity, which would not work.)
7578Instead of using this pattern ordering it would be possible to make the
7579pattern for convert-a-byte smart enough to deal properly with any
7580constant value.
7581
a5249a21
HPN
7582@end ifset
7583@ifset INTERNALS
03dda8e3
RK
7584@node Dependent Patterns
7585@section Interdependence of Patterns
7586@cindex Dependent Patterns
7587@cindex Interdependence of Patterns
7588
03dda8e3
RK
7589In some cases machines support instructions identical except for the
7590machine mode of one or more operands. For example, there may be
7591``sign-extend halfword'' and ``sign-extend byte'' instructions whose
7592patterns are
7593
3ab51846 7594@smallexample
03dda8e3
RK
7595(set (match_operand:SI 0 @dots{})
7596 (extend:SI (match_operand:HI 1 @dots{})))
7597
7598(set (match_operand:SI 0 @dots{})
7599 (extend:SI (match_operand:QI 1 @dots{})))
3ab51846 7600@end smallexample
03dda8e3
RK
7601
7602@noindent
7603Constant integers do not specify a machine mode, so an instruction to
7604extend a constant value could match either pattern. The pattern it
7605actually will match is the one that appears first in the file. For correct
7606results, this must be the one for the widest possible mode (@code{HImode},
7607here). If the pattern matches the @code{QImode} instruction, the results
7608will be incorrect if the constant value does not actually fit that mode.
7609
7610Such instructions to extend constants are rarely generated because they are
7611optimized away, but they do occasionally happen in nonoptimized
7612compilations.
7613
7614If a constraint in a pattern allows a constant, the reload pass may
7615replace a register with a constant permitted by the constraint in some
7616cases. Similarly for memory references. Because of this substitution,
7617you should not provide separate patterns for increment and decrement
7618instructions. Instead, they should be generated from the same pattern
7619that supports register-register add insns by examining the operands and
7620generating the appropriate machine instruction.
7621
a5249a21
HPN
7622@end ifset
7623@ifset INTERNALS
03dda8e3
RK
7624@node Jump Patterns
7625@section Defining Jump Instruction Patterns
7626@cindex jump instruction patterns
7627@cindex defining jump instruction patterns
7628
f90b7a5a
PB
7629GCC does not assume anything about how the machine realizes jumps.
7630The machine description should define a single pattern, usually
7631a @code{define_expand}, which expands to all the required insns.
7632
7633Usually, this would be a comparison insn to set the condition code
7634and a separate branch insn testing the condition code and branching
7635or not according to its value. For many machines, however,
7636separating compares and branches is limiting, which is why the
7637more flexible approach with one @code{define_expand} is used in GCC.
7638The machine description becomes clearer for architectures that
7639have compare-and-branch instructions but no condition code. It also
7640works better when different sets of comparison operators are supported
630ba2fd
SB
7641by different kinds of conditional branches (e.g.@: integer vs.@:
7642floating-point), or by conditional branches with respect to conditional stores.
f90b7a5a
PB
7643
7644Two separate insns are always used if the machine description represents
7645a condition code register using the legacy RTL expression @code{(cc0)},
7646and on most machines that use a separate condition code register
7647(@pxref{Condition Code}). For machines that use @code{(cc0)}, in
7648fact, the set and use of the condition code must be separate and
7649adjacent@footnote{@code{note} insns can separate them, though.}, thus
7650allowing flags in @code{cc_status} to be used (@pxref{Condition Code}) and
7651so that the comparison and branch insns could be located from each other
7652by using the functions @code{prev_cc0_setter} and @code{next_cc0_user}.
7653
7654Even in this case having a single entry point for conditional branches
7655is advantageous, because it handles equally well the case where a single
7656comparison instruction records the results of both signed and unsigned
7657comparison of the given operands (with the branch insns coming in distinct
7658signed and unsigned flavors) as in the x86 or SPARC, and the case where
7659there are distinct signed and unsigned compare instructions and only
7660one set of conditional branch instructions as in the PowerPC.
03dda8e3 7661
a5249a21
HPN
7662@end ifset
7663@ifset INTERNALS
6e4fcc95
MH
7664@node Looping Patterns
7665@section Defining Looping Instruction Patterns
7666@cindex looping instruction patterns
7667@cindex defining looping instruction patterns
7668
05713b80 7669Some machines have special jump instructions that can be utilized to
6e4fcc95
MH
7670make loops more efficient. A common example is the 68000 @samp{dbra}
7671instruction which performs a decrement of a register and a branch if the
7672result was greater than zero. Other machines, in particular digital
7673signal processors (DSPs), have special block repeat instructions to
7674provide low-overhead loop support. For example, the TI TMS320C3x/C4x
7675DSPs have a block repeat instruction that loads special registers to
7676mark the top and end of a loop and to count the number of loop
7677iterations. This avoids the need for fetching and executing a
c771326b 7678@samp{dbra}-like instruction and avoids pipeline stalls associated with
6e4fcc95
MH
7679the jump.
7680
f9adcdec
PK
7681GCC has two special named patterns to support low overhead looping.
7682They are @samp{doloop_begin} and @samp{doloop_end}. These are emitted
7683by the loop optimizer for certain well-behaved loops with a finite
7684number of loop iterations using information collected during strength
7685reduction.
6e4fcc95
MH
7686
7687The @samp{doloop_end} pattern describes the actual looping instruction
7688(or the implicit looping operation) and the @samp{doloop_begin} pattern
c21cd8b1 7689is an optional companion pattern that can be used for initialization
6e4fcc95
MH
7690needed for some low-overhead looping instructions.
7691
7692Note that some machines require the actual looping instruction to be
7693emitted at the top of the loop (e.g., the TMS320C3x/C4x DSPs). Emitting
7694the true RTL for a looping instruction at the top of the loop can cause
7695problems with flow analysis. So instead, a dummy @code{doloop} insn is
7696emitted at the end of the loop. The machine dependent reorg pass checks
7697for the presence of this @code{doloop} insn and then searches back to
7698the top of the loop, where it inserts the true looping insn (provided
7699there are no instructions in the loop which would cause problems). Any
7700additional labels can be emitted at this point. In addition, if the
7701desired special iteration counter register was not allocated, this
7702machine dependent reorg pass could emit a traditional compare and jump
7703instruction pair.
7704
f9adcdec
PK
7705For the @samp{doloop_end} pattern, the loop optimizer allocates an
7706additional pseudo register as an iteration counter. This pseudo
7707register cannot be used within the loop (i.e., general induction
7708variables cannot be derived from it), however, in many cases the loop
7709induction variable may become redundant and removed by the flow pass.
7710
7711The @samp{doloop_end} pattern must have a specific structure to be
7712handled correctly by GCC. The example below is taken (slightly
7713simplified) from the PDP-11 target:
7714
7715@smallexample
7716@group
a01abe9d
PK
7717(define_expand "doloop_end"
7718 [(parallel [(set (pc)
7719 (if_then_else
7720 (ne (match_operand:HI 0 "nonimmediate_operand" "+r,!m")
7721 (const_int 1))
7722 (label_ref (match_operand 1 "" ""))
7723 (pc)))
7724 (set (match_dup 0)
7725 (plus:HI (match_dup 0)
7726 (const_int -1)))])]
7727 ""
7728 "@{
7729 if (GET_MODE (operands[0]) != HImode)
7730 FAIL;
7731 @}")
7732
7733(define_insn "doloop_end_insn"
f9adcdec
PK
7734 [(set (pc)
7735 (if_then_else
7736 (ne (match_operand:HI 0 "nonimmediate_operand" "+r,!m")
7737 (const_int 1))
7738 (label_ref (match_operand 1 "" ""))
7739 (pc)))
7740 (set (match_dup 0)
7741 (plus:HI (match_dup 0)
7742 (const_int -1)))]
7743 ""
7744
7745 @{
7746 if (which_alternative == 0)
7747 return "sob %0,%l1";
7748
7749 /* emulate sob */
7750 output_asm_insn ("dec %0", operands);
7751 return "bne %l1";
7752 @})
7753@end group
7754@end smallexample
7755
7756The first part of the pattern describes the branch condition. GCC
7757supports three cases for the way the target machine handles the loop
7758counter:
7759@itemize @bullet
7760@item Loop terminates when the loop register decrements to zero. This
7761is represented by a @code{ne} comparison of the register (its old value)
7762with constant 1 (as in the example above).
7763@item Loop terminates when the loop register decrements to @minus{}1.
7764This is represented by a @code{ne} comparison of the register with
7765constant zero.
7766@item Loop terminates when the loop register decrements to a negative
7767value. This is represented by a @code{ge} comparison of the register
7768with constant zero. For this case, GCC will attach a @code{REG_NONNEG}
7769note to the @code{doloop_end} insn if it can determine that the register
7770will be non-negative.
7771@end itemize
6e4fcc95 7772
f9adcdec
PK
7773Since the @code{doloop_end} insn is a jump insn that also has an output,
7774the reload pass does not handle the output operand. Therefore, the
7775constraint must allow for that operand to be in memory rather than a
a01abe9d
PK
7776register. In the example shown above, that is handled (in the
7777@code{doloop_end_insn} pattern) by using a loop instruction sequence
7778that can handle memory operands when the memory alternative appears.
7779
7780GCC does not check the mode of the loop register operand when generating
7781the @code{doloop_end} pattern. If the pattern is only valid for some
7782modes but not others, the pattern should be a @code{define_expand}
7783pattern that checks the operand mode in the preparation code, and issues
7784@code{FAIL} if an unsupported mode is found. The example above does
7785this, since the machine instruction to be used only exists for
7786@code{HImode}.
7787
7788If the @code{doloop_end} pattern is a @code{define_expand}, there must
7789also be a @code{define_insn} or @code{define_insn_and_split} matching
7790the generated pattern. Otherwise, the compiler will fail during loop
7791optimization.
6e4fcc95 7792
a5249a21
HPN
7793@end ifset
7794@ifset INTERNALS
03dda8e3
RK
7795@node Insn Canonicalizations
7796@section Canonicalization of Instructions
7797@cindex canonicalization of instructions
7798@cindex insn canonicalization
7799
7800There are often cases where multiple RTL expressions could represent an
7801operation performed by a single machine instruction. This situation is
7802most commonly encountered with logical, branch, and multiply-accumulate
7803instructions. In such cases, the compiler attempts to convert these
7804multiple RTL expressions into a single canonical form to reduce the
7805number of insn patterns required.
7806
7807In addition to algebraic simplifications, following canonicalizations
7808are performed:
7809
7810@itemize @bullet
7811@item
7812For commutative and comparison operators, a constant is always made the
7813second operand. If a machine only supports a constant as the second
7814operand, only patterns that match a constant in the second operand need
7815be supplied.
7816
e3d6e740
GK
7817@item
7818For associative operators, a sequence of operators will always chain
7819to the left; for instance, only the left operand of an integer @code{plus}
7820can itself be a @code{plus}. @code{and}, @code{ior}, @code{xor},
7821@code{plus}, @code{mult}, @code{smin}, @code{smax}, @code{umin}, and
7822@code{umax} are associative when applied to integers, and sometimes to
7823floating-point.
7824
7825@item
03dda8e3
RK
7826@cindex @code{neg}, canonicalization of
7827@cindex @code{not}, canonicalization of
7828@cindex @code{mult}, canonicalization of
7829@cindex @code{plus}, canonicalization of
7830@cindex @code{minus}, canonicalization of
7831For these operators, if only one operand is a @code{neg}, @code{not},
7832@code{mult}, @code{plus}, or @code{minus} expression, it will be the
7833first operand.
7834
16823694
GK
7835@item
7836In combinations of @code{neg}, @code{mult}, @code{plus}, and
7837@code{minus}, the @code{neg} operations (if any) will be moved inside
daf2f129 7838the operations as far as possible. For instance,
16823694 7839@code{(neg (mult A B))} is canonicalized as @code{(mult (neg A) B)}, but
9302a061 7840@code{(plus (mult (neg B) C) A)} is canonicalized as
16823694
GK
7841@code{(minus A (mult B C))}.
7842
03dda8e3
RK
7843@cindex @code{compare}, canonicalization of
7844@item
7845For the @code{compare} operator, a constant is always the second operand
f90b7a5a 7846if the first argument is a condition code register or @code{(cc0)}.
03dda8e3 7847
81ad201a
UB
7848@item
7849For instructions that inherently set a condition code register, the
7850@code{compare} operator is always written as the first RTL expression of
7851the @code{parallel} instruction pattern. For example,
7852
7853@smallexample
7854(define_insn ""
7855 [(set (reg:CCZ FLAGS_REG)
7856 (compare:CCZ
7857 (plus:SI
7858 (match_operand:SI 1 "register_operand" "%r")
7859 (match_operand:SI 2 "register_operand" "r"))
7860 (const_int 0)))
7861 (set (match_operand:SI 0 "register_operand" "=r")
7862 (plus:SI (match_dup 1) (match_dup 2)))]
7863 ""
7864 "addl %0, %1, %2")
7865@end smallexample
7866
f90b7a5a 7867@item
03dda8e3
RK
7868An operand of @code{neg}, @code{not}, @code{mult}, @code{plus}, or
7869@code{minus} is made the first operand under the same conditions as
7870above.
7871
921c4418
RIL
7872@item
7873@code{(ltu (plus @var{a} @var{b}) @var{b})} is converted to
7874@code{(ltu (plus @var{a} @var{b}) @var{a})}. Likewise with @code{geu} instead
7875of @code{ltu}.
7876
03dda8e3
RK
7877@item
7878@code{(minus @var{x} (const_int @var{n}))} is converted to
7879@code{(plus @var{x} (const_int @var{-n}))}.
7880
7881@item
7882Within address computations (i.e., inside @code{mem}), a left shift is
7883converted into the appropriate multiplication by a power of two.
7884
7885@cindex @code{ior}, canonicalization of
7886@cindex @code{and}, canonicalization of
7887@cindex De Morgan's law
72938a4c 7888@item
090359d6 7889De Morgan's Law is used to move bitwise negation inside a bitwise
03dda8e3
RK
7890logical-and or logical-or operation. If this results in only one
7891operand being a @code{not} expression, it will be the first one.
7892
7893A machine that has an instruction that performs a bitwise logical-and of one
7894operand with the bitwise negation of the other should specify the pattern
7895for that instruction as
7896
3ab51846 7897@smallexample
03dda8e3
RK
7898(define_insn ""
7899 [(set (match_operand:@var{m} 0 @dots{})
7900 (and:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7901 (match_operand:@var{m} 2 @dots{})))]
7902 "@dots{}"
7903 "@dots{}")
3ab51846 7904@end smallexample
03dda8e3
RK
7905
7906@noindent
7907Similarly, a pattern for a ``NAND'' instruction should be written
7908
3ab51846 7909@smallexample
03dda8e3
RK
7910(define_insn ""
7911 [(set (match_operand:@var{m} 0 @dots{})
7912 (ior:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7913 (not:@var{m} (match_operand:@var{m} 2 @dots{}))))]
7914 "@dots{}"
7915 "@dots{}")
3ab51846 7916@end smallexample
03dda8e3
RK
7917
7918In both cases, it is not necessary to include patterns for the many
7919logically equivalent RTL expressions.
7920
7921@cindex @code{xor}, canonicalization of
7922@item
7923The only possible RTL expressions involving both bitwise exclusive-or
7924and bitwise negation are @code{(xor:@var{m} @var{x} @var{y})}
bd819a4a 7925and @code{(not:@var{m} (xor:@var{m} @var{x} @var{y}))}.
03dda8e3
RK
7926
7927@item
7928The sum of three items, one of which is a constant, will only appear in
7929the form
7930
3ab51846 7931@smallexample
03dda8e3 7932(plus:@var{m} (plus:@var{m} @var{x} @var{y}) @var{constant})
3ab51846 7933@end smallexample
03dda8e3 7934
03dda8e3
RK
7935@cindex @code{zero_extract}, canonicalization of
7936@cindex @code{sign_extract}, canonicalization of
7937@item
7938Equality comparisons of a group of bits (usually a single bit) with zero
7939will be written using @code{zero_extract} rather than the equivalent
7940@code{and} or @code{sign_extract} operations.
7941
c536876e
AS
7942@cindex @code{mult}, canonicalization of
7943@item
7944@code{(sign_extend:@var{m1} (mult:@var{m2} (sign_extend:@var{m2} @var{x})
7945(sign_extend:@var{m2} @var{y})))} is converted to @code{(mult:@var{m1}
7946(sign_extend:@var{m1} @var{x}) (sign_extend:@var{m1} @var{y}))}, and likewise
7947for @code{zero_extend}.
7948
7949@item
7950@code{(sign_extend:@var{m1} (mult:@var{m2} (ashiftrt:@var{m2}
7951@var{x} @var{s}) (sign_extend:@var{m2} @var{y})))} is converted
7952to @code{(mult:@var{m1} (sign_extend:@var{m1} (ashiftrt:@var{m2}
7953@var{x} @var{s})) (sign_extend:@var{m1} @var{y}))}, and likewise for
7954patterns using @code{zero_extend} and @code{lshiftrt}. If the second
7955operand of @code{mult} is also a shift, then that is extended also.
7956This transformation is only applied when it can be proven that the
7957original operation had sufficient precision to prevent overflow.
7958
03dda8e3
RK
7959@end itemize
7960
cd16503a
HPN
7961Further canonicalization rules are defined in the function
7962@code{commutative_operand_precedence} in @file{gcc/rtlanal.c}.
7963
a5249a21
HPN
7964@end ifset
7965@ifset INTERNALS
03dda8e3
RK
7966@node Expander Definitions
7967@section Defining RTL Sequences for Code Generation
7968@cindex expander definitions
7969@cindex code generation RTL sequences
7970@cindex defining RTL sequences for code generation
7971
7972On some target machines, some standard pattern names for RTL generation
7973cannot be handled with single insn, but a sequence of RTL insns can
7974represent them. For these target machines, you can write a
161d7b59 7975@code{define_expand} to specify how to generate the sequence of RTL@.
03dda8e3
RK
7976
7977@findex define_expand
7978A @code{define_expand} is an RTL expression that looks almost like a
7979@code{define_insn}; but, unlike the latter, a @code{define_expand} is used
7980only for RTL generation and it can produce more than one RTL insn.
7981
7982A @code{define_expand} RTX has four operands:
7983
7984@itemize @bullet
7985@item
7986The name. Each @code{define_expand} must have a name, since the only
7987use for it is to refer to it by name.
7988
03dda8e3 7989@item
f3a3d0d3
RH
7990The RTL template. This is a vector of RTL expressions representing
7991a sequence of separate instructions. Unlike @code{define_insn}, there
7992is no implicit surrounding @code{PARALLEL}.
03dda8e3
RK
7993
7994@item
7995The condition, a string containing a C expression. This expression is
7996used to express how the availability of this pattern depends on
f0523f02
JM
7997subclasses of target machine, selected by command-line options when GCC
7998is run. This is just like the condition of a @code{define_insn} that
03dda8e3
RK
7999has a standard name. Therefore, the condition (if present) may not
8000depend on the data in the insn being matched, but only the
8001target-machine-type flags. The compiler needs to test these conditions
8002during initialization in order to learn exactly which named instructions
8003are available in a particular run.
8004
8005@item
8006The preparation statements, a string containing zero or more C
8007statements which are to be executed before RTL code is generated from
8008the RTL template.
8009
8010Usually these statements prepare temporary registers for use as
8011internal operands in the RTL template, but they can also generate RTL
8012insns directly by calling routines such as @code{emit_insn}, etc.
8013Any such insns precede the ones that come from the RTL template.
477c104e
MK
8014
8015@item
8016Optionally, a vector containing the values of attributes. @xref{Insn
8017Attributes}.
03dda8e3
RK
8018@end itemize
8019
8020Every RTL insn emitted by a @code{define_expand} must match some
8021@code{define_insn} in the machine description. Otherwise, the compiler
8022will crash when trying to generate code for the insn or trying to optimize
8023it.
8024
8025The RTL template, in addition to controlling generation of RTL insns,
8026also describes the operands that need to be specified when this pattern
8027is used. In particular, it gives a predicate for each operand.
8028
8029A true operand, which needs to be specified in order to generate RTL from
8030the pattern, should be described with a @code{match_operand} in its first
8031occurrence in the RTL template. This enters information on the operand's
f0523f02 8032predicate into the tables that record such things. GCC uses the
03dda8e3
RK
8033information to preload the operand into a register if that is required for
8034valid RTL code. If the operand is referred to more than once, subsequent
8035references should use @code{match_dup}.
8036
8037The RTL template may also refer to internal ``operands'' which are
8038temporary registers or labels used only within the sequence made by the
8039@code{define_expand}. Internal operands are substituted into the RTL
8040template with @code{match_dup}, never with @code{match_operand}. The
8041values of the internal operands are not passed in as arguments by the
8042compiler when it requests use of this pattern. Instead, they are computed
8043within the pattern, in the preparation statements. These statements
8044compute the values and store them into the appropriate elements of
8045@code{operands} so that @code{match_dup} can find them.
8046
8047There are two special macros defined for use in the preparation statements:
8048@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8049as a statement.
8050
8051@table @code
8052
8053@findex DONE
8054@item DONE
8055Use the @code{DONE} macro to end RTL generation for the pattern. The
8056only RTL insns resulting from the pattern on this occasion will be
8057those already emitted by explicit calls to @code{emit_insn} within the
8058preparation statements; the RTL template will not be generated.
8059
8060@findex FAIL
8061@item FAIL
8062Make the pattern fail on this occasion. When a pattern fails, it means
8063that the pattern was not truly available. The calling routines in the
8064compiler will try other strategies for code generation using other patterns.
8065
8066Failure is currently supported only for binary (addition, multiplication,
c771326b 8067shifting, etc.) and bit-field (@code{extv}, @code{extzv}, and @code{insv})
03dda8e3
RK
8068operations.
8069@end table
8070
55e4756f
DD
8071If the preparation falls through (invokes neither @code{DONE} nor
8072@code{FAIL}), then the @code{define_expand} acts like a
8073@code{define_insn} in that the RTL template is used to generate the
8074insn.
8075
8076The RTL template is not used for matching, only for generating the
8077initial insn list. If the preparation statement always invokes
8078@code{DONE} or @code{FAIL}, the RTL template may be reduced to a simple
8079list of operands, such as this example:
8080
8081@smallexample
8082@group
8083(define_expand "addsi3"
8084 [(match_operand:SI 0 "register_operand" "")
8085 (match_operand:SI 1 "register_operand" "")
8086 (match_operand:SI 2 "register_operand" "")]
8087@end group
8088@group
8089 ""
8090 "
58097133 8091@{
55e4756f
DD
8092 handle_add (operands[0], operands[1], operands[2]);
8093 DONE;
58097133 8094@}")
55e4756f
DD
8095@end group
8096@end smallexample
8097
03dda8e3
RK
8098Here is an example, the definition of left-shift for the SPUR chip:
8099
8100@smallexample
8101@group
8102(define_expand "ashlsi3"
8103 [(set (match_operand:SI 0 "register_operand" "")
8104 (ashift:SI
8105@end group
8106@group
8107 (match_operand:SI 1 "register_operand" "")
8108 (match_operand:SI 2 "nonmemory_operand" "")))]
8109 ""
8110 "
8111@end group
8112@end smallexample
8113
8114@smallexample
8115@group
8116@{
8117 if (GET_CODE (operands[2]) != CONST_INT
8118 || (unsigned) INTVAL (operands[2]) > 3)
8119 FAIL;
8120@}")
8121@end group
8122@end smallexample
8123
8124@noindent
8125This example uses @code{define_expand} so that it can generate an RTL insn
8126for shifting when the shift-count is in the supported range of 0 to 3 but
8127fail in other cases where machine insns aren't available. When it fails,
8128the compiler tries another strategy using different patterns (such as, a
8129library call).
8130
8131If the compiler were able to handle nontrivial condition-strings in
8132patterns with names, then it would be possible to use a
8133@code{define_insn} in that case. Here is another case (zero-extension
8134on the 68000) which makes more use of the power of @code{define_expand}:
8135
8136@smallexample
8137(define_expand "zero_extendhisi2"
8138 [(set (match_operand:SI 0 "general_operand" "")
8139 (const_int 0))
8140 (set (strict_low_part
8141 (subreg:HI
8142 (match_dup 0)
8143 0))
8144 (match_operand:HI 1 "general_operand" ""))]
8145 ""
8146 "operands[1] = make_safe_from (operands[1], operands[0]);")
8147@end smallexample
8148
8149@noindent
8150@findex make_safe_from
8151Here two RTL insns are generated, one to clear the entire output operand
8152and the other to copy the input operand into its low half. This sequence
8153is incorrect if the input operand refers to [the old value of] the output
8154operand, so the preparation statement makes sure this isn't so. The
8155function @code{make_safe_from} copies the @code{operands[1]} into a
8156temporary register if it refers to @code{operands[0]}. It does this
8157by emitting another RTL insn.
8158
8159Finally, a third example shows the use of an internal operand.
8160Zero-extension on the SPUR chip is done by @code{and}-ing the result
8161against a halfword mask. But this mask cannot be represented by a
8162@code{const_int} because the constant value is too large to be legitimate
8163on this machine. So it must be copied into a register with
8164@code{force_reg} and then the register used in the @code{and}.
8165
8166@smallexample
8167(define_expand "zero_extendhisi2"
8168 [(set (match_operand:SI 0 "register_operand" "")
8169 (and:SI (subreg:SI
8170 (match_operand:HI 1 "register_operand" "")
8171 0)
8172 (match_dup 2)))]
8173 ""
8174 "operands[2]
3a598fbe 8175 = force_reg (SImode, GEN_INT (65535)); ")
03dda8e3
RK
8176@end smallexample
8177
f4559287 8178@emph{Note:} If the @code{define_expand} is used to serve a
c771326b 8179standard binary or unary arithmetic operation or a bit-field operation,
03dda8e3
RK
8180then the last insn it generates must not be a @code{code_label},
8181@code{barrier} or @code{note}. It must be an @code{insn},
8182@code{jump_insn} or @code{call_insn}. If you don't need a real insn
8183at the end, emit an insn to copy the result of the operation into
8184itself. Such an insn will generate no code, but it can avoid problems
bd819a4a 8185in the compiler.
03dda8e3 8186
a5249a21
HPN
8187@end ifset
8188@ifset INTERNALS
03dda8e3
RK
8189@node Insn Splitting
8190@section Defining How to Split Instructions
8191@cindex insn splitting
8192@cindex instruction splitting
8193@cindex splitting instructions
8194
fae15c93
VM
8195There are two cases where you should specify how to split a pattern
8196into multiple insns. On machines that have instructions requiring
8197delay slots (@pxref{Delay Slots}) or that have instructions whose
8198output is not available for multiple cycles (@pxref{Processor pipeline
8199description}), the compiler phases that optimize these cases need to
8200be able to move insns into one-instruction delay slots. However, some
8201insns may generate more than one machine instruction. These insns
8202cannot be placed into a delay slot.
03dda8e3
RK
8203
8204Often you can rewrite the single insn as a list of individual insns,
8205each corresponding to one machine instruction. The disadvantage of
8206doing so is that it will cause the compilation to be slower and require
8207more space. If the resulting insns are too complex, it may also
8208suppress some optimizations. The compiler splits the insn if there is a
8209reason to believe that it might improve instruction or delay slot
8210scheduling.
8211
8212The insn combiner phase also splits putative insns. If three insns are
8213merged into one insn with a complex expression that cannot be matched by
8214some @code{define_insn} pattern, the combiner phase attempts to split
8215the complex pattern into two insns that are recognized. Usually it can
8216break the complex pattern into two patterns by splitting out some
8217subexpression. However, in some other cases, such as performing an
8218addition of a large constant in two insns on a RISC machine, the way to
8219split the addition into two insns is machine-dependent.
8220
f3a3d0d3 8221@findex define_split
03dda8e3
RK
8222The @code{define_split} definition tells the compiler how to split a
8223complex insn into several simpler insns. It looks like this:
8224
8225@smallexample
8226(define_split
8227 [@var{insn-pattern}]
8228 "@var{condition}"
8229 [@var{new-insn-pattern-1}
8230 @var{new-insn-pattern-2}
8231 @dots{}]
630d3d5a 8232 "@var{preparation-statements}")
03dda8e3
RK
8233@end smallexample
8234
8235@var{insn-pattern} is a pattern that needs to be split and
8236@var{condition} is the final condition to be tested, as in a
8237@code{define_insn}. When an insn matching @var{insn-pattern} and
8238satisfying @var{condition} is found, it is replaced in the insn list
8239with the insns given by @var{new-insn-pattern-1},
8240@var{new-insn-pattern-2}, etc.
8241
630d3d5a 8242The @var{preparation-statements} are similar to those statements that
03dda8e3
RK
8243are specified for @code{define_expand} (@pxref{Expander Definitions})
8244and are executed before the new RTL is generated to prepare for the
8245generated code or emit some insns whose pattern is not fixed. Unlike
8246those in @code{define_expand}, however, these statements must not
8247generate any new pseudo-registers. Once reload has completed, they also
8248must not allocate any space in the stack frame.
8249
582d1f90
PK
8250There are two special macros defined for use in the preparation statements:
8251@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8252as a statement.
8253
8254@table @code
8255
8256@findex DONE
8257@item DONE
8258Use the @code{DONE} macro to end RTL generation for the splitter. The
8259only RTL insns generated as replacement for the matched input insn will
8260be those already emitted by explicit calls to @code{emit_insn} within
8261the preparation statements; the replacement pattern is not used.
8262
8263@findex FAIL
8264@item FAIL
8265Make the @code{define_split} fail on this occasion. When a @code{define_split}
8266fails, it means that the splitter was not truly available for the inputs
8267it was given, and the input insn will not be split.
8268@end table
8269
8270If the preparation falls through (invokes neither @code{DONE} nor
8271@code{FAIL}), then the @code{define_split} uses the replacement
8272template.
8273
03dda8e3
RK
8274Patterns are matched against @var{insn-pattern} in two different
8275circumstances. If an insn needs to be split for delay slot scheduling
8276or insn scheduling, the insn is already known to be valid, which means
8277that it must have been matched by some @code{define_insn} and, if
df2a54e9 8278@code{reload_completed} is nonzero, is known to satisfy the constraints
03dda8e3
RK
8279of that @code{define_insn}. In that case, the new insn patterns must
8280also be insns that are matched by some @code{define_insn} and, if
df2a54e9 8281@code{reload_completed} is nonzero, must also satisfy the constraints
03dda8e3
RK
8282of those definitions.
8283
8284As an example of this usage of @code{define_split}, consider the following
8285example from @file{a29k.md}, which splits a @code{sign_extend} from
8286@code{HImode} to @code{SImode} into a pair of shift insns:
8287
8288@smallexample
8289(define_split
8290 [(set (match_operand:SI 0 "gen_reg_operand" "")
8291 (sign_extend:SI (match_operand:HI 1 "gen_reg_operand" "")))]
8292 ""
8293 [(set (match_dup 0)
8294 (ashift:SI (match_dup 1)
8295 (const_int 16)))
8296 (set (match_dup 0)
8297 (ashiftrt:SI (match_dup 0)
8298 (const_int 16)))]
8299 "
8300@{ operands[1] = gen_lowpart (SImode, operands[1]); @}")
8301@end smallexample
8302
8303When the combiner phase tries to split an insn pattern, it is always the
8304case that the pattern is @emph{not} matched by any @code{define_insn}.
8305The combiner pass first tries to split a single @code{set} expression
8306and then the same @code{set} expression inside a @code{parallel}, but
8307followed by a @code{clobber} of a pseudo-reg to use as a scratch
8308register. In these cases, the combiner expects exactly two new insn
8309patterns to be generated. It will verify that these patterns match some
8310@code{define_insn} definitions, so you need not do this test in the
8311@code{define_split} (of course, there is no point in writing a
8312@code{define_split} that will never produce insns that match).
8313
8314Here is an example of this use of @code{define_split}, taken from
8315@file{rs6000.md}:
8316
8317@smallexample
8318(define_split
8319 [(set (match_operand:SI 0 "gen_reg_operand" "")
8320 (plus:SI (match_operand:SI 1 "gen_reg_operand" "")
8321 (match_operand:SI 2 "non_add_cint_operand" "")))]
8322 ""
8323 [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
8324 (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
8325"
8326@{
8327 int low = INTVAL (operands[2]) & 0xffff;
8328 int high = (unsigned) INTVAL (operands[2]) >> 16;
8329
8330 if (low & 0x8000)
8331 high++, low |= 0xffff0000;
8332
3a598fbe
JL
8333 operands[3] = GEN_INT (high << 16);
8334 operands[4] = GEN_INT (low);
03dda8e3
RK
8335@}")
8336@end smallexample
8337
8338Here the predicate @code{non_add_cint_operand} matches any
8339@code{const_int} that is @emph{not} a valid operand of a single add
8340insn. The add with the smaller displacement is written so that it
8341can be substituted into the address of a subsequent operation.
8342
8343An example that uses a scratch register, from the same file, generates
8344an equality comparison of a register and a large constant:
8345
8346@smallexample
8347(define_split
8348 [(set (match_operand:CC 0 "cc_reg_operand" "")
8349 (compare:CC (match_operand:SI 1 "gen_reg_operand" "")
8350 (match_operand:SI 2 "non_short_cint_operand" "")))
8351 (clobber (match_operand:SI 3 "gen_reg_operand" ""))]
8352 "find_single_use (operands[0], insn, 0)
8353 && (GET_CODE (*find_single_use (operands[0], insn, 0)) == EQ
8354 || GET_CODE (*find_single_use (operands[0], insn, 0)) == NE)"
8355 [(set (match_dup 3) (xor:SI (match_dup 1) (match_dup 4)))
8356 (set (match_dup 0) (compare:CC (match_dup 3) (match_dup 5)))]
8357 "
8358@{
12bcfaa1 8359 /* @r{Get the constant we are comparing against, C, and see what it
03dda8e3 8360 looks like sign-extended to 16 bits. Then see what constant
12bcfaa1 8361 could be XOR'ed with C to get the sign-extended value.} */
03dda8e3
RK
8362
8363 int c = INTVAL (operands[2]);
8364 int sextc = (c << 16) >> 16;
8365 int xorv = c ^ sextc;
8366
3a598fbe
JL
8367 operands[4] = GEN_INT (xorv);
8368 operands[5] = GEN_INT (sextc);
03dda8e3
RK
8369@}")
8370@end smallexample
8371
8372To avoid confusion, don't write a single @code{define_split} that
8373accepts some insns that match some @code{define_insn} as well as some
8374insns that don't. Instead, write two separate @code{define_split}
8375definitions, one for the insns that are valid and one for the insns that
8376are not valid.
8377
6b24c259
JH
8378The splitter is allowed to split jump instructions into sequence of
8379jumps or create new jumps in while splitting non-jump instructions. As
d5f9df6a 8380the control flow graph and branch prediction information needs to be updated,
f282ffb3 8381several restriction apply.
6b24c259
JH
8382
8383Splitting of jump instruction into sequence that over by another jump
c21cd8b1 8384instruction is always valid, as compiler expect identical behavior of new
6b24c259
JH
8385jump. When new sequence contains multiple jump instructions or new labels,
8386more assistance is needed. Splitter is required to create only unconditional
8387jumps, or simple conditional jump instructions. Additionally it must attach a
63519d23 8388@code{REG_BR_PROB} note to each conditional jump. A global variable
addd6f64 8389@code{split_branch_probability} holds the probability of the original branch in case
e4ae5e77 8390it was a simple conditional jump, @minus{}1 otherwise. To simplify
addd6f64 8391recomputing of edge frequencies, the new sequence is required to have only
6b24c259
JH
8392forward jumps to the newly created labels.
8393
fae81b38 8394@findex define_insn_and_split
c88c0d42
CP
8395For the common case where the pattern of a define_split exactly matches the
8396pattern of a define_insn, use @code{define_insn_and_split}. It looks like
8397this:
8398
8399@smallexample
8400(define_insn_and_split
8401 [@var{insn-pattern}]
8402 "@var{condition}"
8403 "@var{output-template}"
8404 "@var{split-condition}"
8405 [@var{new-insn-pattern-1}
8406 @var{new-insn-pattern-2}
8407 @dots{}]
630d3d5a 8408 "@var{preparation-statements}"
c88c0d42
CP
8409 [@var{insn-attributes}])
8410
8411@end smallexample
8412
8413@var{insn-pattern}, @var{condition}, @var{output-template}, and
8414@var{insn-attributes} are used as in @code{define_insn}. The
8415@var{new-insn-pattern} vector and the @var{preparation-statements} are used as
8416in a @code{define_split}. The @var{split-condition} is also used as in
8417@code{define_split}, with the additional behavior that if the condition starts
8418with @samp{&&}, the condition used for the split will be the constructed as a
d7d9c429 8419logical ``and'' of the split condition with the insn condition. For example,
c88c0d42
CP
8420from i386.md:
8421
8422@smallexample
8423(define_insn_and_split "zero_extendhisi2_and"
8424 [(set (match_operand:SI 0 "register_operand" "=r")
8425 (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))
8426 (clobber (reg:CC 17))]
8427 "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size"
8428 "#"
8429 "&& reload_completed"
f282ffb3 8430 [(parallel [(set (match_dup 0)
9c34dbbf 8431 (and:SI (match_dup 0) (const_int 65535)))
6ccde948 8432 (clobber (reg:CC 17))])]
c88c0d42
CP
8433 ""
8434 [(set_attr "type" "alu1")])
8435
8436@end smallexample
8437
ebb48a4d 8438In this case, the actual split condition will be
aee96fe9 8439@samp{TARGET_ZERO_EXTEND_WITH_AND && !optimize_size && reload_completed}.
c88c0d42
CP
8440
8441The @code{define_insn_and_split} construction provides exactly the same
8442functionality as two separate @code{define_insn} and @code{define_split}
8443patterns. It exists for compactness, and as a maintenance tool to prevent
8444having to ensure the two patterns' templates match.
8445
a5249a21
HPN
8446@end ifset
8447@ifset INTERNALS
04d8aa70
AM
8448@node Including Patterns
8449@section Including Patterns in Machine Descriptions.
8450@cindex insn includes
8451
8452@findex include
8453The @code{include} pattern tells the compiler tools where to
8454look for patterns that are in files other than in the file
8a36672b 8455@file{.md}. This is used only at build time and there is no preprocessing allowed.
04d8aa70
AM
8456
8457It looks like:
8458
8459@smallexample
8460
8461(include
8462 @var{pathname})
8463@end smallexample
8464
8465For example:
8466
8467@smallexample
8468
f282ffb3 8469(include "filestuff")
04d8aa70
AM
8470
8471@end smallexample
8472
27d30956 8473Where @var{pathname} is a string that specifies the location of the file,
8a36672b 8474specifies the include file to be in @file{gcc/config/target/filestuff}. The
04d8aa70
AM
8475directory @file{gcc/config/target} is regarded as the default directory.
8476
8477
f282ffb3
JM
8478Machine descriptions may be split up into smaller more manageable subsections
8479and placed into subdirectories.
04d8aa70
AM
8480
8481By specifying:
8482
8483@smallexample
8484
f282ffb3 8485(include "BOGUS/filestuff")
04d8aa70
AM
8486
8487@end smallexample
8488
8489the include file is specified to be in @file{gcc/config/@var{target}/BOGUS/filestuff}.
8490
8491Specifying an absolute path for the include file such as;
8492@smallexample
8493
f282ffb3 8494(include "/u2/BOGUS/filestuff")
04d8aa70
AM
8495
8496@end smallexample
f282ffb3 8497is permitted but is not encouraged.
04d8aa70
AM
8498
8499@subsection RTL Generation Tool Options for Directory Search
8500@cindex directory options .md
8501@cindex options, directory search
8502@cindex search options
8503
8504The @option{-I@var{dir}} option specifies directories to search for machine descriptions.
8505For example:
8506
8507@smallexample
8508
8509genrecog -I/p1/abc/proc1 -I/p2/abcd/pro2 target.md
8510
8511@end smallexample
8512
8513
8514Add the directory @var{dir} to the head of the list of directories to be
8515searched for header files. This can be used to override a system machine definition
8516file, substituting your own version, since these directories are
8517searched before the default machine description file directories. If you use more than
8518one @option{-I} option, the directories are scanned in left-to-right
8519order; the standard default directory come after.
8520
8521
a5249a21
HPN
8522@end ifset
8523@ifset INTERNALS
f3a3d0d3
RH
8524@node Peephole Definitions
8525@section Machine-Specific Peephole Optimizers
8526@cindex peephole optimizer definitions
8527@cindex defining peephole optimizers
8528
8529In addition to instruction patterns the @file{md} file may contain
8530definitions of machine-specific peephole optimizations.
8531
8532The combiner does not notice certain peephole optimizations when the data
8533flow in the program does not suggest that it should try them. For example,
8534sometimes two consecutive insns related in purpose can be combined even
8535though the second one does not appear to use a register computed in the
8536first one. A machine-specific peephole optimizer can detect such
8537opportunities.
8538
8539There are two forms of peephole definitions that may be used. The
8540original @code{define_peephole} is run at assembly output time to
8541match insns and substitute assembly text. Use of @code{define_peephole}
8542is deprecated.
8543
8544A newer @code{define_peephole2} matches insns and substitutes new
8545insns. The @code{peephole2} pass is run after register allocation
ebb48a4d 8546but before scheduling, which may result in much better code for
f3a3d0d3
RH
8547targets that do scheduling.
8548
8549@menu
8550* define_peephole:: RTL to Text Peephole Optimizers
8551* define_peephole2:: RTL to RTL Peephole Optimizers
8552@end menu
8553
a5249a21
HPN
8554@end ifset
8555@ifset INTERNALS
f3a3d0d3
RH
8556@node define_peephole
8557@subsection RTL to Text Peephole Optimizers
8558@findex define_peephole
8559
8560@need 1000
8561A definition looks like this:
8562
8563@smallexample
8564(define_peephole
8565 [@var{insn-pattern-1}
8566 @var{insn-pattern-2}
8567 @dots{}]
8568 "@var{condition}"
8569 "@var{template}"
630d3d5a 8570 "@var{optional-insn-attributes}")
f3a3d0d3
RH
8571@end smallexample
8572
8573@noindent
8574The last string operand may be omitted if you are not using any
8575machine-specific information in this machine description. If present,
8576it must obey the same rules as in a @code{define_insn}.
8577
8578In this skeleton, @var{insn-pattern-1} and so on are patterns to match
8579consecutive insns. The optimization applies to a sequence of insns when
8580@var{insn-pattern-1} matches the first one, @var{insn-pattern-2} matches
bd819a4a 8581the next, and so on.
f3a3d0d3
RH
8582
8583Each of the insns matched by a peephole must also match a
8584@code{define_insn}. Peepholes are checked only at the last stage just
8585before code generation, and only optionally. Therefore, any insn which
8586would match a peephole but no @code{define_insn} will cause a crash in code
8587generation in an unoptimized compilation, or at various optimization
8588stages.
8589
8590The operands of the insns are matched with @code{match_operands},
8591@code{match_operator}, and @code{match_dup}, as usual. What is not
8592usual is that the operand numbers apply to all the insn patterns in the
8593definition. So, you can check for identical operands in two insns by
8594using @code{match_operand} in one insn and @code{match_dup} in the
8595other.
8596
8597The operand constraints used in @code{match_operand} patterns do not have
8598any direct effect on the applicability of the peephole, but they will
8599be validated afterward, so make sure your constraints are general enough
8600to apply whenever the peephole matches. If the peephole matches
8601but the constraints are not satisfied, the compiler will crash.
8602
8603It is safe to omit constraints in all the operands of the peephole; or
8604you can write constraints which serve as a double-check on the criteria
8605previously tested.
8606
8607Once a sequence of insns matches the patterns, the @var{condition} is
8608checked. This is a C expression which makes the final decision whether to
8609perform the optimization (we do so if the expression is nonzero). If
8610@var{condition} is omitted (in other words, the string is empty) then the
8611optimization is applied to every sequence of insns that matches the
8612patterns.
8613
8614The defined peephole optimizations are applied after register allocation
8615is complete. Therefore, the peephole definition can check which
8616operands have ended up in which kinds of registers, just by looking at
8617the operands.
8618
8619@findex prev_active_insn
8620The way to refer to the operands in @var{condition} is to write
8621@code{operands[@var{i}]} for operand number @var{i} (as matched by
8622@code{(match_operand @var{i} @dots{})}). Use the variable @code{insn}
8623to refer to the last of the insns being matched; use
8624@code{prev_active_insn} to find the preceding insns.
8625
8626@findex dead_or_set_p
8627When optimizing computations with intermediate results, you can use
8628@var{condition} to match only when the intermediate results are not used
8629elsewhere. Use the C expression @code{dead_or_set_p (@var{insn},
8630@var{op})}, where @var{insn} is the insn in which you expect the value
8631to be used for the last time (from the value of @code{insn}, together
8632with use of @code{prev_nonnote_insn}), and @var{op} is the intermediate
bd819a4a 8633value (from @code{operands[@var{i}]}).
f3a3d0d3
RH
8634
8635Applying the optimization means replacing the sequence of insns with one
8636new insn. The @var{template} controls ultimate output of assembler code
8637for this combined insn. It works exactly like the template of a
8638@code{define_insn}. Operand numbers in this template are the same ones
8639used in matching the original sequence of insns.
8640
8641The result of a defined peephole optimizer does not need to match any of
8642the insn patterns in the machine description; it does not even have an
8643opportunity to match them. The peephole optimizer definition itself serves
8644as the insn pattern to control how the insn is output.
8645
8646Defined peephole optimizers are run as assembler code is being output,
8647so the insns they produce are never combined or rearranged in any way.
8648
8649Here is an example, taken from the 68000 machine description:
8650
8651@smallexample
8652(define_peephole
8653 [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
8654 (set (match_operand:DF 0 "register_operand" "=f")
8655 (match_operand:DF 1 "register_operand" "ad"))]
8656 "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
f3a3d0d3
RH
8657@{
8658 rtx xoperands[2];
a2a8cc44 8659 xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
f3a3d0d3 8660#ifdef MOTOROLA
0f40f9f7
ZW
8661 output_asm_insn ("move.l %1,(sp)", xoperands);
8662 output_asm_insn ("move.l %1,-(sp)", operands);
8663 return "fmove.d (sp)+,%0";
f3a3d0d3 8664#else
0f40f9f7
ZW
8665 output_asm_insn ("movel %1,sp@@", xoperands);
8666 output_asm_insn ("movel %1,sp@@-", operands);
8667 return "fmoved sp@@+,%0";
f3a3d0d3 8668#endif
0f40f9f7 8669@})
f3a3d0d3
RH
8670@end smallexample
8671
8672@need 1000
8673The effect of this optimization is to change
8674
8675@smallexample
8676@group
8677jbsr _foobar
8678addql #4,sp
8679movel d1,sp@@-
8680movel d0,sp@@-
8681fmoved sp@@+,fp0
8682@end group
8683@end smallexample
8684
8685@noindent
8686into
8687
8688@smallexample
8689@group
8690jbsr _foobar
8691movel d1,sp@@
8692movel d0,sp@@-
8693fmoved sp@@+,fp0
8694@end group
8695@end smallexample
8696
8697@ignore
8698@findex CC_REVERSED
8699If a peephole matches a sequence including one or more jump insns, you must
8700take account of the flags such as @code{CC_REVERSED} which specify that the
8701condition codes are represented in an unusual manner. The compiler
8702automatically alters any ordinary conditional jumps which occur in such
8703situations, but the compiler cannot alter jumps which have been replaced by
8704peephole optimizations. So it is up to you to alter the assembler code
8705that the peephole produces. Supply C code to write the assembler output,
8706and in this C code check the condition code status flags and change the
8707assembler code as appropriate.
8708@end ignore
8709
8710@var{insn-pattern-1} and so on look @emph{almost} like the second
8711operand of @code{define_insn}. There is one important difference: the
8712second operand of @code{define_insn} consists of one or more RTX's
8713enclosed in square brackets. Usually, there is only one: then the same
8714action can be written as an element of a @code{define_peephole}. But
8715when there are multiple actions in a @code{define_insn}, they are
8716implicitly enclosed in a @code{parallel}. Then you must explicitly
8717write the @code{parallel}, and the square brackets within it, in the
8718@code{define_peephole}. Thus, if an insn pattern looks like this,
8719
8720@smallexample
8721(define_insn "divmodsi4"
8722 [(set (match_operand:SI 0 "general_operand" "=d")
8723 (div:SI (match_operand:SI 1 "general_operand" "0")
8724 (match_operand:SI 2 "general_operand" "dmsK")))
8725 (set (match_operand:SI 3 "general_operand" "=d")
8726 (mod:SI (match_dup 1) (match_dup 2)))]
8727 "TARGET_68020"
8728 "divsl%.l %2,%3:%0")
8729@end smallexample
8730
8731@noindent
8732then the way to mention this insn in a peephole is as follows:
8733
8734@smallexample
8735(define_peephole
8736 [@dots{}
8737 (parallel
8738 [(set (match_operand:SI 0 "general_operand" "=d")
8739 (div:SI (match_operand:SI 1 "general_operand" "0")
8740 (match_operand:SI 2 "general_operand" "dmsK")))
8741 (set (match_operand:SI 3 "general_operand" "=d")
8742 (mod:SI (match_dup 1) (match_dup 2)))])
8743 @dots{}]
8744 @dots{})
8745@end smallexample
8746
a5249a21
HPN
8747@end ifset
8748@ifset INTERNALS
f3a3d0d3
RH
8749@node define_peephole2
8750@subsection RTL to RTL Peephole Optimizers
8751@findex define_peephole2
8752
8753The @code{define_peephole2} definition tells the compiler how to
ebb48a4d 8754substitute one sequence of instructions for another sequence,
f3a3d0d3
RH
8755what additional scratch registers may be needed and what their
8756lifetimes must be.
8757
8758@smallexample
8759(define_peephole2
8760 [@var{insn-pattern-1}
8761 @var{insn-pattern-2}
8762 @dots{}]
8763 "@var{condition}"
8764 [@var{new-insn-pattern-1}
8765 @var{new-insn-pattern-2}
8766 @dots{}]
630d3d5a 8767 "@var{preparation-statements}")
f3a3d0d3
RH
8768@end smallexample
8769
8770The definition is almost identical to @code{define_split}
8771(@pxref{Insn Splitting}) except that the pattern to match is not a
8772single instruction, but a sequence of instructions.
8773
8774It is possible to request additional scratch registers for use in the
8775output template. If appropriate registers are not free, the pattern
8776will simply not match.
8777
8778@findex match_scratch
8779@findex match_dup
8780Scratch registers are requested with a @code{match_scratch} pattern at
8781the top level of the input pattern. The allocated register (initially) will
8782be dead at the point requested within the original sequence. If the scratch
8783is used at more than a single point, a @code{match_dup} pattern at the
8784top level of the input pattern marks the last position in the input sequence
8785at which the register must be available.
8786
8787Here is an example from the IA-32 machine description:
8788
8789@smallexample
8790(define_peephole2
8791 [(match_scratch:SI 2 "r")
8792 (parallel [(set (match_operand:SI 0 "register_operand" "")
8793 (match_operator:SI 3 "arith_or_logical_operator"
8794 [(match_dup 0)
8795 (match_operand:SI 1 "memory_operand" "")]))
8796 (clobber (reg:CC 17))])]
8797 "! optimize_size && ! TARGET_READ_MODIFY"
8798 [(set (match_dup 2) (match_dup 1))
8799 (parallel [(set (match_dup 0)
8800 (match_op_dup 3 [(match_dup 0) (match_dup 2)]))
8801 (clobber (reg:CC 17))])]
8802 "")
8803@end smallexample
8804
8805@noindent
8806This pattern tries to split a load from its use in the hopes that we'll be
8807able to schedule around the memory load latency. It allocates a single
8808@code{SImode} register of class @code{GENERAL_REGS} (@code{"r"}) that needs
8809to be live only at the point just before the arithmetic.
8810
b192711e 8811A real example requiring extended scratch lifetimes is harder to come by,
f3a3d0d3
RH
8812so here's a silly made-up example:
8813
8814@smallexample
8815(define_peephole2
8816 [(match_scratch:SI 4 "r")
8817 (set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))
8818 (set (match_operand:SI 2 "" "") (match_dup 1))
8819 (match_dup 4)
8820 (set (match_operand:SI 3 "" "") (match_dup 1))]
630d3d5a 8821 "/* @r{determine 1 does not overlap 0 and 2} */"
f3a3d0d3
RH
8822 [(set (match_dup 4) (match_dup 1))
8823 (set (match_dup 0) (match_dup 4))
c8fbf1fa 8824 (set (match_dup 2) (match_dup 4))
f3a3d0d3
RH
8825 (set (match_dup 3) (match_dup 4))]
8826 "")
8827@end smallexample
8828
582d1f90
PK
8829There are two special macros defined for use in the preparation statements:
8830@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8831as a statement.
8832
8833@table @code
8834
8835@findex DONE
8836@item DONE
8837Use the @code{DONE} macro to end RTL generation for the peephole. The
8838only RTL insns generated as replacement for the matched input insn will
8839be those already emitted by explicit calls to @code{emit_insn} within
8840the preparation statements; the replacement pattern is not used.
8841
8842@findex FAIL
8843@item FAIL
8844Make the @code{define_peephole2} fail on this occasion. When a @code{define_peephole2}
8845fails, it means that the replacement was not truly available for the
8846particular inputs it was given. In that case, GCC may still apply a
8847later @code{define_peephole2} that also matches the given insn pattern.
8848(Note that this is different from @code{define_split}, where @code{FAIL}
8849prevents the input insn from being split at all.)
8850@end table
8851
8852If the preparation falls through (invokes neither @code{DONE} nor
8853@code{FAIL}), then the @code{define_peephole2} uses the replacement
8854template.
8855
f3a3d0d3 8856@noindent
a628d195
RH
8857If we had not added the @code{(match_dup 4)} in the middle of the input
8858sequence, it might have been the case that the register we chose at the
8859beginning of the sequence is killed by the first or second @code{set}.
f3a3d0d3 8860
a5249a21
HPN
8861@end ifset
8862@ifset INTERNALS
03dda8e3
RK
8863@node Insn Attributes
8864@section Instruction Attributes
8865@cindex insn attributes
8866@cindex instruction attributes
8867
8868In addition to describing the instruction supported by the target machine,
8869the @file{md} file also defines a group of @dfn{attributes} and a set of
8870values for each. Every generated insn is assigned a value for each attribute.
8871One possible attribute would be the effect that the insn has on the machine's
8872condition code. This attribute can then be used by @code{NOTICE_UPDATE_CC}
8873to track the condition codes.
8874
8875@menu
8876* Defining Attributes:: Specifying attributes and their values.
8877* Expressions:: Valid expressions for attribute values.
8878* Tagging Insns:: Assigning attribute values to insns.
8879* Attr Example:: An example of assigning attributes.
8880* Insn Lengths:: Computing the length of insns.
8881* Constant Attributes:: Defining attributes that are constant.
13b72c22 8882* Mnemonic Attribute:: Obtain the instruction mnemonic as attribute value.
03dda8e3 8883* Delay Slots:: Defining delay slots required for a machine.
fae15c93 8884* Processor pipeline description:: Specifying information for insn scheduling.
03dda8e3
RK
8885@end menu
8886
a5249a21
HPN
8887@end ifset
8888@ifset INTERNALS
03dda8e3
RK
8889@node Defining Attributes
8890@subsection Defining Attributes and their Values
8891@cindex defining attributes and their values
8892@cindex attributes, defining
8893
8894@findex define_attr
8895The @code{define_attr} expression is used to define each attribute required
8896by the target machine. It looks like:
8897
8898@smallexample
8899(define_attr @var{name} @var{list-of-values} @var{default})
8900@end smallexample
8901
13b72c22
AK
8902@var{name} is a string specifying the name of the attribute being
8903defined. Some attributes are used in a special way by the rest of the
8904compiler. The @code{enabled} attribute can be used to conditionally
8905enable or disable insn alternatives (@pxref{Disable Insn
8906Alternatives}). The @code{predicable} attribute, together with a
8907suitable @code{define_cond_exec} (@pxref{Conditional Execution}), can
8908be used to automatically generate conditional variants of instruction
8909patterns. The @code{mnemonic} attribute can be used to check for the
8910instruction mnemonic (@pxref{Mnemonic Attribute}). The compiler
8911internally uses the names @code{ce_enabled} and @code{nonce_enabled},
8912so they should not be used elsewhere as alternative names.
03dda8e3
RK
8913
8914@var{list-of-values} is either a string that specifies a comma-separated
8915list of values that can be assigned to the attribute, or a null string to
8916indicate that the attribute takes numeric values.
8917
8918@var{default} is an attribute expression that gives the value of this
8919attribute for insns that match patterns whose definition does not include
8920an explicit value for this attribute. @xref{Attr Example}, for more
8921information on the handling of defaults. @xref{Constant Attributes},
8922for information on attributes that do not depend on any particular insn.
8923
8924@findex insn-attr.h
8925For each defined attribute, a number of definitions are written to the
8926@file{insn-attr.h} file. For cases where an explicit set of values is
8927specified for an attribute, the following are defined:
8928
8929@itemize @bullet
8930@item
8931A @samp{#define} is written for the symbol @samp{HAVE_ATTR_@var{name}}.
8932
8933@item
2eac577f 8934An enumerated class is defined for @samp{attr_@var{name}} with
03dda8e3 8935elements of the form @samp{@var{upper-name}_@var{upper-value}} where
4bd0bee9 8936the attribute name and value are first converted to uppercase.
03dda8e3
RK
8937
8938@item
8939A function @samp{get_attr_@var{name}} is defined that is passed an insn and
8940returns the attribute value for that insn.
8941@end itemize
8942
8943For example, if the following is present in the @file{md} file:
8944
8945@smallexample
8946(define_attr "type" "branch,fp,load,store,arith" @dots{})
8947@end smallexample
8948
8949@noindent
8950the following lines will be written to the file @file{insn-attr.h}.
8951
8952@smallexample
d327457f 8953#define HAVE_ATTR_type 1
03dda8e3
RK
8954enum attr_type @{TYPE_BRANCH, TYPE_FP, TYPE_LOAD,
8955 TYPE_STORE, TYPE_ARITH@};
8956extern enum attr_type get_attr_type ();
8957@end smallexample
8958
8959If the attribute takes numeric values, no @code{enum} type will be
8960defined and the function to obtain the attribute's value will return
8961@code{int}.
8962
7ac28727
AK
8963There are attributes which are tied to a specific meaning. These
8964attributes are not free to use for other purposes:
8965
8966@table @code
8967@item length
8968The @code{length} attribute is used to calculate the length of emitted
8969code chunks. This is especially important when verifying branch
8970distances. @xref{Insn Lengths}.
8971
8972@item enabled
8973The @code{enabled} attribute can be defined to prevent certain
8974alternatives of an insn definition from being used during code
8975generation. @xref{Disable Insn Alternatives}.
13b72c22
AK
8976
8977@item mnemonic
8978The @code{mnemonic} attribute can be defined to implement instruction
630ba2fd 8979specific checks in e.g.@: the pipeline description.
13b72c22 8980@xref{Mnemonic Attribute}.
7ac28727
AK
8981@end table
8982
d327457f
JR
8983For each of these special attributes, the corresponding
8984@samp{HAVE_ATTR_@var{name}} @samp{#define} is also written when the
8985attribute is not defined; in that case, it is defined as @samp{0}.
8986
8f4fe86c
RS
8987@findex define_enum_attr
8988@anchor{define_enum_attr}
8989Another way of defining an attribute is to use:
8990
8991@smallexample
8992(define_enum_attr "@var{attr}" "@var{enum}" @var{default})
8993@end smallexample
8994
8995This works in just the same way as @code{define_attr}, except that
8996the list of values is taken from a separate enumeration called
8997@var{enum} (@pxref{define_enum}). This form allows you to use
8998the same list of values for several attributes without having to
8999repeat the list each time. For example:
9000
9001@smallexample
9002(define_enum "processor" [
9003 model_a
9004 model_b
9005 @dots{}
9006])
9007(define_enum_attr "arch" "processor"
9008 (const (symbol_ref "target_arch")))
9009(define_enum_attr "tune" "processor"
9010 (const (symbol_ref "target_tune")))
9011@end smallexample
9012
9013defines the same attributes as:
9014
9015@smallexample
9016(define_attr "arch" "model_a,model_b,@dots{}"
9017 (const (symbol_ref "target_arch")))
9018(define_attr "tune" "model_a,model_b,@dots{}"
9019 (const (symbol_ref "target_tune")))
9020@end smallexample
9021
9022but without duplicating the processor list. The second example defines two
9023separate C enums (@code{attr_arch} and @code{attr_tune}) whereas the first
9024defines a single C enum (@code{processor}).
a5249a21
HPN
9025@end ifset
9026@ifset INTERNALS
03dda8e3
RK
9027@node Expressions
9028@subsection Attribute Expressions
9029@cindex attribute expressions
9030
9031RTL expressions used to define attributes use the codes described above
9032plus a few specific to attribute definitions, to be discussed below.
9033Attribute value expressions must have one of the following forms:
9034
9035@table @code
9036@cindex @code{const_int} and attributes
9037@item (const_int @var{i})
9038The integer @var{i} specifies the value of a numeric attribute. @var{i}
9039must be non-negative.
9040
9041The value of a numeric attribute can be specified either with a
00bc45c1
RH
9042@code{const_int}, or as an integer represented as a string in
9043@code{const_string}, @code{eq_attr} (see below), @code{attr},
9044@code{symbol_ref}, simple arithmetic expressions, and @code{set_attr}
9045overrides on specific instructions (@pxref{Tagging Insns}).
03dda8e3
RK
9046
9047@cindex @code{const_string} and attributes
9048@item (const_string @var{value})
9049The string @var{value} specifies a constant attribute value.
9050If @var{value} is specified as @samp{"*"}, it means that the default value of
9051the attribute is to be used for the insn containing this expression.
9052@samp{"*"} obviously cannot be used in the @var{default} expression
bd819a4a 9053of a @code{define_attr}.
03dda8e3
RK
9054
9055If the attribute whose value is being specified is numeric, @var{value}
9056must be a string containing a non-negative integer (normally
9057@code{const_int} would be used in this case). Otherwise, it must
9058contain one of the valid values for the attribute.
9059
9060@cindex @code{if_then_else} and attributes
9061@item (if_then_else @var{test} @var{true-value} @var{false-value})
9062@var{test} specifies an attribute test, whose format is defined below.
9063The value of this expression is @var{true-value} if @var{test} is true,
9064otherwise it is @var{false-value}.
9065
9066@cindex @code{cond} and attributes
9067@item (cond [@var{test1} @var{value1} @dots{}] @var{default})
9068The first operand of this expression is a vector containing an even
9069number of expressions and consisting of pairs of @var{test} and @var{value}
9070expressions. The value of the @code{cond} expression is that of the
9071@var{value} corresponding to the first true @var{test} expression. If
9072none of the @var{test} expressions are true, the value of the @code{cond}
9073expression is that of the @var{default} expression.
9074@end table
9075
9076@var{test} expressions can have one of the following forms:
9077
9078@table @code
9079@cindex @code{const_int} and attribute tests
9080@item (const_int @var{i})
df2a54e9 9081This test is true if @var{i} is nonzero and false otherwise.
03dda8e3
RK
9082
9083@cindex @code{not} and attributes
9084@cindex @code{ior} and attributes
9085@cindex @code{and} and attributes
9086@item (not @var{test})
9087@itemx (ior @var{test1} @var{test2})
9088@itemx (and @var{test1} @var{test2})
9089These tests are true if the indicated logical function is true.
9090
9091@cindex @code{match_operand} and attributes
9092@item (match_operand:@var{m} @var{n} @var{pred} @var{constraints})
9093This test is true if operand @var{n} of the insn whose attribute value
9094is being determined has mode @var{m} (this part of the test is ignored
9095if @var{m} is @code{VOIDmode}) and the function specified by the string
df2a54e9 9096@var{pred} returns a nonzero value when passed operand @var{n} and mode
03dda8e3
RK
9097@var{m} (this part of the test is ignored if @var{pred} is the null
9098string).
9099
9100The @var{constraints} operand is ignored and should be the null string.
9101
0c0d3957
RS
9102@cindex @code{match_test} and attributes
9103@item (match_test @var{c-expr})
9104The test is true if C expression @var{c-expr} is true. In non-constant
9105attributes, @var{c-expr} has access to the following variables:
9106
9107@table @var
9108@item insn
9109The rtl instruction under test.
9110@item which_alternative
9111The @code{define_insn} alternative that @var{insn} matches.
9112@xref{Output Statement}.
9113@item operands
9114An array of @var{insn}'s rtl operands.
9115@end table
9116
9117@var{c-expr} behaves like the condition in a C @code{if} statement,
9118so there is no need to explicitly convert the expression into a boolean
91190 or 1 value. For example, the following two tests are equivalent:
9120
9121@smallexample
9122(match_test "x & 2")
9123(match_test "(x & 2) != 0")
9124@end smallexample
9125
03dda8e3
RK
9126@cindex @code{le} and attributes
9127@cindex @code{leu} and attributes
9128@cindex @code{lt} and attributes
9129@cindex @code{gt} and attributes
9130@cindex @code{gtu} and attributes
9131@cindex @code{ge} and attributes
9132@cindex @code{geu} and attributes
9133@cindex @code{ne} and attributes
9134@cindex @code{eq} and attributes
9135@cindex @code{plus} and attributes
9136@cindex @code{minus} and attributes
9137@cindex @code{mult} and attributes
9138@cindex @code{div} and attributes
9139@cindex @code{mod} and attributes
9140@cindex @code{abs} and attributes
9141@cindex @code{neg} and attributes
9142@cindex @code{ashift} and attributes
9143@cindex @code{lshiftrt} and attributes
9144@cindex @code{ashiftrt} and attributes
9145@item (le @var{arith1} @var{arith2})
9146@itemx (leu @var{arith1} @var{arith2})
9147@itemx (lt @var{arith1} @var{arith2})
9148@itemx (ltu @var{arith1} @var{arith2})
9149@itemx (gt @var{arith1} @var{arith2})
9150@itemx (gtu @var{arith1} @var{arith2})
9151@itemx (ge @var{arith1} @var{arith2})
9152@itemx (geu @var{arith1} @var{arith2})
9153@itemx (ne @var{arith1} @var{arith2})
9154@itemx (eq @var{arith1} @var{arith2})
9155These tests are true if the indicated comparison of the two arithmetic
9156expressions is true. Arithmetic expressions are formed with
9157@code{plus}, @code{minus}, @code{mult}, @code{div}, @code{mod},
9158@code{abs}, @code{neg}, @code{and}, @code{ior}, @code{xor}, @code{not},
bd819a4a 9159@code{ashift}, @code{lshiftrt}, and @code{ashiftrt} expressions.
03dda8e3
RK
9160
9161@findex get_attr
9162@code{const_int} and @code{symbol_ref} are always valid terms (@pxref{Insn
9163Lengths},for additional forms). @code{symbol_ref} is a string
9164denoting a C expression that yields an @code{int} when evaluated by the
9165@samp{get_attr_@dots{}} routine. It should normally be a global
bd819a4a 9166variable.
03dda8e3
RK
9167
9168@findex eq_attr
9169@item (eq_attr @var{name} @var{value})
9170@var{name} is a string specifying the name of an attribute.
9171
9172@var{value} is a string that is either a valid value for attribute
9173@var{name}, a comma-separated list of values, or @samp{!} followed by a
9174value or list. If @var{value} does not begin with a @samp{!}, this
9175test is true if the value of the @var{name} attribute of the current
9176insn is in the list specified by @var{value}. If @var{value} begins
9177with a @samp{!}, this test is true if the attribute's value is
9178@emph{not} in the specified list.
9179
9180For example,
9181
9182@smallexample
9183(eq_attr "type" "load,store")
9184@end smallexample
9185
9186@noindent
9187is equivalent to
9188
9189@smallexample
9190(ior (eq_attr "type" "load") (eq_attr "type" "store"))
9191@end smallexample
9192
9193If @var{name} specifies an attribute of @samp{alternative}, it refers to the
9194value of the compiler variable @code{which_alternative}
9195(@pxref{Output Statement}) and the values must be small integers. For
bd819a4a 9196example,
03dda8e3
RK
9197
9198@smallexample
9199(eq_attr "alternative" "2,3")
9200@end smallexample
9201
9202@noindent
9203is equivalent to
9204
9205@smallexample
9206(ior (eq (symbol_ref "which_alternative") (const_int 2))
9207 (eq (symbol_ref "which_alternative") (const_int 3)))
9208@end smallexample
9209
9210Note that, for most attributes, an @code{eq_attr} test is simplified in cases
9211where the value of the attribute being tested is known for all insns matching
bd819a4a 9212a particular pattern. This is by far the most common case.
03dda8e3
RK
9213
9214@findex attr_flag
9215@item (attr_flag @var{name})
9216The value of an @code{attr_flag} expression is true if the flag
9217specified by @var{name} is true for the @code{insn} currently being
9218scheduled.
9219
9220@var{name} is a string specifying one of a fixed set of flags to test.
9221Test the flags @code{forward} and @code{backward} to determine the
81e7aa8e 9222direction of a conditional branch.
03dda8e3
RK
9223
9224This example describes a conditional branch delay slot which
9225can be nullified for forward branches that are taken (annul-true) or
9226for backward branches which are not taken (annul-false).
9227
9228@smallexample
9229(define_delay (eq_attr "type" "cbranch")
9230 [(eq_attr "in_branch_delay" "true")
9231 (and (eq_attr "in_branch_delay" "true")
9232 (attr_flag "forward"))
9233 (and (eq_attr "in_branch_delay" "true")
9234 (attr_flag "backward"))])
9235@end smallexample
9236
9237The @code{forward} and @code{backward} flags are false if the current
9238@code{insn} being scheduled is not a conditional branch.
9239
03dda8e3
RK
9240@code{attr_flag} is only used during delay slot scheduling and has no
9241meaning to other passes of the compiler.
00bc45c1
RH
9242
9243@findex attr
9244@item (attr @var{name})
9245The value of another attribute is returned. This is most useful
9246for numeric attributes, as @code{eq_attr} and @code{attr_flag}
9247produce more efficient code for non-numeric attributes.
03dda8e3
RK
9248@end table
9249
a5249a21
HPN
9250@end ifset
9251@ifset INTERNALS
03dda8e3
RK
9252@node Tagging Insns
9253@subsection Assigning Attribute Values to Insns
9254@cindex tagging insns
9255@cindex assigning attribute values to insns
9256
9257The value assigned to an attribute of an insn is primarily determined by
9258which pattern is matched by that insn (or which @code{define_peephole}
9259generated it). Every @code{define_insn} and @code{define_peephole} can
9260have an optional last argument to specify the values of attributes for
9261matching insns. The value of any attribute not specified in a particular
9262insn is set to the default value for that attribute, as specified in its
9263@code{define_attr}. Extensive use of default values for attributes
9264permits the specification of the values for only one or two attributes
9265in the definition of most insn patterns, as seen in the example in the
bd819a4a 9266next section.
03dda8e3
RK
9267
9268The optional last argument of @code{define_insn} and
9269@code{define_peephole} is a vector of expressions, each of which defines
9270the value for a single attribute. The most general way of assigning an
9271attribute's value is to use a @code{set} expression whose first operand is an
9272@code{attr} expression giving the name of the attribute being set. The
9273second operand of the @code{set} is an attribute expression
bd819a4a 9274(@pxref{Expressions}) giving the value of the attribute.
03dda8e3
RK
9275
9276When the attribute value depends on the @samp{alternative} attribute
9277(i.e., which is the applicable alternative in the constraint of the
9278insn), the @code{set_attr_alternative} expression can be used. It
9279allows the specification of a vector of attribute expressions, one for
9280each alternative.
9281
9282@findex set_attr
9283When the generality of arbitrary attribute expressions is not required,
9284the simpler @code{set_attr} expression can be used, which allows
9285specifying a string giving either a single attribute value or a list
9286of attribute values, one for each alternative.
9287
9288The form of each of the above specifications is shown below. In each case,
9289@var{name} is a string specifying the attribute to be set.
9290
9291@table @code
9292@item (set_attr @var{name} @var{value-string})
9293@var{value-string} is either a string giving the desired attribute value,
9294or a string containing a comma-separated list giving the values for
9295succeeding alternatives. The number of elements must match the number
9296of alternatives in the constraint of the insn pattern.
9297
9298Note that it may be useful to specify @samp{*} for some alternative, in
9299which case the attribute will assume its default value for insns matching
9300that alternative.
9301
9302@findex set_attr_alternative
9303@item (set_attr_alternative @var{name} [@var{value1} @var{value2} @dots{}])
9304Depending on the alternative of the insn, the value will be one of the
9305specified values. This is a shorthand for using a @code{cond} with
9306tests on the @samp{alternative} attribute.
9307
9308@findex attr
9309@item (set (attr @var{name}) @var{value})
9310The first operand of this @code{set} must be the special RTL expression
9311@code{attr}, whose sole operand is a string giving the name of the
9312attribute being set. @var{value} is the value of the attribute.
9313@end table
9314
9315The following shows three different ways of representing the same
9316attribute value specification:
9317
9318@smallexample
9319(set_attr "type" "load,store,arith")
9320
9321(set_attr_alternative "type"
9322 [(const_string "load") (const_string "store")
9323 (const_string "arith")])
9324
9325(set (attr "type")
9326 (cond [(eq_attr "alternative" "1") (const_string "load")
9327 (eq_attr "alternative" "2") (const_string "store")]
9328 (const_string "arith")))
9329@end smallexample
9330
9331@need 1000
9332@findex define_asm_attributes
9333The @code{define_asm_attributes} expression provides a mechanism to
9334specify the attributes assigned to insns produced from an @code{asm}
9335statement. It has the form:
9336
9337@smallexample
9338(define_asm_attributes [@var{attr-sets}])
9339@end smallexample
9340
9341@noindent
9342where @var{attr-sets} is specified the same as for both the
9343@code{define_insn} and the @code{define_peephole} expressions.
9344
9345These values will typically be the ``worst case'' attribute values. For
9346example, they might indicate that the condition code will be clobbered.
9347
9348A specification for a @code{length} attribute is handled specially. The
9349way to compute the length of an @code{asm} insn is to multiply the
9350length specified in the expression @code{define_asm_attributes} by the
9351number of machine instructions specified in the @code{asm} statement,
9352determined by counting the number of semicolons and newlines in the
9353string. Therefore, the value of the @code{length} attribute specified
9354in a @code{define_asm_attributes} should be the maximum possible length
9355of a single machine instruction.
9356
a5249a21
HPN
9357@end ifset
9358@ifset INTERNALS
03dda8e3
RK
9359@node Attr Example
9360@subsection Example of Attribute Specifications
9361@cindex attribute specifications example
9362@cindex attribute specifications
9363
9364The judicious use of defaulting is important in the efficient use of
9365insn attributes. Typically, insns are divided into @dfn{types} and an
9366attribute, customarily called @code{type}, is used to represent this
9367value. This attribute is normally used only to define the default value
9368for other attributes. An example will clarify this usage.
9369
9370Assume we have a RISC machine with a condition code and in which only
9371full-word operations are performed in registers. Let us assume that we
9372can divide all insns into loads, stores, (integer) arithmetic
9373operations, floating point operations, and branches.
9374
9375Here we will concern ourselves with determining the effect of an insn on
9376the condition code and will limit ourselves to the following possible
9377effects: The condition code can be set unpredictably (clobbered), not
9378be changed, be set to agree with the results of the operation, or only
9379changed if the item previously set into the condition code has been
9380modified.
9381
9382Here is part of a sample @file{md} file for such a machine:
9383
9384@smallexample
9385(define_attr "type" "load,store,arith,fp,branch" (const_string "arith"))
9386
9387(define_attr "cc" "clobber,unchanged,set,change0"
9388 (cond [(eq_attr "type" "load")
9389 (const_string "change0")
9390 (eq_attr "type" "store,branch")
9391 (const_string "unchanged")
9392 (eq_attr "type" "arith")
9393 (if_then_else (match_operand:SI 0 "" "")
9394 (const_string "set")
9395 (const_string "clobber"))]
9396 (const_string "clobber")))
9397
9398(define_insn ""
9399 [(set (match_operand:SI 0 "general_operand" "=r,r,m")
9400 (match_operand:SI 1 "general_operand" "r,m,r"))]
9401 ""
9402 "@@
9403 move %0,%1
9404 load %0,%1
9405 store %0,%1"
9406 [(set_attr "type" "arith,load,store")])
9407@end smallexample
9408
9409Note that we assume in the above example that arithmetic operations
9410performed on quantities smaller than a machine word clobber the condition
9411code since they will set the condition code to a value corresponding to the
9412full-word result.
9413
a5249a21
HPN
9414@end ifset
9415@ifset INTERNALS
03dda8e3
RK
9416@node Insn Lengths
9417@subsection Computing the Length of an Insn
9418@cindex insn lengths, computing
9419@cindex computing the length of an insn
9420
9421For many machines, multiple types of branch instructions are provided, each
9422for different length branch displacements. In most cases, the assembler
9423will choose the correct instruction to use. However, when the assembler
b49900cc 9424cannot do so, GCC can when a special attribute, the @code{length}
03dda8e3
RK
9425attribute, is defined. This attribute must be defined to have numeric
9426values by specifying a null string in its @code{define_attr}.
9427
b49900cc 9428In the case of the @code{length} attribute, two additional forms of
03dda8e3
RK
9429arithmetic terms are allowed in test expressions:
9430
9431@table @code
9432@cindex @code{match_dup} and attributes
9433@item (match_dup @var{n})
9434This refers to the address of operand @var{n} of the current insn, which
9435must be a @code{label_ref}.
9436
9437@cindex @code{pc} and attributes
9438@item (pc)
0c94b59f
EB
9439For non-branch instructions and backward branch instructions, this refers
9440to the address of the current insn. But for forward branch instructions,
9441this refers to the address of the next insn, because the length of the
03dda8e3
RK
9442current insn is to be computed.
9443@end table
9444
9445@cindex @code{addr_vec}, length of
9446@cindex @code{addr_diff_vec}, length of
9447For normal insns, the length will be determined by value of the
b49900cc 9448@code{length} attribute. In the case of @code{addr_vec} and
03dda8e3
RK
9449@code{addr_diff_vec} insn patterns, the length is computed as
9450the number of vectors multiplied by the size of each vector.
9451
9452Lengths are measured in addressable storage units (bytes).
9453
40da08e0
JL
9454Note that it is possible to call functions via the @code{symbol_ref}
9455mechanism to compute the length of an insn. However, if you use this
9456mechanism you must provide dummy clauses to express the maximum length
9457without using the function call. You can an example of this in the
9458@code{pa} machine description for the @code{call_symref} pattern.
9459
03dda8e3
RK
9460The following macros can be used to refine the length computation:
9461
9462@table @code
03dda8e3
RK
9463@findex ADJUST_INSN_LENGTH
9464@item ADJUST_INSN_LENGTH (@var{insn}, @var{length})
9465If defined, modifies the length assigned to instruction @var{insn} as a
9466function of the context in which it is used. @var{length} is an lvalue
9467that contains the initially computed length of the insn and should be
a8aa4e0b 9468updated with the correct length of the insn.
03dda8e3
RK
9469
9470This macro will normally not be required. A case in which it is
161d7b59 9471required is the ROMP@. On this machine, the size of an @code{addr_vec}
03dda8e3
RK
9472insn must be increased by two to compensate for the fact that alignment
9473may be required.
9474@end table
9475
9476@findex get_attr_length
9477The routine that returns @code{get_attr_length} (the value of the
9478@code{length} attribute) can be used by the output routine to
9479determine the form of the branch instruction to be written, as the
9480example below illustrates.
9481
9482As an example of the specification of variable-length branches, consider
9483the IBM 360. If we adopt the convention that a register will be set to
9484the starting address of a function, we can jump to labels within 4k of
9485the start using a four-byte instruction. Otherwise, we need a six-byte
9486sequence to load the address from memory and then branch to it.
9487
9488On such a machine, a pattern for a branch instruction might be specified
9489as follows:
9490
9491@smallexample
9492(define_insn "jump"
9493 [(set (pc)
9494 (label_ref (match_operand 0 "" "")))]
9495 ""
03dda8e3
RK
9496@{
9497 return (get_attr_length (insn) == 4
0f40f9f7
ZW
9498 ? "b %l0" : "l r15,=a(%l0); br r15");
9499@}
9c34dbbf
ZW
9500 [(set (attr "length")
9501 (if_then_else (lt (match_dup 0) (const_int 4096))
9502 (const_int 4)
9503 (const_int 6)))])
03dda8e3
RK
9504@end smallexample
9505
a5249a21
HPN
9506@end ifset
9507@ifset INTERNALS
03dda8e3
RK
9508@node Constant Attributes
9509@subsection Constant Attributes
9510@cindex constant attributes
9511
9512A special form of @code{define_attr}, where the expression for the
9513default value is a @code{const} expression, indicates an attribute that
9514is constant for a given run of the compiler. Constant attributes may be
9515used to specify which variety of processor is used. For example,
9516
9517@smallexample
9518(define_attr "cpu" "m88100,m88110,m88000"
9519 (const
9520 (cond [(symbol_ref "TARGET_88100") (const_string "m88100")
9521 (symbol_ref "TARGET_88110") (const_string "m88110")]
9522 (const_string "m88000"))))
9523
9524(define_attr "memory" "fast,slow"
9525 (const
9526 (if_then_else (symbol_ref "TARGET_FAST_MEM")
9527 (const_string "fast")
9528 (const_string "slow"))))
9529@end smallexample
9530
9531The routine generated for constant attributes has no parameters as it
9532does not depend on any particular insn. RTL expressions used to define
9533the value of a constant attribute may use the @code{symbol_ref} form,
9534but may not use either the @code{match_operand} form or @code{eq_attr}
9535forms involving insn attributes.
9536
13b72c22
AK
9537@end ifset
9538@ifset INTERNALS
9539@node Mnemonic Attribute
9540@subsection Mnemonic Attribute
9541@cindex mnemonic attribute
9542
9543The @code{mnemonic} attribute is a string type attribute holding the
9544instruction mnemonic for an insn alternative. The attribute values
9545will automatically be generated by the machine description parser if
9546there is an attribute definition in the md file:
9547
9548@smallexample
9549(define_attr "mnemonic" "unknown" (const_string "unknown"))
9550@end smallexample
9551
9552The default value can be freely chosen as long as it does not collide
9553with any of the instruction mnemonics. This value will be used
9554whenever the machine description parser is not able to determine the
9555mnemonic string. This might be the case for output templates
9556containing more than a single instruction as in
9557@code{"mvcle\t%0,%1,0\;jo\t.-4"}.
9558
9559The @code{mnemonic} attribute set is not generated automatically if the
9560instruction string is generated via C code.
9561
9562An existing @code{mnemonic} attribute set in an insn definition will not
9563be overriden by the md file parser. That way it is possible to
9564manually set the instruction mnemonics for the cases where the md file
9565parser fails to determine it automatically.
9566
9567The @code{mnemonic} attribute is useful for dealing with instruction
9568specific properties in the pipeline description without defining
9569additional insn attributes.
9570
9571@smallexample
9572(define_attr "ooo_expanded" ""
9573 (cond [(eq_attr "mnemonic" "dlr,dsgr,d,dsgf,stam,dsgfr,dlgr")
9574 (const_int 1)]
9575 (const_int 0)))
9576@end smallexample
9577
a5249a21
HPN
9578@end ifset
9579@ifset INTERNALS
03dda8e3
RK
9580@node Delay Slots
9581@subsection Delay Slot Scheduling
9582@cindex delay slots, defining
9583
9584The insn attribute mechanism can be used to specify the requirements for
9585delay slots, if any, on a target machine. An instruction is said to
9586require a @dfn{delay slot} if some instructions that are physically
9587after the instruction are executed as if they were located before it.
9588Classic examples are branch and call instructions, which often execute
9589the following instruction before the branch or call is performed.
9590
9591On some machines, conditional branch instructions can optionally
9592@dfn{annul} instructions in the delay slot. This means that the
9593instruction will not be executed for certain branch outcomes. Both
9594instructions that annul if the branch is true and instructions that
9595annul if the branch is false are supported.
9596
9597Delay slot scheduling differs from instruction scheduling in that
9598determining whether an instruction needs a delay slot is dependent only
9599on the type of instruction being generated, not on data flow between the
9600instructions. See the next section for a discussion of data-dependent
9601instruction scheduling.
9602
9603@findex define_delay
9604The requirement of an insn needing one or more delay slots is indicated
9605via the @code{define_delay} expression. It has the following form:
9606
9607@smallexample
9608(define_delay @var{test}
9609 [@var{delay-1} @var{annul-true-1} @var{annul-false-1}
9610 @var{delay-2} @var{annul-true-2} @var{annul-false-2}
9611 @dots{}])
9612@end smallexample
9613
9614@var{test} is an attribute test that indicates whether this
9615@code{define_delay} applies to a particular insn. If so, the number of
9616required delay slots is determined by the length of the vector specified
9617as the second argument. An insn placed in delay slot @var{n} must
9618satisfy attribute test @var{delay-n}. @var{annul-true-n} is an
9619attribute test that specifies which insns may be annulled if the branch
9620is true. Similarly, @var{annul-false-n} specifies which insns in the
9621delay slot may be annulled if the branch is false. If annulling is not
bd819a4a 9622supported for that delay slot, @code{(nil)} should be coded.
03dda8e3
RK
9623
9624For example, in the common case where branch and call insns require
9625a single delay slot, which may contain any insn other than a branch or
9626call, the following would be placed in the @file{md} file:
9627
9628@smallexample
9629(define_delay (eq_attr "type" "branch,call")
9630 [(eq_attr "type" "!branch,call") (nil) (nil)])
9631@end smallexample
9632
9633Multiple @code{define_delay} expressions may be specified. In this
9634case, each such expression specifies different delay slot requirements
9635and there must be no insn for which tests in two @code{define_delay}
9636expressions are both true.
9637
9638For example, if we have a machine that requires one delay slot for branches
9639but two for calls, no delay slot can contain a branch or call insn,
9640and any valid insn in the delay slot for the branch can be annulled if the
9641branch is true, we might represent this as follows:
9642
9643@smallexample
9644(define_delay (eq_attr "type" "branch")
9645 [(eq_attr "type" "!branch,call")
9646 (eq_attr "type" "!branch,call")
9647 (nil)])
9648
9649(define_delay (eq_attr "type" "call")
9650 [(eq_attr "type" "!branch,call") (nil) (nil)
9651 (eq_attr "type" "!branch,call") (nil) (nil)])
9652@end smallexample
9653@c the above is *still* too long. --mew 4feb93
9654
a5249a21
HPN
9655@end ifset
9656@ifset INTERNALS
fae15c93
VM
9657@node Processor pipeline description
9658@subsection Specifying processor pipeline description
9659@cindex processor pipeline description
9660@cindex processor functional units
9661@cindex instruction latency time
9662@cindex interlock delays
9663@cindex data dependence delays
9664@cindex reservation delays
9665@cindex pipeline hazard recognizer
9666@cindex automaton based pipeline description
9667@cindex regular expressions
9668@cindex deterministic finite state automaton
9669@cindex automaton based scheduler
9670@cindex RISC
9671@cindex VLIW
9672
ef261fee 9673To achieve better performance, most modern processors
fae15c93
VM
9674(super-pipelined, superscalar @acronym{RISC}, and @acronym{VLIW}
9675processors) have many @dfn{functional units} on which several
9676instructions can be executed simultaneously. An instruction starts
9677execution if its issue conditions are satisfied. If not, the
ef261fee 9678instruction is stalled until its conditions are satisfied. Such
fae15c93 9679@dfn{interlock (pipeline) delay} causes interruption of the fetching
431ae0bf 9680of successor instructions (or demands nop instructions, e.g.@: for some
fae15c93
VM
9681MIPS processors).
9682
9683There are two major kinds of interlock delays in modern processors.
9684The first one is a data dependence delay determining @dfn{instruction
9685latency time}. The instruction execution is not started until all
9686source data have been evaluated by prior instructions (there are more
9687complex cases when the instruction execution starts even when the data
c0478a66 9688are not available but will be ready in given time after the
fae15c93
VM
9689instruction execution start). Taking the data dependence delays into
9690account is simple. The data dependence (true, output, and
9691anti-dependence) delay between two instructions is given by a
9692constant. In most cases this approach is adequate. The second kind
9693of interlock delays is a reservation delay. The reservation delay
9694means that two instructions under execution will be in need of shared
431ae0bf 9695processors resources, i.e.@: buses, internal registers, and/or
fae15c93
VM
9696functional units, which are reserved for some time. Taking this kind
9697of delay into account is complex especially for modern @acronym{RISC}
9698processors.
9699
9700The task of exploiting more processor parallelism is solved by an
ef261fee 9701instruction scheduler. For a better solution to this problem, the
fae15c93 9702instruction scheduler has to have an adequate description of the
fa0aee89
PB
9703processor parallelism (or @dfn{pipeline description}). GCC
9704machine descriptions describe processor parallelism and functional
9705unit reservations for groups of instructions with the aid of
9706@dfn{regular expressions}.
ef261fee
R
9707
9708The GCC instruction scheduler uses a @dfn{pipeline hazard recognizer} to
fae15c93 9709figure out the possibility of the instruction issue by the processor
ef261fee
R
9710on a given simulated processor cycle. The pipeline hazard recognizer is
9711automatically generated from the processor pipeline description. The
fa0aee89
PB
9712pipeline hazard recognizer generated from the machine description
9713is based on a deterministic finite state automaton (@acronym{DFA}):
9714the instruction issue is possible if there is a transition from one
9715automaton state to another one. This algorithm is very fast, and
9716furthermore, its speed is not dependent on processor
9717complexity@footnote{However, the size of the automaton depends on
6ccde948
RW
9718processor complexity. To limit this effect, machine descriptions
9719can split orthogonal parts of the machine description among several
9720automata: but then, since each of these must be stepped independently,
9721this does cause a small decrease in the algorithm's performance.}.
fae15c93 9722
fae15c93 9723@cindex automaton based pipeline description
fa0aee89
PB
9724The rest of this section describes the directives that constitute
9725an automaton-based processor pipeline description. The order of
9726these constructions within the machine description file is not
9727important.
fae15c93
VM
9728
9729@findex define_automaton
9730@cindex pipeline hazard recognizer
9731The following optional construction describes names of automata
9732generated and used for the pipeline hazards recognition. Sometimes
9733the generated finite state automaton used by the pipeline hazard
ef261fee 9734recognizer is large. If we use more than one automaton and bind functional
daf2f129 9735units to the automata, the total size of the automata is usually
fae15c93
VM
9736less than the size of the single automaton. If there is no one such
9737construction, only one finite state automaton is generated.
9738
9739@smallexample
9740(define_automaton @var{automata-names})
9741@end smallexample
9742
9743@var{automata-names} is a string giving names of the automata. The
9744names are separated by commas. All the automata should have unique names.
c62347f0 9745The automaton name is used in the constructions @code{define_cpu_unit} and
fae15c93
VM
9746@code{define_query_cpu_unit}.
9747
9748@findex define_cpu_unit
9749@cindex processor functional units
c62347f0 9750Each processor functional unit used in the description of instruction
fae15c93
VM
9751reservations should be described by the following construction.
9752
9753@smallexample
9754(define_cpu_unit @var{unit-names} [@var{automaton-name}])
9755@end smallexample
9756
9757@var{unit-names} is a string giving the names of the functional units
9758separated by commas. Don't use name @samp{nothing}, it is reserved
9759for other goals.
9760
ef261fee 9761@var{automaton-name} is a string giving the name of the automaton with
fae15c93
VM
9762which the unit is bound. The automaton should be described in
9763construction @code{define_automaton}. You should give
9764@dfn{automaton-name}, if there is a defined automaton.
9765
30028c85
VM
9766The assignment of units to automata are constrained by the uses of the
9767units in insn reservations. The most important constraint is: if a
9768unit reservation is present on a particular cycle of an alternative
9769for an insn reservation, then some unit from the same automaton must
9770be present on the same cycle for the other alternatives of the insn
9771reservation. The rest of the constraints are mentioned in the
9772description of the subsequent constructions.
9773
fae15c93
VM
9774@findex define_query_cpu_unit
9775@cindex querying function unit reservations
9776The following construction describes CPU functional units analogously
30028c85
VM
9777to @code{define_cpu_unit}. The reservation of such units can be
9778queried for an automaton state. The instruction scheduler never
9779queries reservation of functional units for given automaton state. So
9780as a rule, you don't need this construction. This construction could
431ae0bf 9781be used for future code generation goals (e.g.@: to generate
30028c85 9782@acronym{VLIW} insn templates).
fae15c93
VM
9783
9784@smallexample
9785(define_query_cpu_unit @var{unit-names} [@var{automaton-name}])
9786@end smallexample
9787
9788@var{unit-names} is a string giving names of the functional units
9789separated by commas.
9790
ef261fee 9791@var{automaton-name} is a string giving the name of the automaton with
fae15c93
VM
9792which the unit is bound.
9793
9794@findex define_insn_reservation
9795@cindex instruction latency time
9796@cindex regular expressions
9797@cindex data bypass
ef261fee 9798The following construction is the major one to describe pipeline
fae15c93
VM
9799characteristics of an instruction.
9800
9801@smallexample
9802(define_insn_reservation @var{insn-name} @var{default_latency}
9803 @var{condition} @var{regexp})
9804@end smallexample
9805
9806@var{default_latency} is a number giving latency time of the
9807instruction. There is an important difference between the old
9808description and the automaton based pipeline description. The latency
9809time is used for all dependencies when we use the old description. In
ef261fee
R
9810the automaton based pipeline description, the given latency time is only
9811used for true dependencies. The cost of anti-dependencies is always
fae15c93
VM
9812zero and the cost of output dependencies is the difference between
9813latency times of the producing and consuming insns (if the difference
ef261fee
R
9814is negative, the cost is considered to be zero). You can always
9815change the default costs for any description by using the target hook
fae15c93
VM
9816@code{TARGET_SCHED_ADJUST_COST} (@pxref{Scheduling}).
9817
cc6a602b 9818@var{insn-name} is a string giving the internal name of the insn. The
fae15c93
VM
9819internal names are used in constructions @code{define_bypass} and in
9820the automaton description file generated for debugging. The internal
ef261fee 9821name has nothing in common with the names in @code{define_insn}. It is a
fae15c93
VM
9822good practice to use insn classes described in the processor manual.
9823
9824@var{condition} defines what RTL insns are described by this
9825construction. You should remember that you will be in trouble if
9826@var{condition} for two or more different
9827@code{define_insn_reservation} constructions is TRUE for an insn. In
9828this case what reservation will be used for the insn is not defined.
9829Such cases are not checked during generation of the pipeline hazards
9830recognizer because in general recognizing that two conditions may have
9831the same value is quite difficult (especially if the conditions
9832contain @code{symbol_ref}). It is also not checked during the
9833pipeline hazard recognizer work because it would slow down the
9834recognizer considerably.
9835
ef261fee 9836@var{regexp} is a string describing the reservation of the cpu's functional
fae15c93
VM
9837units by the instruction. The reservations are described by a regular
9838expression according to the following syntax:
9839
9840@smallexample
9841 regexp = regexp "," oneof
9842 | oneof
9843
9844 oneof = oneof "|" allof
9845 | allof
9846
9847 allof = allof "+" repeat
9848 | repeat
daf2f129 9849
fae15c93
VM
9850 repeat = element "*" number
9851 | element
9852
9853 element = cpu_function_unit_name
9854 | reservation_name
9855 | result_name
9856 | "nothing"
9857 | "(" regexp ")"
9858@end smallexample
9859
9860@itemize @bullet
9861@item
9862@samp{,} is used for describing the start of the next cycle in
9863the reservation.
9864
9865@item
9866@samp{|} is used for describing a reservation described by the first
9867regular expression @strong{or} a reservation described by the second
9868regular expression @strong{or} etc.
9869
9870@item
9871@samp{+} is used for describing a reservation described by the first
9872regular expression @strong{and} a reservation described by the
9873second regular expression @strong{and} etc.
9874
9875@item
9876@samp{*} is used for convenience and simply means a sequence in which
9877the regular expression are repeated @var{number} times with cycle
9878advancing (see @samp{,}).
9879
9880@item
9881@samp{cpu_function_unit_name} denotes reservation of the named
9882functional unit.
9883
9884@item
9885@samp{reservation_name} --- see description of construction
9886@samp{define_reservation}.
9887
9888@item
9889@samp{nothing} denotes no unit reservations.
9890@end itemize
9891
9892@findex define_reservation
9893Sometimes unit reservations for different insns contain common parts.
9894In such case, you can simplify the pipeline description by describing
9895the common part by the following construction
9896
9897@smallexample
9898(define_reservation @var{reservation-name} @var{regexp})
9899@end smallexample
9900
9901@var{reservation-name} is a string giving name of @var{regexp}.
9902Functional unit names and reservation names are in the same name
9903space. So the reservation names should be different from the
cc6a602b 9904functional unit names and can not be the reserved name @samp{nothing}.
fae15c93
VM
9905
9906@findex define_bypass
9907@cindex instruction latency time
9908@cindex data bypass
9909The following construction is used to describe exceptions in the
9910latency time for given instruction pair. This is so called bypasses.
9911
9912@smallexample
9913(define_bypass @var{number} @var{out_insn_names} @var{in_insn_names}
9914 [@var{guard}])
9915@end smallexample
9916
9917@var{number} defines when the result generated by the instructions
9918given in string @var{out_insn_names} will be ready for the
f9bf5a8e
RS
9919instructions given in string @var{in_insn_names}. Each of these
9920strings is a comma-separated list of filename-style globs and
9921they refer to the names of @code{define_insn_reservation}s.
9922For example:
9923@smallexample
9924(define_bypass 1 "cpu1_load_*, cpu1_store_*" "cpu1_load_*")
9925@end smallexample
9926defines a bypass between instructions that start with
9927@samp{cpu1_load_} or @samp{cpu1_store_} and those that start with
9928@samp{cpu1_load_}.
fae15c93 9929
ef261fee 9930@var{guard} is an optional string giving the name of a C function which
fae15c93
VM
9931defines an additional guard for the bypass. The function will get the
9932two insns as parameters. If the function returns zero the bypass will
9933be ignored for this case. The additional guard is necessary to
431ae0bf 9934recognize complicated bypasses, e.g.@: when the consumer is only an address
fae15c93
VM
9935of insn @samp{store} (not a stored value).
9936
20a07f44
VM
9937If there are more one bypass with the same output and input insns, the
9938chosen bypass is the first bypass with a guard in description whose
9939guard function returns nonzero. If there is no such bypass, then
9940bypass without the guard function is chosen.
9941
fae15c93
VM
9942@findex exclusion_set
9943@findex presence_set
30028c85 9944@findex final_presence_set
fae15c93 9945@findex absence_set
30028c85 9946@findex final_absence_set
fae15c93
VM
9947@cindex VLIW
9948@cindex RISC
cc6a602b
BE
9949The following five constructions are usually used to describe
9950@acronym{VLIW} processors, or more precisely, to describe a placement
9951of small instructions into @acronym{VLIW} instruction slots. They
9952can be used for @acronym{RISC} processors, too.
fae15c93
VM
9953
9954@smallexample
9955(exclusion_set @var{unit-names} @var{unit-names})
30028c85
VM
9956(presence_set @var{unit-names} @var{patterns})
9957(final_presence_set @var{unit-names} @var{patterns})
9958(absence_set @var{unit-names} @var{patterns})
9959(final_absence_set @var{unit-names} @var{patterns})
fae15c93
VM
9960@end smallexample
9961
9962@var{unit-names} is a string giving names of functional units
9963separated by commas.
9964
30028c85 9965@var{patterns} is a string giving patterns of functional units
0bdcd332 9966separated by comma. Currently pattern is one unit or units
30028c85
VM
9967separated by white-spaces.
9968
fae15c93
VM
9969The first construction (@samp{exclusion_set}) means that each
9970functional unit in the first string can not be reserved simultaneously
9971with a unit whose name is in the second string and vice versa. For
9972example, the construction is useful for describing processors
431ae0bf 9973(e.g.@: some SPARC processors) with a fully pipelined floating point
fae15c93
VM
9974functional unit which can execute simultaneously only single floating
9975point insns or only double floating point insns.
9976
9977The second construction (@samp{presence_set}) means that each
9978functional unit in the first string can not be reserved unless at
30028c85
VM
9979least one of pattern of units whose names are in the second string is
9980reserved. This is an asymmetric relation. For example, it is useful
9981for description that @acronym{VLIW} @samp{slot1} is reserved after
9982@samp{slot0} reservation. We could describe it by the following
9983construction
9984
9985@smallexample
9986(presence_set "slot1" "slot0")
9987@end smallexample
9988
9989Or @samp{slot1} is reserved only after @samp{slot0} and unit @samp{b0}
9990reservation. In this case we could write
9991
9992@smallexample
9993(presence_set "slot1" "slot0 b0")
9994@end smallexample
9995
9996The third construction (@samp{final_presence_set}) is analogous to
9997@samp{presence_set}. The difference between them is when checking is
9998done. When an instruction is issued in given automaton state
9999reflecting all current and planned unit reservations, the automaton
10000state is changed. The first state is a source state, the second one
10001is a result state. Checking for @samp{presence_set} is done on the
10002source state reservation, checking for @samp{final_presence_set} is
10003done on the result reservation. This construction is useful to
10004describe a reservation which is actually two subsequent reservations.
10005For example, if we use
10006
10007@smallexample
10008(presence_set "slot1" "slot0")
10009@end smallexample
10010
10011the following insn will be never issued (because @samp{slot1} requires
10012@samp{slot0} which is absent in the source state).
10013
10014@smallexample
10015(define_reservation "insn_and_nop" "slot0 + slot1")
10016@end smallexample
10017
10018but it can be issued if we use analogous @samp{final_presence_set}.
10019
10020The forth construction (@samp{absence_set}) means that each functional
10021unit in the first string can be reserved only if each pattern of units
10022whose names are in the second string is not reserved. This is an
10023asymmetric relation (actually @samp{exclusion_set} is analogous to
ff2ce160 10024this one but it is symmetric). For example it might be useful in a
a71b1c58
NC
10025@acronym{VLIW} description to say that @samp{slot0} cannot be reserved
10026after either @samp{slot1} or @samp{slot2} have been reserved. This
10027can be described as:
30028c85
VM
10028
10029@smallexample
a71b1c58 10030(absence_set "slot0" "slot1, slot2")
30028c85
VM
10031@end smallexample
10032
10033Or @samp{slot2} can not be reserved if @samp{slot0} and unit @samp{b0}
10034are reserved or @samp{slot1} and unit @samp{b1} are reserved. In
10035this case we could write
10036
10037@smallexample
10038(absence_set "slot2" "slot0 b0, slot1 b1")
10039@end smallexample
fae15c93 10040
ef261fee 10041All functional units mentioned in a set should belong to the same
fae15c93
VM
10042automaton.
10043
30028c85
VM
10044The last construction (@samp{final_absence_set}) is analogous to
10045@samp{absence_set} but checking is done on the result (state)
10046reservation. See comments for @samp{final_presence_set}.
10047
fae15c93
VM
10048@findex automata_option
10049@cindex deterministic finite state automaton
10050@cindex nondeterministic finite state automaton
10051@cindex finite state automaton minimization
10052You can control the generator of the pipeline hazard recognizer with
10053the following construction.
10054
10055@smallexample
10056(automata_option @var{options})
10057@end smallexample
10058
10059@var{options} is a string giving options which affect the generated
10060code. Currently there are the following options:
10061
10062@itemize @bullet
10063@item
10064@dfn{no-minimization} makes no minimization of the automaton. This is
30028c85
VM
10065only worth to do when we are debugging the description and need to
10066look more accurately at reservations of states.
fae15c93
VM
10067
10068@item
df1133a6
BE
10069@dfn{time} means printing time statistics about the generation of
10070automata.
10071
10072@item
10073@dfn{stats} means printing statistics about the generated automata
10074such as the number of DFA states, NDFA states and arcs.
e3c8eb86
VM
10075
10076@item
10077@dfn{v} means a generation of the file describing the result automata.
10078The file has suffix @samp{.dfa} and can be used for the description
10079verification and debugging.
10080
10081@item
10082@dfn{w} means a generation of warning instead of error for
10083non-critical errors.
fae15c93 10084
e12da141
BS
10085@item
10086@dfn{no-comb-vect} prevents the automaton generator from generating
10087two data structures and comparing them for space efficiency. Using
10088a comb vector to represent transitions may be better, but it can be
10089very expensive to construct. This option is useful if the build
10090process spends an unacceptably long time in genautomata.
10091
fae15c93
VM
10092@item
10093@dfn{ndfa} makes nondeterministic finite state automata. This affects
10094the treatment of operator @samp{|} in the regular expressions. The
10095usual treatment of the operator is to try the first alternative and,
10096if the reservation is not possible, the second alternative. The
10097nondeterministic treatment means trying all alternatives, some of them
96ddf8ef 10098may be rejected by reservations in the subsequent insns.
dfa849f3 10099
1e6a9047 10100@item
9c582551 10101@dfn{collapse-ndfa} modifies the behavior of the generator when
1e6a9047
BS
10102producing an automaton. An additional state transition to collapse a
10103nondeterministic @acronym{NDFA} state to a deterministic @acronym{DFA}
10104state is generated. It can be triggered by passing @code{const0_rtx} to
10105state_transition. In such an automaton, cycle advance transitions are
10106available only for these collapsed states. This option is useful for
10107ports that want to use the @code{ndfa} option, but also want to use
10108@code{define_query_cpu_unit} to assign units to insns issued in a cycle.
10109
dfa849f3
VM
10110@item
10111@dfn{progress} means output of a progress bar showing how many states
10112were generated so far for automaton being processed. This is useful
10113during debugging a @acronym{DFA} description. If you see too many
10114generated states, you could interrupt the generator of the pipeline
10115hazard recognizer and try to figure out a reason for generation of the
10116huge automaton.
fae15c93
VM
10117@end itemize
10118
10119As an example, consider a superscalar @acronym{RISC} machine which can
10120issue three insns (two integer insns and one floating point insn) on
10121the cycle but can finish only two insns. To describe this, we define
10122the following functional units.
10123
10124@smallexample
10125(define_cpu_unit "i0_pipeline, i1_pipeline, f_pipeline")
ef261fee 10126(define_cpu_unit "port0, port1")
fae15c93
VM
10127@end smallexample
10128
10129All simple integer insns can be executed in any integer pipeline and
10130their result is ready in two cycles. The simple integer insns are
10131issued into the first pipeline unless it is reserved, otherwise they
10132are issued into the second pipeline. Integer division and
10133multiplication insns can be executed only in the second integer
793e17f9 10134pipeline and their results are ready correspondingly in 9 and 4
431ae0bf 10135cycles. The integer division is not pipelined, i.e.@: the subsequent
fae15c93
VM
10136integer division insn can not be issued until the current division
10137insn finished. Floating point insns are fully pipelined and their
ef261fee
R
10138results are ready in 3 cycles. Where the result of a floating point
10139insn is used by an integer insn, an additional delay of one cycle is
10140incurred. To describe all of this we could specify
fae15c93
VM
10141
10142@smallexample
10143(define_cpu_unit "div")
10144
68e4d4c5 10145(define_insn_reservation "simple" 2 (eq_attr "type" "int")
ef261fee 10146 "(i0_pipeline | i1_pipeline), (port0 | port1)")
fae15c93 10147
68e4d4c5 10148(define_insn_reservation "mult" 4 (eq_attr "type" "mult")
ef261fee 10149 "i1_pipeline, nothing*2, (port0 | port1)")
fae15c93 10150
793e17f9 10151(define_insn_reservation "div" 9 (eq_attr "type" "div")
ef261fee 10152 "i1_pipeline, div*7, div + (port0 | port1)")
fae15c93 10153
68e4d4c5 10154(define_insn_reservation "float" 3 (eq_attr "type" "float")
ef261fee 10155 "f_pipeline, nothing, (port0 | port1))
fae15c93 10156
ef261fee 10157(define_bypass 4 "float" "simple,mult,div")
fae15c93
VM
10158@end smallexample
10159
10160To simplify the description we could describe the following reservation
10161
10162@smallexample
10163(define_reservation "finish" "port0|port1")
10164@end smallexample
10165
10166and use it in all @code{define_insn_reservation} as in the following
10167construction
10168
10169@smallexample
68e4d4c5 10170(define_insn_reservation "simple" 2 (eq_attr "type" "int")
fae15c93
VM
10171 "(i0_pipeline | i1_pipeline), finish")
10172@end smallexample
10173
10174
a5249a21
HPN
10175@end ifset
10176@ifset INTERNALS
3262c1f5
RH
10177@node Conditional Execution
10178@section Conditional Execution
10179@cindex conditional execution
10180@cindex predication
10181
10182A number of architectures provide for some form of conditional
10183execution, or predication. The hallmark of this feature is the
10184ability to nullify most of the instructions in the instruction set.
10185When the instruction set is large and not entirely symmetric, it
10186can be quite tedious to describe these forms directly in the
10187@file{.md} file. An alternative is the @code{define_cond_exec} template.
10188
10189@findex define_cond_exec
10190@smallexample
10191(define_cond_exec
10192 [@var{predicate-pattern}]
10193 "@var{condition}"
aadaf24e
KT
10194 "@var{output-template}"
10195 "@var{optional-insn-attribues}")
3262c1f5
RH
10196@end smallexample
10197
10198@var{predicate-pattern} is the condition that must be true for the
10199insn to be executed at runtime and should match a relational operator.
10200One can use @code{match_operator} to match several relational operators
10201at once. Any @code{match_operand} operands must have no more than one
10202alternative.
10203
10204@var{condition} is a C expression that must be true for the generated
10205pattern to match.
10206
10207@findex current_insn_predicate
630d3d5a 10208@var{output-template} is a string similar to the @code{define_insn}
3262c1f5
RH
10209output template (@pxref{Output Template}), except that the @samp{*}
10210and @samp{@@} special cases do not apply. This is only useful if the
10211assembly text for the predicate is a simple prefix to the main insn.
10212In order to handle the general case, there is a global variable
10213@code{current_insn_predicate} that will contain the entire predicate
10214if the current insn is predicated, and will otherwise be @code{NULL}.
10215
aadaf24e
KT
10216@var{optional-insn-attributes} is an optional vector of attributes that gets
10217appended to the insn attributes of the produced cond_exec rtx. It can
10218be used to add some distinguishing attribute to cond_exec rtxs produced
10219that way. An example usage would be to use this attribute in conjunction
10220with attributes on the main pattern to disable particular alternatives under
10221certain conditions.
10222
ebb48a4d
JM
10223When @code{define_cond_exec} is used, an implicit reference to
10224the @code{predicable} instruction attribute is made.
0bddee8e
BS
10225@xref{Insn Attributes}. This attribute must be a boolean (i.e.@: have
10226exactly two elements in its @var{list-of-values}), with the possible
10227values being @code{no} and @code{yes}. The default and all uses in
10228the insns must be a simple constant, not a complex expressions. It
10229may, however, depend on the alternative, by using a comma-separated
10230list of values. If that is the case, the port should also define an
10231@code{enabled} attribute (@pxref{Disable Insn Alternatives}), which
10232should also allow only @code{no} and @code{yes} as its values.
3262c1f5 10233
ebb48a4d 10234For each @code{define_insn} for which the @code{predicable}
3262c1f5
RH
10235attribute is true, a new @code{define_insn} pattern will be
10236generated that matches a predicated version of the instruction.
10237For example,
10238
10239@smallexample
10240(define_insn "addsi"
10241 [(set (match_operand:SI 0 "register_operand" "r")
10242 (plus:SI (match_operand:SI 1 "register_operand" "r")
10243 (match_operand:SI 2 "register_operand" "r")))]
10244 "@var{test1}"
10245 "add %2,%1,%0")
10246
10247(define_cond_exec
10248 [(ne (match_operand:CC 0 "register_operand" "c")
10249 (const_int 0))]
10250 "@var{test2}"
10251 "(%0)")
10252@end smallexample
10253
10254@noindent
10255generates a new pattern
10256
10257@smallexample
10258(define_insn ""
10259 [(cond_exec
10260 (ne (match_operand:CC 3 "register_operand" "c") (const_int 0))
10261 (set (match_operand:SI 0 "register_operand" "r")
10262 (plus:SI (match_operand:SI 1 "register_operand" "r")
10263 (match_operand:SI 2 "register_operand" "r"))))]
10264 "(@var{test2}) && (@var{test1})"
10265 "(%3) add %2,%1,%0")
10266@end smallexample
c25c12b8 10267
a5249a21 10268@end ifset
477c104e
MK
10269@ifset INTERNALS
10270@node Define Subst
10271@section RTL Templates Transformations
10272@cindex define_subst
10273
10274For some hardware architectures there are common cases when the RTL
10275templates for the instructions can be derived from the other RTL
10276templates using simple transformations. E.g., @file{i386.md} contains
10277an RTL template for the ordinary @code{sub} instruction---
10278@code{*subsi_1}, and for the @code{sub} instruction with subsequent
10279zero-extension---@code{*subsi_1_zext}. Such cases can be easily
10280implemented by a single meta-template capable of generating a modified
10281case based on the initial one:
10282
10283@findex define_subst
10284@smallexample
10285(define_subst "@var{name}"
10286 [@var{input-template}]
10287 "@var{condition}"
10288 [@var{output-template}])
10289@end smallexample
10290@var{input-template} is a pattern describing the source RTL template,
10291which will be transformed.
10292
10293@var{condition} is a C expression that is conjunct with the condition
10294from the input-template to generate a condition to be used in the
10295output-template.
10296
10297@var{output-template} is a pattern that will be used in the resulting
10298template.
10299
10300@code{define_subst} mechanism is tightly coupled with the notion of the
bdb6985c 10301subst attribute (@pxref{Subst Iterators}). The use of
477c104e
MK
10302@code{define_subst} is triggered by a reference to a subst attribute in
10303the transforming RTL template. This reference initiates duplication of
10304the source RTL template and substitution of the attributes with their
10305values. The source RTL template is left unchanged, while the copy is
10306transformed by @code{define_subst}. This transformation can fail in the
10307case when the source RTL template is not matched against the
10308input-template of the @code{define_subst}. In such case the copy is
10309deleted.
10310
10311@code{define_subst} can be used only in @code{define_insn} and
630ba2fd 10312@code{define_expand}, it cannot be used in other expressions (e.g.@: in
477c104e
MK
10313@code{define_insn_and_split}).
10314
10315@menu
10316* Define Subst Example:: Example of @code{define_subst} work.
10317* Define Subst Pattern Matching:: Process of template comparison.
10318* Define Subst Output Template:: Generation of output template.
10319@end menu
10320
10321@node Define Subst Example
10322@subsection @code{define_subst} Example
10323@cindex define_subst
10324
10325To illustrate how @code{define_subst} works, let us examine a simple
10326template transformation.
10327
10328Suppose there are two kinds of instructions: one that touches flags and
10329the other that does not. The instructions of the second type could be
10330generated with the following @code{define_subst}:
10331
10332@smallexample
10333(define_subst "add_clobber_subst"
10334 [(set (match_operand:SI 0 "" "")
10335 (match_operand:SI 1 "" ""))]
10336 ""
10337 [(set (match_dup 0)
10338 (match_dup 1))
10339 (clobber (reg:CC FLAGS_REG))]
10340@end smallexample
10341
10342This @code{define_subst} can be applied to any RTL pattern containing
10343@code{set} of mode SI and generates a copy with clobber when it is
10344applied.
10345
10346Assume there is an RTL template for a @code{max} instruction to be used
10347in @code{define_subst} mentioned above:
10348
10349@smallexample
10350(define_insn "maxsi"
10351 [(set (match_operand:SI 0 "register_operand" "=r")
10352 (max:SI
10353 (match_operand:SI 1 "register_operand" "r")
10354 (match_operand:SI 2 "register_operand" "r")))]
10355 ""
10356 "max\t@{%2, %1, %0|%0, %1, %2@}"
10357 [@dots{}])
10358@end smallexample
10359
10360To mark the RTL template for @code{define_subst} application,
10361subst-attributes are used. They should be declared in advance:
10362
10363@smallexample
10364(define_subst_attr "add_clobber_name" "add_clobber_subst" "_noclobber" "_clobber")
10365@end smallexample
10366
10367Here @samp{add_clobber_name} is the attribute name,
10368@samp{add_clobber_subst} is the name of the corresponding
10369@code{define_subst}, the third argument (@samp{_noclobber}) is the
10370attribute value that would be substituted into the unchanged version of
10371the source RTL template, and the last argument (@samp{_clobber}) is the
10372value that would be substituted into the second, transformed,
10373version of the RTL template.
10374
10375Once the subst-attribute has been defined, it should be used in RTL
10376templates which need to be processed by the @code{define_subst}. So,
10377the original RTL template should be changed:
10378
10379@smallexample
10380(define_insn "maxsi<add_clobber_name>"
10381 [(set (match_operand:SI 0 "register_operand" "=r")
10382 (max:SI
10383 (match_operand:SI 1 "register_operand" "r")
10384 (match_operand:SI 2 "register_operand" "r")))]
10385 ""
10386 "max\t@{%2, %1, %0|%0, %1, %2@}"
10387 [@dots{}])
10388@end smallexample
10389
10390The result of the @code{define_subst} usage would look like the following:
10391
10392@smallexample
10393(define_insn "maxsi_noclobber"
10394 [(set (match_operand:SI 0 "register_operand" "=r")
10395 (max:SI
10396 (match_operand:SI 1 "register_operand" "r")
10397 (match_operand:SI 2 "register_operand" "r")))]
10398 ""
10399 "max\t@{%2, %1, %0|%0, %1, %2@}"
10400 [@dots{}])
10401(define_insn "maxsi_clobber"
10402 [(set (match_operand:SI 0 "register_operand" "=r")
10403 (max:SI
10404 (match_operand:SI 1 "register_operand" "r")
10405 (match_operand:SI 2 "register_operand" "r")))
10406 (clobber (reg:CC FLAGS_REG))]
10407 ""
10408 "max\t@{%2, %1, %0|%0, %1, %2@}"
10409 [@dots{}])
10410@end smallexample
10411
10412@node Define Subst Pattern Matching
10413@subsection Pattern Matching in @code{define_subst}
10414@cindex define_subst
10415
10416All expressions, allowed in @code{define_insn} or @code{define_expand},
10417are allowed in the input-template of @code{define_subst}, except
10418@code{match_par_dup}, @code{match_scratch}, @code{match_parallel}. The
10419meanings of expressions in the input-template were changed:
10420
10421@code{match_operand} matches any expression (possibly, a subtree in
10422RTL-template), if modes of the @code{match_operand} and this expression
10423are the same, or mode of the @code{match_operand} is @code{VOIDmode}, or
10424this expression is @code{match_dup}, @code{match_op_dup}. If the
10425expression is @code{match_operand} too, and predicate of
10426@code{match_operand} from the input pattern is not empty, then the
10427predicates are compared. That can be used for more accurate filtering
10428of accepted RTL-templates.
10429
10430@code{match_operator} matches common operators (like @code{plus},
10431@code{minus}), @code{unspec}, @code{unspec_volatile} operators and
10432@code{match_operator}s from the original pattern if the modes match and
10433@code{match_operator} from the input pattern has the same number of
10434operands as the operator from the original pattern.
10435
10436@node Define Subst Output Template
10437@subsection Generation of output template in @code{define_subst}
10438@cindex define_subst
10439
10440If all necessary checks for @code{define_subst} application pass, a new
10441RTL-pattern, based on the output-template, is created to replace the old
10442template. Like in input-patterns, meanings of some RTL expressions are
10443changed when they are used in output-patterns of a @code{define_subst}.
10444Thus, @code{match_dup} is used for copying the whole expression from the
10445original pattern, which matched corresponding @code{match_operand} from
10446the input pattern.
10447
10448@code{match_dup N} is used in the output template to be replaced with
10449the expression from the original pattern, which matched
10450@code{match_operand N} from the input pattern. As a consequence,
10451@code{match_dup} cannot be used to point to @code{match_operand}s from
10452the output pattern, it should always refer to a @code{match_operand}
8245edf3
PK
10453from the input pattern. If a @code{match_dup N} occurs more than once
10454in the output template, its first occurrence is replaced with the
10455expression from the original pattern, and the subsequent expressions
10456are replaced with @code{match_dup N}, i.e., a reference to the first
10457expression.
477c104e
MK
10458
10459In the output template one can refer to the expressions from the
10460original pattern and create new ones. For instance, some operands could
10461be added by means of standard @code{match_operand}.
10462
10463After replacing @code{match_dup} with some RTL-subtree from the original
10464pattern, it could happen that several @code{match_operand}s in the
10465output pattern have the same indexes. It is unknown, how many and what
10466indexes would be used in the expression which would replace
10467@code{match_dup}, so such conflicts in indexes are inevitable. To
10468overcome this issue, @code{match_operands} and @code{match_operators},
10469which were introduced into the output pattern, are renumerated when all
10470@code{match_dup}s are replaced.
10471
10472Number of alternatives in @code{match_operand}s introduced into the
10473output template @code{M} could differ from the number of alternatives in
10474the original pattern @code{N}, so in the resultant pattern there would
10475be @code{N*M} alternatives. Thus, constraints from the original pattern
10476would be duplicated @code{N} times, constraints from the output pattern
10477would be duplicated @code{M} times, producing all possible combinations.
10478@end ifset
10479
a5249a21 10480@ifset INTERNALS
c25c12b8
R
10481@node Constant Definitions
10482@section Constant Definitions
10483@cindex constant definitions
10484@findex define_constants
10485
10486Using literal constants inside instruction patterns reduces legibility and
10487can be a maintenance problem.
10488
10489To overcome this problem, you may use the @code{define_constants}
10490expression. It contains a vector of name-value pairs. From that
10491point on, wherever any of the names appears in the MD file, it is as
10492if the corresponding value had been written instead. You may use
10493@code{define_constants} multiple times; each appearance adds more
10494constants to the table. It is an error to redefine a constant with
10495a different value.
10496
10497To come back to the a29k load multiple example, instead of
10498
10499@smallexample
10500(define_insn ""
10501 [(match_parallel 0 "load_multiple_operation"
10502 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10503 (match_operand:SI 2 "memory_operand" "m"))
10504 (use (reg:SI 179))
10505 (clobber (reg:SI 179))])]
10506 ""
10507 "loadm 0,0,%1,%2")
10508@end smallexample
10509
10510You could write:
10511
10512@smallexample
10513(define_constants [
10514 (R_BP 177)
10515 (R_FC 178)
10516 (R_CR 179)
10517 (R_Q 180)
10518])
10519
10520(define_insn ""
10521 [(match_parallel 0 "load_multiple_operation"
10522 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10523 (match_operand:SI 2 "memory_operand" "m"))
10524 (use (reg:SI R_CR))
10525 (clobber (reg:SI R_CR))])]
10526 ""
10527 "loadm 0,0,%1,%2")
10528@end smallexample
10529
10530The constants that are defined with a define_constant are also output
10531in the insn-codes.h header file as #defines.
24609606
RS
10532
10533@cindex enumerations
10534@findex define_c_enum
10535You can also use the machine description file to define enumerations.
10536Like the constants defined by @code{define_constant}, these enumerations
10537are visible to both the machine description file and the main C code.
10538
10539The syntax is as follows:
10540
10541@smallexample
10542(define_c_enum "@var{name}" [
10543 @var{value0}
10544 @var{value1}
10545 @dots{}
10546 @var{valuen}
10547])
10548@end smallexample
10549
10550This definition causes the equivalent of the following C code to appear
10551in @file{insn-constants.h}:
10552
10553@smallexample
10554enum @var{name} @{
10555 @var{value0} = 0,
10556 @var{value1} = 1,
10557 @dots{}
10558 @var{valuen} = @var{n}
10559@};
10560#define NUM_@var{cname}_VALUES (@var{n} + 1)
10561@end smallexample
10562
10563where @var{cname} is the capitalized form of @var{name}.
10564It also makes each @var{valuei} available in the machine description
10565file, just as if it had been declared with:
10566
10567@smallexample
10568(define_constants [(@var{valuei} @var{i})])
10569@end smallexample
10570
10571Each @var{valuei} is usually an upper-case identifier and usually
10572begins with @var{cname}.
10573
10574You can split the enumeration definition into as many statements as
10575you like. The above example is directly equivalent to:
10576
10577@smallexample
10578(define_c_enum "@var{name}" [@var{value0}])
10579(define_c_enum "@var{name}" [@var{value1}])
10580@dots{}
10581(define_c_enum "@var{name}" [@var{valuen}])
10582@end smallexample
10583
10584Splitting the enumeration helps to improve the modularity of each
10585individual @code{.md} file. For example, if a port defines its
10586synchronization instructions in a separate @file{sync.md} file,
10587it is convenient to define all synchronization-specific enumeration
10588values in @file{sync.md} rather than in the main @file{.md} file.
10589
0fe60a1b
RS
10590Some enumeration names have special significance to GCC:
10591
10592@table @code
10593@item unspecv
10594@findex unspec_volatile
10595If an enumeration called @code{unspecv} is defined, GCC will use it
10596when printing out @code{unspec_volatile} expressions. For example:
10597
10598@smallexample
10599(define_c_enum "unspecv" [
10600 UNSPECV_BLOCKAGE
10601])
10602@end smallexample
10603
10604causes GCC to print @samp{(unspec_volatile @dots{} 0)} as:
10605
10606@smallexample
10607(unspec_volatile ... UNSPECV_BLOCKAGE)
10608@end smallexample
10609
10610@item unspec
10611@findex unspec
10612If an enumeration called @code{unspec} is defined, GCC will use
10613it when printing out @code{unspec} expressions. GCC will also use
10614it when printing out @code{unspec_volatile} expressions unless an
10615@code{unspecv} enumeration is also defined. You can therefore
10616decide whether to keep separate enumerations for volatile and
10617non-volatile expressions or whether to use the same enumeration
10618for both.
10619@end table
10620
24609606 10621@findex define_enum
8f4fe86c 10622@anchor{define_enum}
24609606
RS
10623Another way of defining an enumeration is to use @code{define_enum}:
10624
10625@smallexample
10626(define_enum "@var{name}" [
10627 @var{value0}
10628 @var{value1}
10629 @dots{}
10630 @var{valuen}
10631])
10632@end smallexample
10633
10634This directive implies:
10635
10636@smallexample
10637(define_c_enum "@var{name}" [
10638 @var{cname}_@var{cvalue0}
10639 @var{cname}_@var{cvalue1}
10640 @dots{}
10641 @var{cname}_@var{cvaluen}
10642])
10643@end smallexample
10644
8f4fe86c 10645@findex define_enum_attr
24609606 10646where @var{cvaluei} is the capitalized form of @var{valuei}.
8f4fe86c
RS
10647However, unlike @code{define_c_enum}, the enumerations defined
10648by @code{define_enum} can be used in attribute specifications
10649(@pxref{define_enum_attr}).
b11cc610 10650@end ifset
032e8348 10651@ifset INTERNALS
3abcb3a7
HPN
10652@node Iterators
10653@section Iterators
10654@cindex iterators in @file{.md} files
032e8348
RS
10655
10656Ports often need to define similar patterns for more than one machine
3abcb3a7 10657mode or for more than one rtx code. GCC provides some simple iterator
032e8348
RS
10658facilities to make this process easier.
10659
10660@menu
3abcb3a7
HPN
10661* Mode Iterators:: Generating variations of patterns for different modes.
10662* Code Iterators:: Doing the same for codes.
57a4717b 10663* Int Iterators:: Doing the same for integers.
477c104e 10664* Subst Iterators:: Generating variations of patterns for define_subst.
0016d8d9 10665* Parameterized Names:: Specifying iterator values in C++ code.
032e8348
RS
10666@end menu
10667
3abcb3a7
HPN
10668@node Mode Iterators
10669@subsection Mode Iterators
10670@cindex mode iterators in @file{.md} files
032e8348
RS
10671
10672Ports often need to define similar patterns for two or more different modes.
10673For example:
10674
10675@itemize @bullet
10676@item
10677If a processor has hardware support for both single and double
10678floating-point arithmetic, the @code{SFmode} patterns tend to be
10679very similar to the @code{DFmode} ones.
10680
10681@item
10682If a port uses @code{SImode} pointers in one configuration and
10683@code{DImode} pointers in another, it will usually have very similar
10684@code{SImode} and @code{DImode} patterns for manipulating pointers.
10685@end itemize
10686
3abcb3a7 10687Mode iterators allow several patterns to be instantiated from one
032e8348
RS
10688@file{.md} file template. They can be used with any type of
10689rtx-based construct, such as a @code{define_insn},
10690@code{define_split}, or @code{define_peephole2}.
10691
10692@menu
3abcb3a7 10693* Defining Mode Iterators:: Defining a new mode iterator.
6ccde948
RW
10694* Substitutions:: Combining mode iterators with substitutions
10695* Examples:: Examples
032e8348
RS
10696@end menu
10697
3abcb3a7
HPN
10698@node Defining Mode Iterators
10699@subsubsection Defining Mode Iterators
10700@findex define_mode_iterator
032e8348 10701
3abcb3a7 10702The syntax for defining a mode iterator is:
032e8348
RS
10703
10704@smallexample
923158be 10705(define_mode_iterator @var{name} [(@var{mode1} "@var{cond1}") @dots{} (@var{moden} "@var{condn}")])
032e8348
RS
10706@end smallexample
10707
10708This allows subsequent @file{.md} file constructs to use the mode suffix
10709@code{:@var{name}}. Every construct that does so will be expanded
10710@var{n} times, once with every use of @code{:@var{name}} replaced by
10711@code{:@var{mode1}}, once with every use replaced by @code{:@var{mode2}},
10712and so on. In the expansion for a particular @var{modei}, every
10713C condition will also require that @var{condi} be true.
10714
10715For example:
10716
10717@smallexample
3abcb3a7 10718(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
032e8348
RS
10719@end smallexample
10720
10721defines a new mode suffix @code{:P}. Every construct that uses
10722@code{:P} will be expanded twice, once with every @code{:P} replaced
10723by @code{:SI} and once with every @code{:P} replaced by @code{:DI}.
10724The @code{:SI} version will only apply if @code{Pmode == SImode} and
10725the @code{:DI} version will only apply if @code{Pmode == DImode}.
10726
10727As with other @file{.md} conditions, an empty string is treated
10728as ``always true''. @code{(@var{mode} "")} can also be abbreviated
10729to @code{@var{mode}}. For example:
10730
10731@smallexample
3abcb3a7 10732(define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
032e8348
RS
10733@end smallexample
10734
10735means that the @code{:DI} expansion only applies if @code{TARGET_64BIT}
10736but that the @code{:SI} expansion has no such constraint.
10737
3abcb3a7
HPN
10738Iterators are applied in the order they are defined. This can be
10739significant if two iterators are used in a construct that requires
f30990b2 10740substitutions. @xref{Substitutions}.
032e8348 10741
f30990b2 10742@node Substitutions
3abcb3a7 10743@subsubsection Substitution in Mode Iterators
032e8348
RS
10744@findex define_mode_attr
10745
3abcb3a7 10746If an @file{.md} file construct uses mode iterators, each version of the
f30990b2
ILT
10747construct will often need slightly different strings or modes. For
10748example:
032e8348
RS
10749
10750@itemize @bullet
10751@item
10752When a @code{define_expand} defines several @code{add@var{m}3} patterns
10753(@pxref{Standard Names}), each expander will need to use the
10754appropriate mode name for @var{m}.
10755
10756@item
10757When a @code{define_insn} defines several instruction patterns,
10758each instruction will often use a different assembler mnemonic.
f30990b2
ILT
10759
10760@item
10761When a @code{define_insn} requires operands with different modes,
3abcb3a7 10762using an iterator for one of the operand modes usually requires a specific
f30990b2 10763mode for the other operand(s).
032e8348
RS
10764@end itemize
10765
10766GCC supports such variations through a system of ``mode attributes''.
10767There are two standard attributes: @code{mode}, which is the name of
10768the mode in lower case, and @code{MODE}, which is the same thing in
10769upper case. You can define other attributes using:
10770
10771@smallexample
923158be 10772(define_mode_attr @var{name} [(@var{mode1} "@var{value1}") @dots{} (@var{moden} "@var{valuen}")])
032e8348
RS
10773@end smallexample
10774
10775where @var{name} is the name of the attribute and @var{valuei}
10776is the value associated with @var{modei}.
10777
3abcb3a7 10778When GCC replaces some @var{:iterator} with @var{:mode}, it will scan
f30990b2 10779each string and mode in the pattern for sequences of the form
3abcb3a7 10780@code{<@var{iterator}:@var{attr}>}, where @var{attr} is the name of a
f30990b2 10781mode attribute. If the attribute is defined for @var{mode}, the whole
923158be 10782@code{<@dots{}>} sequence will be replaced by the appropriate attribute
f30990b2 10783value.
032e8348
RS
10784
10785For example, suppose an @file{.md} file has:
10786
10787@smallexample
3abcb3a7 10788(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
032e8348
RS
10789(define_mode_attr load [(SI "lw") (DI "ld")])
10790@end smallexample
10791
10792If one of the patterns that uses @code{:P} contains the string
10793@code{"<P:load>\t%0,%1"}, the @code{SI} version of that pattern
10794will use @code{"lw\t%0,%1"} and the @code{DI} version will use
10795@code{"ld\t%0,%1"}.
10796
f30990b2
ILT
10797Here is an example of using an attribute for a mode:
10798
10799@smallexample
3abcb3a7 10800(define_mode_iterator LONG [SI DI])
f30990b2 10801(define_mode_attr SHORT [(SI "HI") (DI "SI")])
923158be
RW
10802(define_insn @dots{}
10803 (sign_extend:LONG (match_operand:<LONG:SHORT> @dots{})) @dots{})
f30990b2
ILT
10804@end smallexample
10805
3abcb3a7
HPN
10806The @code{@var{iterator}:} prefix may be omitted, in which case the
10807substitution will be attempted for every iterator expansion.
032e8348
RS
10808
10809@node Examples
3abcb3a7 10810@subsubsection Mode Iterator Examples
032e8348
RS
10811
10812Here is an example from the MIPS port. It defines the following
10813modes and attributes (among others):
10814
10815@smallexample
3abcb3a7 10816(define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
032e8348
RS
10817(define_mode_attr d [(SI "") (DI "d")])
10818@end smallexample
10819
10820and uses the following template to define both @code{subsi3}
10821and @code{subdi3}:
10822
10823@smallexample
10824(define_insn "sub<mode>3"
10825 [(set (match_operand:GPR 0 "register_operand" "=d")
10826 (minus:GPR (match_operand:GPR 1 "register_operand" "d")
10827 (match_operand:GPR 2 "register_operand" "d")))]
10828 ""
10829 "<d>subu\t%0,%1,%2"
10830 [(set_attr "type" "arith")
10831 (set_attr "mode" "<MODE>")])
10832@end smallexample
10833
10834This is exactly equivalent to:
10835
10836@smallexample
10837(define_insn "subsi3"
10838 [(set (match_operand:SI 0 "register_operand" "=d")
10839 (minus:SI (match_operand:SI 1 "register_operand" "d")
10840 (match_operand:SI 2 "register_operand" "d")))]
10841 ""
10842 "subu\t%0,%1,%2"
10843 [(set_attr "type" "arith")
10844 (set_attr "mode" "SI")])
10845
10846(define_insn "subdi3"
10847 [(set (match_operand:DI 0 "register_operand" "=d")
10848 (minus:DI (match_operand:DI 1 "register_operand" "d")
10849 (match_operand:DI 2 "register_operand" "d")))]
10850 ""
10851 "dsubu\t%0,%1,%2"
10852 [(set_attr "type" "arith")
10853 (set_attr "mode" "DI")])
10854@end smallexample
10855
3abcb3a7
HPN
10856@node Code Iterators
10857@subsection Code Iterators
10858@cindex code iterators in @file{.md} files
10859@findex define_code_iterator
032e8348
RS
10860@findex define_code_attr
10861
3abcb3a7 10862Code iterators operate in a similar way to mode iterators. @xref{Mode Iterators}.
032e8348
RS
10863
10864The construct:
10865
10866@smallexample
923158be 10867(define_code_iterator @var{name} [(@var{code1} "@var{cond1}") @dots{} (@var{coden} "@var{condn}")])
032e8348
RS
10868@end smallexample
10869
10870defines a pseudo rtx code @var{name} that can be instantiated as
10871@var{codei} if condition @var{condi} is true. Each @var{codei}
10872must have the same rtx format. @xref{RTL Classes}.
10873
3abcb3a7 10874As with mode iterators, each pattern that uses @var{name} will be
032e8348
RS
10875expanded @var{n} times, once with all uses of @var{name} replaced by
10876@var{code1}, once with all uses replaced by @var{code2}, and so on.
3abcb3a7 10877@xref{Defining Mode Iterators}.
032e8348
RS
10878
10879It is possible to define attributes for codes as well as for modes.
10880There are two standard code attributes: @code{code}, the name of the
10881code in lower case, and @code{CODE}, the name of the code in upper case.
10882Other attributes are defined using:
10883
10884@smallexample
923158be 10885(define_code_attr @var{name} [(@var{code1} "@var{value1}") @dots{} (@var{coden} "@var{valuen}")])
032e8348
RS
10886@end smallexample
10887
3abcb3a7 10888Here's an example of code iterators in action, taken from the MIPS port:
032e8348
RS
10889
10890@smallexample
3abcb3a7
HPN
10891(define_code_iterator any_cond [unordered ordered unlt unge uneq ltgt unle ungt
10892 eq ne gt ge lt le gtu geu ltu leu])
032e8348
RS
10893
10894(define_expand "b<code>"
10895 [(set (pc)
10896 (if_then_else (any_cond:CC (cc0)
10897 (const_int 0))
10898 (label_ref (match_operand 0 ""))
10899 (pc)))]
10900 ""
10901@{
10902 gen_conditional_branch (operands, <CODE>);
10903 DONE;
10904@})
10905@end smallexample
10906
10907This is equivalent to:
10908
10909@smallexample
10910(define_expand "bunordered"
10911 [(set (pc)
10912 (if_then_else (unordered:CC (cc0)
10913 (const_int 0))
10914 (label_ref (match_operand 0 ""))
10915 (pc)))]
10916 ""
10917@{
10918 gen_conditional_branch (operands, UNORDERED);
10919 DONE;
10920@})
10921
10922(define_expand "bordered"
10923 [(set (pc)
10924 (if_then_else (ordered:CC (cc0)
10925 (const_int 0))
10926 (label_ref (match_operand 0 ""))
10927 (pc)))]
10928 ""
10929@{
10930 gen_conditional_branch (operands, ORDERED);
10931 DONE;
10932@})
10933
923158be 10934@dots{}
032e8348
RS
10935@end smallexample
10936
57a4717b
TB
10937@node Int Iterators
10938@subsection Int Iterators
10939@cindex int iterators in @file{.md} files
10940@findex define_int_iterator
10941@findex define_int_attr
10942
10943Int iterators operate in a similar way to code iterators. @xref{Code Iterators}.
10944
10945The construct:
10946
10947@smallexample
10948(define_int_iterator @var{name} [(@var{int1} "@var{cond1}") @dots{} (@var{intn} "@var{condn}")])
10949@end smallexample
10950
10951defines a pseudo integer constant @var{name} that can be instantiated as
10952@var{inti} if condition @var{condi} is true. Each @var{int}
10953must have the same rtx format. @xref{RTL Classes}. Int iterators can appear
10954in only those rtx fields that have 'i' as the specifier. This means that
10955each @var{int} has to be a constant defined using define_constant or
10956define_c_enum.
10957
10958As with mode and code iterators, each pattern that uses @var{name} will be
10959expanded @var{n} times, once with all uses of @var{name} replaced by
10960@var{int1}, once with all uses replaced by @var{int2}, and so on.
10961@xref{Defining Mode Iterators}.
10962
10963It is possible to define attributes for ints as well as for codes and modes.
10964Attributes are defined using:
10965
10966@smallexample
10967(define_int_attr @var{name} [(@var{int1} "@var{value1}") @dots{} (@var{intn} "@var{valuen}")])
10968@end smallexample
10969
10970Here's an example of int iterators in action, taken from the ARM port:
10971
10972@smallexample
10973(define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
10974
10975(define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
10976
10977(define_insn "neon_vq<absneg><mode>"
10978 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10979 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10980 (match_operand:SI 2 "immediate_operand" "i")]
10981 QABSNEG))]
10982 "TARGET_NEON"
10983 "vq<absneg>.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 10984 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
10985)
10986
10987@end smallexample
10988
10989This is equivalent to:
10990
10991@smallexample
10992(define_insn "neon_vqabs<mode>"
10993 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10994 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10995 (match_operand:SI 2 "immediate_operand" "i")]
10996 UNSPEC_VQABS))]
10997 "TARGET_NEON"
10998 "vqabs.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 10999 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
11000)
11001
11002(define_insn "neon_vqneg<mode>"
11003 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11004 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11005 (match_operand:SI 2 "immediate_operand" "i")]
11006 UNSPEC_VQNEG))]
11007 "TARGET_NEON"
11008 "vqneg.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 11009 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
11010)
11011
11012@end smallexample
11013
477c104e
MK
11014@node Subst Iterators
11015@subsection Subst Iterators
11016@cindex subst iterators in @file{.md} files
11017@findex define_subst
11018@findex define_subst_attr
11019
11020Subst iterators are special type of iterators with the following
11021restrictions: they could not be declared explicitly, they always have
11022only two values, and they do not have explicit dedicated name.
11023Subst-iterators are triggered only when corresponding subst-attribute is
11024used in RTL-pattern.
11025
11026Subst iterators transform templates in the following way: the templates
11027are duplicated, the subst-attributes in these templates are replaced
11028with the corresponding values, and a new attribute is implicitly added
11029to the given @code{define_insn}/@code{define_expand}. The name of the
11030added attribute matches the name of @code{define_subst}. Such
11031attributes are declared implicitly, and it is not allowed to have a
11032@code{define_attr} named as a @code{define_subst}.
11033
11034Each subst iterator is linked to a @code{define_subst}. It is declared
11035implicitly by the first appearance of the corresponding
11036@code{define_subst_attr}, and it is not allowed to define it explicitly.
11037
11038Declarations of subst-attributes have the following syntax:
11039
11040@findex define_subst_attr
11041@smallexample
11042(define_subst_attr "@var{name}"
11043 "@var{subst-name}"
11044 "@var{no-subst-value}"
11045 "@var{subst-applied-value}")
11046@end smallexample
11047
11048@var{name} is a string with which the given subst-attribute could be
11049referred to.
11050
11051@var{subst-name} shows which @code{define_subst} should be applied to an
11052RTL-template if the given subst-attribute is present in the
11053RTL-template.
11054
11055@var{no-subst-value} is a value with which subst-attribute would be
11056replaced in the first copy of the original RTL-template.
11057
11058@var{subst-applied-value} is a value with which subst-attribute would be
11059replaced in the second copy of the original RTL-template.
11060
0016d8d9
RS
11061@node Parameterized Names
11062@subsection Parameterized Names
11063@cindex @samp{@@} in instruction pattern names
11064Ports sometimes need to apply iterators using C++ code, in order to
11065get the code or RTL pattern for a specific instruction. For example,
11066suppose we have the @samp{neon_vq<absneg><mode>} pattern given above:
11067
11068@smallexample
11069(define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
11070
11071(define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
11072
11073(define_insn "neon_vq<absneg><mode>"
11074 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11075 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11076 (match_operand:SI 2 "immediate_operand" "i")]
11077 QABSNEG))]
11078 @dots{}
11079)
11080@end smallexample
11081
11082A port might need to generate this pattern for a variable
11083@samp{QABSNEG} value and a variable @samp{VDQIW} mode. There are two
11084ways of doing this. The first is to build the rtx for the pattern
11085directly from C++ code; this is a valid technique and avoids any risk
11086of combinatorial explosion. The second is to prefix the instruction
11087name with the special character @samp{@@}, which tells GCC to generate
11088the four additional functions below. In each case, @var{name} is the
11089name of the instruction without the leading @samp{@@} character,
11090without the @samp{<@dots{}>} placeholders, and with any underscore
11091before a @samp{<@dots{}>} placeholder removed if keeping it would
11092lead to a double or trailing underscore.
11093
11094@table @samp
11095@item insn_code maybe_code_for_@var{name} (@var{i1}, @var{i2}, @dots{})
11096See whether replacing the first @samp{<@dots{}>} placeholder with
11097iterator value @var{i1}, the second with iterator value @var{i2}, and
11098so on, gives a valid instruction. Return its code if so, otherwise
11099return @code{CODE_FOR_nothing}.
11100
11101@item insn_code code_for_@var{name} (@var{i1}, @var{i2}, @dots{})
11102Same, but abort the compiler if the requested instruction does not exist.
11103
11104@item rtx maybe_gen_@var{name} (@var{i1}, @var{i2}, @dots{}, @var{op0}, @var{op1}, @dots{})
11105Check for a valid instruction in the same way as
11106@code{maybe_code_for_@var{name}}. If the instruction exists,
11107generate an instance of it using the operand values given by @var{op0},
11108@var{op1}, and so on, otherwise return null.
11109
11110@item rtx gen_@var{name} (@var{i1}, @var{i2}, @dots{}, @var{op0}, @var{op1}, @dots{})
11111Same, but abort the compiler if the requested instruction does not exist,
11112or if the instruction generator invoked the @code{FAIL} macro.
11113@end table
11114
11115For example, changing the pattern above to:
11116
11117@smallexample
11118(define_insn "@@neon_vq<absneg><mode>"
11119 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11120 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11121 (match_operand:SI 2 "immediate_operand" "i")]
11122 QABSNEG))]
11123 @dots{}
11124)
11125@end smallexample
11126
11127would define the same patterns as before, but in addition would generate
11128the four functions below:
11129
11130@smallexample
11131insn_code maybe_code_for_neon_vq (int, machine_mode);
11132insn_code code_for_neon_vq (int, machine_mode);
11133rtx maybe_gen_neon_vq (int, machine_mode, rtx, rtx, rtx);
11134rtx gen_neon_vq (int, machine_mode, rtx, rtx, rtx);
11135@end smallexample
11136
11137Calling @samp{code_for_neon_vq (UNSPEC_VQABS, V8QImode)}
11138would then give @code{CODE_FOR_neon_vqabsv8qi}.
11139
11140It is possible to have multiple @samp{@@} patterns with the same
11141name and same types of iterator. For example:
11142
11143@smallexample
11144(define_insn "@@some_arithmetic_op<mode>"
11145 [(set (match_operand:INTEGER_MODES 0 "register_operand") @dots{})]
11146 @dots{}
11147)
11148
11149(define_insn "@@some_arithmetic_op<mode>"
11150 [(set (match_operand:FLOAT_MODES 0 "register_operand") @dots{})]
11151 @dots{}
11152)
11153@end smallexample
11154
11155would produce a single set of functions that handles both
11156@code{INTEGER_MODES} and @code{FLOAT_MODES}.
11157
032e8348 11158@end ifset