]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/md.texi
Remove Cell Broadband Engine SPU targets
[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
163b1f6a
RS
1751@item x
1752Like @code{w}, but restricted to registers 0 to 15 inclusive.
1753
1754@item y
1755Like @code{w}, but restricted to registers 0 to 7 inclusive.
1756
43cacb12
RS
1757@item Upl
1758One of the low eight SVE predicate registers (@code{P0} to @code{P7})
1759
1760@item Upa
1761Any of the SVE predicate registers (@code{P0} to @code{P15})
5c0da018
IB
1762
1763@item I
1764Integer constant that is valid as an immediate operand in an @code{ADD}
1765instruction
1766
1767@item J
1768Integer constant that is valid as an immediate operand in a @code{SUB}
1769instruction (once negated)
1770
1771@item K
1772Integer constant that can be used with a 32-bit logical instruction
1773
1774@item L
1775Integer constant that can be used with a 64-bit logical instruction
1776
1777@item M
1778Integer constant that is valid as an immediate operand in a 32-bit @code{MOV}
1779pseudo instruction. The @code{MOV} may be assembled to one of several different
1780machine instructions depending on the value
1781
1782@item N
1783Integer constant that is valid as an immediate operand in a 64-bit @code{MOV}
1784pseudo instruction
1785
1786@item S
1787An absolute symbolic address or a label reference
1788
1789@item Y
1790Floating point constant zero
1791
1792@item Z
1793Integer constant zero
1794
5c0da018
IB
1795@item Ush
1796The high part (bits 12 and upwards) of the pc-relative address of a symbol
1797within 4GB of the instruction
1798
1799@item Q
1800A memory address which uses a single base register with no offset
1801
1802@item Ump
1803A memory address suitable for a load/store pair instruction in SI, DI, SF and
1804DF modes
1805
5c0da018
IB
1806@end table
1807
1808
1b7ee8b4
AS
1809@item AMD GCN ---@file{config/gcn/constraints.md}
1810@table @code
1811@item I
1812Immediate integer in the range @minus{}16 to 64
1813
1814@item J
1815Immediate 16-bit signed integer
1816
1817@item Kf
1818Immediate constant @minus{}1
1819
1820@item L
1821Immediate 15-bit unsigned integer
1822
1823@item A
1824Immediate constant that can be inlined in an instruction encoding: integer
1825@minus{}16..64, or float 0.0, +/@minus{}0.5, +/@minus{}1.0, +/@minus{}2.0,
1826+/@minus{}4.0, 1.0/(2.0*PI)
1827
1828@item B
1829Immediate 32-bit signed integer that can be attached to an instruction encoding
1830
1831@item C
1832Immediate 32-bit integer in range @minus{}16..4294967295 (i.e. 32-bit unsigned
1833integer or @samp{A} constraint)
1834
1835@item DA
1836Immediate 64-bit constant that can be split into two @samp{A} constants
1837
1838@item DB
1839Immediate 64-bit constant that can be split into two @samp{B} constants
1840
1841@item U
1842Any @code{unspec}
1843
1844@item Y
1845Any @code{symbol_ref} or @code{label_ref}
1846
1847@item v
1848VGPR register
1849
1850@item Sg
1851SGPR register
1852
1853@item SD
1854SGPR registers valid for instruction destinations, including VCC, M0 and EXEC
1855
1856@item SS
1857SGPR registers valid for instruction sources, including VCC, M0, EXEC and SCC
1858
1859@item Sm
1860SGPR registers valid as a source for scalar memory instructions (excludes M0
1861and EXEC)
1862
1863@item Sv
1864SGPR registers valid as a source or destination for vector instructions
1865(excludes EXEC)
1866
1867@item ca
1868All condition registers: SCC, VCCZ, EXECZ
1869
1870@item cs
1871Scalar condition register: SCC
1872
1873@item cV
1874Vector condition register: VCC, VCC_LO, VCC_HI
1875
1876@item e
1877EXEC register (EXEC_LO and EXEC_HI)
1878
1879@item RB
1880Memory operand with address space suitable for @code{buffer_*} instructions
1881
1882@item RF
1883Memory operand with address space suitable for @code{flat_*} instructions
1884
1885@item RS
1886Memory operand with address space suitable for @code{s_*} instructions
1887
1888@item RL
1889Memory operand with address space suitable for @code{ds_*} LDS instructions
1890
1891@item RG
1892Memory operand with address space suitable for @code{ds_*} GDS instructions
1893
1894@item RD
1895Memory operand with address space suitable for any @code{ds_*} instructions
1896
1897@item RM
1898Memory operand with address space suitable for @code{global_*} instructions
1899
1900@end table
1901
1902
5d5f6720
JR
1903@item ARC ---@file{config/arc/constraints.md}
1904@table @code
1905@item q
1906Registers usable in ARCompact 16-bit instructions: @code{r0}-@code{r3},
1907@code{r12}-@code{r15}. This constraint can only match when the @option{-mq}
1908option is in effect.
1909
1910@item e
1911Registers usable as base-regs of memory addresses in ARCompact 16-bit memory
1912instructions: @code{r0}-@code{r3}, @code{r12}-@code{r15}, @code{sp}.
1913This constraint can only match when the @option{-mq}
1914option is in effect.
1915@item D
1916ARC FPX (dpfp) 64-bit registers. @code{D0}, @code{D1}.
1917
1918@item I
1919A signed 12-bit integer constant.
1920
1921@item Cal
1922constant for arithmetic/logical operations. This might be any constant
1923that can be put into a long immediate by the assmbler or linker without
1924involving a PIC relocation.
1925
1926@item K
1927A 3-bit unsigned integer constant.
1928
1929@item L
1930A 6-bit unsigned integer constant.
1931
1932@item CnL
1933One's complement of a 6-bit unsigned integer constant.
1934
1935@item CmL
1936Two's complement of a 6-bit unsigned integer constant.
1937
1938@item M
1939A 5-bit unsigned integer constant.
1940
1941@item O
1942A 7-bit unsigned integer constant.
1943
1944@item P
1945A 8-bit unsigned integer constant.
1946
1947@item H
1948Any const_double value.
1949@end table
1950
dae840fc 1951@item ARM family---@file{config/arm/constraints.md}
03dda8e3 1952@table @code
b24671f7
RR
1953
1954@item h
1955In Thumb state, the core registers @code{r8}-@code{r15}.
1956
1957@item k
1958The stack pointer register.
1959
1960@item l
1961In Thumb State the core registers @code{r0}-@code{r7}. In ARM state this
1962is an alias for the @code{r} constraint.
1963
1964@item t
1965VFP floating-point registers @code{s0}-@code{s31}. Used for 32 bit values.
1966
9b66ebb1 1967@item w
b24671f7
RR
1968VFP floating-point registers @code{d0}-@code{d31} and the appropriate
1969subset @code{d0}-@code{d15} based on command line options.
1970Used for 64 bit values only. Not valid for Thumb1.
1971
1972@item y
1973The iWMMX co-processor registers.
1974
1975@item z
1976The iWMMX GR registers.
9b66ebb1 1977
03dda8e3 1978@item G
dae840fc 1979The floating-point constant 0.0
03dda8e3
RK
1980
1981@item I
1982Integer that is valid as an immediate operand in a data processing
1983instruction. That is, an integer in the range 0 to 255 rotated by a
1984multiple of 2
1985
1986@item J
630d3d5a 1987Integer in the range @minus{}4095 to 4095
03dda8e3
RK
1988
1989@item K
1990Integer that satisfies constraint @samp{I} when inverted (ones complement)
1991
1992@item L
1993Integer that satisfies constraint @samp{I} when negated (twos complement)
1994
1995@item M
1996Integer in the range 0 to 32
1997
1998@item Q
1999A memory reference where the exact address is in a single register
2000(`@samp{m}' is preferable for @code{asm} statements)
2001
2002@item R
2003An item in the constant pool
2004
2005@item S
2006A symbol in the text segment of the current file
03dda8e3 2007
1e1ab407 2008@item Uv
9b66ebb1
PB
2009A memory reference suitable for VFP load/store insns (reg+constant offset)
2010
fdd695fd
PB
2011@item Uy
2012A memory reference suitable for iWMMXt load/store instructions.
2013
1e1ab407 2014@item Uq
0bdcd332 2015A memory reference suitable for the ARMv4 ldrsb instruction.
db875b15 2016@end table
1e1ab407 2017
fc262682 2018@item AVR family---@file{config/avr/constraints.md}
052a4b28
DC
2019@table @code
2020@item l
2021Registers from r0 to r15
2022
2023@item a
2024Registers from r16 to r23
2025
2026@item d
2027Registers from r16 to r31
2028
2029@item w
3a69a7d5 2030Registers from r24 to r31. These registers can be used in @samp{adiw} command
052a4b28
DC
2031
2032@item e
d7d9c429 2033Pointer register (r26--r31)
052a4b28
DC
2034
2035@item b
d7d9c429 2036Base pointer register (r28--r31)
052a4b28 2037
3a69a7d5
MM
2038@item q
2039Stack pointer register (SPH:SPL)
2040
052a4b28
DC
2041@item t
2042Temporary register r0
2043
2044@item x
2045Register pair X (r27:r26)
2046
2047@item y
2048Register pair Y (r29:r28)
2049
2050@item z
2051Register pair Z (r31:r30)
2052
2053@item I
630d3d5a 2054Constant greater than @minus{}1, less than 64
052a4b28
DC
2055
2056@item J
630d3d5a 2057Constant greater than @minus{}64, less than 1
052a4b28
DC
2058
2059@item K
2060Constant integer 2
2061
2062@item L
2063Constant integer 0
2064
2065@item M
2066Constant that fits in 8 bits
2067
2068@item N
630d3d5a 2069Constant integer @minus{}1
052a4b28
DC
2070
2071@item O
3a69a7d5 2072Constant integer 8, 16, or 24
052a4b28
DC
2073
2074@item P
2075Constant integer 1
2076
2077@item G
2078A floating point constant 0.0
0e8eb4d8 2079
0e8eb4d8
EW
2080@item Q
2081A memory address based on Y or Z pointer with displacement.
052a4b28 2082@end table
53054e77 2083
b4fbcb1b
SL
2084@item Blackfin family---@file{config/bfin/constraints.md}
2085@table @code
2086@item a
2087P register
2088
2089@item d
2090D register
2091
2092@item z
2093A call clobbered P register.
2094
2095@item q@var{n}
2096A single register. If @var{n} is in the range 0 to 7, the corresponding D
2097register. If it is @code{A}, then the register P0.
2098
2099@item D
2100Even-numbered D register
2101
2102@item W
2103Odd-numbered D register
2104
2105@item e
2106Accumulator register.
2107
2108@item A
2109Even-numbered accumulator register.
2110
2111@item B
2112Odd-numbered accumulator register.
2113
2114@item b
2115I register
2116
2117@item v
2118B register
2119
2120@item f
2121M register
2122
2123@item c
630ba2fd 2124Registers used for circular buffering, i.e.@: I, B, or L registers.
b4fbcb1b
SL
2125
2126@item C
2127The CC register.
2128
2129@item t
2130LT0 or LT1.
2131
2132@item k
2133LC0 or LC1.
2134
2135@item u
2136LB0 or LB1.
2137
2138@item x
2139Any D, P, B, M, I or L register.
2140
2141@item y
2142Additional registers typically used only in prologues and epilogues: RETS,
2143RETN, RETI, RETX, RETE, ASTAT, SEQSTAT and USP.
2144
2145@item w
2146Any register except accumulators or CC.
2147
2148@item Ksh
2149Signed 16 bit integer (in the range @minus{}32768 to 32767)
2150
2151@item Kuh
2152Unsigned 16 bit integer (in the range 0 to 65535)
2153
2154@item Ks7
2155Signed 7 bit integer (in the range @minus{}64 to 63)
2156
2157@item Ku7
2158Unsigned 7 bit integer (in the range 0 to 127)
2159
2160@item Ku5
2161Unsigned 5 bit integer (in the range 0 to 31)
2162
2163@item Ks4
2164Signed 4 bit integer (in the range @minus{}8 to 7)
2165
2166@item Ks3
2167Signed 3 bit integer (in the range @minus{}3 to 4)
2168
2169@item Ku3
2170Unsigned 3 bit integer (in the range 0 to 7)
2171
2172@item P@var{n}
2173Constant @var{n}, where @var{n} is a single-digit constant in the range 0 to 4.
2174
2175@item PA
2176An integer equal to one of the MACFLAG_XXX constants that is suitable for
2177use with either accumulator.
2178
2179@item PB
2180An integer equal to one of the MACFLAG_XXX constants that is suitable for
2181use only with accumulator A1.
2182
2183@item M1
2184Constant 255.
2185
2186@item M2
2187Constant 65535.
2188
2189@item J
2190An integer constant with exactly a single bit set.
2191
2192@item L
2193An integer constant with all bits set except exactly one.
2194
2195@item H
2196
2197@item Q
2198Any SYMBOL_REF.
2199@end table
2200
2201@item CR16 Architecture---@file{config/cr16/cr16.h}
2202@table @code
2203
2204@item b
2205Registers from r0 to r14 (registers without stack pointer)
2206
2207@item t
2208Register from r0 to r11 (all 16-bit registers)
2209
2210@item p
2211Register from r12 to r15 (all 32-bit registers)
2212
2213@item I
2214Signed constant that fits in 4 bits
2215
2216@item J
2217Signed constant that fits in 5 bits
2218
2219@item K
2220Signed constant that fits in 6 bits
2221
2222@item L
2223Unsigned constant that fits in 4 bits
2224
2225@item M
2226Signed constant that fits in 32 bits
2227
2228@item N
2229Check for 64 bits wide constants for add/sub instructions
2230
2231@item G
2232Floating point constant that is legal for store immediate
2233@end table
2234
fbceb769
SL
2235@item C-SKY---@file{config/csky/constraints.md}
2236@table @code
2237
2238@item a
2239The mini registers r0 - r7.
2240
2241@item b
2242The low registers r0 - r15.
2243
2244@item c
2245C register.
2246
2247@item y
2248HI and LO registers.
2249
2250@item l
2251LO register.
2252
2253@item h
2254HI register.
2255
2256@item v
2257Vector registers.
2258
2259@item z
2260Stack pointer register (SP).
2261@end table
2262
2263@ifset INTERNALS
2264The C-SKY back end supports a large set of additional constraints
2265that are only useful for instruction selection or splitting rather
2266than inline asm, such as constraints representing constant integer
2267ranges accepted by particular instruction encodings.
2268Refer to the source code for details.
2269@end ifset
2270
feeeff5c
JR
2271@item Epiphany---@file{config/epiphany/constraints.md}
2272@table @code
2273@item U16
2274An unsigned 16-bit constant.
2275
2276@item K
2277An unsigned 5-bit constant.
2278
2279@item L
2280A signed 11-bit constant.
2281
2282@item Cm1
2283A signed 11-bit constant added to @minus{}1.
2284Can only match when the @option{-m1reg-@var{reg}} option is active.
2285
2286@item Cl1
2287Left-shift of @minus{}1, i.e., a bit mask with a block of leading ones, the rest
2288being a block of trailing zeroes.
2289Can only match when the @option{-m1reg-@var{reg}} option is active.
2290
2291@item Cr1
2292Right-shift of @minus{}1, i.e., a bit mask with a trailing block of ones, the
2293rest being zeroes. Or to put it another way, one less than a power of two.
2294Can only match when the @option{-m1reg-@var{reg}} option is active.
2295
2296@item Cal
2297Constant for arithmetic/logical operations.
2298This is like @code{i}, except that for position independent code,
2299no symbols / expressions needing relocations are allowed.
2300
2301@item Csy
2302Symbolic constant for call/jump instruction.
2303
2304@item Rcs
2305The register class usable in short insns. This is a register class
2306constraint, and can thus drive register allocation.
2307This constraint won't match unless @option{-mprefer-short-insn-regs} is
2308in effect.
2309
2310@item Rsc
2311The the register class of registers that can be used to hold a
2312sibcall call address. I.e., a caller-saved register.
2313
2314@item Rct
2315Core control register class.
2316
2317@item Rgs
2318The register group usable in short insns.
2319This constraint does not use a register class, so that it only
2320passively matches suitable registers, and doesn't drive register allocation.
2321
2322@ifset INTERNALS
2323@item Car
2324Constant suitable for the addsi3_r pattern. This is a valid offset
2325For byte, halfword, or word addressing.
2326@end ifset
2327
2328@item Rra
2329Matches the return address if it can be replaced with the link register.
2330
2331@item Rcc
2332Matches the integer condition code register.
2333
2334@item Sra
2335Matches the return address if it is in a stack slot.
2336
2337@item Cfm
2338Matches control register values to switch fp mode, which are encapsulated in
2339@code{UNSPEC_FP_MODE}.
2340@end table
2341
b4fbcb1b 2342@item FRV---@file{config/frv/frv.h}
b25364a0 2343@table @code
b4fbcb1b
SL
2344@item a
2345Register in the class @code{ACC_REGS} (@code{acc0} to @code{acc7}).
b25364a0
S
2346
2347@item b
b4fbcb1b
SL
2348Register in the class @code{EVEN_ACC_REGS} (@code{acc0} to @code{acc7}).
2349
2350@item c
2351Register in the class @code{CC_REGS} (@code{fcc0} to @code{fcc3} and
2352@code{icc0} to @code{icc3}).
2353
2354@item d
2355Register in the class @code{GPR_REGS} (@code{gr0} to @code{gr63}).
2356
2357@item e
2358Register in the class @code{EVEN_REGS} (@code{gr0} to @code{gr63}).
2359Odd registers are excluded not in the class but through the use of a machine
2360mode larger than 4 bytes.
2361
2362@item f
2363Register in the class @code{FPR_REGS} (@code{fr0} to @code{fr63}).
2364
2365@item h
2366Register in the class @code{FEVEN_REGS} (@code{fr0} to @code{fr63}).
2367Odd registers are excluded not in the class but through the use of a machine
2368mode larger than 4 bytes.
2369
2370@item l
2371Register in the class @code{LR_REG} (the @code{lr} register).
2372
2373@item q
2374Register in the class @code{QUAD_REGS} (@code{gr2} to @code{gr63}).
2375Register numbers not divisible by 4 are excluded not in the class but through
2376the use of a machine mode larger than 8 bytes.
b25364a0
S
2377
2378@item t
b4fbcb1b 2379Register in the class @code{ICC_REGS} (@code{icc0} to @code{icc3}).
b25364a0 2380
b4fbcb1b
SL
2381@item u
2382Register in the class @code{FCC_REGS} (@code{fcc0} to @code{fcc3}).
2383
2384@item v
2385Register in the class @code{ICR_REGS} (@code{cc4} to @code{cc7}).
2386
2387@item w
2388Register in the class @code{FCR_REGS} (@code{cc0} to @code{cc3}).
2389
2390@item x
2391Register in the class @code{QUAD_FPR_REGS} (@code{fr0} to @code{fr63}).
2392Register numbers not divisible by 4 are excluded not in the class but through
2393the use of a machine mode larger than 8 bytes.
2394
2395@item z
2396Register in the class @code{SPR_REGS} (@code{lcr} and @code{lr}).
2397
2398@item A
2399Register in the class @code{QUAD_ACC_REGS} (@code{acc0} to @code{acc7}).
2400
2401@item B
2402Register in the class @code{ACCG_REGS} (@code{accg0} to @code{accg7}).
2403
2404@item C
2405Register in the class @code{CR_REGS} (@code{cc0} to @code{cc7}).
2406
2407@item G
2408Floating point constant zero
b25364a0
S
2409
2410@item I
b4fbcb1b 24116-bit signed integer constant
b25364a0
S
2412
2413@item J
b4fbcb1b 241410-bit signed integer constant
b25364a0
S
2415
2416@item L
b4fbcb1b 241716-bit signed integer constant
b25364a0
S
2418
2419@item M
b4fbcb1b 242016-bit unsigned integer constant
b25364a0
S
2421
2422@item N
b4fbcb1b
SL
242312-bit signed integer constant that is negative---i.e.@: in the
2424range of @minus{}2048 to @minus{}1
2425
2426@item O
2427Constant zero
2428
2429@item P
243012-bit signed integer constant that is greater than zero---i.e.@: in the
2431range of 1 to 2047.
b25364a0 2432
b25364a0
S
2433@end table
2434
fef939d6
JB
2435@item FT32---@file{config/ft32/constraints.md}
2436@table @code
2437@item A
2438An absolute address
2439
2440@item B
2441An offset address
2442
2443@item W
2444A register indirect memory operand
2445
2446@item e
2447An offset address.
2448
2449@item f
2450An offset address.
2451
2452@item O
2453The constant zero or one
2454
2455@item I
2456A 16-bit signed constant (@minus{}32768 @dots{} 32767)
2457
2458@item w
2459A bitfield mask suitable for bext or bins
2460
2461@item x
2462An inverted bitfield mask suitable for bext or bins
2463
2464@item L
2465A 16-bit unsigned constant, multiple of 4 (0 @dots{} 65532)
2466
2467@item S
2468A 20-bit signed constant (@minus{}524288 @dots{} 524287)
2469
2470@item b
2471A constant for a bitfield width (1 @dots{} 16)
2472
2473@item KA
2474A 10-bit signed constant (@minus{}512 @dots{} 511)
2475
2476@end table
2477
8119b4e4
JDA
2478@item Hewlett-Packard PA-RISC---@file{config/pa/pa.h}
2479@table @code
2480@item a
2481General register 1
2482
2483@item f
2484Floating point register
2485
2486@item q
2487Shift amount register
2488
2489@item x
2490Floating point register (deprecated)
2491
2492@item y
2493Upper floating point register (32-bit), floating point register (64-bit)
2494
2495@item Z
2496Any register
2497
2498@item I
2499Signed 11-bit integer constant
2500
2501@item J
2502Signed 14-bit integer constant
2503
2504@item K
2505Integer constant that can be deposited with a @code{zdepi} instruction
2506
2507@item L
2508Signed 5-bit integer constant
2509
2510@item M
2511Integer constant 0
2512
2513@item N
2514Integer constant that can be loaded with a @code{ldil} instruction
2515
2516@item O
2517Integer constant whose value plus one is a power of 2
2518
2519@item P
2520Integer constant that can be used for @code{and} operations in @code{depi}
2521and @code{extru} instructions
2522
2523@item S
2524Integer constant 31
2525
2526@item U
2527Integer constant 63
2528
2529@item G
2530Floating-point constant 0.0
2531
2532@item A
2533A @code{lo_sum} data-linkage-table memory operand
2534
2535@item Q
2536A memory operand that can be used as the destination operand of an
2537integer store instruction
2538
2539@item R
2540A scaled or unscaled indexed memory operand
2541
2542@item T
2543A memory operand for floating-point loads and stores
2544
2545@item W
2546A register indirect memory operand
2547@end table
2548
b4fbcb1b 2549@item Intel IA-64---@file{config/ia64/ia64.h}
03dda8e3 2550@table @code
b4fbcb1b
SL
2551@item a
2552General register @code{r0} to @code{r3} for @code{addl} instruction
03dda8e3 2553
b4fbcb1b
SL
2554@item b
2555Branch register
7a430e3b
SC
2556
2557@item c
2558Predicate register (@samp{c} as in ``conditional'')
2559
b4fbcb1b
SL
2560@item d
2561Application register residing in M-unit
0d4a78eb 2562
b4fbcb1b
SL
2563@item e
2564Application register residing in I-unit
0d4a78eb 2565
b4fbcb1b
SL
2566@item f
2567Floating-point register
3efd5670 2568
b4fbcb1b
SL
2569@item m
2570Memory operand. If used together with @samp{<} or @samp{>},
2571the operand can have postincrement and postdecrement which
2572require printing with @samp{%Pn} on IA-64.
3efd5670 2573
b4fbcb1b
SL
2574@item G
2575Floating-point constant 0.0 or 1.0
0d4a78eb 2576
b4fbcb1b
SL
2577@item I
257814-bit signed integer constant
0d4a78eb
BS
2579
2580@item J
b4fbcb1b
SL
258122-bit signed integer constant
2582
2583@item K
25848-bit signed integer constant for logical instructions
0d4a78eb
BS
2585
2586@item L
b4fbcb1b 25878-bit adjusted signed integer constant for compare pseudo-ops
0d4a78eb 2588
b4fbcb1b
SL
2589@item M
25906-bit unsigned integer constant for shift counts
2591
2592@item N
25939-bit signed integer constant for load and store postincrements
2594
2595@item O
2596The constant zero
2597
2598@item P
25990 or @minus{}1 for @code{dep} instruction
0d4a78eb
BS
2600
2601@item Q
b4fbcb1b
SL
2602Non-volatile memory for floating-point loads and stores
2603
2604@item R
2605Integer constant in the range 1 to 4 for @code{shladd} instruction
2606
2607@item S
2608Memory operand except postincrement and postdecrement. This is
2609now roughly the same as @samp{m} when not used together with @samp{<}
2610or @samp{>}.
0d4a78eb
BS
2611@end table
2612
74fe790b
ZW
2613@item M32C---@file{config/m32c/m32c.c}
2614@table @code
38b2d076
DD
2615@item Rsp
2616@itemx Rfb
2617@itemx Rsb
2618@samp{$sp}, @samp{$fb}, @samp{$sb}.
2619
2620@item Rcr
2621Any control register, when they're 16 bits wide (nothing if control
2622registers are 24 bits wide)
2623
2624@item Rcl
2625Any control register, when they're 24 bits wide.
2626
2627@item R0w
2628@itemx R1w
2629@itemx R2w
2630@itemx R3w
2631$r0, $r1, $r2, $r3.
2632
2633@item R02
2634$r0 or $r2, or $r2r0 for 32 bit values.
2635
2636@item R13
2637$r1 or $r3, or $r3r1 for 32 bit values.
2638
2639@item Rdi
2640A register that can hold a 64 bit value.
2641
2642@item Rhl
2643$r0 or $r1 (registers with addressable high/low bytes)
2644
2645@item R23
2646$r2 or $r3
2647
2648@item Raa
2649Address registers
2650
2651@item Raw
2652Address registers when they're 16 bits wide.
2653
2654@item Ral
2655Address registers when they're 24 bits wide.
2656
2657@item Rqi
2658Registers that can hold QI values.
2659
2660@item Rad
2661Registers that can be used with displacements ($a0, $a1, $sb).
2662
2663@item Rsi
2664Registers that can hold 32 bit values.
2665
2666@item Rhi
2667Registers that can hold 16 bit values.
2668
2669@item Rhc
2670Registers chat can hold 16 bit values, including all control
2671registers.
2672
2673@item Rra
2674$r0 through R1, plus $a0 and $a1.
2675
2676@item Rfl
2677The flags register.
2678
2679@item Rmm
2680The memory-based pseudo-registers $mem0 through $mem15.
2681
2682@item Rpi
2683Registers that can hold pointers (16 bit registers for r8c, m16c; 24
2684bit registers for m32cm, m32c).
2685
2686@item Rpa
2687Matches multiple registers in a PARALLEL to form a larger register.
2688Used to match function return values.
2689
2690@item Is3
8ad1dde7 2691@minus{}8 @dots{} 7
38b2d076
DD
2692
2693@item IS1
8ad1dde7 2694@minus{}128 @dots{} 127
38b2d076
DD
2695
2696@item IS2
8ad1dde7 2697@minus{}32768 @dots{} 32767
38b2d076
DD
2698
2699@item IU2
27000 @dots{} 65535
2701
2702@item In4
8ad1dde7 2703@minus{}8 @dots{} @minus{}1 or 1 @dots{} 8
38b2d076
DD
2704
2705@item In5
8ad1dde7 2706@minus{}16 @dots{} @minus{}1 or 1 @dots{} 16
38b2d076 2707
23fed240 2708@item In6
8ad1dde7 2709@minus{}32 @dots{} @minus{}1 or 1 @dots{} 32
38b2d076
DD
2710
2711@item IM2
8ad1dde7 2712@minus{}65536 @dots{} @minus{}1
38b2d076
DD
2713
2714@item Ilb
2715An 8 bit value with exactly one bit set.
2716
2717@item Ilw
2718A 16 bit value with exactly one bit set.
2719
2720@item Sd
2721The common src/dest memory addressing modes.
2722
2723@item Sa
2724Memory addressed using $a0 or $a1.
2725
2726@item Si
2727Memory addressed with immediate addresses.
2728
2729@item Ss
2730Memory addressed using the stack pointer ($sp).
2731
2732@item Sf
2733Memory addressed using the frame base register ($fb).
2734
2735@item Ss
2736Memory addressed using the small base register ($sb).
2737
2738@item S1
2739$r1h
e2491744
DD
2740@end table
2741
80920132
ME
2742@item MicroBlaze---@file{config/microblaze/constraints.md}
2743@table @code
2744@item d
2745A general register (@code{r0} to @code{r31}).
2746
2747@item z
2748A status register (@code{rmsr}, @code{$fcc1} to @code{$fcc7}).
e2491744 2749
74fe790b 2750@end table
38b2d076 2751
cbbb5b6d 2752@item MIPS---@file{config/mips/constraints.md}
4226378a
PK
2753@table @code
2754@item d
0cb14750
MR
2755A general-purpose register. This is equivalent to @code{r} unless
2756generating MIPS16 code, in which case the MIPS16 register set is used.
4226378a
PK
2757
2758@item f
cbbb5b6d 2759A floating-point register (if available).
4226378a
PK
2760
2761@item h
21dfc6dc 2762Formerly the @code{hi} register. This constraint is no longer supported.
4226378a
PK
2763
2764@item l
21dfc6dc
RS
2765The @code{lo} register. Use this register to store values that are
2766no bigger than a word.
4226378a
PK
2767
2768@item x
21dfc6dc
RS
2769The concatenated @code{hi} and @code{lo} registers. Use this register
2770to store doubleword values.
cbbb5b6d
RS
2771
2772@item c
2773A register suitable for use in an indirect jump. This will always be
2774@code{$25} for @option{-mabicalls}.
4226378a 2775
2feaae20
RS
2776@item v
2777Register @code{$3}. Do not use this constraint in new code;
2778it is retained only for compatibility with glibc.
2779
4226378a 2780@item y
cbbb5b6d 2781Equivalent to @code{r}; retained for backwards compatibility.
4226378a
PK
2782
2783@item z
cbbb5b6d 2784A floating-point condition code register.
4226378a
PK
2785
2786@item I
cbbb5b6d 2787A signed 16-bit constant (for arithmetic instructions).
4226378a
PK
2788
2789@item J
cbbb5b6d 2790Integer zero.
4226378a
PK
2791
2792@item K
cbbb5b6d 2793An unsigned 16-bit constant (for logic instructions).
4226378a
PK
2794
2795@item L
cbbb5b6d
RS
2796A signed 32-bit constant in which the lower 16 bits are zero.
2797Such constants can be loaded using @code{lui}.
4226378a
PK
2798
2799@item M
cbbb5b6d
RS
2800A constant that cannot be loaded using @code{lui}, @code{addiu}
2801or @code{ori}.
4226378a
PK
2802
2803@item N
8ad1dde7 2804A constant in the range @minus{}65535 to @minus{}1 (inclusive).
4226378a
PK
2805
2806@item O
cbbb5b6d 2807A signed 15-bit constant.
4226378a
PK
2808
2809@item P
cbbb5b6d 2810A constant in the range 1 to 65535 (inclusive).
4226378a
PK
2811
2812@item G
cbbb5b6d 2813Floating-point zero.
4226378a
PK
2814
2815@item R
cbbb5b6d 2816An address that can be used in a non-macro load or store.
22c4c869
CM
2817
2818@item ZC
047b52f6
MF
2819A memory operand whose address is formed by a base register and offset
2820that is suitable for use in instructions with the same addressing mode
2821as @code{ll} and @code{sc}.
22c4c869
CM
2822
2823@item ZD
82f84ecb
MF
2824An address suitable for a @code{prefetch} instruction, or for any other
2825instruction with the same addressing mode as @code{prefetch}.
4226378a
PK
2826@end table
2827
c47b0cb4 2828@item Motorola 680x0---@file{config/m68k/constraints.md}
03dda8e3
RK
2829@table @code
2830@item a
2831Address register
2832
2833@item d
2834Data register
2835
2836@item f
283768881 floating-point register, if available
2838
03dda8e3
RK
2839@item I
2840Integer in the range 1 to 8
2841
2842@item J
1e5f973d 284316-bit signed number
03dda8e3
RK
2844
2845@item K
2846Signed number whose magnitude is greater than 0x80
2847
2848@item L
630d3d5a 2849Integer in the range @minus{}8 to @minus{}1
03dda8e3
RK
2850
2851@item M
2852Signed number whose magnitude is greater than 0x100
2853
c47b0cb4
MK
2854@item N
2855Range 24 to 31, rotatert:SI 8 to 1 expressed as rotate
2856
2857@item O
285816 (for rotate using swap)
2859
2860@item P
2861Range 8 to 15, rotatert:HI 8 to 1 expressed as rotate
2862
2863@item R
2864Numbers that mov3q can handle
2865
03dda8e3
RK
2866@item G
2867Floating point constant that is not a 68881 constant
c47b0cb4
MK
2868
2869@item S
2870Operands that satisfy 'm' when -mpcrel is in effect
2871
2872@item T
2873Operands that satisfy 's' when -mpcrel is not in effect
2874
2875@item Q
2876Address register indirect addressing mode
2877
2878@item U
2879Register offset addressing
2880
2881@item W
2882const_call_operand
2883
2884@item Cs
2885symbol_ref or const
2886
2887@item Ci
2888const_int
2889
2890@item C0
2891const_int 0
2892
2893@item Cj
2894Range of signed numbers that don't fit in 16 bits
2895
2896@item Cmvq
2897Integers valid for mvq
2898
2899@item Capsw
2900Integers valid for a moveq followed by a swap
2901
2902@item Cmvz
2903Integers valid for mvz
2904
2905@item Cmvs
2906Integers valid for mvs
2907
2908@item Ap
2909push_operand
2910
2911@item Ac
2912Non-register operands allowed in clr
2913
03dda8e3
RK
2914@end table
2915
cceb575c
AG
2916@item Moxie---@file{config/moxie/constraints.md}
2917@table @code
2918@item A
2919An absolute address
2920
2921@item B
2922An offset address
2923
2924@item W
2925A register indirect memory operand
2926
2927@item I
2928A constant in the range of 0 to 255.
2929
2930@item N
8ad1dde7 2931A constant in the range of 0 to @minus{}255.
cceb575c
AG
2932
2933@end table
2934
f6a83b4a
DD
2935@item MSP430--@file{config/msp430/constraints.md}
2936@table @code
2937
2938@item R12
2939Register R12.
2940
2941@item R13
2942Register R13.
2943
2944@item K
2945Integer constant 1.
2946
2947@item L
2948Integer constant -1^20..1^19.
2949
2950@item M
2951Integer constant 1-4.
2952
2953@item Ya
2954Memory references which do not require an extended MOVX instruction.
2955
2956@item Yl
2957Memory reference, labels only.
2958
2959@item Ys
2960Memory reference, stack only.
2961
2962@end table
2963
9304f876
CJW
2964@item NDS32---@file{config/nds32/constraints.md}
2965@table @code
2966@item w
2967LOW register class $r0 to $r7 constraint for V3/V3M ISA.
2968@item l
2969LOW register class $r0 to $r7.
2970@item d
2971MIDDLE register class $r0 to $r11, $r16 to $r19.
2972@item h
2973HIGH register class $r12 to $r14, $r20 to $r31.
2974@item t
2975Temporary assist register $ta (i.e.@: $r15).
2976@item k
2977Stack register $sp.
2978@item Iu03
2979Unsigned immediate 3-bit value.
2980@item In03
2981Negative immediate 3-bit value in the range of @minus{}7--0.
2982@item Iu04
2983Unsigned immediate 4-bit value.
2984@item Is05
2985Signed immediate 5-bit value.
2986@item Iu05
2987Unsigned immediate 5-bit value.
2988@item In05
2989Negative immediate 5-bit value in the range of @minus{}31--0.
2990@item Ip05
2991Unsigned immediate 5-bit value for movpi45 instruction with range 16--47.
2992@item Iu06
2993Unsigned immediate 6-bit value constraint for addri36.sp instruction.
2994@item Iu08
2995Unsigned immediate 8-bit value.
2996@item Iu09
2997Unsigned immediate 9-bit value.
2998@item Is10
2999Signed immediate 10-bit value.
3000@item Is11
3001Signed immediate 11-bit value.
3002@item Is15
3003Signed immediate 15-bit value.
3004@item Iu15
3005Unsigned immediate 15-bit value.
3006@item Ic15
3007A constant which is not in the range of imm15u but ok for bclr instruction.
3008@item Ie15
3009A constant which is not in the range of imm15u but ok for bset instruction.
3010@item It15
3011A constant which is not in the range of imm15u but ok for btgl instruction.
3012@item Ii15
3013A constant whose compliment value is in the range of imm15u
3014and ok for bitci instruction.
3015@item Is16
3016Signed immediate 16-bit value.
3017@item Is17
3018Signed immediate 17-bit value.
3019@item Is19
3020Signed immediate 19-bit value.
3021@item Is20
3022Signed immediate 20-bit value.
3023@item Ihig
3024The immediate value that can be simply set high 20-bit.
3025@item Izeb
3026The immediate value 0xff.
3027@item Izeh
3028The immediate value 0xffff.
3029@item Ixls
3030The immediate value 0x01.
3031@item Ix11
3032The immediate value 0x7ff.
3033@item Ibms
3034The immediate value with power of 2.
3035@item Ifex
3036The immediate value with power of 2 minus 1.
3037@item U33
3038Memory constraint for 333 format.
3039@item U45
3040Memory constraint for 45 format.
3041@item U37
3042Memory constraint for 37 format.
3043@end table
3044
e430824f
CLT
3045@item Nios II family---@file{config/nios2/constraints.md}
3046@table @code
3047
3048@item I
3049Integer that is valid as an immediate operand in an
3050instruction taking a signed 16-bit number. Range
3051@minus{}32768 to 32767.
3052
3053@item J
3054Integer that is valid as an immediate operand in an
3055instruction taking an unsigned 16-bit number. Range
30560 to 65535.
3057
3058@item K
3059Integer that is valid as an immediate operand in an
3060instruction taking only the upper 16-bits of a
306132-bit number. Range 32-bit numbers with the lower
306216-bits being 0.
3063
3064@item L
3065Integer that is valid as an immediate operand for a
3066shift instruction. Range 0 to 31.
3067
3068@item M
3069Integer that is valid as an immediate operand for
3070only the value 0. Can be used in conjunction with
3071the format modifier @code{z} to use @code{r0}
3072instead of @code{0} in the assembly output.
3073
3074@item N
3075Integer that is valid as an immediate operand for
3076a custom instruction opcode. Range 0 to 255.
3077
3bbbe009
SL
3078@item P
3079An immediate operand for R2 andchi/andci instructions.
3080
e430824f
CLT
3081@item S
3082Matches immediates which are addresses in the small
3083data section and therefore can be added to @code{gp}
3084as a 16-bit immediate to re-create their 32-bit value.
3085
524d2e49
SL
3086@item U
3087Matches constants suitable as an operand for the rdprs and
3088cache instructions.
3089
3090@item v
3091A memory operand suitable for Nios II R2 load/store
3092exclusive instructions.
3093
42e6ab74
SL
3094@item w
3095A memory operand suitable for load/store IO and cache
3096instructions.
3097
e430824f
CLT
3098@ifset INTERNALS
3099@item T
3100A @code{const} wrapped @code{UNSPEC} expression,
3101representing a supported PIC or TLS relocation.
3102@end ifset
3103
3104@end table
3105
3965b35f
SH
3106@item OpenRISC---@file{config/or1k/constraints.md}
3107@table @code
3108@item I
3109Integer that is valid as an immediate operand in an
3110instruction taking a signed 16-bit number. Range
3111@minus{}32768 to 32767.
3112
3113@item K
3114Integer that is valid as an immediate operand in an
3115instruction taking an unsigned 16-bit number. Range
31160 to 65535.
3117
3118@item M
3119Signed 16-bit constant shifted left 16 bits. (Used with @code{l.movhi})
3120
3121@item O
3122Zero
3123
3124@ifset INTERNALS
3125@item c
3126Register usable for sibcalls.
3127@end ifset
3128
3129@end table
3130
5e426dd4
PK
3131@item PDP-11---@file{config/pdp11/constraints.md}
3132@table @code
3133@item a
3134Floating point registers AC0 through AC3. These can be loaded from/to
3135memory with a single instruction.
3136
3137@item d
868e54d1
PK
3138Odd numbered general registers (R1, R3, R5). These are used for
313916-bit multiply operations.
5e426dd4 3140
b4324a14
PK
3141@item D
3142A memory reference that is encoded within the opcode, but not
3143auto-increment or auto-decrement.
3144
5e426dd4
PK
3145@item f
3146Any of the floating point registers (AC0 through AC5).
3147
3148@item G
3149Floating point constant 0.
3150
b4324a14
PK
3151@item h
3152Floating point registers AC4 and AC5. These cannot be loaded from/to
3153memory with a single instruction.
3154
5e426dd4
PK
3155@item I
3156An integer constant that fits in 16 bits.
3157
b4fbcb1b
SL
3158@item J
3159An integer constant whose low order 16 bits are zero.
3160
3161@item K
3162An integer constant that does not meet the constraints for codes
3163@samp{I} or @samp{J}.
3164
3165@item L
3166The integer constant 1.
3167
3168@item M
3169The integer constant @minus{}1.
3170
3171@item N
3172The integer constant 0.
3173
3174@item O
b4324a14 3175Integer constants 0 through 3; shifts by these
b4fbcb1b
SL
3176amounts are handled as multiple single-bit shifts rather than a single
3177variable-length shift.
3178
3179@item Q
3180A memory reference which requires an additional word (address or
3181offset) after the opcode.
3182
3183@item R
3184A memory reference that is encoded within the opcode.
3185
3186@end table
3187
3188@item PowerPC and IBM RS6000---@file{config/rs6000/constraints.md}
3189@table @code
3190@item b
3191Address base register
3192
3193@item d
3194Floating point register (containing 64-bit value)
3195
3196@item f
3197Floating point register (containing 32-bit value)
3198
3199@item v
3200Altivec vector register
3201
3202@item wa
dc703d70 3203Any VSX register if the @option{-mvsx} option was used or NO_REGS.
b4fbcb1b 3204
cb152d12
SB
3205When using the register constraint @code{wa}
3206that takes VSX registers, you must use @code{%x<n>} in the template so
c477a667
MM
3207that the correct register is used. Otherwise the register number
3208output in the assembly file will be incorrect if an Altivec register
3209is an operand of a VSX instruction that expects VSX register
3210numbering.
6a116f14
MM
3211
3212@smallexample
dc703d70
SL
3213asm ("xvadddp %x0,%x1,%x2"
3214 : "=wa" (v1)
3215 : "wa" (v2), "wa" (v3));
6a116f14
MM
3216@end smallexample
3217
dc703d70 3218@noindent
6a116f14
MM
3219is correct, but:
3220
3221@smallexample
dc703d70
SL
3222asm ("xvadddp %0,%1,%2"
3223 : "=wa" (v1)
3224 : "wa" (v2), "wa" (v3));
6a116f14
MM
3225@end smallexample
3226
dc703d70 3227@noindent
6a116f14
MM
3228is not correct.
3229
dd551aa1
MM
3230If an instruction only takes Altivec registers, you do not want to use
3231@code{%x<n>}.
3232
3233@smallexample
dc703d70
SL
3234asm ("xsaddqp %0,%1,%2"
3235 : "=v" (v1)
3236 : "v" (v2), "v" (v3));
dd551aa1
MM
3237@end smallexample
3238
dc703d70 3239@noindent
dd551aa1
MM
3240is correct because the @code{xsaddqp} instruction only takes Altivec
3241registers, while:
3242
3243@smallexample
dc703d70
SL
3244asm ("xsaddqp %x0,%x1,%x2"
3245 : "=v" (v1)
3246 : "v" (v2), "v" (v3));
dd551aa1
MM
3247@end smallexample
3248
dc703d70 3249@noindent
dd551aa1
MM
3250is incorrect.
3251
dd551aa1 3252@item we
1610d410 3253VSX register if the @option{-mcpu=power9} and @option{-m64} options
d5906efc 3254were used or NO_REGS.
dd551aa1 3255
b4fbcb1b
SL
3256@item wn
3257No register (NO_REGS).
3258
3259@item wr
3260General purpose register if 64-bit instructions are enabled or NO_REGS.
3261
b4fbcb1b
SL
3262@item wx
3263Floating point register if the STFIWX instruction is enabled or NO_REGS.
3264
99211352
AS
3265@item wA
3266Address base register if 64-bit instructions are enabled or NO_REGS.
3267
1a3c3ee9
MM
3268@item wB
3269Signed 5-bit constant integer that can be loaded into an altivec register.
3270
b4fbcb1b
SL
3271@item wD
3272Int constant that is the element number of the 64-bit scalar in a vector.
3273
50c78b9a
MM
3274@item wE
3275Vector constant that can be loaded with the XXSPLTIB instruction.
3276
dd551aa1 3277@item wF
2fbd3c37 3278Memory operand suitable for power8 GPR load fusion
dd551aa1
MM
3279
3280@item wG
3281Memory operand suitable for TOC fusion memory references.
3282
3283@item wL
50c78b9a 3284Int constant that is the element number that the MFVSRLD instruction.
dd551aa1
MM
3285targets.
3286
50c78b9a
MM
3287@item wM
3288Match vector constant with all 1's if the XXLORC instruction is available.
3289
3fd2b007
MM
3290@item wO
3291A memory operand suitable for the ISA 3.0 vector d-form instructions.
3292
b4fbcb1b
SL
3293@item wQ
3294A memory address that will work with the @code{lq} and @code{stq}
3295instructions.
3296
50c78b9a
MM
3297@item wS
3298Vector constant that can be loaded with XXSPLTIB & sign extension.
3299
b4fbcb1b 3300@item h
ab950374 3301@samp{VRSAVE}, @samp{CTR}, or @samp{LINK} register
b4fbcb1b 3302
b4fbcb1b
SL
3303@item c
3304@samp{CTR} register
3305
3306@item l
3307@samp{LINK} register
3308
3309@item x
3310@samp{CR} register (condition register) number 0
3311
3312@item y
3313@samp{CR} register (condition register)
3314
3315@item z
3316@samp{XER[CA]} carry bit (part of the XER register)
3317
3318@item I
3319Signed 16-bit constant
3320
3321@item J
3322Unsigned 16-bit constant shifted left 16 bits (use @samp{L} instead for
3323@code{SImode} constants)
3324
3325@item K
3326Unsigned 16-bit constant
3327
3328@item L
3329Signed 16-bit constant shifted left 16 bits
3330
3331@item M
3332Constant larger than 31
3333
3334@item N
3335Exact power of 2
3336
3337@item O
3338Zero
3339
3340@item P
3341Constant whose negation is a signed 16-bit constant
3342
ed383d79
BS
3343@item eI
3344Signed 34-bit integer constant if prefixed instructions are supported.
3345
b4fbcb1b
SL
3346@item G
3347Floating point constant that can be loaded into a register with one
3348instruction per word
3349
3350@item H
3351Integer/Floating point constant that can be loaded into a register using
3352three instructions
3353
3354@item m
3355Memory operand.
3356Normally, @code{m} does not allow addresses that update the base register.
3357If @samp{<} or @samp{>} constraint is also used, they are allowed and
3358therefore on PowerPC targets in that case it is only safe
3359to use @samp{m<>} in an @code{asm} statement if that @code{asm} statement
3360accesses the operand exactly once. The @code{asm} statement must also
3361use @samp{%U@var{<opno>}} as a placeholder for the ``update'' flag in the
3362corresponding load or store instruction. For example:
3363
3364@smallexample
3365asm ("st%U0 %1,%0" : "=m<>" (mem) : "r" (val));
3366@end smallexample
3367
3368is correct but:
3369
3370@smallexample
3371asm ("st %1,%0" : "=m<>" (mem) : "r" (val));
3372@end smallexample
3373
3374is not.
3375
3376@item es
3377A ``stable'' memory operand; that is, one which does not include any
3378automodification of the base register. This used to be useful when
3379@samp{m} allowed automodification of the base register, but as those are now only
3380allowed when @samp{<} or @samp{>} is used, @samp{es} is basically the same
3381as @samp{m} without @samp{<} and @samp{>}.
3382
3383@item Q
3384Memory operand that is an offset from a register (it is usually better
3385to use @samp{m} or @samp{es} in @code{asm} statements)
3386
3387@item Z
3388Memory operand that is an indexed or indirect from a register (it is
3389usually better to use @samp{m} or @samp{es} in @code{asm} statements)
3390
3391@item R
3392AIX TOC entry
5e426dd4 3393
b4fbcb1b
SL
3394@item a
3395Address operand that is an indexed or indirect from a register (@samp{p} is
3396preferable for @code{asm} statements)
5e426dd4 3397
b4fbcb1b
SL
3398@item U
3399System V Release 4 small data area reference
5e426dd4 3400
b4fbcb1b
SL
3401@item W
3402Vector constant that does not require memory
5e426dd4 3403
b4fbcb1b
SL
3404@item j
3405Vector constant that is all zeros.
5e426dd4
PK
3406
3407@end table
3408
8d2af3a2
DD
3409@item PRU---@file{config/pru/constraints.md}
3410@table @code
3411@item I
3412An unsigned 8-bit integer constant.
3413
3414@item J
3415An unsigned 16-bit integer constant.
3416
3417@item L
3418An unsigned 5-bit integer constant (for shift counts).
3419
3420@item T
3421A text segment (program memory) constant label.
3422
3423@item Z
3424Integer constant zero.
3425
3426@end table
3427
85b8555e
DD
3428@item RL78---@file{config/rl78/constraints.md}
3429@table @code
3430
3431@item Int3
3432An integer constant in the range 1 @dots{} 7.
3433@item Int8
3434An integer constant in the range 0 @dots{} 255.
3435@item J
3436An integer constant in the range @minus{}255 @dots{} 0
3437@item K
3438The integer constant 1.
3439@item L
3440The integer constant -1.
3441@item M
3442The integer constant 0.
3443@item N
3444The integer constant 2.
3445@item O
3446The integer constant -2.
3447@item P
3448An integer constant in the range 1 @dots{} 15.
3449@item Qbi
3450The built-in compare types--eq, ne, gtu, ltu, geu, and leu.
3451@item Qsc
3452The synthetic compare types--gt, lt, ge, and le.
3453@item Wab
3454A memory reference with an absolute address.
3455@item Wbc
3456A memory reference using @code{BC} as a base register, with an optional offset.
3457@item Wca
3458A memory reference using @code{AX}, @code{BC}, @code{DE}, or @code{HL} for the address, for calls.
3459@item Wcv
3460A memory reference using any 16-bit register pair for the address, for calls.
3461@item Wd2
3462A memory reference using @code{DE} as a base register, with an optional offset.
3463@item Wde
3464A memory reference using @code{DE} as a base register, without any offset.
3465@item Wfr
3466Any memory reference to an address in the far address space.
3467@item Wh1
3468A memory reference using @code{HL} as a base register, with an optional one-byte offset.
3469@item Whb
3470A memory reference using @code{HL} as a base register, with @code{B} or @code{C} as the index register.
3471@item Whl
3472A memory reference using @code{HL} as a base register, without any offset.
3473@item Ws1
3474A memory reference using @code{SP} as a base register, with an optional one-byte offset.
3475@item Y
3476Any memory reference to an address in the near address space.
3477@item A
3478The @code{AX} register.
3479@item B
3480The @code{BC} register.
3481@item D
3482The @code{DE} register.
3483@item R
3484@code{A} through @code{L} registers.
3485@item S
3486The @code{SP} register.
3487@item T
3488The @code{HL} register.
3489@item Z08W
3490The 16-bit @code{R8} register.
3491@item Z10W
3492The 16-bit @code{R10} register.
3493@item Zint
3494The registers reserved for interrupts (@code{R24} to @code{R31}).
3495@item a
3496The @code{A} register.
3497@item b
3498The @code{B} register.
3499@item c
3500The @code{C} register.
3501@item d
3502The @code{D} register.
3503@item e
3504The @code{E} register.
3505@item h
3506The @code{H} register.
3507@item l
3508The @code{L} register.
3509@item v
3510The virtual registers.
3511@item w
3512The @code{PSW} register.
3513@item x
3514The @code{X} register.
3515
3516@end table
09cae750
PD
3517
3518@item RISC-V---@file{config/riscv/constraints.md}
3519@table @code
3520
3521@item f
3522A floating-point register (if availiable).
3523
3524@item I
3525An I-type 12-bit signed immediate.
3526
3527@item J
3528Integer zero.
3529
3530@item K
3531A 5-bit unsigned immediate for CSR access instructions.
3532
3533@item A
3534An address that is held in a general-purpose register.
3535
3536@end table
85b8555e 3537
65a324b4
NC
3538@item RX---@file{config/rx/constraints.md}
3539@table @code
3540@item Q
3541An address which does not involve register indirect addressing or
3542pre/post increment/decrement addressing.
3543
3544@item Symbol
3545A symbol reference.
3546
3547@item Int08
3548A constant in the range @minus{}256 to 255, inclusive.
3549
3550@item Sint08
3551A constant in the range @minus{}128 to 127, inclusive.
3552
3553@item Sint16
3554A constant in the range @minus{}32768 to 32767, inclusive.
3555
3556@item Sint24
3557A constant in the range @minus{}8388608 to 8388607, inclusive.
3558
3559@item Uint04
3560A constant in the range 0 to 15, inclusive.
3561
3562@end table
3563
b4fbcb1b
SL
3564@item S/390 and zSeries---@file{config/s390/s390.h}
3565@table @code
3566@item a
3567Address register (general purpose register except r0)
3568
3569@item c
3570Condition code register
3571
3572@item d
3573Data register (arbitrary general purpose register)
3574
3575@item f
3576Floating-point register
3577
3578@item I
3579Unsigned 8-bit constant (0--255)
3580
3581@item J
3582Unsigned 12-bit constant (0--4095)
3583
3584@item K
3585Signed 16-bit constant (@minus{}32768--32767)
3586
3587@item L
3588Value appropriate as displacement.
3589@table @code
3590@item (0..4095)
3591for short displacement
3592@item (@minus{}524288..524287)
3593for long displacement
3594@end table
3595
3596@item M
3597Constant integer with a value of 0x7fffffff.
3598
3599@item N
3600Multiple letter constraint followed by 4 parameter letters.
3601@table @code
3602@item 0..9:
3603number of the part counting from most to least significant
3604@item H,Q:
3605mode of the part
3606@item D,S,H:
3607mode of the containing operand
3608@item 0,F:
3609value of the other parts (F---all bits set)
3610@end table
3611The constraint matches if the specified part of a constant
3612has a value different from its other parts.
3613
3614@item Q
3615Memory reference without index register and with short displacement.
3616
3617@item R
3618Memory reference with index register and short displacement.
3619
3620@item S
3621Memory reference without index register but with long displacement.
3622
3623@item T
3624Memory reference with index register and long displacement.
3625
3626@item U
3627Pointer with short displacement.
3628
3629@item W
3630Pointer with long displacement.
3631
3632@item Y
3633Shift count operand.
3634
3635@end table
3636
03dda8e3 3637@need 1000
74fe790b 3638@item SPARC---@file{config/sparc/sparc.h}
03dda8e3
RK
3639@table @code
3640@item f
53e5f173
EB
3641Floating-point register on the SPARC-V8 architecture and
3642lower floating-point register on the SPARC-V9 architecture.
03dda8e3
RK
3643
3644@item e
8a36672b 3645Floating-point register. It is equivalent to @samp{f} on the
53e5f173
EB
3646SPARC-V8 architecture and contains both lower and upper
3647floating-point registers on the SPARC-V9 architecture.
03dda8e3 3648
8a69f99f
EB
3649@item c
3650Floating-point condition code register.
3651
3652@item d
8a36672b 3653Lower floating-point register. It is only valid on the SPARC-V9
53e5f173 3654architecture when the Visual Instruction Set is available.
8a69f99f
EB
3655
3656@item b
8a36672b 3657Floating-point register. It is only valid on the SPARC-V9 architecture
53e5f173 3658when the Visual Instruction Set is available.
8a69f99f
EB
3659
3660@item h
366164-bit global or out register for the SPARC-V8+ architecture.
3662
923f9ded
DM
3663@item C
3664The constant all-ones, for floating-point.
3665
8b98b5fd
DM
3666@item A
3667Signed 5-bit constant
3668
66e62b49
KH
3669@item D
3670A vector constant
3671
03dda8e3 3672@item I
1e5f973d 3673Signed 13-bit constant
03dda8e3
RK
3674
3675@item J
3676Zero
3677
3678@item K
1e5f973d 367932-bit constant with the low 12 bits clear (a constant that can be
03dda8e3
RK
3680loaded with the @code{sethi} instruction)
3681
7d6040e8 3682@item L
923f9ded
DM
3683A constant in the range supported by @code{movcc} instructions (11-bit
3684signed immediate)
7d6040e8
AO
3685
3686@item M
923f9ded
DM
3687A constant in the range supported by @code{movrcc} instructions (10-bit
3688signed immediate)
7d6040e8
AO
3689
3690@item N
3691Same as @samp{K}, except that it verifies that bits that are not in the
57694e40 3692lower 32-bit range are all zero. Must be used instead of @samp{K} for
7d6040e8
AO
3693modes wider than @code{SImode}
3694
ef0139b1
EB
3695@item O
3696The constant 4096
3697
03dda8e3
RK
3698@item G
3699Floating-point zero
3700
3701@item H
1e5f973d 3702Signed 13-bit constant, sign-extended to 32 or 64 bits
03dda8e3 3703
923f9ded
DM
3704@item P
3705The constant -1
3706
03dda8e3 3707@item Q
62190128
DM
3708Floating-point constant whose integral representation can
3709be moved into an integer register using a single sethi
3710instruction
3711
3712@item R
3713Floating-point constant whose integral representation can
3714be moved into an integer register using a single mov
3715instruction
03dda8e3
RK
3716
3717@item S
62190128
DM
3718Floating-point constant whose integral representation can
3719be moved into an integer register using a high/lo_sum
3720instruction sequence
03dda8e3
RK
3721
3722@item T
3723Memory address aligned to an 8-byte boundary
3724
aaa050aa
DM
3725@item U
3726Even register
3727
7a31a340 3728@item W
c75d6010
JM
3729Memory address for @samp{e} constraint registers
3730
923f9ded
DM
3731@item w
3732Memory address with only a base register
3733
c75d6010
JM
3734@item Y
3735Vector zero
7a31a340 3736
6ca30df6
MH
3737@end table
3738
bcead286
BS
3739@item TI C6X family---@file{config/c6x/constraints.md}
3740@table @code
3741@item a
3742Register file A (A0--A31).
3743
3744@item b
3745Register file B (B0--B31).
3746
3747@item A
3748Predicate registers in register file A (A0--A2 on C64X and
3749higher, A1 and A2 otherwise).
3750
3751@item B
3752Predicate registers in register file B (B0--B2).
3753
3754@item C
3755A call-used register in register file B (B0--B9, B16--B31).
3756
3757@item Da
3758Register file A, excluding predicate registers (A3--A31,
3759plus A0 if not C64X or higher).
3760
3761@item Db
3762Register file B, excluding predicate registers (B3--B31).
3763
3764@item Iu4
3765Integer constant in the range 0 @dots{} 15.
3766
3767@item Iu5
3768Integer constant in the range 0 @dots{} 31.
3769
3770@item In5
3771Integer constant in the range @minus{}31 @dots{} 0.
3772
3773@item Is5
3774Integer constant in the range @minus{}16 @dots{} 15.
3775
3776@item I5x
3777Integer constant that can be the operand of an ADDA or a SUBA insn.
3778
3779@item IuB
3780Integer constant in the range 0 @dots{} 65535.
3781
3782@item IsB
3783Integer constant in the range @minus{}32768 @dots{} 32767.
3784
3785@item IsC
3786Integer constant in the range @math{-2^{20}} @dots{} @math{2^{20} - 1}.
3787
3788@item Jc
3789Integer constant that is a valid mask for the clr instruction.
3790
3791@item Js
3792Integer constant that is a valid mask for the set instruction.
3793
3794@item Q
3795Memory location with A base register.
3796
3797@item R
3798Memory location with B base register.
3799
3800@ifset INTERNALS
3801@item S0
3802On C64x+ targets, a GP-relative small data reference.
3803
3804@item S1
3805Any kind of @code{SYMBOL_REF}, for use in a call address.
3806
3807@item Si
3808Any kind of immediate operand, unless it matches the S0 constraint.
3809
3810@item T
3811Memory location with B base register, but not using a long offset.
3812
3813@item W
fd250f0d 3814A memory operand with an address that cannot be used in an unaligned access.
bcead286
BS
3815
3816@end ifset
3817@item Z
3818Register B14 (aka DP).
3819
3820@end table
3821
dd552284
WL
3822@item TILE-Gx---@file{config/tilegx/constraints.md}
3823@table @code
3824@item R00
3825@itemx R01
3826@itemx R02
3827@itemx R03
3828@itemx R04
3829@itemx R05
3830@itemx R06
3831@itemx R07
3832@itemx R08
3833@itemx R09
655c5444 3834@itemx R10
dd552284
WL
3835Each of these represents a register constraint for an individual
3836register, from r0 to r10.
3837
3838@item I
3839Signed 8-bit integer constant.
3840
3841@item J
3842Signed 16-bit integer constant.
3843
3844@item K
3845Unsigned 16-bit integer constant.
3846
3847@item L
3848Integer constant that fits in one signed byte when incremented by one
3849(@minus{}129 @dots{} 126).
3850
3851@item m
3852Memory operand. If used together with @samp{<} or @samp{>}, the
3853operand can have postincrement which requires printing with @samp{%In}
3854and @samp{%in} on TILE-Gx. For example:
3855
3856@smallexample
3857asm ("st_add %I0,%1,%i0" : "=m<>" (*mem) : "r" (val));
3858@end smallexample
3859
3860@item M
3861A bit mask suitable for the BFINS instruction.
3862
3863@item N
3864Integer constant that is a byte tiled out eight times.
3865
3866@item O
3867The integer zero constant.
3868
3869@item P
3870Integer constant that is a sign-extended byte tiled out as four shorts.
3871
3872@item Q
3873Integer constant that fits in one signed byte when incremented
3874(@minus{}129 @dots{} 126), but excluding -1.
3875
3876@item S
3877Integer constant that has all 1 bits consecutive and starting at bit 0.
3878
3879@item T
3880A 16-bit fragment of a got, tls, or pc-relative reference.
3881
3882@item U
3883Memory operand except postincrement. This is roughly the same as
3884@samp{m} when not used together with @samp{<} or @samp{>}.
3885
3886@item W
3887An 8-element vector constant with identical elements.
3888
3889@item Y
3890A 4-element vector constant with identical elements.
3891
3892@item Z0
3893The integer constant 0xffffffff.
3894
3895@item Z1
3896The integer constant 0xffffffff00000000.
3897
3898@end table
3899
3900@item TILEPro---@file{config/tilepro/constraints.md}
3901@table @code
3902@item R00
3903@itemx R01
3904@itemx R02
3905@itemx R03
3906@itemx R04
3907@itemx R05
3908@itemx R06
3909@itemx R07
3910@itemx R08
3911@itemx R09
655c5444 3912@itemx R10
dd552284
WL
3913Each of these represents a register constraint for an individual
3914register, from r0 to r10.
3915
3916@item I
3917Signed 8-bit integer constant.
3918
3919@item J
3920Signed 16-bit integer constant.
3921
3922@item K
3923Nonzero integer constant with low 16 bits zero.
3924
3925@item L
3926Integer constant that fits in one signed byte when incremented by one
3927(@minus{}129 @dots{} 126).
3928
3929@item m
3930Memory operand. If used together with @samp{<} or @samp{>}, the
3931operand can have postincrement which requires printing with @samp{%In}
3932and @samp{%in} on TILEPro. For example:
3933
3934@smallexample
3935asm ("swadd %I0,%1,%i0" : "=m<>" (mem) : "r" (val));
3936@end smallexample
3937
3938@item M
3939A bit mask suitable for the MM instruction.
3940
3941@item N
3942Integer constant that is a byte tiled out four times.
3943
3944@item O
3945The integer zero constant.
3946
3947@item P
3948Integer constant that is a sign-extended byte tiled out as two shorts.
3949
3950@item Q
3951Integer constant that fits in one signed byte when incremented
3952(@minus{}129 @dots{} 126), but excluding -1.
3953
3954@item T
3955A symbolic operand, or a 16-bit fragment of a got, tls, or pc-relative
3956reference.
3957
3958@item U
3959Memory operand except postincrement. This is roughly the same as
3960@samp{m} when not used together with @samp{<} or @samp{>}.
3961
3962@item W
3963A 4-element vector constant with identical elements.
3964
3965@item Y
3966A 2-element vector constant with identical elements.
3967
3968@end table
3969
0969ec7d
EB
3970@item Visium---@file{config/visium/constraints.md}
3971@table @code
3972@item b
3973EAM register @code{mdb}
3974
3975@item c
3976EAM register @code{mdc}
3977
3978@item f
3979Floating point register
3980
3981@ifset INTERNALS
3982@item k
3983Register for sibcall optimization
3984@end ifset
3985
3986@item l
3987General register, but not @code{r29}, @code{r30} and @code{r31}
3988
3989@item t
3990Register @code{r1}
3991
3992@item u
3993Register @code{r2}
3994
3995@item v
3996Register @code{r3}
3997
3998@item G
3999Floating-point constant 0.0
4000
4001@item J
4002Integer constant in the range 0 .. 65535 (16-bit immediate)
4003
4004@item K
4005Integer constant in the range 1 .. 31 (5-bit immediate)
4006
4007@item L
4008Integer constant in the range @minus{}65535 .. @minus{}1 (16-bit negative immediate)
4009
4010@item M
4011Integer constant @minus{}1
4012
4013@item O
4014Integer constant 0
4015
4016@item P
4017Integer constant 32
4018@end table
4019
b4fbcb1b
SL
4020@item x86 family---@file{config/i386/constraints.md}
4021@table @code
4022@item R
4023Legacy register---the eight integer registers available on all
4024i386 processors (@code{a}, @code{b}, @code{c}, @code{d},
4025@code{si}, @code{di}, @code{bp}, @code{sp}).
4026
4027@item q
4028Any register accessible as @code{@var{r}l}. In 32-bit mode, @code{a},
4029@code{b}, @code{c}, and @code{d}; in 64-bit mode, any integer register.
4030
4031@item Q
4032Any register accessible as @code{@var{r}h}: @code{a}, @code{b},
4033@code{c}, and @code{d}.
4034
4035@ifset INTERNALS
4036@item l
4037Any register that can be used as the index in a base+index memory
4038access: that is, any general register except the stack pointer.
4039@end ifset
4040
4041@item a
4042The @code{a} register.
4043
4044@item b
4045The @code{b} register.
4046
4047@item c
4048The @code{c} register.
4049
4050@item d
4051The @code{d} register.
4052
4053@item S
4054The @code{si} register.
4055
4056@item D
4057The @code{di} register.
4058
4059@item A
4060The @code{a} and @code{d} registers. This class is used for instructions
4061that return double word results in the @code{ax:dx} register pair. Single
4062word values will be allocated either in @code{ax} or @code{dx}.
4063For example on i386 the following implements @code{rdtsc}:
4064
4065@smallexample
4066unsigned long long rdtsc (void)
4067@{
4068 unsigned long long tick;
4069 __asm__ __volatile__("rdtsc":"=A"(tick));
4070 return tick;
4071@}
4072@end smallexample
4073
4074This is not correct on x86-64 as it would allocate tick in either @code{ax}
4075or @code{dx}. You have to use the following variant instead:
4076
4077@smallexample
4078unsigned long long rdtsc (void)
4079@{
4080 unsigned int tickl, tickh;
4081 __asm__ __volatile__("rdtsc":"=a"(tickl),"=d"(tickh));
4082 return ((unsigned long long)tickh << 32)|tickl;
4083@}
4084@end smallexample
4085
de3fb1a6
SP
4086@item U
4087The call-clobbered integer registers.
b4fbcb1b
SL
4088
4089@item f
4090Any 80387 floating-point (stack) register.
4091
4092@item t
4093Top of 80387 floating-point stack (@code{%st(0)}).
4094
4095@item u
4096Second from top of 80387 floating-point stack (@code{%st(1)}).
4097
de3fb1a6
SP
4098@ifset INTERNALS
4099@item Yk
630ba2fd 4100Any mask register that can be used as a predicate, i.e.@: @code{k1-k7}.
de3fb1a6
SP
4101
4102@item k
4103Any mask register.
4104@end ifset
4105
b4fbcb1b
SL
4106@item y
4107Any MMX register.
4108
4109@item x
4110Any SSE register.
4111
de3fb1a6
SP
4112@item v
4113Any EVEX encodable SSE register (@code{%xmm0-%xmm31}).
4114
4115@ifset INTERNALS
4116@item w
4117Any bound register.
4118@end ifset
4119
b4fbcb1b
SL
4120@item Yz
4121First SSE register (@code{%xmm0}).
4122
4123@ifset INTERNALS
b4fbcb1b
SL
4124@item Yi
4125Any SSE register, when SSE2 and inter-unit moves are enabled.
4126
de3fb1a6
SP
4127@item Yj
4128Any SSE register, when SSE2 and inter-unit moves from vector registers are enabled.
4129
b4fbcb1b
SL
4130@item Ym
4131Any MMX register, when inter-unit moves are enabled.
de3fb1a6
SP
4132
4133@item Yn
4134Any MMX register, when inter-unit moves from vector registers are enabled.
4135
4136@item Yp
4137Any integer register when @code{TARGET_PARTIAL_REG_STALL} is disabled.
4138
4139@item Ya
4140Any integer register when zero extensions with @code{AND} are disabled.
4141
4142@item Yb
4143Any register that can be used as the GOT base when calling@*
4144@code{___tls_get_addr}: that is, any general register except @code{a}
4145and @code{sp} registers, for @option{-fno-plt} if linker supports it.
4146Otherwise, @code{b} register.
4147
4148@item Yf
4149Any x87 register when 80387 floating-point arithmetic is enabled.
4150
4151@item Yr
4152Lower SSE register when avoiding REX prefix and all SSE registers otherwise.
4153
4154@item Yv
4155For AVX512VL, any EVEX-encodable SSE register (@code{%xmm0-%xmm31}),
4156otherwise any SSE register.
4157
4158@item Yh
4159Any EVEX-encodable SSE register, that has number factor of four.
4160
4161@item Bf
4162Flags register operand.
4163
4164@item Bg
4165GOT memory operand.
4166
4167@item Bm
4168Vector memory operand.
4169
4170@item Bc
4171Constant memory operand.
4172
4173@item Bn
4174Memory operand without REX prefix.
4175
4176@item Bs
4177Sibcall memory operand.
4178
4179@item Bw
4180Call memory operand.
4181
4182@item Bz
4183Constant call address operand.
4184
4185@item BC
4186SSE constant -1 operand.
b4fbcb1b
SL
4187@end ifset
4188
4189@item I
4190Integer constant in the range 0 @dots{} 31, for 32-bit shifts.
4191
4192@item J
4193Integer constant in the range 0 @dots{} 63, for 64-bit shifts.
4194
4195@item K
4196Signed 8-bit integer constant.
4197
4198@item L
4199@code{0xFF} or @code{0xFFFF}, for andsi as a zero-extending move.
4200
4201@item M
42020, 1, 2, or 3 (shifts for the @code{lea} instruction).
4203
4204@item N
4205Unsigned 8-bit integer constant (for @code{in} and @code{out}
4206instructions).
4207
4208@ifset INTERNALS
4209@item O
4210Integer constant in the range 0 @dots{} 127, for 128-bit shifts.
4211@end ifset
4212
4213@item G
4214Standard 80387 floating point constant.
4215
4216@item C
aec0b19e 4217SSE constant zero operand.
b4fbcb1b
SL
4218
4219@item e
422032-bit signed integer constant, or a symbolic reference known
4221to fit that range (for immediate operands in sign-extending x86-64
4222instructions).
4223
de3fb1a6
SP
4224@item We
422532-bit signed integer constant, or a symbolic reference known
4226to fit that range (for sign-extending conversion operations that
4227require non-@code{VOIDmode} immediate operands).
4228
4229@item Wz
423032-bit unsigned integer constant, or a symbolic reference known
4231to fit that range (for zero-extending conversion operations that
4232require non-@code{VOIDmode} immediate operands).
4233
4234@item Wd
4235128-bit integer constant where both the high and low 64-bit word
4236satisfy the @code{e} constraint.
4237
b4fbcb1b
SL
4238@item Z
423932-bit unsigned integer constant, or a symbolic reference known
4240to fit that range (for immediate operands in zero-extending x86-64
4241instructions).
4242
de3fb1a6
SP
4243@item Tv
4244VSIB address operand.
4245
4246@item Ts
4247Address operand without segment register.
4248
b4fbcb1b
SL
4249@end table
4250
4251@item Xstormy16---@file{config/stormy16/stormy16.h}
4252@table @code
4253@item a
4254Register r0.
4255
4256@item b
4257Register r1.
4258
4259@item c
4260Register r2.
4261
4262@item d
4263Register r8.
4264
4265@item e
4266Registers r0 through r7.
4267
4268@item t
4269Registers r0 and r1.
4270
4271@item y
4272The carry register.
4273
4274@item z
4275Registers r8 and r9.
4276
4277@item I
4278A constant between 0 and 3 inclusive.
4279
4280@item J
4281A constant that has exactly one bit set.
4282
4283@item K
4284A constant that has exactly one bit clear.
4285
4286@item L
4287A constant between 0 and 255 inclusive.
4288
4289@item M
4290A constant between @minus{}255 and 0 inclusive.
4291
4292@item N
4293A constant between @minus{}3 and 0 inclusive.
4294
4295@item O
4296A constant between 1 and 4 inclusive.
4297
4298@item P
4299A constant between @minus{}4 and @minus{}1 inclusive.
4300
4301@item Q
4302A memory reference that is a stack push.
4303
4304@item R
4305A memory reference that is a stack pop.
4306
4307@item S
4308A memory reference that refers to a constant address of known value.
4309
4310@item T
4311The register indicated by Rx (not implemented yet).
4312
4313@item U
4314A constant that is not between 2 and 15 inclusive.
4315
4316@item Z
4317The constant 0.
4318
4319@end table
4320
887af464 4321@item Xtensa---@file{config/xtensa/constraints.md}
03984308
BW
4322@table @code
4323@item a
4324General-purpose 32-bit register
4325
4326@item b
4327One-bit boolean register
4328
4329@item A
4330MAC16 40-bit accumulator register
4331
4332@item I
4333Signed 12-bit integer constant, for use in MOVI instructions
4334
4335@item J
4336Signed 8-bit integer constant, for use in ADDI instructions
4337
4338@item K
4339Integer constant valid for BccI instructions
4340
4341@item L
4342Unsigned constant valid for BccUI instructions
4343
4344@end table
4345
03dda8e3
RK
4346@end table
4347
7ac28727
AK
4348@ifset INTERNALS
4349@node Disable Insn Alternatives
4350@subsection Disable insn alternatives using the @code{enabled} attribute
4351@cindex enabled
4352
9840b2fa
RS
4353There are three insn attributes that may be used to selectively disable
4354instruction alternatives:
7ac28727 4355
9840b2fa
RS
4356@table @code
4357@item enabled
4358Says whether an alternative is available on the current subtarget.
7ac28727 4359
9840b2fa
RS
4360@item preferred_for_size
4361Says whether an enabled alternative should be used in code that is
4362optimized for size.
7ac28727 4363
9840b2fa
RS
4364@item preferred_for_speed
4365Says whether an enabled alternative should be used in code that is
4366optimized for speed.
4367@end table
4368
4369All these attributes should use @code{(const_int 1)} to allow an alternative
4370or @code{(const_int 0)} to disallow it. The attributes must be a static
4371property of the subtarget; they cannot for example depend on the
4372current operands, on the current optimization level, on the location
4373of the insn within the body of a loop, on whether register allocation
4374has finished, or on the current compiler pass.
4375
4376The @code{enabled} attribute is a correctness property. It tells GCC to act
4377as though the disabled alternatives were never defined in the first place.
4378This is useful when adding new instructions to an existing pattern in
4379cases where the new instructions are only available for certain cpu
4380architecture levels (typically mapped to the @code{-march=} command-line
4381option).
4382
4383In contrast, the @code{preferred_for_size} and @code{preferred_for_speed}
4384attributes are strong optimization hints rather than correctness properties.
4385@code{preferred_for_size} tells GCC which alternatives to consider when
4386adding or modifying an instruction that GCC wants to optimize for size.
4387@code{preferred_for_speed} does the same thing for speed. Note that things
4388like code motion can lead to cases where code optimized for size uses
4389alternatives that are not preferred for size, and similarly for speed.
4390
4391Although @code{define_insn}s can in principle specify the @code{enabled}
4392attribute directly, it is often clearer to have subsiduary attributes
4393for each architectural feature of interest. The @code{define_insn}s
4394can then use these subsiduary attributes to say which alternatives
4395require which features. The example below does this for @code{cpu_facility}.
7ac28727
AK
4396
4397E.g. the following two patterns could easily be merged using the @code{enabled}
4398attribute:
4399
4400@smallexample
4401
4402(define_insn "*movdi_old"
4403 [(set (match_operand:DI 0 "register_operand" "=d")
4404 (match_operand:DI 1 "register_operand" " d"))]
4405 "!TARGET_NEW"
4406 "lgr %0,%1")
4407
4408(define_insn "*movdi_new"
4409 [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4410 (match_operand:DI 1 "register_operand" " d,d,f"))]
4411 "TARGET_NEW"
4412 "@@
4413 lgr %0,%1
4414 ldgr %0,%1
4415 lgdr %0,%1")
4416
4417@end smallexample
4418
4419to:
4420
4421@smallexample
4422
4423(define_insn "*movdi_combined"
4424 [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4425 (match_operand:DI 1 "register_operand" " d,d,f"))]
4426 ""
4427 "@@
4428 lgr %0,%1
4429 ldgr %0,%1
4430 lgdr %0,%1"
4431 [(set_attr "cpu_facility" "*,new,new")])
4432
4433@end smallexample
4434
4435with the @code{enabled} attribute defined like this:
4436
4437@smallexample
4438
4439(define_attr "cpu_facility" "standard,new" (const_string "standard"))
4440
4441(define_attr "enabled" ""
4442 (cond [(eq_attr "cpu_facility" "standard") (const_int 1)
4443 (and (eq_attr "cpu_facility" "new")
4444 (ne (symbol_ref "TARGET_NEW") (const_int 0)))
4445 (const_int 1)]
4446 (const_int 0)))
4447
4448@end smallexample
4449
4450@end ifset
4451
03dda8e3 4452@ifset INTERNALS
f38840db
ZW
4453@node Define Constraints
4454@subsection Defining Machine-Specific Constraints
4455@cindex defining constraints
4456@cindex constraints, defining
4457
4458Machine-specific constraints fall into two categories: register and
4459non-register constraints. Within the latter category, constraints
4460which allow subsets of all possible memory or address operands should
4461be specially marked, to give @code{reload} more information.
4462
4463Machine-specific constraints can be given names of arbitrary length,
4464but they must be entirely composed of letters, digits, underscores
4465(@samp{_}), and angle brackets (@samp{< >}). Like C identifiers, they
ff2ce160 4466must begin with a letter or underscore.
f38840db
ZW
4467
4468In order to avoid ambiguity in operand constraint strings, no
4469constraint can have a name that begins with any other constraint's
4470name. For example, if @code{x} is defined as a constraint name,
4471@code{xy} may not be, and vice versa. As a consequence of this rule,
4472no constraint may begin with one of the generic constraint letters:
4473@samp{E F V X g i m n o p r s}.
4474
4475Register constraints correspond directly to register classes.
4476@xref{Register Classes}. There is thus not much flexibility in their
4477definitions.
4478
4479@deffn {MD Expression} define_register_constraint name regclass docstring
4480All three arguments are string constants.
4481@var{name} is the name of the constraint, as it will appear in
5be527d0
RG
4482@code{match_operand} expressions. If @var{name} is a multi-letter
4483constraint its length shall be the same for all constraints starting
4484with the same letter. @var{regclass} can be either the
f38840db
ZW
4485name of the corresponding register class (@pxref{Register Classes}),
4486or a C expression which evaluates to the appropriate register class.
4487If it is an expression, it must have no side effects, and it cannot
4488look at the operand. The usual use of expressions is to map some
4489register constraints to @code{NO_REGS} when the register class
4490is not available on a given subarchitecture.
4491
4492@var{docstring} is a sentence documenting the meaning of the
4493constraint. Docstrings are explained further below.
4494@end deffn
4495
4496Non-register constraints are more like predicates: the constraint
527a3750 4497definition gives a boolean expression which indicates whether the
f38840db
ZW
4498constraint matches.
4499
4500@deffn {MD Expression} define_constraint name docstring exp
4501The @var{name} and @var{docstring} arguments are the same as for
4502@code{define_register_constraint}, but note that the docstring comes
4503immediately after the name for these expressions. @var{exp} is an RTL
4504expression, obeying the same rules as the RTL expressions in predicate
4505definitions. @xref{Defining Predicates}, for details. If it
4506evaluates true, the constraint matches; if it evaluates false, it
4507doesn't. Constraint expressions should indicate which RTL codes they
4508might match, just like predicate expressions.
4509
4510@code{match_test} C expressions have access to the
4511following variables:
4512
4513@table @var
4514@item op
4515The RTL object defining the operand.
4516@item mode
4517The machine mode of @var{op}.
4518@item ival
4519@samp{INTVAL (@var{op})}, if @var{op} is a @code{const_int}.
4520@item hval
4521@samp{CONST_DOUBLE_HIGH (@var{op})}, if @var{op} is an integer
4522@code{const_double}.
4523@item lval
4524@samp{CONST_DOUBLE_LOW (@var{op})}, if @var{op} is an integer
4525@code{const_double}.
4526@item rval
4527@samp{CONST_DOUBLE_REAL_VALUE (@var{op})}, if @var{op} is a floating-point
3fa1b0e5 4528@code{const_double}.
f38840db
ZW
4529@end table
4530
4531The @var{*val} variables should only be used once another piece of the
4532expression has verified that @var{op} is the appropriate kind of RTL
4533object.
4534@end deffn
4535
4536Most non-register constraints should be defined with
4537@code{define_constraint}. The remaining two definition expressions
4538are only appropriate for constraints that should be handled specially
4539by @code{reload} if they fail to match.
4540
4541@deffn {MD Expression} define_memory_constraint name docstring exp
4542Use this expression for constraints that match a subset of all memory
4543operands: that is, @code{reload} can make them match by converting the
4544operand to the form @samp{@w{(mem (reg @var{X}))}}, where @var{X} is a
4545base register (from the register class specified by
4546@code{BASE_REG_CLASS}, @pxref{Register Classes}).
4547
4548For example, on the S/390, some instructions do not accept arbitrary
4549memory references, but only those that do not make use of an index
4550register. The constraint letter @samp{Q} is defined to represent a
4551memory address of this type. If @samp{Q} is defined with
4552@code{define_memory_constraint}, a @samp{Q} constraint can handle any
4553memory operand, because @code{reload} knows it can simply copy the
4554memory address into a base register if required. This is analogous to
e4ae5e77 4555the way an @samp{o} constraint can handle any memory operand.
f38840db
ZW
4556
4557The syntax and semantics are otherwise identical to
4558@code{define_constraint}.
4559@end deffn
4560
9eb1ca69
VM
4561@deffn {MD Expression} define_special_memory_constraint name docstring exp
4562Use this expression for constraints that match a subset of all memory
67914693 4563operands: that is, @code{reload} cannot make them match by reloading
9eb1ca69
VM
4564the address as it is described for @code{define_memory_constraint} or
4565such address reload is undesirable with the performance point of view.
4566
4567For example, @code{define_special_memory_constraint} can be useful if
4568specifically aligned memory is necessary or desirable for some insn
4569operand.
4570
4571The syntax and semantics are otherwise identical to
4572@code{define_constraint}.
4573@end deffn
4574
f38840db
ZW
4575@deffn {MD Expression} define_address_constraint name docstring exp
4576Use this expression for constraints that match a subset of all address
4577operands: that is, @code{reload} can make the constraint match by
4578converting the operand to the form @samp{@w{(reg @var{X})}}, again
4579with @var{X} a base register.
4580
4581Constraints defined with @code{define_address_constraint} can only be
4582used with the @code{address_operand} predicate, or machine-specific
4583predicates that work the same way. They are treated analogously to
4584the generic @samp{p} constraint.
4585
4586The syntax and semantics are otherwise identical to
4587@code{define_constraint}.
4588@end deffn
4589
4590For historical reasons, names beginning with the letters @samp{G H}
4591are reserved for constraints that match only @code{const_double}s, and
4592names beginning with the letters @samp{I J K L M N O P} are reserved
4593for constraints that match only @code{const_int}s. This may change in
4594the future. For the time being, constraints with these names must be
4595written in a stylized form, so that @code{genpreds} can tell you did
4596it correctly:
4597
4598@smallexample
4599@group
4600(define_constraint "[@var{GHIJKLMNOP}]@dots{}"
4601 "@var{doc}@dots{}"
4602 (and (match_code "const_int") ; @r{@code{const_double} for G/H}
4603 @var{condition}@dots{})) ; @r{usually a @code{match_test}}
4604@end group
4605@end smallexample
4606@c the semicolons line up in the formatted manual
4607
4608It is fine to use names beginning with other letters for constraints
4609that match @code{const_double}s or @code{const_int}s.
4610
4611Each docstring in a constraint definition should be one or more complete
4612sentences, marked up in Texinfo format. @emph{They are currently unused.}
4613In the future they will be copied into the GCC manual, in @ref{Machine
4614Constraints}, replacing the hand-maintained tables currently found in
4615that section. Also, in the future the compiler may use this to give
4616more helpful diagnostics when poor choice of @code{asm} constraints
4617causes a reload failure.
4618
4619If you put the pseudo-Texinfo directive @samp{@@internal} at the
4620beginning of a docstring, then (in the future) it will appear only in
4621the internals manual's version of the machine-specific constraint tables.
4622Use this for constraints that should not appear in @code{asm} statements.
4623
4624@node C Constraint Interface
4625@subsection Testing constraints from C
4626@cindex testing constraints
4627@cindex constraints, testing
4628
4629It is occasionally useful to test a constraint from C code rather than
4630implicitly via the constraint string in a @code{match_operand}. The
4631generated file @file{tm_p.h} declares a few interfaces for working
8677664e
RS
4632with constraints. At present these are defined for all constraints
4633except @code{g} (which is equivalent to @code{general_operand}).
f38840db
ZW
4634
4635Some valid constraint names are not valid C identifiers, so there is a
4636mangling scheme for referring to them from C@. Constraint names that
4637do not contain angle brackets or underscores are left unchanged.
4638Underscores are doubled, each @samp{<} is replaced with @samp{_l}, and
4639each @samp{>} with @samp{_g}. Here are some examples:
4640
4641@c the @c's prevent double blank lines in the printed manual.
4642@example
4643@multitable {Original} {Mangled}
cccb0908 4644@item @strong{Original} @tab @strong{Mangled} @c
f38840db
ZW
4645@item @code{x} @tab @code{x} @c
4646@item @code{P42x} @tab @code{P42x} @c
4647@item @code{P4_x} @tab @code{P4__x} @c
4648@item @code{P4>x} @tab @code{P4_gx} @c
4649@item @code{P4>>} @tab @code{P4_g_g} @c
4650@item @code{P4_g>} @tab @code{P4__g_g} @c
4651@end multitable
4652@end example
4653
4654Throughout this section, the variable @var{c} is either a constraint
4655in the abstract sense, or a constant from @code{enum constraint_num};
4656the variable @var{m} is a mangled constraint name (usually as part of
4657a larger identifier).
4658
4659@deftp Enum constraint_num
8677664e 4660For each constraint except @code{g}, there is a corresponding
f38840db
ZW
4661enumeration constant: @samp{CONSTRAINT_} plus the mangled name of the
4662constraint. Functions that take an @code{enum constraint_num} as an
4663argument expect one of these constants.
f38840db
ZW
4664@end deftp
4665
4666@deftypefun {inline bool} satisfies_constraint_@var{m} (rtx @var{exp})
8677664e 4667For each non-register constraint @var{m} except @code{g}, there is
f38840db
ZW
4668one of these functions; it returns @code{true} if @var{exp} satisfies the
4669constraint. These functions are only visible if @file{rtl.h} was included
4670before @file{tm_p.h}.
4671@end deftypefun
4672
4673@deftypefun bool constraint_satisfied_p (rtx @var{exp}, enum constraint_num @var{c})
4674Like the @code{satisfies_constraint_@var{m}} functions, but the
4675constraint to test is given as an argument, @var{c}. If @var{c}
4676specifies a register constraint, this function will always return
4677@code{false}.
4678@end deftypefun
4679
2aeedf58 4680@deftypefun {enum reg_class} reg_class_for_constraint (enum constraint_num @var{c})
f38840db
ZW
4681Returns the register class associated with @var{c}. If @var{c} is not
4682a register constraint, or those registers are not available for the
4683currently selected subtarget, returns @code{NO_REGS}.
4684@end deftypefun
4685
4686Here is an example use of @code{satisfies_constraint_@var{m}}. In
4687peephole optimizations (@pxref{Peephole Definitions}), operand
4688constraint strings are ignored, so if there are relevant constraints,
4689they must be tested in the C condition. In the example, the
4690optimization is applied if operand 2 does @emph{not} satisfy the
4691@samp{K} constraint. (This is a simplified version of a peephole
4692definition from the i386 machine description.)
4693
4694@smallexample
4695(define_peephole2
4696 [(match_scratch:SI 3 "r")
4697 (set (match_operand:SI 0 "register_operand" "")
6ccde948
RW
4698 (mult:SI (match_operand:SI 1 "memory_operand" "")
4699 (match_operand:SI 2 "immediate_operand" "")))]
f38840db
ZW
4700
4701 "!satisfies_constraint_K (operands[2])"
4702
4703 [(set (match_dup 3) (match_dup 1))
4704 (set (match_dup 0) (mult:SI (match_dup 3) (match_dup 2)))]
4705
4706 "")
4707@end smallexample
4708
03dda8e3
RK
4709@node Standard Names
4710@section Standard Pattern Names For Generation
4711@cindex standard pattern names
4712@cindex pattern names
4713@cindex names, pattern
4714
4715Here is a table of the instruction names that are meaningful in the RTL
4716generation pass of the compiler. Giving one of these names to an
4717instruction pattern tells the RTL generation pass that it can use the
556e0f21 4718pattern to accomplish a certain task.
03dda8e3
RK
4719
4720@table @asis
4721@cindex @code{mov@var{m}} instruction pattern
4722@item @samp{mov@var{m}}
4bd0bee9 4723Here @var{m} stands for a two-letter machine mode name, in lowercase.
03dda8e3
RK
4724This instruction pattern moves data with that machine mode from operand
47251 to operand 0. For example, @samp{movsi} moves full-word data.
4726
4727If operand 0 is a @code{subreg} with mode @var{m} of a register whose
4728own mode is wider than @var{m}, the effect of this instruction is
4729to store the specified value in the part of the register that corresponds
8feb4e28
JL
4730to mode @var{m}. Bits outside of @var{m}, but which are within the
4731same target word as the @code{subreg} are undefined. Bits which are
4732outside the target word are left unchanged.
03dda8e3
RK
4733
4734This class of patterns is special in several ways. First of all, each
65945ec1
HPN
4735of these names up to and including full word size @emph{must} be defined,
4736because there is no other way to copy a datum from one place to another.
4737If there are patterns accepting operands in larger modes,
4738@samp{mov@var{m}} must be defined for integer modes of those sizes.
03dda8e3
RK
4739
4740Second, these patterns are not used solely in the RTL generation pass.
4741Even the reload pass can generate move insns to copy values from stack
4742slots into temporary registers. When it does so, one of the operands is
4743a hard register and the other is an operand that can need to be reloaded
4744into a register.
4745
4746@findex force_reg
4747Therefore, when given such a pair of operands, the pattern must generate
4748RTL which needs no reloading and needs no temporary registers---no
4749registers other than the operands. For example, if you support the
4750pattern with a @code{define_expand}, then in such a case the
4751@code{define_expand} mustn't call @code{force_reg} or any other such
4752function which might generate new pseudo registers.
4753
4754This requirement exists even for subword modes on a RISC machine where
4755fetching those modes from memory normally requires several insns and
39ed8974 4756some temporary registers.
03dda8e3
RK
4757
4758@findex change_address
4759During reload a memory reference with an invalid address may be passed
4760as an operand. Such an address will be replaced with a valid address
4761later in the reload pass. In this case, nothing may be done with the
4762address except to use it as it stands. If it is copied, it will not be
4763replaced with a valid address. No attempt should be made to make such
4764an address into a valid address and no routine (such as
4765@code{change_address}) that will do so may be called. Note that
4766@code{general_operand} will fail when applied to such an address.
4767
4768@findex reload_in_progress
4769The global variable @code{reload_in_progress} (which must be explicitly
4770declared if required) can be used to determine whether such special
4771handling is required.
4772
4773The variety of operands that have reloads depends on the rest of the
4774machine description, but typically on a RISC machine these can only be
4775pseudo registers that did not get hard registers, while on other
4776machines explicit memory references will get optional reloads.
4777
4778If a scratch register is required to move an object to or from memory,
f1db3576
JL
4779it can be allocated using @code{gen_reg_rtx} prior to life analysis.
4780
9c34dbbf 4781If there are cases which need scratch registers during or after reload,
8a99f6f9 4782you must provide an appropriate secondary_reload target hook.
03dda8e3 4783
ef4375b2
KZ
4784@findex can_create_pseudo_p
4785The macro @code{can_create_pseudo_p} can be used to determine if it
f1db3576
JL
4786is unsafe to create new pseudo registers. If this variable is nonzero, then
4787it is unsafe to call @code{gen_reg_rtx} to allocate a new pseudo.
4788
956d6950 4789The constraints on a @samp{mov@var{m}} must permit moving any hard
03dda8e3 4790register to any other hard register provided that
f939c3e6 4791@code{TARGET_HARD_REGNO_MODE_OK} permits mode @var{m} in both registers and
de8f4b07
AS
4792@code{TARGET_REGISTER_MOVE_COST} applied to their classes returns a value
4793of 2.
03dda8e3 4794
956d6950 4795It is obligatory to support floating point @samp{mov@var{m}}
03dda8e3
RK
4796instructions into and out of any registers that can hold fixed point
4797values, because unions and structures (which have modes @code{SImode} or
4798@code{DImode}) can be in those registers and they may have floating
4799point members.
4800
956d6950 4801There may also be a need to support fixed point @samp{mov@var{m}}
03dda8e3
RK
4802instructions in and out of floating point registers. Unfortunately, I
4803have forgotten why this was so, and I don't know whether it is still
f939c3e6 4804true. If @code{TARGET_HARD_REGNO_MODE_OK} rejects fixed point values in
03dda8e3 4805floating point registers, then the constraints of the fixed point
956d6950 4806@samp{mov@var{m}} instructions must be designed to avoid ever trying to
03dda8e3
RK
4807reload into a floating point register.
4808
4809@cindex @code{reload_in} instruction pattern
4810@cindex @code{reload_out} instruction pattern
4811@item @samp{reload_in@var{m}}
4812@itemx @samp{reload_out@var{m}}
8a99f6f9
R
4813These named patterns have been obsoleted by the target hook
4814@code{secondary_reload}.
4815
03dda8e3
RK
4816Like @samp{mov@var{m}}, but used when a scratch register is required to
4817move between operand 0 and operand 1. Operand 2 describes the scratch
4818register. See the discussion of the @code{SECONDARY_RELOAD_CLASS}
4819macro in @pxref{Register Classes}.
4820
d989f648 4821There are special restrictions on the form of the @code{match_operand}s
f282ffb3 4822used in these patterns. First, only the predicate for the reload
560dbedd
RH
4823operand is examined, i.e., @code{reload_in} examines operand 1, but not
4824the predicates for operand 0 or 2. Second, there may be only one
d989f648
RH
4825alternative in the constraints. Third, only a single register class
4826letter may be used for the constraint; subsequent constraint letters
4827are ignored. As a special exception, an empty constraint string
4828matches the @code{ALL_REGS} register class. This may relieve ports
4829of the burden of defining an @code{ALL_REGS} constraint letter just
4830for these patterns.
4831
03dda8e3
RK
4832@cindex @code{movstrict@var{m}} instruction pattern
4833@item @samp{movstrict@var{m}}
4834Like @samp{mov@var{m}} except that if operand 0 is a @code{subreg}
4835with mode @var{m} of a register whose natural mode is wider,
4836the @samp{movstrict@var{m}} instruction is guaranteed not to alter
4837any of the register except the part which belongs to mode @var{m}.
4838
1e0598e2
RH
4839@cindex @code{movmisalign@var{m}} instruction pattern
4840@item @samp{movmisalign@var{m}}
4841This variant of a move pattern is designed to load or store a value
4842from a memory address that is not naturally aligned for its mode.
4843For a store, the memory will be in operand 0; for a load, the memory
4844will be in operand 1. The other operand is guaranteed not to be a
4845memory, so that it's easy to tell whether this is a load or store.
4846
4847This pattern is used by the autovectorizer, and when expanding a
4848@code{MISALIGNED_INDIRECT_REF} expression.
4849
03dda8e3
RK
4850@cindex @code{load_multiple} instruction pattern
4851@item @samp{load_multiple}
4852Load several consecutive memory locations into consecutive registers.
4853Operand 0 is the first of the consecutive registers, operand 1
4854is the first memory location, and operand 2 is a constant: the
4855number of consecutive registers.
4856
4857Define this only if the target machine really has such an instruction;
4858do not define this if the most efficient way of loading consecutive
4859registers from memory is to do them one at a time.
4860
4861On some machines, there are restrictions as to which consecutive
4862registers can be stored into memory, such as particular starting or
4863ending register numbers or only a range of valid counts. For those
4864machines, use a @code{define_expand} (@pxref{Expander Definitions})
4865and make the pattern fail if the restrictions are not met.
4866
4867Write the generated insn as a @code{parallel} with elements being a
4868@code{set} of one register from the appropriate memory location (you may
4869also need @code{use} or @code{clobber} elements). Use a
4870@code{match_parallel} (@pxref{RTL Template}) to recognize the insn. See
c9693e96 4871@file{rs6000.md} for examples of the use of this insn pattern.
03dda8e3
RK
4872
4873@cindex @samp{store_multiple} instruction pattern
4874@item @samp{store_multiple}
4875Similar to @samp{load_multiple}, but store several consecutive registers
4876into consecutive memory locations. Operand 0 is the first of the
4877consecutive memory locations, operand 1 is the first register, and
4878operand 2 is a constant: the number of consecutive registers.
4879
272c6793
RS
4880@cindex @code{vec_load_lanes@var{m}@var{n}} instruction pattern
4881@item @samp{vec_load_lanes@var{m}@var{n}}
4882Perform an interleaved load of several vectors from memory operand 1
4883into register operand 0. Both operands have mode @var{m}. The register
4884operand is viewed as holding consecutive vectors of mode @var{n},
4885while the memory operand is a flat array that contains the same number
4886of elements. The operation is equivalent to:
4887
4888@smallexample
4889int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4890for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4891 for (i = 0; i < c; i++)
4892 operand0[i][j] = operand1[j * c + i];
4893@end smallexample
4894
4895For example, @samp{vec_load_lanestiv4hi} loads 8 16-bit values
4896from memory into a register of mode @samp{TI}@. The register
4897contains two consecutive vectors of mode @samp{V4HI}@.
4898
4899This pattern can only be used if:
4900@smallexample
4901TARGET_ARRAY_MODE_SUPPORTED_P (@var{n}, @var{c})
4902@end smallexample
4903is true. GCC assumes that, if a target supports this kind of
4904instruction for some mode @var{n}, it also supports unaligned
4905loads for vectors of mode @var{n}.
4906
a54a5997
RS
4907This pattern is not allowed to @code{FAIL}.
4908
7e11fc7f
RS
4909@cindex @code{vec_mask_load_lanes@var{m}@var{n}} instruction pattern
4910@item @samp{vec_mask_load_lanes@var{m}@var{n}}
4911Like @samp{vec_load_lanes@var{m}@var{n}}, but takes an additional
4912mask operand (operand 2) that specifies which elements of the destination
4913vectors should be loaded. Other elements of the destination
4914vectors are set to zero. The operation is equivalent to:
4915
4916@smallexample
4917int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4918for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4919 if (operand2[j])
4920 for (i = 0; i < c; i++)
4921 operand0[i][j] = operand1[j * c + i];
4922 else
4923 for (i = 0; i < c; i++)
4924 operand0[i][j] = 0;
4925@end smallexample
4926
4927This pattern is not allowed to @code{FAIL}.
4928
272c6793
RS
4929@cindex @code{vec_store_lanes@var{m}@var{n}} instruction pattern
4930@item @samp{vec_store_lanes@var{m}@var{n}}
4931Equivalent to @samp{vec_load_lanes@var{m}@var{n}}, with the memory
4932and register operands reversed. That is, the instruction is
4933equivalent to:
4934
4935@smallexample
4936int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4937for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4938 for (i = 0; i < c; i++)
4939 operand0[j * c + i] = operand1[i][j];
4940@end smallexample
4941
4942for a memory operand 0 and register operand 1.
4943
a54a5997
RS
4944This pattern is not allowed to @code{FAIL}.
4945
7e11fc7f
RS
4946@cindex @code{vec_mask_store_lanes@var{m}@var{n}} instruction pattern
4947@item @samp{vec_mask_store_lanes@var{m}@var{n}}
4948Like @samp{vec_store_lanes@var{m}@var{n}}, but takes an additional
4949mask operand (operand 2) that specifies which elements of the source
4950vectors should be stored. The operation is equivalent to:
4951
4952@smallexample
4953int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4954for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4955 if (operand2[j])
4956 for (i = 0; i < c; i++)
4957 operand0[j * c + i] = operand1[i][j];
4958@end smallexample
4959
4960This pattern is not allowed to @code{FAIL}.
4961
bfaa08b7
RS
4962@cindex @code{gather_load@var{m}} instruction pattern
4963@item @samp{gather_load@var{m}}
4964Load several separate memory locations into a vector of mode @var{m}.
4965Operand 1 is a scalar base address and operand 2 is a vector of
4966offsets from that base. Operand 0 is a destination vector with the
4967same number of elements as the offset. For each element index @var{i}:
4968
4969@itemize @bullet
4970@item
4971extend the offset element @var{i} to address width, using zero
4972extension if operand 3 is 1 and sign extension if operand 3 is zero;
4973@item
4974multiply the extended offset by operand 4;
4975@item
4976add the result to the base; and
4977@item
4978load the value at that address into element @var{i} of operand 0.
4979@end itemize
4980
4981The value of operand 3 does not matter if the offsets are already
4982address width.
4983
4984@cindex @code{mask_gather_load@var{m}} instruction pattern
4985@item @samp{mask_gather_load@var{m}}
4986Like @samp{gather_load@var{m}}, but takes an extra mask operand as
4987operand 5. Bit @var{i} of the mask is set if element @var{i}
4988of the result should be loaded from memory and clear if element @var{i}
4989of the result should be set to zero.
4990
f307441a
RS
4991@cindex @code{scatter_store@var{m}} instruction pattern
4992@item @samp{scatter_store@var{m}}
4993Store a vector of mode @var{m} into several distinct memory locations.
4994Operand 0 is a scalar base address and operand 1 is a vector of offsets
4995from that base. Operand 4 is the vector of values that should be stored,
4996which has the same number of elements as the offset. For each element
4997index @var{i}:
4998
4999@itemize @bullet
5000@item
5001extend the offset element @var{i} to address width, using zero
5002extension if operand 2 is 1 and sign extension if operand 2 is zero;
5003@item
5004multiply the extended offset by operand 3;
5005@item
5006add the result to the base; and
5007@item
5008store element @var{i} of operand 4 to that address.
5009@end itemize
5010
5011The value of operand 2 does not matter if the offsets are already
5012address width.
5013
5014@cindex @code{mask_scatter_store@var{m}} instruction pattern
5015@item @samp{mask_scatter_store@var{m}}
5016Like @samp{scatter_store@var{m}}, but takes an extra mask operand as
5017operand 5. Bit @var{i} of the mask is set if element @var{i}
5018of the result should be stored to memory.
5019
ef1140a9
JH
5020@cindex @code{vec_set@var{m}} instruction pattern
5021@item @samp{vec_set@var{m}}
5022Set given field in the vector value. Operand 0 is the vector to modify,
5023operand 1 is new value of field and operand 2 specify the field index.
5024
ff03930a
JJ
5025@cindex @code{vec_extract@var{m}@var{n}} instruction pattern
5026@item @samp{vec_extract@var{m}@var{n}}
ef1140a9 5027Extract given field from the vector value. Operand 1 is the vector, operand 2
ff03930a
JJ
5028specify field index and operand 0 place to store value into. The
5029@var{n} mode is the mode of the field or vector of fields that should be
5030extracted, should be either element mode of the vector mode @var{m}, or
5031a vector mode with the same element mode and smaller number of elements.
5032If @var{n} is a vector mode, the index is counted in units of that mode.
5033
5034@cindex @code{vec_init@var{m}@var{n}} instruction pattern
5035@item @samp{vec_init@var{m}@var{n}}
425a2bde 5036Initialize the vector to given values. Operand 0 is the vector to initialize
ff03930a
JJ
5037and operand 1 is parallel containing values for individual fields. The
5038@var{n} mode is the mode of the elements, should be either element mode of
5039the vector mode @var{m}, or a vector mode with the same element mode and
5040smaller number of elements.
ef1140a9 5041
be4c1d4a
RS
5042@cindex @code{vec_duplicate@var{m}} instruction pattern
5043@item @samp{vec_duplicate@var{m}}
5044Initialize vector output operand 0 so that each element has the value given
5045by scalar input operand 1. The vector has mode @var{m} and the scalar has
5046the mode appropriate for one element of @var{m}.
5047
5048This pattern only handles duplicates of non-constant inputs. Constant
5049vectors go through the @code{mov@var{m}} pattern instead.
5050
5051This pattern is not allowed to @code{FAIL}.
5052
9adab579
RS
5053@cindex @code{vec_series@var{m}} instruction pattern
5054@item @samp{vec_series@var{m}}
5055Initialize vector output operand 0 so that element @var{i} is equal to
5056operand 1 plus @var{i} times operand 2. In other words, create a linear
5057series whose base value is operand 1 and whose step is operand 2.
5058
5059The vector output has mode @var{m} and the scalar inputs have the mode
5060appropriate for one element of @var{m}. This pattern is not used for
5061floating-point vectors, in order to avoid having to specify the
5062rounding behavior for @var{i} > 1.
5063
5064This pattern is not allowed to @code{FAIL}.
5065
7cfb4d93
RS
5066@cindex @code{while_ult@var{m}@var{n}} instruction pattern
5067@item @code{while_ult@var{m}@var{n}}
5068Set operand 0 to a mask that is true while incrementing operand 1
5069gives a value that is less than operand 2. Operand 0 has mode @var{n}
5070and operands 1 and 2 are scalar integers of mode @var{m}.
5071The operation is equivalent to:
5072
5073@smallexample
5074operand0[0] = operand1 < operand2;
5075for (i = 1; i < GET_MODE_NUNITS (@var{n}); i++)
5076 operand0[i] = operand0[i - 1] && (operand1 + i < operand2);
5077@end smallexample
5078
12fb875f
IE
5079@cindex @code{vec_cmp@var{m}@var{n}} instruction pattern
5080@item @samp{vec_cmp@var{m}@var{n}}
5081Output a vector comparison. Operand 0 of mode @var{n} is the destination for
5082predicate in operand 1 which is a signed vector comparison with operands of
5083mode @var{m} in operands 2 and 3. Predicate is computed by element-wise
5084evaluation of the vector comparison with a truth value of all-ones and a false
5085value of all-zeros.
5086
5087@cindex @code{vec_cmpu@var{m}@var{n}} instruction pattern
5088@item @samp{vec_cmpu@var{m}@var{n}}
5089Similar to @code{vec_cmp@var{m}@var{n}} but perform unsigned vector comparison.
5090
96592eed
JJ
5091@cindex @code{vec_cmpeq@var{m}@var{n}} instruction pattern
5092@item @samp{vec_cmpeq@var{m}@var{n}}
5093Similar to @code{vec_cmp@var{m}@var{n}} but perform equality or non-equality
5094vector comparison only. If @code{vec_cmp@var{m}@var{n}}
5095or @code{vec_cmpu@var{m}@var{n}} instruction pattern is supported,
5096it will be preferred over @code{vec_cmpeq@var{m}@var{n}}, so there is
5097no need to define this instruction pattern if the others are supported.
5098
e9e1d143
RG
5099@cindex @code{vcond@var{m}@var{n}} instruction pattern
5100@item @samp{vcond@var{m}@var{n}}
5101Output a conditional vector move. Operand 0 is the destination to
5102receive a combination of operand 1 and operand 2, which are of mode @var{m},
12fb875f 5103dependent on the outcome of the predicate in operand 3 which is a signed
e9e1d143
RG
5104vector comparison with operands of mode @var{n} in operands 4 and 5. The
5105modes @var{m} and @var{n} should have the same size. Operand 0
5106will be set to the value @var{op1} & @var{msk} | @var{op2} & ~@var{msk}
5107where @var{msk} is computed by element-wise evaluation of the vector
5108comparison with a truth value of all-ones and a false value of all-zeros.
5109
12fb875f
IE
5110@cindex @code{vcondu@var{m}@var{n}} instruction pattern
5111@item @samp{vcondu@var{m}@var{n}}
5112Similar to @code{vcond@var{m}@var{n}} but performs unsigned vector
5113comparison.
5114
96592eed
JJ
5115@cindex @code{vcondeq@var{m}@var{n}} instruction pattern
5116@item @samp{vcondeq@var{m}@var{n}}
5117Similar to @code{vcond@var{m}@var{n}} but performs equality or
5118non-equality vector comparison only. If @code{vcond@var{m}@var{n}}
5119or @code{vcondu@var{m}@var{n}} instruction pattern is supported,
5120it will be preferred over @code{vcondeq@var{m}@var{n}}, so there is
5121no need to define this instruction pattern if the others are supported.
5122
12fb875f
IE
5123@cindex @code{vcond_mask_@var{m}@var{n}} instruction pattern
5124@item @samp{vcond_mask_@var{m}@var{n}}
5125Similar to @code{vcond@var{m}@var{n}} but operand 3 holds a pre-computed
5126result of vector comparison.
5127
5128@cindex @code{maskload@var{m}@var{n}} instruction pattern
5129@item @samp{maskload@var{m}@var{n}}
5130Perform a masked load of vector from memory operand 1 of mode @var{m}
5131into register operand 0. Mask is provided in register operand 2 of
5132mode @var{n}.
5133
a54a5997
RS
5134This pattern is not allowed to @code{FAIL}.
5135
12fb875f 5136@cindex @code{maskstore@var{m}@var{n}} instruction pattern
a54a5997 5137@item @samp{maskstore@var{m}@var{n}}
12fb875f
IE
5138Perform a masked store of vector from register operand 1 of mode @var{m}
5139into memory operand 0. Mask is provided in register operand 2 of
5140mode @var{n}.
5141
a54a5997
RS
5142This pattern is not allowed to @code{FAIL}.
5143
2205ed25
RH
5144@cindex @code{vec_perm@var{m}} instruction pattern
5145@item @samp{vec_perm@var{m}}
5146Output a (variable) vector permutation. Operand 0 is the destination
5147to receive elements from operand 1 and operand 2, which are of mode
5148@var{m}. Operand 3 is the @dfn{selector}. It is an integral mode
5149vector of the same width and number of elements as mode @var{m}.
5150
5151The input elements are numbered from 0 in operand 1 through
5152@math{2*@var{N}-1} in operand 2. The elements of the selector must
5153be computed modulo @math{2*@var{N}}. Note that if
5154@code{rtx_equal_p(operand1, operand2)}, this can be implemented
5155with just operand 1 and selector elements modulo @var{N}.
5156
d7943c8b
RH
5157In order to make things easy for a number of targets, if there is no
5158@samp{vec_perm} pattern for mode @var{m}, but there is for mode @var{q}
5159where @var{q} is a vector of @code{QImode} of the same width as @var{m},
5160the middle-end will lower the mode @var{m} @code{VEC_PERM_EXPR} to
5161mode @var{q}.
5162
f151c9e1
RS
5163See also @code{TARGET_VECTORIZER_VEC_PERM_CONST}, which performs
5164the analogous operation for constant selectors.
2205ed25 5165
759915ca
EC
5166@cindex @code{push@var{m}1} instruction pattern
5167@item @samp{push@var{m}1}
299c5111 5168Output a push instruction. Operand 0 is value to push. Used only when
38f4324c
JH
5169@code{PUSH_ROUNDING} is defined. For historical reason, this pattern may be
5170missing and in such case an @code{mov} expander is used instead, with a
6e9aac46 5171@code{MEM} expression forming the push operation. The @code{mov} expander
38f4324c
JH
5172method is deprecated.
5173
03dda8e3
RK
5174@cindex @code{add@var{m}3} instruction pattern
5175@item @samp{add@var{m}3}
5176Add operand 2 and operand 1, storing the result in operand 0. All operands
5177must have mode @var{m}. This can be used even on two-address machines, by
5178means of constraints requiring operands 1 and 0 to be the same location.
5179
0f996086
CF
5180@cindex @code{ssadd@var{m}3} instruction pattern
5181@cindex @code{usadd@var{m}3} instruction pattern
03dda8e3 5182@cindex @code{sub@var{m}3} instruction pattern
0f996086
CF
5183@cindex @code{sssub@var{m}3} instruction pattern
5184@cindex @code{ussub@var{m}3} instruction pattern
03dda8e3 5185@cindex @code{mul@var{m}3} instruction pattern
0f996086
CF
5186@cindex @code{ssmul@var{m}3} instruction pattern
5187@cindex @code{usmul@var{m}3} instruction pattern
03dda8e3 5188@cindex @code{div@var{m}3} instruction pattern
0f996086 5189@cindex @code{ssdiv@var{m}3} instruction pattern
03dda8e3 5190@cindex @code{udiv@var{m}3} instruction pattern
0f996086 5191@cindex @code{usdiv@var{m}3} instruction pattern
03dda8e3
RK
5192@cindex @code{mod@var{m}3} instruction pattern
5193@cindex @code{umod@var{m}3} instruction pattern
03dda8e3
RK
5194@cindex @code{umin@var{m}3} instruction pattern
5195@cindex @code{umax@var{m}3} instruction pattern
5196@cindex @code{and@var{m}3} instruction pattern
5197@cindex @code{ior@var{m}3} instruction pattern
5198@cindex @code{xor@var{m}3} instruction pattern
0f996086 5199@item @samp{ssadd@var{m}3}, @samp{usadd@var{m}3}
f457c50c
AS
5200@itemx @samp{sub@var{m}3}, @samp{sssub@var{m}3}, @samp{ussub@var{m}3}
5201@itemx @samp{mul@var{m}3}, @samp{ssmul@var{m}3}, @samp{usmul@var{m}3}
0f996086
CF
5202@itemx @samp{div@var{m}3}, @samp{ssdiv@var{m}3}
5203@itemx @samp{udiv@var{m}3}, @samp{usdiv@var{m}3}
7ae4d8d4
RH
5204@itemx @samp{mod@var{m}3}, @samp{umod@var{m}3}
5205@itemx @samp{umin@var{m}3}, @samp{umax@var{m}3}
03dda8e3
RK
5206@itemx @samp{and@var{m}3}, @samp{ior@var{m}3}, @samp{xor@var{m}3}
5207Similar, for other arithmetic operations.
7ae4d8d4 5208
481efdd9
EB
5209@cindex @code{addv@var{m}4} instruction pattern
5210@item @samp{addv@var{m}4}
5211Like @code{add@var{m}3} but takes a @code{code_label} as operand 3 and
5212emits code to jump to it if signed overflow occurs during the addition.
5213This pattern is used to implement the built-in functions performing
5214signed integer addition with overflow checking.
5215
5216@cindex @code{subv@var{m}4} instruction pattern
5217@cindex @code{mulv@var{m}4} instruction pattern
5218@item @samp{subv@var{m}4}, @samp{mulv@var{m}4}
5219Similar, for other signed arithmetic operations.
5220
cde9d596
RH
5221@cindex @code{uaddv@var{m}4} instruction pattern
5222@item @samp{uaddv@var{m}4}
5223Like @code{addv@var{m}4} but for unsigned addition. That is to
5224say, the operation is the same as signed addition but the jump
481efdd9
EB
5225is taken only on unsigned overflow.
5226
cde9d596
RH
5227@cindex @code{usubv@var{m}4} instruction pattern
5228@cindex @code{umulv@var{m}4} instruction pattern
5229@item @samp{usubv@var{m}4}, @samp{umulv@var{m}4}
5230Similar, for other unsigned arithmetic operations.
5231
481efdd9
EB
5232@cindex @code{addptr@var{m}3} instruction pattern
5233@item @samp{addptr@var{m}3}
5234Like @code{add@var{m}3} but is guaranteed to only be used for address
5235calculations. The expanded code is not allowed to clobber the
5236condition code. It only needs to be defined if @code{add@var{m}3}
5237sets the condition code. If adds used for address calculations and
5238normal adds are not compatible it is required to expand a distinct
630ba2fd 5239pattern (e.g.@: using an unspec). The pattern is used by LRA to emit
481efdd9
EB
5240address calculations. @code{add@var{m}3} is used if
5241@code{addptr@var{m}3} is not defined.
5242
1b1562a5
MM
5243@cindex @code{fma@var{m}4} instruction pattern
5244@item @samp{fma@var{m}4}
5245Multiply operand 2 and operand 1, then add operand 3, storing the
d6373302
KZ
5246result in operand 0 without doing an intermediate rounding step. All
5247operands must have mode @var{m}. This pattern is used to implement
5248the @code{fma}, @code{fmaf}, and @code{fmal} builtin functions from
5249the ISO C99 standard.
1b1562a5 5250
16949072
RG
5251@cindex @code{fms@var{m}4} instruction pattern
5252@item @samp{fms@var{m}4}
5253Like @code{fma@var{m}4}, except operand 3 subtracted from the
5254product instead of added to the product. This is represented
5255in the rtl as
5256
5257@smallexample
5258(fma:@var{m} @var{op1} @var{op2} (neg:@var{m} @var{op3}))
5259@end smallexample
5260
5261@cindex @code{fnma@var{m}4} instruction pattern
5262@item @samp{fnma@var{m}4}
5263Like @code{fma@var{m}4} except that the intermediate product
5264is negated before being added to operand 3. This is represented
5265in the rtl as
5266
5267@smallexample
5268(fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} @var{op3})
5269@end smallexample
5270
5271@cindex @code{fnms@var{m}4} instruction pattern
5272@item @samp{fnms@var{m}4}
5273Like @code{fms@var{m}4} except that the intermediate product
5274is negated before subtracting operand 3. This is represented
5275in the rtl as
5276
5277@smallexample
5278(fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} (neg:@var{m} @var{op3}))
5279@end smallexample
5280
b71b019a
JH
5281@cindex @code{min@var{m}3} instruction pattern
5282@cindex @code{max@var{m}3} instruction pattern
7ae4d8d4
RH
5283@item @samp{smin@var{m}3}, @samp{smax@var{m}3}
5284Signed minimum and maximum operations. When used with floating point,
5285if both operands are zeros, or if either operand is @code{NaN}, then
5286it is unspecified which of the two operands is returned as the result.
03dda8e3 5287
ccb57bb0
DS
5288@cindex @code{fmin@var{m}3} instruction pattern
5289@cindex @code{fmax@var{m}3} instruction pattern
5290@item @samp{fmin@var{m}3}, @samp{fmax@var{m}3}
5291IEEE-conformant minimum and maximum operations. If one operand is a quiet
5292@code{NaN}, then the other operand is returned. If both operands are quiet
5293@code{NaN}, then a quiet @code{NaN} is returned. In the case when gcc supports
18ea359a 5294signaling @code{NaN} (-fsignaling-nans) an invalid floating point exception is
ccb57bb0
DS
5295raised and a quiet @code{NaN} is returned.
5296
a54a5997
RS
5297All operands have mode @var{m}, which is a scalar or vector
5298floating-point mode. These patterns are not allowed to @code{FAIL}.
5299
d43a252e
AL
5300@cindex @code{reduc_smin_scal_@var{m}} instruction pattern
5301@cindex @code{reduc_smax_scal_@var{m}} instruction pattern
5302@item @samp{reduc_smin_scal_@var{m}}, @samp{reduc_smax_scal_@var{m}}
5303Find the signed minimum/maximum of the elements of a vector. The vector is
5304operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5305the elements of the input vector.
5306
5307@cindex @code{reduc_umin_scal_@var{m}} instruction pattern
5308@cindex @code{reduc_umax_scal_@var{m}} instruction pattern
5309@item @samp{reduc_umin_scal_@var{m}}, @samp{reduc_umax_scal_@var{m}}
5310Find the unsigned minimum/maximum of the elements of a vector. The vector is
5311operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5312the elements of the input vector.
5313
5314@cindex @code{reduc_plus_scal_@var{m}} instruction pattern
5315@item @samp{reduc_plus_scal_@var{m}}
5316Compute the sum of the elements of a vector. The vector is operand 1, and
5317operand 0 is the scalar result, with mode equal to the mode of the elements of
5318the input vector.
61abee65 5319
898f07b0
RS
5320@cindex @code{reduc_and_scal_@var{m}} instruction pattern
5321@item @samp{reduc_and_scal_@var{m}}
5322@cindex @code{reduc_ior_scal_@var{m}} instruction pattern
5323@itemx @samp{reduc_ior_scal_@var{m}}
5324@cindex @code{reduc_xor_scal_@var{m}} instruction pattern
5325@itemx @samp{reduc_xor_scal_@var{m}}
5326Compute the bitwise @code{AND}/@code{IOR}/@code{XOR} reduction of the elements
5327of a vector of mode @var{m}. Operand 1 is the vector input and operand 0
5328is the scalar result. The mode of the scalar result is the same as one
5329element of @var{m}.
5330
bfe1bb57
RS
5331@cindex @code{extract_last_@var{m}} instruction pattern
5332@item @code{extract_last_@var{m}}
5333Find the last set bit in mask operand 1 and extract the associated element
5334of vector operand 2. Store the result in scalar operand 0. Operand 2
5335has vector mode @var{m} while operand 0 has the mode appropriate for one
5336element of @var{m}. Operand 1 has the usual mask mode for vectors of mode
5337@var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5338
bb6c2b68
RS
5339@cindex @code{fold_extract_last_@var{m}} instruction pattern
5340@item @code{fold_extract_last_@var{m}}
5341If any bits of mask operand 2 are set, find the last set bit, extract
5342the associated element from vector operand 3, and store the result
5343in operand 0. Store operand 1 in operand 0 otherwise. Operand 3
5344has mode @var{m} and operands 0 and 1 have the mode appropriate for
5345one element of @var{m}. Operand 2 has the usual mask mode for vectors
5346of mode @var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5347
b781a135
RS
5348@cindex @code{fold_left_plus_@var{m}} instruction pattern
5349@item @code{fold_left_plus_@var{m}}
5350Take scalar operand 1 and successively add each element from vector
5351operand 2. Store the result in scalar operand 0. The vector has
5352mode @var{m} and the scalars have the mode appropriate for one
5353element of @var{m}. The operation is strictly in-order: there is
5354no reassociation.
5355
bce29d65
AM
5356@cindex @code{mask_fold_left_plus_@var{m}} instruction pattern
5357@item @code{mask_fold_left_plus_@var{m}}
5358Like @samp{fold_left_plus_@var{m}}, but takes an additional mask operand
5359(operand 3) that specifies which elements of the source vector should be added.
5360
20f06221
DN
5361@cindex @code{sdot_prod@var{m}} instruction pattern
5362@item @samp{sdot_prod@var{m}}
5363@cindex @code{udot_prod@var{m}} instruction pattern
544aee0d 5364@itemx @samp{udot_prod@var{m}}
ff2ce160
MS
5365Compute the sum of the products of two signed/unsigned elements.
5366Operand 1 and operand 2 are of the same mode. Their product, which is of a
5367wider mode, is computed and added to operand 3. Operand 3 is of a mode equal or
20f06221 5368wider than the mode of the product. The result is placed in operand 0, which
ff2ce160 5369is of the same mode as operand 3.
20f06221 5370
79d652a5
CH
5371@cindex @code{ssad@var{m}} instruction pattern
5372@item @samp{ssad@var{m}}
5373@cindex @code{usad@var{m}} instruction pattern
5374@item @samp{usad@var{m}}
5375Compute the sum of absolute differences of two signed/unsigned elements.
5376Operand 1 and operand 2 are of the same mode. Their absolute difference, which
5377is of a wider mode, is computed and added to operand 3. Operand 3 is of a mode
5378equal or wider than the mode of the absolute difference. The result is placed
5379in operand 0, which is of the same mode as operand 3.
5380
97532d1a
MC
5381@cindex @code{widen_ssum@var{m3}} instruction pattern
5382@item @samp{widen_ssum@var{m3}}
5383@cindex @code{widen_usum@var{m3}} instruction pattern
5384@itemx @samp{widen_usum@var{m3}}
ff2ce160 5385Operands 0 and 2 are of the same mode, which is wider than the mode of
20f06221
DN
5386operand 1. Add operand 1 to operand 2 and place the widened result in
5387operand 0. (This is used express accumulation of elements into an accumulator
5388of a wider mode.)
5389
f1739b48
RS
5390@cindex @code{vec_shl_insert_@var{m}} instruction pattern
5391@item @samp{vec_shl_insert_@var{m}}
630ba2fd 5392Shift the elements in vector input operand 1 left one element (i.e.@:
f1739b48
RS
5393away from element 0) and fill the vacated element 0 with the scalar
5394in operand 2. Store the result in vector output operand 0. Operands
53950 and 1 have mode @var{m} and operand 2 has the mode appropriate for
5396one element of @var{m}.
5397
2e83f583
JJ
5398@cindex @code{vec_shl_@var{m}} instruction pattern
5399@item @samp{vec_shl_@var{m}}
5400Whole vector left shift in bits, i.e.@: away from element 0.
5401Operand 1 is a vector to be shifted.
5402Operand 2 is an integer shift amount in bits.
5403Operand 0 is where the resulting shifted vector is stored.
5404The output and input vectors should have the same modes.
5405
61abee65 5406@cindex @code{vec_shr_@var{m}} instruction pattern
e29dfbf0 5407@item @samp{vec_shr_@var{m}}
630ba2fd 5408Whole vector right shift in bits, i.e.@: towards element 0.
61abee65 5409Operand 1 is a vector to be shifted.
759915ca 5410Operand 2 is an integer shift amount in bits.
61abee65
DN
5411Operand 0 is where the resulting shifted vector is stored.
5412The output and input vectors should have the same modes.
5413
8115817b
UB
5414@cindex @code{vec_pack_trunc_@var{m}} instruction pattern
5415@item @samp{vec_pack_trunc_@var{m}}
5416Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5417are vectors of the same mode having N integral or floating point elements
0ee2ea09 5418of size S@. Operand 0 is the resulting vector in which 2*N elements of
8115817b
UB
5419size N/2 are concatenated after narrowing them down using truncation.
5420
4714942e
JJ
5421@cindex @code{vec_pack_sbool_trunc_@var{m}} instruction pattern
5422@item @samp{vec_pack_sbool_trunc_@var{m}}
5423Narrow and merge the elements of two vectors. Operands 1 and 2 are vectors
5424of the same type having N boolean elements. Operand 0 is the resulting
5425vector in which 2*N elements are concatenated. The last operand (operand 3)
5426is the number of elements in the output vector 2*N as a @code{CONST_INT}.
5427This instruction pattern is used when all the vector input and output
5428operands have the same scalar mode @var{m} and thus using
5429@code{vec_pack_trunc_@var{m}} would be ambiguous.
5430
89d67cca
DN
5431@cindex @code{vec_pack_ssat_@var{m}} instruction pattern
5432@cindex @code{vec_pack_usat_@var{m}} instruction pattern
8115817b
UB
5433@item @samp{vec_pack_ssat_@var{m}}, @samp{vec_pack_usat_@var{m}}
5434Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5435are vectors of the same mode having N integral elements of size S.
89d67cca 5436Operand 0 is the resulting vector in which the elements of the two input
8115817b
UB
5437vectors are concatenated after narrowing them down using signed/unsigned
5438saturating arithmetic.
89d67cca 5439
d9987fb4
UB
5440@cindex @code{vec_pack_sfix_trunc_@var{m}} instruction pattern
5441@cindex @code{vec_pack_ufix_trunc_@var{m}} instruction pattern
5442@item @samp{vec_pack_sfix_trunc_@var{m}}, @samp{vec_pack_ufix_trunc_@var{m}}
5443Narrow, convert to signed/unsigned integral type and merge the elements
5444of two vectors. Operands 1 and 2 are vectors of the same mode having N
0ee2ea09 5445floating point elements of size S@. Operand 0 is the resulting vector
d9987fb4
UB
5446in which 2*N elements of size N/2 are concatenated.
5447
1bda738b
JJ
5448@cindex @code{vec_packs_float_@var{m}} instruction pattern
5449@cindex @code{vec_packu_float_@var{m}} instruction pattern
5450@item @samp{vec_packs_float_@var{m}}, @samp{vec_packu_float_@var{m}}
5451Narrow, convert to floating point type and merge the elements
5452of two vectors. Operands 1 and 2 are vectors of the same mode having N
5453signed/unsigned integral elements of size S@. Operand 0 is the resulting vector
5454in which 2*N elements of size N/2 are concatenated.
5455
89d67cca
DN
5456@cindex @code{vec_unpacks_hi_@var{m}} instruction pattern
5457@cindex @code{vec_unpacks_lo_@var{m}} instruction pattern
8115817b
UB
5458@item @samp{vec_unpacks_hi_@var{m}}, @samp{vec_unpacks_lo_@var{m}}
5459Extract and widen (promote) the high/low part of a vector of signed
5460integral or floating point elements. The input vector (operand 1) has N
0ee2ea09 5461elements of size S@. Widen (promote) the high/low elements of the vector
8115817b
UB
5462using signed or floating point extension and place the resulting N/2
5463values of size 2*S in the output vector (operand 0).
5464
89d67cca
DN
5465@cindex @code{vec_unpacku_hi_@var{m}} instruction pattern
5466@cindex @code{vec_unpacku_lo_@var{m}} instruction pattern
8115817b
UB
5467@item @samp{vec_unpacku_hi_@var{m}}, @samp{vec_unpacku_lo_@var{m}}
5468Extract and widen (promote) the high/low part of a vector of unsigned
5469integral elements. The input vector (operand 1) has N elements of size S.
5470Widen (promote) the high/low elements of the vector using zero extension and
5471place the resulting N/2 values of size 2*S in the output vector (operand 0).
89d67cca 5472
4714942e
JJ
5473@cindex @code{vec_unpacks_sbool_hi_@var{m}} instruction pattern
5474@cindex @code{vec_unpacks_sbool_lo_@var{m}} instruction pattern
5475@item @samp{vec_unpacks_sbool_hi_@var{m}}, @samp{vec_unpacks_sbool_lo_@var{m}}
5476Extract the high/low part of a vector of boolean elements that have scalar
5477mode @var{m}. The input vector (operand 1) has N elements, the output
5478vector (operand 0) has N/2 elements. The last operand (operand 2) is the
5479number of elements of the input vector N as a @code{CONST_INT}. These
5480patterns are used if both the input and output vectors have the same scalar
5481mode @var{m} and thus using @code{vec_unpacks_hi_@var{m}} or
5482@code{vec_unpacks_lo_@var{m}} would be ambiguous.
5483
d9987fb4
UB
5484@cindex @code{vec_unpacks_float_hi_@var{m}} instruction pattern
5485@cindex @code{vec_unpacks_float_lo_@var{m}} instruction pattern
5486@cindex @code{vec_unpacku_float_hi_@var{m}} instruction pattern
5487@cindex @code{vec_unpacku_float_lo_@var{m}} instruction pattern
5488@item @samp{vec_unpacks_float_hi_@var{m}}, @samp{vec_unpacks_float_lo_@var{m}}
5489@itemx @samp{vec_unpacku_float_hi_@var{m}}, @samp{vec_unpacku_float_lo_@var{m}}
5490Extract, convert to floating point type and widen the high/low part of a
5491vector of signed/unsigned integral elements. The input vector (operand 1)
0ee2ea09 5492has N elements of size S@. Convert the high/low elements of the vector using
d9987fb4
UB
5493floating point conversion and place the resulting N/2 values of size 2*S in
5494the output vector (operand 0).
5495
1bda738b
JJ
5496@cindex @code{vec_unpack_sfix_trunc_hi_@var{m}} instruction pattern
5497@cindex @code{vec_unpack_sfix_trunc_lo_@var{m}} instruction pattern
5498@cindex @code{vec_unpack_ufix_trunc_hi_@var{m}} instruction pattern
5499@cindex @code{vec_unpack_ufix_trunc_lo_@var{m}} instruction pattern
5500@item @samp{vec_unpack_sfix_trunc_hi_@var{m}},
5501@itemx @samp{vec_unpack_sfix_trunc_lo_@var{m}}
5502@itemx @samp{vec_unpack_ufix_trunc_hi_@var{m}}
5503@itemx @samp{vec_unpack_ufix_trunc_lo_@var{m}}
5504Extract, convert to signed/unsigned integer type and widen the high/low part of a
5505vector of floating point elements. The input vector (operand 1)
5506has N elements of size S@. Convert the high/low elements of the vector
5507to integers and place the resulting N/2 values of size 2*S in
5508the output vector (operand 0).
5509
89d67cca 5510@cindex @code{vec_widen_umult_hi_@var{m}} instruction pattern
3f30a9a6 5511@cindex @code{vec_widen_umult_lo_@var{m}} instruction pattern
89d67cca
DN
5512@cindex @code{vec_widen_smult_hi_@var{m}} instruction pattern
5513@cindex @code{vec_widen_smult_lo_@var{m}} instruction pattern
3f30a9a6
RH
5514@cindex @code{vec_widen_umult_even_@var{m}} instruction pattern
5515@cindex @code{vec_widen_umult_odd_@var{m}} instruction pattern
5516@cindex @code{vec_widen_smult_even_@var{m}} instruction pattern
5517@cindex @code{vec_widen_smult_odd_@var{m}} instruction pattern
d9987fb4
UB
5518@item @samp{vec_widen_umult_hi_@var{m}}, @samp{vec_widen_umult_lo_@var{m}}
5519@itemx @samp{vec_widen_smult_hi_@var{m}}, @samp{vec_widen_smult_lo_@var{m}}
3f30a9a6
RH
5520@itemx @samp{vec_widen_umult_even_@var{m}}, @samp{vec_widen_umult_odd_@var{m}}
5521@itemx @samp{vec_widen_smult_even_@var{m}}, @samp{vec_widen_smult_odd_@var{m}}
8115817b 5522Signed/Unsigned widening multiplication. The two inputs (operands 1 and 2)
0ee2ea09 5523are vectors with N signed/unsigned elements of size S@. Multiply the high/low
3f30a9a6 5524or even/odd elements of the two vectors, and put the N/2 products of size 2*S
4a271b7e
BM
5525in the output vector (operand 0). A target shouldn't implement even/odd pattern
5526pair if it is less efficient than lo/hi one.
89d67cca 5527
36ba4aae
IR
5528@cindex @code{vec_widen_ushiftl_hi_@var{m}} instruction pattern
5529@cindex @code{vec_widen_ushiftl_lo_@var{m}} instruction pattern
5530@cindex @code{vec_widen_sshiftl_hi_@var{m}} instruction pattern
5531@cindex @code{vec_widen_sshiftl_lo_@var{m}} instruction pattern
5532@item @samp{vec_widen_ushiftl_hi_@var{m}}, @samp{vec_widen_ushiftl_lo_@var{m}}
5533@itemx @samp{vec_widen_sshiftl_hi_@var{m}}, @samp{vec_widen_sshiftl_lo_@var{m}}
5534Signed/Unsigned widening shift left. The first input (operand 1) is a vector
5535with N signed/unsigned elements of size S@. Operand 2 is a constant. Shift
5536the high/low elements of operand 1, and put the N/2 results of size 2*S in the
5537output vector (operand 0).
5538
03dda8e3
RK
5539@cindex @code{mulhisi3} instruction pattern
5540@item @samp{mulhisi3}
5541Multiply operands 1 and 2, which have mode @code{HImode}, and store
5542a @code{SImode} product in operand 0.
5543
5544@cindex @code{mulqihi3} instruction pattern
5545@cindex @code{mulsidi3} instruction pattern
5546@item @samp{mulqihi3}, @samp{mulsidi3}
5547Similar widening-multiplication instructions of other widths.
5548
5549@cindex @code{umulqihi3} instruction pattern
5550@cindex @code{umulhisi3} instruction pattern
5551@cindex @code{umulsidi3} instruction pattern
5552@item @samp{umulqihi3}, @samp{umulhisi3}, @samp{umulsidi3}
5553Similar widening-multiplication instructions that do unsigned
5554multiplication.
5555
8b44057d
BS
5556@cindex @code{usmulqihi3} instruction pattern
5557@cindex @code{usmulhisi3} instruction pattern
5558@cindex @code{usmulsidi3} instruction pattern
5559@item @samp{usmulqihi3}, @samp{usmulhisi3}, @samp{usmulsidi3}
5560Similar widening-multiplication instructions that interpret the first
5561operand as unsigned and the second operand as signed, then do a signed
5562multiplication.
5563
03dda8e3 5564@cindex @code{smul@var{m}3_highpart} instruction pattern
759c58af 5565@item @samp{smul@var{m}3_highpart}
03dda8e3
RK
5566Perform a signed multiplication of operands 1 and 2, which have mode
5567@var{m}, and store the most significant half of the product in operand 0.
5568The least significant half of the product is discarded.
5569
5570@cindex @code{umul@var{m}3_highpart} instruction pattern
5571@item @samp{umul@var{m}3_highpart}
5572Similar, but the multiplication is unsigned.
5573
7f9844ca
RS
5574@cindex @code{madd@var{m}@var{n}4} instruction pattern
5575@item @samp{madd@var{m}@var{n}4}
5576Multiply operands 1 and 2, sign-extend them to mode @var{n}, add
5577operand 3, and store the result in operand 0. Operands 1 and 2
5578have mode @var{m} and operands 0 and 3 have mode @var{n}.
0f996086 5579Both modes must be integer or fixed-point modes and @var{n} must be twice
7f9844ca
RS
5580the size of @var{m}.
5581
5582In other words, @code{madd@var{m}@var{n}4} is like
5583@code{mul@var{m}@var{n}3} except that it also adds operand 3.
5584
5585These instructions are not allowed to @code{FAIL}.
5586
5587@cindex @code{umadd@var{m}@var{n}4} instruction pattern
5588@item @samp{umadd@var{m}@var{n}4}
5589Like @code{madd@var{m}@var{n}4}, but zero-extend the multiplication
5590operands instead of sign-extending them.
5591
0f996086
CF
5592@cindex @code{ssmadd@var{m}@var{n}4} instruction pattern
5593@item @samp{ssmadd@var{m}@var{n}4}
5594Like @code{madd@var{m}@var{n}4}, but all involved operations must be
5595signed-saturating.
5596
5597@cindex @code{usmadd@var{m}@var{n}4} instruction pattern
5598@item @samp{usmadd@var{m}@var{n}4}
5599Like @code{umadd@var{m}@var{n}4}, but all involved operations must be
5600unsigned-saturating.
5601
14661f36
CF
5602@cindex @code{msub@var{m}@var{n}4} instruction pattern
5603@item @samp{msub@var{m}@var{n}4}
5604Multiply operands 1 and 2, sign-extend them to mode @var{n}, subtract the
5605result from operand 3, and store the result in operand 0. Operands 1 and 2
5606have mode @var{m} and operands 0 and 3 have mode @var{n}.
0f996086 5607Both modes must be integer or fixed-point modes and @var{n} must be twice
14661f36
CF
5608the size of @var{m}.
5609
5610In other words, @code{msub@var{m}@var{n}4} is like
5611@code{mul@var{m}@var{n}3} except that it also subtracts the result
5612from operand 3.
5613
5614These instructions are not allowed to @code{FAIL}.
5615
5616@cindex @code{umsub@var{m}@var{n}4} instruction pattern
5617@item @samp{umsub@var{m}@var{n}4}
5618Like @code{msub@var{m}@var{n}4}, but zero-extend the multiplication
5619operands instead of sign-extending them.
5620
0f996086
CF
5621@cindex @code{ssmsub@var{m}@var{n}4} instruction pattern
5622@item @samp{ssmsub@var{m}@var{n}4}
5623Like @code{msub@var{m}@var{n}4}, but all involved operations must be
5624signed-saturating.
5625
5626@cindex @code{usmsub@var{m}@var{n}4} instruction pattern
5627@item @samp{usmsub@var{m}@var{n}4}
5628Like @code{umsub@var{m}@var{n}4}, but all involved operations must be
5629unsigned-saturating.
5630
03dda8e3
RK
5631@cindex @code{divmod@var{m}4} instruction pattern
5632@item @samp{divmod@var{m}4}
5633Signed division that produces both a quotient and a remainder.
5634Operand 1 is divided by operand 2 to produce a quotient stored
5635in operand 0 and a remainder stored in operand 3.
5636
5637For machines with an instruction that produces both a quotient and a
5638remainder, provide a pattern for @samp{divmod@var{m}4} but do not
5639provide patterns for @samp{div@var{m}3} and @samp{mod@var{m}3}. This
5640allows optimization in the relatively common case when both the quotient
5641and remainder are computed.
5642
5643If an instruction that just produces a quotient or just a remainder
5644exists and is more efficient than the instruction that produces both,
5645write the output routine of @samp{divmod@var{m}4} to call
5646@code{find_reg_note} and look for a @code{REG_UNUSED} note on the
5647quotient or remainder and generate the appropriate instruction.
5648
5649@cindex @code{udivmod@var{m}4} instruction pattern
5650@item @samp{udivmod@var{m}4}
5651Similar, but does unsigned division.
5652
273a2526 5653@anchor{shift patterns}
03dda8e3 5654@cindex @code{ashl@var{m}3} instruction pattern
0f996086
CF
5655@cindex @code{ssashl@var{m}3} instruction pattern
5656@cindex @code{usashl@var{m}3} instruction pattern
5657@item @samp{ashl@var{m}3}, @samp{ssashl@var{m}3}, @samp{usashl@var{m}3}
03dda8e3
RK
5658Arithmetic-shift operand 1 left by a number of bits specified by operand
56592, and store the result in operand 0. Here @var{m} is the mode of
5660operand 0 and operand 1; operand 2's mode is specified by the
5661instruction pattern, and the compiler will convert the operand to that
78250306
JJ
5662mode before generating the instruction. The shift or rotate expander
5663or instruction pattern should explicitly specify the mode of the operand 2,
5664it should never be @code{VOIDmode}. The meaning of out-of-range shift
273a2526 5665counts can optionally be specified by @code{TARGET_SHIFT_TRUNCATION_MASK}.
71d46ca5 5666@xref{TARGET_SHIFT_TRUNCATION_MASK}. Operand 2 is always a scalar type.
03dda8e3
RK
5667
5668@cindex @code{ashr@var{m}3} instruction pattern
5669@cindex @code{lshr@var{m}3} instruction pattern
5670@cindex @code{rotl@var{m}3} instruction pattern
5671@cindex @code{rotr@var{m}3} instruction pattern
5672@item @samp{ashr@var{m}3}, @samp{lshr@var{m}3}, @samp{rotl@var{m}3}, @samp{rotr@var{m}3}
5673Other shift and rotate instructions, analogous to the
71d46ca5
MM
5674@code{ashl@var{m}3} instructions. Operand 2 is always a scalar type.
5675
5676@cindex @code{vashl@var{m}3} instruction pattern
5677@cindex @code{vashr@var{m}3} instruction pattern
5678@cindex @code{vlshr@var{m}3} instruction pattern
5679@cindex @code{vrotl@var{m}3} instruction pattern
5680@cindex @code{vrotr@var{m}3} instruction pattern
5681@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}
5682Vector shift and rotate instructions that take vectors as operand 2
5683instead of a scalar type.
03dda8e3 5684
0267732b
RS
5685@cindex @code{avg@var{m}3_floor} instruction pattern
5686@cindex @code{uavg@var{m}3_floor} instruction pattern
5687@item @samp{avg@var{m}3_floor}
5688@itemx @samp{uavg@var{m}3_floor}
5689Signed and unsigned average instructions. These instructions add
5690operands 1 and 2 without truncation, divide the result by 2,
5691round towards -Inf, and store the result in operand 0. This is
5692equivalent to the C code:
5693@smallexample
5694narrow op0, op1, op2;
5695@dots{}
5696op0 = (narrow) (((wide) op1 + (wide) op2) >> 1);
5697@end smallexample
5698where the sign of @samp{narrow} determines whether this is a signed
5699or unsigned operation.
5700
5701@cindex @code{avg@var{m}3_ceil} instruction pattern
5702@cindex @code{uavg@var{m}3_ceil} instruction pattern
5703@item @samp{avg@var{m}3_ceil}
5704@itemx @samp{uavg@var{m}3_ceil}
5705Like @samp{avg@var{m}3_floor} and @samp{uavg@var{m}3_floor}, but round
5706towards +Inf. This is equivalent to the C code:
5707@smallexample
5708narrow op0, op1, op2;
5709@dots{}
5710op0 = (narrow) (((wide) op1 + (wide) op2 + 1) >> 1);
5711@end smallexample
5712
ac868f29
EB
5713@cindex @code{bswap@var{m}2} instruction pattern
5714@item @samp{bswap@var{m}2}
5715Reverse the order of bytes of operand 1 and store the result in operand 0.
5716
03dda8e3 5717@cindex @code{neg@var{m}2} instruction pattern
0f996086
CF
5718@cindex @code{ssneg@var{m}2} instruction pattern
5719@cindex @code{usneg@var{m}2} instruction pattern
5720@item @samp{neg@var{m}2}, @samp{ssneg@var{m}2}, @samp{usneg@var{m}2}
03dda8e3
RK
5721Negate operand 1 and store the result in operand 0.
5722
481efdd9
EB
5723@cindex @code{negv@var{m}3} instruction pattern
5724@item @samp{negv@var{m}3}
5725Like @code{neg@var{m}2} but takes a @code{code_label} as operand 2 and
5726emits code to jump to it if signed overflow occurs during the negation.
5727
03dda8e3
RK
5728@cindex @code{abs@var{m}2} instruction pattern
5729@item @samp{abs@var{m}2}
5730Store the absolute value of operand 1 into operand 0.
5731
5732@cindex @code{sqrt@var{m}2} instruction pattern
5733@item @samp{sqrt@var{m}2}
a54a5997
RS
5734Store the square root of operand 1 into operand 0. Both operands have
5735mode @var{m}, which is a scalar or vector floating-point mode.
03dda8e3 5736
a54a5997 5737This pattern is not allowed to @code{FAIL}.
e7b489c8 5738
ee62a5a6
RS
5739@cindex @code{rsqrt@var{m}2} instruction pattern
5740@item @samp{rsqrt@var{m}2}
5741Store the reciprocal of the square root of operand 1 into operand 0.
a54a5997
RS
5742Both operands have mode @var{m}, which is a scalar or vector
5743floating-point mode.
5744
ee62a5a6
RS
5745On most architectures this pattern is only approximate, so either
5746its C condition or the @code{TARGET_OPTAB_SUPPORTED_P} hook should
5747check for the appropriate math flags. (Using the C condition is
5748more direct, but using @code{TARGET_OPTAB_SUPPORTED_P} can be useful
5749if a target-specific built-in also uses the @samp{rsqrt@var{m}2}
5750pattern.)
5751
5752This pattern is not allowed to @code{FAIL}.
5753
17b98269
UB
5754@cindex @code{fmod@var{m}3} instruction pattern
5755@item @samp{fmod@var{m}3}
5756Store the remainder of dividing operand 1 by operand 2 into
a54a5997
RS
5757operand 0, rounded towards zero to an integer. All operands have
5758mode @var{m}, which is a scalar or vector floating-point mode.
17b98269 5759
a54a5997 5760This pattern is not allowed to @code{FAIL}.
17b98269
UB
5761
5762@cindex @code{remainder@var{m}3} instruction pattern
5763@item @samp{remainder@var{m}3}
5764Store the remainder of dividing operand 1 by operand 2 into
a54a5997
RS
5765operand 0, rounded to the nearest integer. All operands have
5766mode @var{m}, which is a scalar or vector floating-point mode.
5767
5768This pattern is not allowed to @code{FAIL}.
5769
5770@cindex @code{scalb@var{m}3} instruction pattern
5771@item @samp{scalb@var{m}3}
5772Raise @code{FLT_RADIX} to the power of operand 2, multiply it by
5773operand 1, and store the result in operand 0. All operands have
5774mode @var{m}, which is a scalar or vector floating-point mode.
17b98269 5775
a54a5997
RS
5776This pattern is not allowed to @code{FAIL}.
5777
5778@cindex @code{ldexp@var{m}3} instruction pattern
5779@item @samp{ldexp@var{m}3}
5780Raise 2 to the power of operand 2, multiply it by operand 1, and store
5781the result in operand 0. Operands 0 and 1 have mode @var{m}, which is
5782a scalar or vector floating-point mode. Operand 2's mode has
5783the same number of elements as @var{m} and each element is wide
5784enough to store an @code{int}. The integers are signed.
5785
5786This pattern is not allowed to @code{FAIL}.
17b98269 5787
e7b489c8
RS
5788@cindex @code{cos@var{m}2} instruction pattern
5789@item @samp{cos@var{m}2}
a54a5997
RS
5790Store the cosine of operand 1 into operand 0. Both operands have
5791mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5792
a54a5997 5793This pattern is not allowed to @code{FAIL}.
e7b489c8
RS
5794
5795@cindex @code{sin@var{m}2} instruction pattern
5796@item @samp{sin@var{m}2}
a54a5997
RS
5797Store the sine of operand 1 into operand 0. Both operands have
5798mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5799
a54a5997 5800This pattern is not allowed to @code{FAIL}.
e7b489c8 5801
6d1f6aff
OE
5802@cindex @code{sincos@var{m}3} instruction pattern
5803@item @samp{sincos@var{m}3}
6ba9e401 5804Store the cosine of operand 2 into operand 0 and the sine of
a54a5997
RS
5805operand 2 into operand 1. All operands have mode @var{m},
5806which is a scalar or vector floating-point mode.
6d1f6aff 5807
6d1f6aff
OE
5808Targets that can calculate the sine and cosine simultaneously can
5809implement this pattern as opposed to implementing individual
5810@code{sin@var{m}2} and @code{cos@var{m}2} patterns. The @code{sin}
5811and @code{cos} built-in functions will then be expanded to the
5812@code{sincos@var{m}3} pattern, with one of the output values
5813left unused.
5814
a54a5997
RS
5815@cindex @code{tan@var{m}2} instruction pattern
5816@item @samp{tan@var{m}2}
5817Store the tangent of operand 1 into operand 0. Both operands have
5818mode @var{m}, which is a scalar or vector floating-point mode.
5819
5820This pattern is not allowed to @code{FAIL}.
5821
5822@cindex @code{asin@var{m}2} instruction pattern
5823@item @samp{asin@var{m}2}
5824Store the arc sine of operand 1 into operand 0. Both operands have
5825mode @var{m}, which is a scalar or vector floating-point mode.
5826
5827This pattern is not allowed to @code{FAIL}.
5828
5829@cindex @code{acos@var{m}2} instruction pattern
5830@item @samp{acos@var{m}2}
5831Store the arc cosine of operand 1 into operand 0. Both operands have
5832mode @var{m}, which is a scalar or vector floating-point mode.
5833
5834This pattern is not allowed to @code{FAIL}.
5835
5836@cindex @code{atan@var{m}2} instruction pattern
5837@item @samp{atan@var{m}2}
5838Store the arc tangent of operand 1 into operand 0. Both operands have
5839mode @var{m}, which is a scalar or vector floating-point mode.
5840
5841This pattern is not allowed to @code{FAIL}.
5842
e7b489c8
RS
5843@cindex @code{exp@var{m}2} instruction pattern
5844@item @samp{exp@var{m}2}
a54a5997
RS
5845Raise e (the base of natural logarithms) to the power of operand 1
5846and store the result in operand 0. Both operands have mode @var{m},
5847which is a scalar or vector floating-point mode.
5848
5849This pattern is not allowed to @code{FAIL}.
5850
5851@cindex @code{expm1@var{m}2} instruction pattern
5852@item @samp{expm1@var{m}2}
5853Raise e (the base of natural logarithms) to the power of operand 1,
5854subtract 1, and store the result in operand 0. Both operands have
5855mode @var{m}, which is a scalar or vector floating-point mode.
5856
5857For inputs close to zero, the pattern is expected to be more
5858accurate than a separate @code{exp@var{m}2} and @code{sub@var{m}3}
5859would be.
5860
5861This pattern is not allowed to @code{FAIL}.
5862
5863@cindex @code{exp10@var{m}2} instruction pattern
5864@item @samp{exp10@var{m}2}
5865Raise 10 to the power of operand 1 and store the result in operand 0.
5866Both operands have mode @var{m}, which is a scalar or vector
5867floating-point mode.
5868
5869This pattern is not allowed to @code{FAIL}.
5870
5871@cindex @code{exp2@var{m}2} instruction pattern
5872@item @samp{exp2@var{m}2}
5873Raise 2 to the power of operand 1 and store the result in operand 0.
5874Both operands have mode @var{m}, which is a scalar or vector
5875floating-point mode.
e7b489c8 5876
a54a5997 5877This pattern is not allowed to @code{FAIL}.
e7b489c8
RS
5878
5879@cindex @code{log@var{m}2} instruction pattern
5880@item @samp{log@var{m}2}
a54a5997
RS
5881Store the natural logarithm of operand 1 into operand 0. Both operands
5882have mode @var{m}, which is a scalar or vector floating-point mode.
5883
5884This pattern is not allowed to @code{FAIL}.
5885
5886@cindex @code{log1p@var{m}2} instruction pattern
5887@item @samp{log1p@var{m}2}
5888Add 1 to operand 1, compute the natural logarithm, and store
5889the result in operand 0. Both operands have mode @var{m}, which is
5890a scalar or vector floating-point mode.
5891
5892For inputs close to zero, the pattern is expected to be more
5893accurate than a separate @code{add@var{m}3} and @code{log@var{m}2}
5894would be.
5895
5896This pattern is not allowed to @code{FAIL}.
5897
5898@cindex @code{log10@var{m}2} instruction pattern
5899@item @samp{log10@var{m}2}
5900Store the base-10 logarithm of operand 1 into operand 0. Both operands
5901have mode @var{m}, which is a scalar or vector floating-point mode.
5902
5903This pattern is not allowed to @code{FAIL}.
5904
5905@cindex @code{log2@var{m}2} instruction pattern
5906@item @samp{log2@var{m}2}
5907Store the base-2 logarithm of operand 1 into operand 0. Both operands
5908have mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5909
a54a5997
RS
5910This pattern is not allowed to @code{FAIL}.
5911
5912@cindex @code{logb@var{m}2} instruction pattern
5913@item @samp{logb@var{m}2}
5914Store the base-@code{FLT_RADIX} logarithm of operand 1 into operand 0.
5915Both operands have mode @var{m}, which is a scalar or vector
5916floating-point mode.
5917
5918This pattern is not allowed to @code{FAIL}.
5919
5920@cindex @code{significand@var{m}2} instruction pattern
5921@item @samp{significand@var{m}2}
5922Store the significand of floating-point operand 1 in operand 0.
5923Both operands have mode @var{m}, which is a scalar or vector
5924floating-point mode.
5925
5926This pattern is not allowed to @code{FAIL}.
03dda8e3 5927
b5e01d4b
RS
5928@cindex @code{pow@var{m}3} instruction pattern
5929@item @samp{pow@var{m}3}
5930Store the value of operand 1 raised to the exponent operand 2
a54a5997
RS
5931into operand 0. All operands have mode @var{m}, which is a scalar
5932or vector floating-point mode.
b5e01d4b 5933
a54a5997 5934This pattern is not allowed to @code{FAIL}.
b5e01d4b
RS
5935
5936@cindex @code{atan2@var{m}3} instruction pattern
5937@item @samp{atan2@var{m}3}
5938Store the arc tangent (inverse tangent) of operand 1 divided by
5939operand 2 into operand 0, using the signs of both arguments to
a54a5997
RS
5940determine the quadrant of the result. All operands have mode
5941@var{m}, which is a scalar or vector floating-point mode.
b5e01d4b 5942
a54a5997 5943This pattern is not allowed to @code{FAIL}.
b5e01d4b 5944
4977bab6
ZW
5945@cindex @code{floor@var{m}2} instruction pattern
5946@item @samp{floor@var{m}2}
a54a5997
RS
5947Store the largest integral value not greater than operand 1 in operand 0.
5948Both operands have mode @var{m}, which is a scalar or vector
0d2f700f
JM
5949floating-point mode. If @option{-ffp-int-builtin-inexact} is in
5950effect, the ``inexact'' exception may be raised for noninteger
5951operands; otherwise, it may not.
4977bab6 5952
a54a5997 5953This pattern is not allowed to @code{FAIL}.
4977bab6 5954
10553f10
UB
5955@cindex @code{btrunc@var{m}2} instruction pattern
5956@item @samp{btrunc@var{m}2}
a54a5997
RS
5957Round operand 1 to an integer, towards zero, and store the result in
5958operand 0. Both operands have mode @var{m}, which is a scalar or
0d2f700f
JM
5959vector floating-point mode. If @option{-ffp-int-builtin-inexact} is
5960in effect, 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
ZW
5964
5965@cindex @code{round@var{m}2} instruction pattern
5966@item @samp{round@var{m}2}
a54a5997
RS
5967Round operand 1 to the nearest integer, rounding away from zero in the
5968event of a tie, and store the result in operand 0. Both operands have
0d2f700f
JM
5969mode @var{m}, which is a scalar or vector floating-point mode. If
5970@option{-ffp-int-builtin-inexact} is in effect, the ``inexact''
5971exception may be raised for noninteger operands; otherwise, it may
5972not.
4977bab6 5973
a54a5997 5974This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5975
5976@cindex @code{ceil@var{m}2} instruction pattern
5977@item @samp{ceil@var{m}2}
a54a5997
RS
5978Store the smallest integral value not less than operand 1 in operand 0.
5979Both operands have mode @var{m}, which is a scalar or vector
0d2f700f
JM
5980floating-point mode. If @option{-ffp-int-builtin-inexact} is in
5981effect, the ``inexact'' exception may be raised for noninteger
5982operands; otherwise, it may not.
4977bab6 5983
a54a5997 5984This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5985
5986@cindex @code{nearbyint@var{m}2} instruction pattern
5987@item @samp{nearbyint@var{m}2}
a54a5997
RS
5988Round operand 1 to an integer, using the current rounding mode, and
5989store the result in operand 0. Do not raise an inexact condition when
5990the result is different from the argument. Both operands have mode
5991@var{m}, which is a scalar or vector floating-point mode.
4977bab6 5992
a54a5997 5993This pattern is not allowed to @code{FAIL}.
4977bab6 5994
10553f10
UB
5995@cindex @code{rint@var{m}2} instruction pattern
5996@item @samp{rint@var{m}2}
a54a5997
RS
5997Round operand 1 to an integer, using the current rounding mode, and
5998store the result in operand 0. Raise an inexact condition when
5999the result is different from the argument. Both operands have mode
6000@var{m}, which is a scalar or vector floating-point mode.
10553f10 6001
a54a5997 6002This pattern is not allowed to @code{FAIL}.
10553f10 6003
bb7f0423
RG
6004@cindex @code{lrint@var{m}@var{n}2}
6005@item @samp{lrint@var{m}@var{n}2}
6006Convert operand 1 (valid for floating point mode @var{m}) to fixed
6007point mode @var{n} as a signed number according to the current
6008rounding mode and store in operand 0 (which has mode @var{n}).
6009
4d81bf84 6010@cindex @code{lround@var{m}@var{n}2}
e0d4c0b3 6011@item @samp{lround@var{m}@var{n}2}
4d81bf84
RG
6012Convert operand 1 (valid for floating point mode @var{m}) to fixed
6013point mode @var{n} as a signed number rounding to nearest and away
6014from zero and store in operand 0 (which has mode @var{n}).
6015
c3a4177f 6016@cindex @code{lfloor@var{m}@var{n}2}
e0d4c0b3 6017@item @samp{lfloor@var{m}@var{n}2}
c3a4177f
RG
6018Convert operand 1 (valid for floating point mode @var{m}) to fixed
6019point mode @var{n} as a signed number rounding down and store in
6020operand 0 (which has mode @var{n}).
6021
6022@cindex @code{lceil@var{m}@var{n}2}
e0d4c0b3 6023@item @samp{lceil@var{m}@var{n}2}
c3a4177f
RG
6024Convert operand 1 (valid for floating point mode @var{m}) to fixed
6025point mode @var{n} as a signed number rounding up and store in
6026operand 0 (which has mode @var{n}).
6027
d35a40fc
DE
6028@cindex @code{copysign@var{m}3} instruction pattern
6029@item @samp{copysign@var{m}3}
6030Store a value with the magnitude of operand 1 and the sign of operand
a54a5997
RS
60312 into operand 0. All operands have mode @var{m}, which is a scalar or
6032vector floating-point mode.
d35a40fc 6033
a54a5997 6034This pattern is not allowed to @code{FAIL}.
d35a40fc 6035
cb369975
TC
6036@cindex @code{xorsign@var{m}3} instruction pattern
6037@item @samp{xorsign@var{m}3}
6038Equivalent to @samp{op0 = op1 * copysign (1.0, op2)}: store a value with
6039the magnitude of operand 1 and the sign of operand 2 into operand 0.
6040All operands have mode @var{m}, which is a scalar or vector
6041floating-point mode.
6042
6043This pattern is not allowed to @code{FAIL}.
6044
03dda8e3
RK
6045@cindex @code{ffs@var{m}2} instruction pattern
6046@item @samp{ffs@var{m}2}
6047Store into operand 0 one plus the index of the least significant 1-bit
a54a5997 6048of operand 1. If operand 1 is zero, store zero.
03dda8e3 6049
a54a5997
RS
6050@var{m} is either a scalar or vector integer mode. When it is a scalar,
6051operand 1 has mode @var{m} but operand 0 can have whatever scalar
6052integer mode is suitable for the target. The compiler will insert
6053conversion instructions as necessary (typically to convert the result
6054to the same width as @code{int}). When @var{m} is a vector, both
6055operands must have mode @var{m}.
6056
6057This pattern is not allowed to @code{FAIL}.
03dda8e3 6058
e7a45277
KT
6059@cindex @code{clrsb@var{m}2} instruction pattern
6060@item @samp{clrsb@var{m}2}
6061Count leading redundant sign bits.
6062Store into operand 0 the number of redundant sign bits in operand 1, starting
6063at the most significant bit position.
6064A redundant sign bit is defined as any sign bit after the first. As such,
6065this count will be one less than the count of leading sign bits.
6066
a54a5997
RS
6067@var{m} is either a scalar or vector integer mode. When it is a scalar,
6068operand 1 has mode @var{m} but operand 0 can have whatever scalar
6069integer mode is suitable for the target. The compiler will insert
6070conversion instructions as necessary (typically to convert the result
6071to the same width as @code{int}). When @var{m} is a vector, both
6072operands must have mode @var{m}.
6073
6074This pattern is not allowed to @code{FAIL}.
6075
2928cd7a
RH
6076@cindex @code{clz@var{m}2} instruction pattern
6077@item @samp{clz@var{m}2}
e7a45277
KT
6078Store into operand 0 the number of leading 0-bits in operand 1, starting
6079at the most significant bit position. If operand 1 is 0, the
2a6627c2
JN
6080@code{CLZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
6081the result is undefined or has a useful value.
a54a5997
RS
6082
6083@var{m} is either a scalar or vector integer mode. When it is a scalar,
6084operand 1 has mode @var{m} but operand 0 can have whatever scalar
6085integer mode is suitable for the target. The compiler will insert
6086conversion instructions as necessary (typically to convert the result
6087to the same width as @code{int}). When @var{m} is a vector, both
6088operands must have mode @var{m}.
6089
6090This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6091
6092@cindex @code{ctz@var{m}2} instruction pattern
6093@item @samp{ctz@var{m}2}
e7a45277
KT
6094Store into operand 0 the number of trailing 0-bits in operand 1, starting
6095at the least significant bit position. If operand 1 is 0, the
2a6627c2
JN
6096@code{CTZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
6097the result is undefined or has a useful value.
a54a5997
RS
6098
6099@var{m} is either a scalar or vector integer mode. When it is a scalar,
6100operand 1 has mode @var{m} but operand 0 can have whatever scalar
6101integer mode is suitable for the target. The compiler will insert
6102conversion instructions as necessary (typically to convert the result
6103to the same width as @code{int}). When @var{m} is a vector, both
6104operands must have mode @var{m}.
6105
6106This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6107
6108@cindex @code{popcount@var{m}2} instruction pattern
6109@item @samp{popcount@var{m}2}
a54a5997
RS
6110Store into operand 0 the number of 1-bits in operand 1.
6111
6112@var{m} is either a scalar or vector integer mode. When it is a scalar,
6113operand 1 has mode @var{m} but operand 0 can have whatever scalar
6114integer mode is suitable for the target. The compiler will insert
6115conversion instructions as necessary (typically to convert the result
6116to the same width as @code{int}). When @var{m} is a vector, both
6117operands must have mode @var{m}.
6118
6119This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6120
6121@cindex @code{parity@var{m}2} instruction pattern
6122@item @samp{parity@var{m}2}
e7a45277 6123Store into operand 0 the parity of operand 1, i.e.@: the number of 1-bits
a54a5997
RS
6124in operand 1 modulo 2.
6125
6126@var{m} is either a scalar or vector integer mode. When it is a scalar,
6127operand 1 has mode @var{m} but operand 0 can have whatever scalar
6128integer mode is suitable for the target. The compiler will insert
6129conversion instructions as necessary (typically to convert the result
6130to the same width as @code{int}). When @var{m} is a vector, both
6131operands must have mode @var{m}.
6132
6133This pattern is not allowed to @code{FAIL}.
2928cd7a 6134
03dda8e3
RK
6135@cindex @code{one_cmpl@var{m}2} instruction pattern
6136@item @samp{one_cmpl@var{m}2}
6137Store the bitwise-complement of operand 1 into operand 0.
6138
76715c32
AS
6139@cindex @code{cpymem@var{m}} instruction pattern
6140@item @samp{cpymem@var{m}}
6141Block copy instruction. The destination and source blocks of memory
beed8fc0
AO
6142are the first two operands, and both are @code{mem:BLK}s with an
6143address in mode @code{Pmode}.
e5e809f4 6144
76715c32 6145The number of bytes to copy is the third operand, in mode @var{m}.
5689294c 6146Usually, you specify @code{Pmode} for @var{m}. However, if you can
e5e809f4 6147generate better code knowing the range of valid lengths is smaller than
5689294c
L
6148those representable in a full Pmode pointer, you should provide
6149a pattern with a
e5e809f4
JL
6150mode corresponding to the range of values you can handle efficiently
6151(e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
5689294c 6152that appear negative) and also a pattern with @code{Pmode}.
03dda8e3
RK
6153
6154The fourth operand is the known shared alignment of the source and
6155destination, in the form of a @code{const_int} rtx. Thus, if the
6156compiler knows that both source and destination are word-aligned,
6157it may provide the value 4 for this operand.
6158
079a182e
JH
6159Optional operands 5 and 6 specify expected alignment and size of block
6160respectively. The expected alignment differs from alignment in operand 4
6161in a way that the blocks are not required to be aligned according to it in
9946ca2d
RA
6162all cases. This expected alignment is also in bytes, just like operand 4.
6163Expected size, when unknown, is set to @code{(const_int -1)}.
079a182e 6164
76715c32 6165Descriptions of multiple @code{cpymem@var{m}} patterns can only be
4693911f 6166beneficial if the patterns for smaller modes have fewer restrictions
8c01d9b6 6167on their first, second and fourth operands. Note that the mode @var{m}
76715c32
AS
6168in @code{cpymem@var{m}} does not impose any restriction on the mode of
6169individually copied data units in the block.
8c01d9b6 6170
76715c32
AS
6171The @code{cpymem@var{m}} patterns need not give special consideration
6172to the possibility that the source and destination strings might
6173overlap. These patterns are used to do inline expansion of
6174@code{__builtin_memcpy}.
03dda8e3 6175
02e3025e
AS
6176@cindex @code{movmem@var{m}} instruction pattern
6177@item @samp{movmem@var{m}}
6178Block move instruction. The destination and source blocks of memory
6179are the first two operands, and both are @code{mem:BLK}s with an
6180address in mode @code{Pmode}.
6181
6182The number of bytes to copy is the third operand, in mode @var{m}.
6183Usually, you specify @code{Pmode} for @var{m}. However, if you can
6184generate better code knowing the range of valid lengths is smaller than
6185those representable in a full Pmode pointer, you should provide
6186a pattern with a
6187mode corresponding to the range of values you can handle efficiently
6188(e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
6189that appear negative) and also a pattern with @code{Pmode}.
6190
6191The fourth operand is the known shared alignment of the source and
6192destination, in the form of a @code{const_int} rtx. Thus, if the
6193compiler knows that both source and destination are word-aligned,
6194it may provide the value 4 for this operand.
6195
6196Optional operands 5 and 6 specify expected alignment and size of block
6197respectively. The expected alignment differs from alignment in operand 4
6198in a way that the blocks are not required to be aligned according to it in
6199all cases. This expected alignment is also in bytes, just like operand 4.
6200Expected size, when unknown, is set to @code{(const_int -1)}.
6201
6202Descriptions of multiple @code{movmem@var{m}} patterns can only be
6203beneficial if the patterns for smaller modes have fewer restrictions
6204on their first, second and fourth operands. Note that the mode @var{m}
6205in @code{movmem@var{m}} does not impose any restriction on the mode of
6206individually copied data units in the block.
6207
6208The @code{movmem@var{m}} patterns must correctly handle the case where
6209the source and destination strings overlap. These patterns are used to
6210do inline expansion of @code{__builtin_memmove}.
6211
beed8fc0
AO
6212@cindex @code{movstr} instruction pattern
6213@item @samp{movstr}
6214String copy instruction, with @code{stpcpy} semantics. Operand 0 is
6215an output operand in mode @code{Pmode}. The addresses of the
6216destination and source strings are operands 1 and 2, and both are
6217@code{mem:BLK}s with addresses in mode @code{Pmode}. The execution of
6218the expansion of this pattern should store in operand 0 the address in
6219which the @code{NUL} terminator was stored in the destination string.
6220
3918b108
JH
6221This patern has also several optional operands that are same as in
6222@code{setmem}.
6223
57e84f18
AS
6224@cindex @code{setmem@var{m}} instruction pattern
6225@item @samp{setmem@var{m}}
6226Block set instruction. The destination string is the first operand,
beed8fc0 6227given as a @code{mem:BLK} whose address is in mode @code{Pmode}. The
57e84f18
AS
6228number of bytes to set is the second operand, in mode @var{m}. The value to
6229initialize the memory with is the third operand. Targets that only support the
6230clearing of memory should reject any value that is not the constant 0. See
76715c32 6231@samp{cpymem@var{m}} for a discussion of the choice of mode.
03dda8e3 6232
57e84f18 6233The fourth operand is the known alignment of the destination, in the form
03dda8e3
RK
6234of a @code{const_int} rtx. Thus, if the compiler knows that the
6235destination is word-aligned, it may provide the value 4 for this
6236operand.
6237
079a182e
JH
6238Optional operands 5 and 6 specify expected alignment and size of block
6239respectively. The expected alignment differs from alignment in operand 4
6240in a way that the blocks are not required to be aligned according to it in
9946ca2d
RA
6241all cases. This expected alignment is also in bytes, just like operand 4.
6242Expected size, when unknown, is set to @code{(const_int -1)}.
3918b108 6243Operand 7 is the minimal size of the block and operand 8 is the
67914693
SL
6244maximal size of the block (NULL if it cannot be represented as CONST_INT).
6245Operand 9 is the probable maximal size (i.e.@: we cannot rely on it for
630ba2fd
SB
6246correctness, but it can be used for choosing proper code sequence for a
6247given size).
079a182e 6248
76715c32 6249The use for multiple @code{setmem@var{m}} is as for @code{cpymem@var{m}}.
8c01d9b6 6250
40c1d5f8
AS
6251@cindex @code{cmpstrn@var{m}} instruction pattern
6252@item @samp{cmpstrn@var{m}}
358b8f01 6253String compare instruction, with five operands. Operand 0 is the output;
03dda8e3 6254it has mode @var{m}. The remaining four operands are like the operands
76715c32 6255of @samp{cpymem@var{m}}. The two memory blocks specified are compared
5cc2f4f3
KG
6256byte by byte in lexicographic order starting at the beginning of each
6257string. The instruction is not allowed to prefetch more than one byte
6258at a time since either string may end in the first byte and reading past
6259that may access an invalid page or segment and cause a fault. The
9b0f6f5e
NC
6260comparison terminates early if the fetched bytes are different or if
6261they are equal to zero. The effect of the instruction is to store a
6262value in operand 0 whose sign indicates the result of the comparison.
03dda8e3 6263
40c1d5f8
AS
6264@cindex @code{cmpstr@var{m}} instruction pattern
6265@item @samp{cmpstr@var{m}}
6266String compare instruction, without known maximum length. Operand 0 is the
6267output; it has mode @var{m}. The second and third operand are the blocks of
6268memory to be compared; both are @code{mem:BLK} with an address in mode
6269@code{Pmode}.
6270
6271The fourth operand is the known shared alignment of the source and
6272destination, in the form of a @code{const_int} rtx. Thus, if the
6273compiler knows that both source and destination are word-aligned,
6274it may provide the value 4 for this operand.
6275
6276The two memory blocks specified are compared byte by byte in lexicographic
6277order starting at the beginning of each string. The instruction is not allowed
6278to prefetch more than one byte at a time since either string may end in the
6279first byte and reading past that may access an invalid page or segment and
9b0f6f5e
NC
6280cause a fault. The comparison will terminate when the fetched bytes
6281are different or if they are equal to zero. The effect of the
6282instruction is to store a value in operand 0 whose sign indicates the
6283result of the comparison.
40c1d5f8 6284
358b8f01
JJ
6285@cindex @code{cmpmem@var{m}} instruction pattern
6286@item @samp{cmpmem@var{m}}
6287Block compare instruction, with five operands like the operands
6288of @samp{cmpstr@var{m}}. The two memory blocks specified are compared
6289byte by byte in lexicographic order starting at the beginning of each
6290block. Unlike @samp{cmpstr@var{m}} the instruction can prefetch
9b0f6f5e
NC
6291any bytes in the two memory blocks. Also unlike @samp{cmpstr@var{m}}
6292the comparison will not stop if both bytes are zero. The effect of
6293the instruction is to store a value in operand 0 whose sign indicates
6294the result of the comparison.
358b8f01 6295
03dda8e3
RK
6296@cindex @code{strlen@var{m}} instruction pattern
6297@item @samp{strlen@var{m}}
6298Compute the length of a string, with three operands.
6299Operand 0 is the result (of mode @var{m}), operand 1 is
6300a @code{mem} referring to the first character of the string,
6301operand 2 is the character to search for (normally zero),
6302and operand 3 is a constant describing the known alignment
6303of the beginning of the string.
6304
e0d4c0b3 6305@cindex @code{float@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6306@item @samp{float@var{m}@var{n}2}
6307Convert signed integer operand 1 (valid for fixed point mode @var{m}) to
6308floating point mode @var{n} and store in operand 0 (which has mode
6309@var{n}).
6310
e0d4c0b3 6311@cindex @code{floatuns@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6312@item @samp{floatuns@var{m}@var{n}2}
6313Convert unsigned integer operand 1 (valid for fixed point mode @var{m})
6314to floating point mode @var{n} and store in operand 0 (which has mode
6315@var{n}).
6316
e0d4c0b3 6317@cindex @code{fix@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6318@item @samp{fix@var{m}@var{n}2}
6319Convert operand 1 (valid for floating point mode @var{m}) to fixed
6320point mode @var{n} as a signed number and store in operand 0 (which
6321has mode @var{n}). This instruction's result is defined only when
6322the value of operand 1 is an integer.
6323
0e1d7f32
AH
6324If the machine description defines this pattern, it also needs to
6325define the @code{ftrunc} pattern.
6326
e0d4c0b3 6327@cindex @code{fixuns@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6328@item @samp{fixuns@var{m}@var{n}2}
6329Convert operand 1 (valid for floating point mode @var{m}) to fixed
6330point mode @var{n} as an unsigned number and store in operand 0 (which
6331has mode @var{n}). This instruction's result is defined only when the
6332value of operand 1 is an integer.
6333
6334@cindex @code{ftrunc@var{m}2} instruction pattern
6335@item @samp{ftrunc@var{m}2}
6336Convert operand 1 (valid for floating point mode @var{m}) to an
6337integer value, still represented in floating point mode @var{m}, and
6338store it in operand 0 (valid for floating point mode @var{m}).
6339
e0d4c0b3 6340@cindex @code{fix_trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6341@item @samp{fix_trunc@var{m}@var{n}2}
6342Like @samp{fix@var{m}@var{n}2} but works for any floating point value
6343of mode @var{m} by converting the value to an integer.
6344
e0d4c0b3 6345@cindex @code{fixuns_trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6346@item @samp{fixuns_trunc@var{m}@var{n}2}
6347Like @samp{fixuns@var{m}@var{n}2} but works for any floating point
6348value of mode @var{m} by converting the value to an integer.
6349
e0d4c0b3 6350@cindex @code{trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6351@item @samp{trunc@var{m}@var{n}2}
6352Truncate operand 1 (valid for mode @var{m}) to mode @var{n} and
6353store in operand 0 (which has mode @var{n}). Both modes must be fixed
6354point or both floating point.
6355
e0d4c0b3 6356@cindex @code{extend@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6357@item @samp{extend@var{m}@var{n}2}
6358Sign-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6359store in operand 0 (which has mode @var{n}). Both modes must be fixed
6360point or both floating point.
6361
e0d4c0b3 6362@cindex @code{zero_extend@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6363@item @samp{zero_extend@var{m}@var{n}2}
6364Zero-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6365store in operand 0 (which has mode @var{n}). Both modes must be fixed
6366point.
6367
e0d4c0b3 6368@cindex @code{fract@var{m}@var{n}2} instruction pattern
0f996086
CF
6369@item @samp{fract@var{m}@var{n}2}
6370Convert operand 1 of mode @var{m} to mode @var{n} and store in
6371operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6372could be fixed-point to fixed-point, signed integer to fixed-point,
6373fixed-point to signed integer, floating-point to fixed-point,
6374or fixed-point to floating-point.
6375When overflows or underflows happen, the results are undefined.
6376
e0d4c0b3 6377@cindex @code{satfract@var{m}@var{n}2} instruction pattern
0f996086
CF
6378@item @samp{satfract@var{m}@var{n}2}
6379Convert operand 1 of mode @var{m} to mode @var{n} and store in
6380operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6381could be fixed-point to fixed-point, signed integer to fixed-point,
6382or floating-point to fixed-point.
6383When overflows or underflows happen, the instruction saturates the
6384results to the maximum or the minimum.
6385
e0d4c0b3 6386@cindex @code{fractuns@var{m}@var{n}2} instruction pattern
0f996086
CF
6387@item @samp{fractuns@var{m}@var{n}2}
6388Convert operand 1 of mode @var{m} to mode @var{n} and store in
6389operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6390could be unsigned integer to fixed-point, or
6391fixed-point to unsigned integer.
6392When overflows or underflows happen, the results are undefined.
6393
e0d4c0b3 6394@cindex @code{satfractuns@var{m}@var{n}2} instruction pattern
0f996086
CF
6395@item @samp{satfractuns@var{m}@var{n}2}
6396Convert unsigned integer operand 1 of mode @var{m} to fixed-point mode
6397@var{n} and store in operand 0 (which has mode @var{n}).
6398When overflows or underflows happen, the instruction saturates the
6399results to the maximum or the minimum.
6400
d2eeb2d1
RS
6401@cindex @code{extv@var{m}} instruction pattern
6402@item @samp{extv@var{m}}
6403Extract a bit-field from register operand 1, sign-extend it, and store
6404it in operand 0. Operand 2 specifies the width of the field in bits
6405and operand 3 the starting bit, which counts from the most significant
6406bit if @samp{BITS_BIG_ENDIAN} is true and from the least significant bit
6407otherwise.
6408
6409Operands 0 and 1 both have mode @var{m}. Operands 2 and 3 have a
6410target-specific mode.
6411
6412@cindex @code{extvmisalign@var{m}} instruction pattern
6413@item @samp{extvmisalign@var{m}}
6414Extract a bit-field from memory operand 1, sign extend it, and store
6415it in operand 0. Operand 2 specifies the width in bits and operand 3
6416the starting bit. The starting bit is always somewhere in the first byte of
6417operand 1; it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6418is true and from the least significant bit otherwise.
6419
6420Operand 0 has mode @var{m} while operand 1 has @code{BLK} mode.
6421Operands 2 and 3 have a target-specific mode.
6422
6423The instruction must not read beyond the last byte of the bit-field.
6424
6425@cindex @code{extzv@var{m}} instruction pattern
6426@item @samp{extzv@var{m}}
6427Like @samp{extv@var{m}} except that the bit-field value is zero-extended.
6428
6429@cindex @code{extzvmisalign@var{m}} instruction pattern
6430@item @samp{extzvmisalign@var{m}}
6431Like @samp{extvmisalign@var{m}} except that the bit-field value is
6432zero-extended.
6433
6434@cindex @code{insv@var{m}} instruction pattern
6435@item @samp{insv@var{m}}
6436Insert operand 3 into a bit-field of register operand 0. Operand 1
6437specifies the width of the field in bits and operand 2 the starting bit,
6438which counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6439is true and from the least significant bit otherwise.
6440
6441Operands 0 and 3 both have mode @var{m}. Operands 1 and 2 have a
6442target-specific mode.
6443
6444@cindex @code{insvmisalign@var{m}} instruction pattern
6445@item @samp{insvmisalign@var{m}}
6446Insert operand 3 into a bit-field of memory operand 0. Operand 1
6447specifies the width of the field in bits and operand 2 the starting bit.
6448The starting bit is always somewhere in the first byte of operand 0;
6449it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6450is true and from the least significant bit otherwise.
6451
6452Operand 3 has mode @var{m} while operand 0 has @code{BLK} mode.
6453Operands 1 and 2 have a target-specific mode.
6454
6455The instruction must not read or write beyond the last byte of the bit-field.
6456
03dda8e3
RK
6457@cindex @code{extv} instruction pattern
6458@item @samp{extv}
c771326b 6459Extract a bit-field from operand 1 (a register or memory operand), where
03dda8e3
RK
6460operand 2 specifies the width in bits and operand 3 the starting bit,
6461and store it in operand 0. Operand 0 must have mode @code{word_mode}.
6462Operand 1 may have mode @code{byte_mode} or @code{word_mode}; often
6463@code{word_mode} is allowed only for registers. Operands 2 and 3 must
6464be valid for @code{word_mode}.
6465
6466The RTL generation pass generates this instruction only with constants
3ab997e8 6467for operands 2 and 3 and the constant is never zero for operand 2.
03dda8e3
RK
6468
6469The bit-field value is sign-extended to a full word integer
6470before it is stored in operand 0.
6471
d2eeb2d1
RS
6472This pattern is deprecated; please use @samp{extv@var{m}} and
6473@code{extvmisalign@var{m}} instead.
6474
03dda8e3
RK
6475@cindex @code{extzv} instruction pattern
6476@item @samp{extzv}
6477Like @samp{extv} except that the bit-field value is zero-extended.
6478
d2eeb2d1
RS
6479This pattern is deprecated; please use @samp{extzv@var{m}} and
6480@code{extzvmisalign@var{m}} instead.
6481
03dda8e3
RK
6482@cindex @code{insv} instruction pattern
6483@item @samp{insv}
c771326b
JM
6484Store operand 3 (which must be valid for @code{word_mode}) into a
6485bit-field in operand 0, where operand 1 specifies the width in bits and
03dda8e3
RK
6486operand 2 the starting bit. Operand 0 may have mode @code{byte_mode} or
6487@code{word_mode}; often @code{word_mode} is allowed only for registers.
6488Operands 1 and 2 must be valid for @code{word_mode}.
6489
6490The RTL generation pass generates this instruction only with constants
3ab997e8 6491for operands 1 and 2 and the constant is never zero for operand 1.
03dda8e3 6492
d2eeb2d1
RS
6493This pattern is deprecated; please use @samp{insv@var{m}} and
6494@code{insvmisalign@var{m}} instead.
6495
03dda8e3
RK
6496@cindex @code{mov@var{mode}cc} instruction pattern
6497@item @samp{mov@var{mode}cc}
6498Conditionally move operand 2 or operand 3 into operand 0 according to the
6499comparison in operand 1. If the comparison is true, operand 2 is moved
6500into operand 0, otherwise operand 3 is moved.
6501
6502The mode of the operands being compared need not be the same as the operands
6503being moved. Some machines, sparc64 for example, have instructions that
6504conditionally move an integer value based on the floating point condition
6505codes and vice versa.
6506
6507If the machine does not have conditional move instructions, do not
6508define these patterns.
6509
068f5dea 6510@cindex @code{add@var{mode}cc} instruction pattern
4b5cc2b3 6511@item @samp{add@var{mode}cc}
068f5dea
JH
6512Similar to @samp{mov@var{mode}cc} but for conditional addition. Conditionally
6513move operand 2 or (operands 2 + operand 3) into operand 0 according to the
5285c21c 6514comparison in operand 1. If the comparison is false, operand 2 is moved into
4b5cc2b3 6515operand 0, otherwise (operand 2 + operand 3) is moved.
068f5dea 6516
0972596e
RS
6517@cindex @code{cond_add@var{mode}} instruction pattern
6518@cindex @code{cond_sub@var{mode}} instruction pattern
6c4fd4a9
RS
6519@cindex @code{cond_mul@var{mode}} instruction pattern
6520@cindex @code{cond_div@var{mode}} instruction pattern
6521@cindex @code{cond_udiv@var{mode}} instruction pattern
6522@cindex @code{cond_mod@var{mode}} instruction pattern
6523@cindex @code{cond_umod@var{mode}} instruction pattern
0972596e
RS
6524@cindex @code{cond_and@var{mode}} instruction pattern
6525@cindex @code{cond_ior@var{mode}} instruction pattern
6526@cindex @code{cond_xor@var{mode}} instruction pattern
6527@cindex @code{cond_smin@var{mode}} instruction pattern
6528@cindex @code{cond_smax@var{mode}} instruction pattern
6529@cindex @code{cond_umin@var{mode}} instruction pattern
6530@cindex @code{cond_umax@var{mode}} instruction pattern
6531@item @samp{cond_add@var{mode}}
6532@itemx @samp{cond_sub@var{mode}}
6c4fd4a9
RS
6533@itemx @samp{cond_mul@var{mode}}
6534@itemx @samp{cond_div@var{mode}}
6535@itemx @samp{cond_udiv@var{mode}}
6536@itemx @samp{cond_mod@var{mode}}
6537@itemx @samp{cond_umod@var{mode}}
0972596e
RS
6538@itemx @samp{cond_and@var{mode}}
6539@itemx @samp{cond_ior@var{mode}}
6540@itemx @samp{cond_xor@var{mode}}
6541@itemx @samp{cond_smin@var{mode}}
6542@itemx @samp{cond_smax@var{mode}}
6543@itemx @samp{cond_umin@var{mode}}
6544@itemx @samp{cond_umax@var{mode}}
9d4ac06e
RS
6545When operand 1 is true, perform an operation on operands 2 and 3 and
6546store the result in operand 0, otherwise store operand 4 in operand 0.
6547The operation works elementwise if the operands are vectors.
6548
6549The scalar case is equivalent to:
6550
6551@smallexample
6552op0 = op1 ? op2 @var{op} op3 : op4;
6553@end smallexample
6554
6555while the vector case is equivalent to:
0972596e
RS
6556
6557@smallexample
9d4ac06e
RS
6558for (i = 0; i < GET_MODE_NUNITS (@var{m}); i++)
6559 op0[i] = op1[i] ? op2[i] @var{op} op3[i] : op4[i];
0972596e
RS
6560@end smallexample
6561
6562where, for example, @var{op} is @code{+} for @samp{cond_add@var{mode}}.
6563
6564When defined for floating-point modes, the contents of @samp{op3[i]}
06293766 6565are not interpreted if @samp{op1[i]} is false, just like they would not
0972596e
RS
6566be in a normal C @samp{?:} condition.
6567
9d4ac06e
RS
6568Operands 0, 2, 3 and 4 all have mode @var{m}. Operand 1 is a scalar
6569integer if @var{m} is scalar, otherwise it has the mode returned by
6570@code{TARGET_VECTORIZE_GET_MASK_MODE}.
0972596e 6571
b41d1f6e
RS
6572@cindex @code{cond_fma@var{mode}} instruction pattern
6573@cindex @code{cond_fms@var{mode}} instruction pattern
6574@cindex @code{cond_fnma@var{mode}} instruction pattern
6575@cindex @code{cond_fnms@var{mode}} instruction pattern
6576@item @samp{cond_fma@var{mode}}
6577@itemx @samp{cond_fms@var{mode}}
6578@itemx @samp{cond_fnma@var{mode}}
6579@itemx @samp{cond_fnms@var{mode}}
6580Like @samp{cond_add@var{m}}, except that the conditional operation
6581takes 3 operands rather than two. For example, the vector form of
6582@samp{cond_fma@var{mode}} is equivalent to:
6583
6584@smallexample
6585for (i = 0; i < GET_MODE_NUNITS (@var{m}); i++)
6586 op0[i] = op1[i] ? fma (op2[i], op3[i], op4[i]) : op5[i];
6587@end smallexample
6588
ce68b5cf
KT
6589@cindex @code{neg@var{mode}cc} instruction pattern
6590@item @samp{neg@var{mode}cc}
6591Similar to @samp{mov@var{mode}cc} but for conditional negation. Conditionally
6592move the negation of operand 2 or the unchanged operand 3 into operand 0
6593according to the comparison in operand 1. If the comparison is true, the negation
6594of operand 2 is moved into operand 0, otherwise operand 3 is moved.
6595
6596@cindex @code{not@var{mode}cc} instruction pattern
6597@item @samp{not@var{mode}cc}
6598Similar to @samp{neg@var{mode}cc} but for conditional complement.
6599Conditionally move the bitwise complement of operand 2 or the unchanged
6600operand 3 into operand 0 according to the comparison in operand 1.
6601If the comparison is true, the complement of operand 2 is moved into
6602operand 0, otherwise operand 3 is moved.
6603
f90b7a5a
PB
6604@cindex @code{cstore@var{mode}4} instruction pattern
6605@item @samp{cstore@var{mode}4}
6606Store zero or nonzero in operand 0 according to whether a comparison
6607is true. Operand 1 is a comparison operator. Operand 2 and operand 3
6608are the first and second operand of the comparison, respectively.
6609You specify the mode that operand 0 must have when you write the
6610@code{match_operand} expression. The compiler automatically sees which
6611mode you have used and supplies an operand of that mode.
03dda8e3
RK
6612
6613The value stored for a true condition must have 1 as its low bit, or
6614else must be negative. Otherwise the instruction is not suitable and
6615you should omit it from the machine description. You describe to the
6616compiler exactly which value is stored by defining the macro
6617@code{STORE_FLAG_VALUE} (@pxref{Misc}). If a description cannot be
ac5eda13
PB
6618found that can be used for all the possible comparison operators, you
6619should pick one and use a @code{define_expand} to map all results
6620onto the one you chose.
6621
6622These operations may @code{FAIL}, but should do so only in relatively
6623uncommon cases; if they would @code{FAIL} for common cases involving
6624integer comparisons, it is best to restrict the predicates to not
6625allow these operands. Likewise if a given comparison operator will
6626always fail, independent of the operands (for floating-point modes, the
6627@code{ordered_comparison_operator} predicate is often useful in this case).
6628
6629If this pattern is omitted, the compiler will generate a conditional
6630branch---for example, it may copy a constant one to the target and branching
6631around an assignment of zero to the target---or a libcall. If the predicate
6632for operand 1 only rejects some operators, it will also try reordering the
6633operands and/or inverting the result value (e.g.@: by an exclusive OR).
6634These possibilities could be cheaper or equivalent to the instructions
6635used for the @samp{cstore@var{mode}4} pattern followed by those required
6636to convert a positive result from @code{STORE_FLAG_VALUE} to 1; in this
6637case, you can and should make operand 1's predicate reject some operators
6638in the @samp{cstore@var{mode}4} pattern, or remove the pattern altogether
6639from the machine description.
03dda8e3 6640
66c87bae
KH
6641@cindex @code{cbranch@var{mode}4} instruction pattern
6642@item @samp{cbranch@var{mode}4}
6643Conditional branch instruction combined with a compare instruction.
6644Operand 0 is a comparison operator. Operand 1 and operand 2 are the
6645first and second operands of the comparison, respectively. Operand 3
481efdd9 6646is the @code{code_label} to jump to.
66c87bae 6647
d26eedb6
HPN
6648@cindex @code{jump} instruction pattern
6649@item @samp{jump}
6650A jump inside a function; an unconditional branch. Operand 0 is the
481efdd9
EB
6651@code{code_label} to jump to. This pattern name is mandatory on all
6652machines.
d26eedb6 6653
03dda8e3
RK
6654@cindex @code{call} instruction pattern
6655@item @samp{call}
6656Subroutine call instruction returning no value. Operand 0 is the
6657function to call; operand 1 is the number of bytes of arguments pushed
f5963e61
JL
6658as a @code{const_int}; operand 2 is the number of registers used as
6659operands.
03dda8e3
RK
6660
6661On most machines, operand 2 is not actually stored into the RTL
6662pattern. It is supplied for the sake of some RISC machines which need
6663to put this information into the assembler code; they can put it in
6664the RTL instead of operand 1.
6665
6666Operand 0 should be a @code{mem} RTX whose address is the address of the
6667function. Note, however, that this address can be a @code{symbol_ref}
6668expression even if it would not be a legitimate memory address on the
6669target machine. If it is also not a valid argument for a call
6670instruction, the pattern for this operation should be a
6671@code{define_expand} (@pxref{Expander Definitions}) that places the
6672address into a register and uses that register in the call instruction.
6673
6674@cindex @code{call_value} instruction pattern
6675@item @samp{call_value}
6676Subroutine call instruction returning a value. Operand 0 is the hard
6677register in which the value is returned. There are three more
6678operands, the same as the three operands of the @samp{call}
6679instruction (but with numbers increased by one).
6680
6681Subroutines that return @code{BLKmode} objects use the @samp{call}
6682insn.
6683
6684@cindex @code{call_pop} instruction pattern
6685@cindex @code{call_value_pop} instruction pattern
6686@item @samp{call_pop}, @samp{call_value_pop}
6687Similar to @samp{call} and @samp{call_value}, except used if defined and
df2a54e9 6688if @code{RETURN_POPS_ARGS} is nonzero. They should emit a @code{parallel}
03dda8e3
RK
6689that contains both the function call and a @code{set} to indicate the
6690adjustment made to the frame pointer.
6691
df2a54e9 6692For machines where @code{RETURN_POPS_ARGS} can be nonzero, the use of these
03dda8e3
RK
6693patterns increases the number of functions for which the frame pointer
6694can be eliminated, if desired.
6695
6696@cindex @code{untyped_call} instruction pattern
6697@item @samp{untyped_call}
6698Subroutine call instruction returning a value of any type. Operand 0 is
6699the function to call; operand 1 is a memory location where the result of
6700calling the function is to be stored; operand 2 is a @code{parallel}
6701expression where each element is a @code{set} expression that indicates
6702the saving of a function return value into the result block.
6703
6704This instruction pattern should be defined to support
6705@code{__builtin_apply} on machines where special instructions are needed
6706to call a subroutine with arbitrary arguments or to save the value
6707returned. This instruction pattern is required on machines that have
e979f9e8
JM
6708multiple registers that can hold a return value
6709(i.e.@: @code{FUNCTION_VALUE_REGNO_P} is true for more than one register).
03dda8e3
RK
6710
6711@cindex @code{return} instruction pattern
6712@item @samp{return}
6713Subroutine return instruction. This instruction pattern name should be
6714defined only if a single instruction can do all the work of returning
6715from a function.
6716
6717Like the @samp{mov@var{m}} patterns, this pattern is also used after the
6718RTL generation phase. In this case it is to support machines where
6719multiple instructions are usually needed to return from a function, but
6720some class of functions only requires one instruction to implement a
6721return. Normally, the applicable functions are those which do not need
6722to save any registers or allocate stack space.
6723
26898771
BS
6724It is valid for this pattern to expand to an instruction using
6725@code{simple_return} if no epilogue is required.
6726
6727@cindex @code{simple_return} instruction pattern
6728@item @samp{simple_return}
6729Subroutine return instruction. This instruction pattern name should be
6730defined only if a single instruction can do all the work of returning
6731from a function on a path where no epilogue is required. This pattern
6732is very similar to the @code{return} instruction pattern, but it is emitted
6733only by the shrink-wrapping optimization on paths where the function
6734prologue has not been executed, and a function return should occur without
6735any of the effects of the epilogue. Additional uses may be introduced on
6736paths where both the prologue and the epilogue have executed.
6737
03dda8e3
RK
6738@findex reload_completed
6739@findex leaf_function_p
6740For such machines, the condition specified in this pattern should only
df2a54e9 6741be true when @code{reload_completed} is nonzero and the function's
03dda8e3
RK
6742epilogue would only be a single instruction. For machines with register
6743windows, the routine @code{leaf_function_p} may be used to determine if
6744a register window push is required.
6745
6746Machines that have conditional return instructions should define patterns
6747such as
6748
6749@smallexample
6750(define_insn ""
6751 [(set (pc)
6752 (if_then_else (match_operator
6753 0 "comparison_operator"
6754 [(cc0) (const_int 0)])
6755 (return)
6756 (pc)))]
6757 "@var{condition}"
6758 "@dots{}")
6759@end smallexample
6760
6761where @var{condition} would normally be the same condition specified on the
6762named @samp{return} pattern.
6763
6764@cindex @code{untyped_return} instruction pattern
6765@item @samp{untyped_return}
6766Untyped subroutine return instruction. This instruction pattern should
6767be defined to support @code{__builtin_return} on machines where special
6768instructions are needed to return a value of any type.
6769
6770Operand 0 is a memory location where the result of calling a function
6771with @code{__builtin_apply} is stored; operand 1 is a @code{parallel}
6772expression where each element is a @code{set} expression that indicates
6773the restoring of a function return value from the result block.
6774
6775@cindex @code{nop} instruction pattern
6776@item @samp{nop}
6777No-op instruction. This instruction pattern name should always be defined
6778to output a no-op in assembler code. @code{(const_int 0)} will do as an
6779RTL pattern.
6780
6781@cindex @code{indirect_jump} instruction pattern
6782@item @samp{indirect_jump}
6783An instruction to jump to an address which is operand zero.
6784This pattern name is mandatory on all machines.
6785
6786@cindex @code{casesi} instruction pattern
6787@item @samp{casesi}
6788Instruction to jump through a dispatch table, including bounds checking.
6789This instruction takes five operands:
6790
6791@enumerate
6792@item
6793The index to dispatch on, which has mode @code{SImode}.
6794
6795@item
6796The lower bound for indices in the table, an integer constant.
6797
6798@item
6799The total range of indices in the table---the largest index
6800minus the smallest one (both inclusive).
6801
6802@item
6803A label that precedes the table itself.
6804
6805@item
6806A label to jump to if the index has a value outside the bounds.
03dda8e3
RK
6807@end enumerate
6808
e4ae5e77 6809The table is an @code{addr_vec} or @code{addr_diff_vec} inside of a
da5c6bde 6810@code{jump_table_data}. The number of elements in the table is one plus the
03dda8e3
RK
6811difference between the upper bound and the lower bound.
6812
6813@cindex @code{tablejump} instruction pattern
6814@item @samp{tablejump}
6815Instruction to jump to a variable address. This is a low-level
6816capability which can be used to implement a dispatch table when there
6817is no @samp{casesi} pattern.
6818
6819This pattern requires two operands: the address or offset, and a label
6820which should immediately precede the jump table. If the macro
f1f5f142
JL
6821@code{CASE_VECTOR_PC_RELATIVE} evaluates to a nonzero value then the first
6822operand is an offset which counts from the address of the table; otherwise,
6823it is an absolute address to jump to. In either case, the first operand has
03dda8e3
RK
6824mode @code{Pmode}.
6825
6826The @samp{tablejump} insn is always the last insn before the jump
6827table it uses. Its assembler code normally has no need to use the
6828second operand, but you should incorporate it in the RTL pattern so
6829that the jump optimizer will not delete the table as unreachable code.
6830
6e4fcc95 6831
6e4fcc95
MH
6832@cindex @code{doloop_end} instruction pattern
6833@item @samp{doloop_end}
1d0216c8
RS
6834Conditional branch instruction that decrements a register and
6835jumps if the register is nonzero. Operand 0 is the register to
6836decrement and test; operand 1 is the label to jump to if the
6837register is nonzero.
5c25e11d 6838@xref{Looping Patterns}.
6e4fcc95
MH
6839
6840This optional instruction pattern should be defined for machines with
6841low-overhead looping instructions as the loop optimizer will try to
1d0216c8
RS
6842modify suitable loops to utilize it. The target hook
6843@code{TARGET_CAN_USE_DOLOOP_P} controls the conditions under which
6844low-overhead loops can be used.
6e4fcc95
MH
6845
6846@cindex @code{doloop_begin} instruction pattern
6847@item @samp{doloop_begin}
6848Companion instruction to @code{doloop_end} required for machines that
1d0216c8
RS
6849need to perform some initialization, such as loading a special counter
6850register. Operand 1 is the associated @code{doloop_end} pattern and
6851operand 0 is the register that it decrements.
6e4fcc95 6852
1d0216c8
RS
6853If initialization insns do not always need to be emitted, use a
6854@code{define_expand} (@pxref{Expander Definitions}) and make it fail.
6e4fcc95 6855
03dda8e3
RK
6856@cindex @code{canonicalize_funcptr_for_compare} instruction pattern
6857@item @samp{canonicalize_funcptr_for_compare}
6858Canonicalize the function pointer in operand 1 and store the result
6859into operand 0.
6860
6861Operand 0 is always a @code{reg} and has mode @code{Pmode}; operand 1
6862may be a @code{reg}, @code{mem}, @code{symbol_ref}, @code{const_int}, etc
6863and also has mode @code{Pmode}.
6864
6865Canonicalization of a function pointer usually involves computing
6866the address of the function which would be called if the function
6867pointer were used in an indirect call.
6868
6869Only define this pattern if function pointers on the target machine
6870can have different values but still call the same function when
6871used in an indirect call.
6872
6873@cindex @code{save_stack_block} instruction pattern
6874@cindex @code{save_stack_function} instruction pattern
6875@cindex @code{save_stack_nonlocal} instruction pattern
6876@cindex @code{restore_stack_block} instruction pattern
6877@cindex @code{restore_stack_function} instruction pattern
6878@cindex @code{restore_stack_nonlocal} instruction pattern
6879@item @samp{save_stack_block}
6880@itemx @samp{save_stack_function}
6881@itemx @samp{save_stack_nonlocal}
6882@itemx @samp{restore_stack_block}
6883@itemx @samp{restore_stack_function}
6884@itemx @samp{restore_stack_nonlocal}
6885Most machines save and restore the stack pointer by copying it to or
6886from an object of mode @code{Pmode}. Do not define these patterns on
6887such machines.
6888
6889Some machines require special handling for stack pointer saves and
6890restores. On those machines, define the patterns corresponding to the
6891non-standard cases by using a @code{define_expand} (@pxref{Expander
6892Definitions}) that produces the required insns. The three types of
6893saves and restores are:
6894
6895@enumerate
6896@item
6897@samp{save_stack_block} saves the stack pointer at the start of a block
6898that allocates a variable-sized object, and @samp{restore_stack_block}
6899restores the stack pointer when the block is exited.
6900
6901@item
6902@samp{save_stack_function} and @samp{restore_stack_function} do a
6903similar job for the outermost block of a function and are used when the
6904function allocates variable-sized objects or calls @code{alloca}. Only
6905the epilogue uses the restored stack pointer, allowing a simpler save or
6906restore sequence on some machines.
6907
6908@item
6909@samp{save_stack_nonlocal} is used in functions that contain labels
6910branched to by nested functions. It saves the stack pointer in such a
6911way that the inner function can use @samp{restore_stack_nonlocal} to
6912restore the stack pointer. The compiler generates code to restore the
6913frame and argument pointer registers, but some machines require saving
6914and restoring additional data such as register window information or
6915stack backchains. Place insns in these patterns to save and restore any
6916such required data.
6917@end enumerate
6918
6919When saving the stack pointer, operand 0 is the save area and operand 1
73c8090f
DE
6920is the stack pointer. The mode used to allocate the save area defaults
6921to @code{Pmode} but you can override that choice by defining the
7e390c9d 6922@code{STACK_SAVEAREA_MODE} macro (@pxref{Storage Layout}). You must
73c8090f
DE
6923specify an integral mode, or @code{VOIDmode} if no save area is needed
6924for a particular type of save (either because no save is needed or
6925because a machine-specific save area can be used). Operand 0 is the
6926stack pointer and operand 1 is the save area for restore operations. If
6927@samp{save_stack_block} is defined, operand 0 must not be
6928@code{VOIDmode} since these saves can be arbitrarily nested.
03dda8e3
RK
6929
6930A save area is a @code{mem} that is at a constant offset from
6931@code{virtual_stack_vars_rtx} when the stack pointer is saved for use by
6932nonlocal gotos and a @code{reg} in the other two cases.
6933
6934@cindex @code{allocate_stack} instruction pattern
6935@item @samp{allocate_stack}
72938a4c 6936Subtract (or add if @code{STACK_GROWS_DOWNWARD} is undefined) operand 1 from
03dda8e3
RK
6937the stack pointer to create space for dynamically allocated data.
6938
72938a4c
MM
6939Store the resultant pointer to this space into operand 0. If you
6940are allocating space from the main stack, do this by emitting a
6941move insn to copy @code{virtual_stack_dynamic_rtx} to operand 0.
6942If you are allocating the space elsewhere, generate code to copy the
6943location of the space to operand 0. In the latter case, you must
956d6950 6944ensure this space gets freed when the corresponding space on the main
72938a4c
MM
6945stack is free.
6946
03dda8e3
RK
6947Do not define this pattern if all that must be done is the subtraction.
6948Some machines require other operations such as stack probes or
6949maintaining the back chain. Define this pattern to emit those
6950operations in addition to updating the stack pointer.
6951
861bb6c1
JL
6952@cindex @code{check_stack} instruction pattern
6953@item @samp{check_stack}
507d0069
EB
6954If stack checking (@pxref{Stack Checking}) cannot be done on your system by
6955probing the stack, define this pattern to perform the needed check and signal
6956an error if the stack has overflowed. The single operand is the address in
6957the stack farthest from the current stack pointer that you need to validate.
6958Normally, on platforms where this pattern is needed, you would obtain the
6959stack limit from a global or thread-specific variable or register.
d809253a 6960
7b84aac0
EB
6961@cindex @code{probe_stack_address} instruction pattern
6962@item @samp{probe_stack_address}
6963If stack checking (@pxref{Stack Checking}) can be done on your system by
6964probing the stack but without the need to actually access it, define this
6965pattern and signal an error if the stack has overflowed. The single operand
6966is the memory address in the stack that needs to be probed.
6967
d809253a
EB
6968@cindex @code{probe_stack} instruction pattern
6969@item @samp{probe_stack}
507d0069
EB
6970If stack checking (@pxref{Stack Checking}) can be done on your system by
6971probing the stack but doing it with a ``store zero'' instruction is not valid
6972or optimal, define this pattern to do the probing differently and signal an
6973error if the stack has overflowed. The single operand is the memory reference
6974in the stack that needs to be probed.
861bb6c1 6975
03dda8e3
RK
6976@cindex @code{nonlocal_goto} instruction pattern
6977@item @samp{nonlocal_goto}
6978Emit code to generate a non-local goto, e.g., a jump from one function
6979to a label in an outer function. This pattern has four arguments,
6980each representing a value to be used in the jump. The first
45bb86fd 6981argument is to be loaded into the frame pointer, the second is
03dda8e3
RK
6982the address to branch to (code to dispatch to the actual label),
6983the third is the address of a location where the stack is saved,
6984and the last is the address of the label, to be placed in the
6985location for the incoming static chain.
6986
f0523f02 6987On most machines you need not define this pattern, since GCC will
03dda8e3
RK
6988already generate the correct code, which is to load the frame pointer
6989and static chain, restore the stack (using the
6990@samp{restore_stack_nonlocal} pattern, if defined), and jump indirectly
6991to the dispatcher. You need only define this pattern if this code will
6992not work on your machine.
6993
6994@cindex @code{nonlocal_goto_receiver} instruction pattern
6995@item @samp{nonlocal_goto_receiver}
6996This pattern, if defined, contains code needed at the target of a
161d7b59 6997nonlocal goto after the code already generated by GCC@. You will not
03dda8e3
RK
6998normally need to define this pattern. A typical reason why you might
6999need this pattern is if some value, such as a pointer to a global table,
c30ddbc9 7000must be restored when the frame pointer is restored. Note that a nonlocal
89bcce1b 7001goto only occurs within a unit-of-translation, so a global table pointer
c30ddbc9
RH
7002that is shared by all functions of a given module need not be restored.
7003There are no arguments.
861bb6c1
JL
7004
7005@cindex @code{exception_receiver} instruction pattern
7006@item @samp{exception_receiver}
7007This pattern, if defined, contains code needed at the site of an
7008exception handler that isn't needed at the site of a nonlocal goto. You
7009will not normally need to define this pattern. A typical reason why you
7010might need this pattern is if some value, such as a pointer to a global
7011table, must be restored after control flow is branched to the handler of
7012an exception. There are no arguments.
c85f7c16 7013
c30ddbc9
RH
7014@cindex @code{builtin_setjmp_setup} instruction pattern
7015@item @samp{builtin_setjmp_setup}
7016This pattern, if defined, contains additional code needed to initialize
7017the @code{jmp_buf}. You will not normally need to define this pattern.
7018A typical reason why you might need this pattern is if some value, such
7019as a pointer to a global table, must be restored. Though it is
7020preferred that the pointer value be recalculated if possible (given the
7021address of a label for instance). The single argument is a pointer to
7022the @code{jmp_buf}. Note that the buffer is five words long and that
7023the first three are normally used by the generic mechanism.
7024
c85f7c16
JL
7025@cindex @code{builtin_setjmp_receiver} instruction pattern
7026@item @samp{builtin_setjmp_receiver}
e4ae5e77 7027This pattern, if defined, contains code needed at the site of a
c771326b 7028built-in setjmp that isn't needed at the site of a nonlocal goto. You
c85f7c16
JL
7029will not normally need to define this pattern. A typical reason why you
7030might need this pattern is if some value, such as a pointer to a global
c30ddbc9 7031table, must be restored. It takes one argument, which is the label
073a8998 7032to which builtin_longjmp transferred control; this pattern may be emitted
c30ddbc9
RH
7033at a small offset from that label.
7034
7035@cindex @code{builtin_longjmp} instruction pattern
7036@item @samp{builtin_longjmp}
7037This pattern, if defined, performs the entire action of the longjmp.
7038You will not normally need to define this pattern unless you also define
7039@code{builtin_setjmp_setup}. The single argument is a pointer to the
7040@code{jmp_buf}.
f69864aa 7041
52a11cbf
RH
7042@cindex @code{eh_return} instruction pattern
7043@item @samp{eh_return}
f69864aa 7044This pattern, if defined, affects the way @code{__builtin_eh_return},
52a11cbf
RH
7045and thence the call frame exception handling library routines, are
7046built. It is intended to handle non-trivial actions needed along
7047the abnormal return path.
7048
34dc173c 7049The address of the exception handler to which the function should return
daf2f129 7050is passed as operand to this pattern. It will normally need to copied by
34dc173c
UW
7051the pattern to some special register or memory location.
7052If the pattern needs to determine the location of the target call
7053frame in order to do so, it may use @code{EH_RETURN_STACKADJ_RTX},
7054if defined; it will have already been assigned.
7055
7056If this pattern is not defined, the default action will be to simply
7057copy the return address to @code{EH_RETURN_HANDLER_RTX}. Either
7058that macro or this pattern needs to be defined if call frame exception
7059handling is to be used.
0b433de6
JL
7060
7061@cindex @code{prologue} instruction pattern
17b53c33 7062@anchor{prologue instruction pattern}
0b433de6
JL
7063@item @samp{prologue}
7064This pattern, if defined, emits RTL for entry to a function. The function
b192711e 7065entry is responsible for setting up the stack frame, initializing the frame
0b433de6
JL
7066pointer register, saving callee saved registers, etc.
7067
7068Using a prologue pattern is generally preferred over defining
17b53c33 7069@code{TARGET_ASM_FUNCTION_PROLOGUE} to emit assembly code for the prologue.
0b433de6
JL
7070
7071The @code{prologue} pattern is particularly useful for targets which perform
7072instruction scheduling.
7073
12c5ffe5
EB
7074@cindex @code{window_save} instruction pattern
7075@anchor{window_save instruction pattern}
7076@item @samp{window_save}
7077This pattern, if defined, emits RTL for a register window save. It should
7078be defined if the target machine has register windows but the window events
7079are decoupled from calls to subroutines. The canonical example is the SPARC
7080architecture.
7081
0b433de6 7082@cindex @code{epilogue} instruction pattern
17b53c33 7083@anchor{epilogue instruction pattern}
0b433de6 7084@item @samp{epilogue}
396ad517 7085This pattern emits RTL for exit from a function. The function
b192711e 7086exit is responsible for deallocating the stack frame, restoring callee saved
0b433de6
JL
7087registers and emitting the return instruction.
7088
7089Using an epilogue pattern is generally preferred over defining
17b53c33 7090@code{TARGET_ASM_FUNCTION_EPILOGUE} to emit assembly code for the epilogue.
0b433de6
JL
7091
7092The @code{epilogue} pattern is particularly useful for targets which perform
7093instruction scheduling or which have delay slots for their return instruction.
7094
7095@cindex @code{sibcall_epilogue} instruction pattern
7096@item @samp{sibcall_epilogue}
7097This pattern, if defined, emits RTL for exit from a function without the final
7098branch back to the calling function. This pattern will be emitted before any
7099sibling call (aka tail call) sites.
7100
7101The @code{sibcall_epilogue} pattern must not clobber any arguments used for
7102parameter passing or any stack slots for arguments passed to the current
ebb48a4d 7103function.
a157febd
GK
7104
7105@cindex @code{trap} instruction pattern
7106@item @samp{trap}
7107This pattern, if defined, signals an error, typically by causing some
4b1ea1f3 7108kind of signal to be raised.
a157febd 7109
f90b7a5a
PB
7110@cindex @code{ctrap@var{MM}4} instruction pattern
7111@item @samp{ctrap@var{MM}4}
a157febd 7112Conditional trap instruction. Operand 0 is a piece of RTL which
f90b7a5a
PB
7113performs a comparison, and operands 1 and 2 are the arms of the
7114comparison. Operand 3 is the trap code, an integer.
a157febd 7115
f90b7a5a 7116A typical @code{ctrap} pattern looks like
a157febd
GK
7117
7118@smallexample
f90b7a5a 7119(define_insn "ctrapsi4"
ebb48a4d 7120 [(trap_if (match_operator 0 "trap_operator"
f90b7a5a 7121 [(match_operand 1 "register_operand")
73b8bfe1 7122 (match_operand 2 "immediate_operand")])
f90b7a5a 7123 (match_operand 3 "const_int_operand" "i"))]
a157febd
GK
7124 ""
7125 "@dots{}")
7126@end smallexample
7127
e83d297b
JJ
7128@cindex @code{prefetch} instruction pattern
7129@item @samp{prefetch}
e83d297b
JJ
7130This pattern, if defined, emits code for a non-faulting data prefetch
7131instruction. Operand 0 is the address of the memory to prefetch. Operand 1
7132is a constant 1 if the prefetch is preparing for a write to the memory
7133address, or a constant 0 otherwise. Operand 2 is the expected degree of
7134temporal locality of the data and is a value between 0 and 3, inclusive; 0
7135means that the data has no temporal locality, so it need not be left in the
7136cache after the access; 3 means that the data has a high degree of temporal
7137locality and should be left in all levels of cache possible; 1 and 2 mean,
7138respectively, a low or moderate degree of temporal locality.
7139
7140Targets that do not support write prefetches or locality hints can ignore
7141the values of operands 1 and 2.
7142
b6bd3371
DE
7143@cindex @code{blockage} instruction pattern
7144@item @samp{blockage}
b6bd3371 7145This pattern defines a pseudo insn that prevents the instruction
adddc347
HPN
7146scheduler and other passes from moving instructions and using register
7147equivalences across the boundary defined by the blockage insn.
7148This needs to be an UNSPEC_VOLATILE pattern or a volatile ASM.
b6bd3371 7149
51ced7e4
UB
7150@cindex @code{memory_blockage} instruction pattern
7151@item @samp{memory_blockage}
7152This pattern, if defined, represents a compiler memory barrier, and will be
7153placed at points across which RTL passes may not propagate memory accesses.
7154This instruction needs to read and write volatile BLKmode memory. It does
7155not need to generate any machine instruction. If this pattern is not defined,
7156the compiler falls back to emitting an instruction corresponding
7157to @code{asm volatile ("" ::: "memory")}.
7158
48ae6c13
RH
7159@cindex @code{memory_barrier} instruction pattern
7160@item @samp{memory_barrier}
48ae6c13
RH
7161If the target memory model is not fully synchronous, then this pattern
7162should be defined to an instruction that orders both loads and stores
7163before the instruction with respect to loads and stores after the instruction.
7164This pattern has no operands.
7165
425fc685
RE
7166@cindex @code{speculation_barrier} instruction pattern
7167@item @samp{speculation_barrier}
7168If the target can support speculative execution, then this pattern should
7169be defined to an instruction that will block subsequent execution until
7170any prior speculation conditions has been resolved. The pattern must also
7171ensure that the compiler cannot move memory operations past the barrier,
7172so it needs to be an UNSPEC_VOLATILE pattern. The pattern has no
7173operands.
7174
7175If this pattern is not defined then the default expansion of
7176@code{__builtin_speculation_safe_value} will emit a warning. You can
7177suppress this warning by defining this pattern with a final condition
7178of @code{0} (zero), which tells the compiler that a speculation
7179barrier is not needed for this target.
7180
48ae6c13
RH
7181@cindex @code{sync_compare_and_swap@var{mode}} instruction pattern
7182@item @samp{sync_compare_and_swap@var{mode}}
48ae6c13
RH
7183This pattern, if defined, emits code for an atomic compare-and-swap
7184operation. Operand 1 is the memory on which the atomic operation is
7185performed. Operand 2 is the ``old'' value to be compared against the
7186current contents of the memory location. Operand 3 is the ``new'' value
7187to store in the memory if the compare succeeds. Operand 0 is the result
915167f5
GK
7188of the operation; it should contain the contents of the memory
7189before the operation. If the compare succeeds, this should obviously be
7190a copy of operand 2.
48ae6c13
RH
7191
7192This pattern must show that both operand 0 and operand 1 are modified.
7193
915167f5
GK
7194This pattern must issue any memory barrier instructions such that all
7195memory operations before the atomic operation occur before the atomic
7196operation and all memory operations after the atomic operation occur
7197after the atomic operation.
48ae6c13 7198
4a77c72b 7199For targets where the success or failure of the compare-and-swap
f90b7a5a
PB
7200operation is available via the status flags, it is possible to
7201avoid a separate compare operation and issue the subsequent
7202branch or store-flag operation immediately after the compare-and-swap.
7203To this end, GCC will look for a @code{MODE_CC} set in the
7204output of @code{sync_compare_and_swap@var{mode}}; if the machine
7205description includes such a set, the target should also define special
7206@code{cbranchcc4} and/or @code{cstorecc4} instructions. GCC will then
7207be able to take the destination of the @code{MODE_CC} set and pass it
7208to the @code{cbranchcc4} or @code{cstorecc4} pattern as the first
7209operand of the comparison (the second will be @code{(const_int 0)}).
48ae6c13 7210
cedb4a1a
RH
7211For targets where the operating system may provide support for this
7212operation via library calls, the @code{sync_compare_and_swap_optab}
7213may be initialized to a function with the same interface as the
7214@code{__sync_val_compare_and_swap_@var{n}} built-in. If the entire
7215set of @var{__sync} builtins are supported via library calls, the
7216target can initialize all of the optabs at once with
7217@code{init_sync_libfuncs}.
7218For the purposes of C++11 @code{std::atomic::is_lock_free}, it is
7219assumed that these library calls do @emph{not} use any kind of
7220interruptable locking.
7221
48ae6c13
RH
7222@cindex @code{sync_add@var{mode}} instruction pattern
7223@cindex @code{sync_sub@var{mode}} instruction pattern
7224@cindex @code{sync_ior@var{mode}} instruction pattern
7225@cindex @code{sync_and@var{mode}} instruction pattern
7226@cindex @code{sync_xor@var{mode}} instruction pattern
7227@cindex @code{sync_nand@var{mode}} instruction pattern
7228@item @samp{sync_add@var{mode}}, @samp{sync_sub@var{mode}}
7229@itemx @samp{sync_ior@var{mode}}, @samp{sync_and@var{mode}}
7230@itemx @samp{sync_xor@var{mode}}, @samp{sync_nand@var{mode}}
48ae6c13
RH
7231These patterns emit code for an atomic operation on memory.
7232Operand 0 is the memory on which the atomic operation is performed.
7233Operand 1 is the second operand to the binary operator.
7234
915167f5
GK
7235This pattern must issue any memory barrier instructions such that all
7236memory operations before the atomic operation occur before the atomic
7237operation and all memory operations after the atomic operation occur
7238after the atomic operation.
48ae6c13
RH
7239
7240If these patterns are not defined, the operation will be constructed
7241from a compare-and-swap operation, if defined.
7242
7243@cindex @code{sync_old_add@var{mode}} instruction pattern
7244@cindex @code{sync_old_sub@var{mode}} instruction pattern
7245@cindex @code{sync_old_ior@var{mode}} instruction pattern
7246@cindex @code{sync_old_and@var{mode}} instruction pattern
7247@cindex @code{sync_old_xor@var{mode}} instruction pattern
7248@cindex @code{sync_old_nand@var{mode}} instruction pattern
7249@item @samp{sync_old_add@var{mode}}, @samp{sync_old_sub@var{mode}}
7250@itemx @samp{sync_old_ior@var{mode}}, @samp{sync_old_and@var{mode}}
7251@itemx @samp{sync_old_xor@var{mode}}, @samp{sync_old_nand@var{mode}}
c29c1030 7252These patterns emit code for an atomic operation on memory,
48ae6c13
RH
7253and return the value that the memory contained before the operation.
7254Operand 0 is the result value, operand 1 is the memory on which the
7255atomic operation is performed, and operand 2 is the second operand
7256to the binary operator.
7257
915167f5
GK
7258This pattern must issue any memory barrier instructions such that all
7259memory operations before the atomic operation occur before the atomic
7260operation and all memory operations after the atomic operation occur
7261after the atomic operation.
48ae6c13
RH
7262
7263If these patterns are not defined, the operation will be constructed
7264from a compare-and-swap operation, if defined.
7265
7266@cindex @code{sync_new_add@var{mode}} instruction pattern
7267@cindex @code{sync_new_sub@var{mode}} instruction pattern
7268@cindex @code{sync_new_ior@var{mode}} instruction pattern
7269@cindex @code{sync_new_and@var{mode}} instruction pattern
7270@cindex @code{sync_new_xor@var{mode}} instruction pattern
7271@cindex @code{sync_new_nand@var{mode}} instruction pattern
7272@item @samp{sync_new_add@var{mode}}, @samp{sync_new_sub@var{mode}}
7273@itemx @samp{sync_new_ior@var{mode}}, @samp{sync_new_and@var{mode}}
7274@itemx @samp{sync_new_xor@var{mode}}, @samp{sync_new_nand@var{mode}}
48ae6c13
RH
7275These patterns are like their @code{sync_old_@var{op}} counterparts,
7276except that they return the value that exists in the memory location
7277after the operation, rather than before the operation.
7278
7279@cindex @code{sync_lock_test_and_set@var{mode}} instruction pattern
7280@item @samp{sync_lock_test_and_set@var{mode}}
48ae6c13
RH
7281This pattern takes two forms, based on the capabilities of the target.
7282In either case, operand 0 is the result of the operand, operand 1 is
7283the memory on which the atomic operation is performed, and operand 2
7284is the value to set in the lock.
7285
7286In the ideal case, this operation is an atomic exchange operation, in
7287which the previous value in memory operand is copied into the result
7288operand, and the value operand is stored in the memory operand.
7289
7290For less capable targets, any value operand that is not the constant 1
7291should be rejected with @code{FAIL}. In this case the target may use
7292an atomic test-and-set bit operation. The result operand should contain
72931 if the bit was previously set and 0 if the bit was previously clear.
7294The true contents of the memory operand are implementation defined.
7295
7296This pattern must issue any memory barrier instructions such that the
915167f5
GK
7297pattern as a whole acts as an acquire barrier, that is all memory
7298operations after the pattern do not occur until the lock is acquired.
48ae6c13
RH
7299
7300If this pattern is not defined, the operation will be constructed from
7301a compare-and-swap operation, if defined.
7302
7303@cindex @code{sync_lock_release@var{mode}} instruction pattern
7304@item @samp{sync_lock_release@var{mode}}
48ae6c13
RH
7305This pattern, if defined, releases a lock set by
7306@code{sync_lock_test_and_set@var{mode}}. Operand 0 is the memory
8635a919
GK
7307that contains the lock; operand 1 is the value to store in the lock.
7308
7309If the target doesn't implement full semantics for
7310@code{sync_lock_test_and_set@var{mode}}, any value operand which is not
7311the constant 0 should be rejected with @code{FAIL}, and the true contents
7312of the memory operand are implementation defined.
48ae6c13
RH
7313
7314This pattern must issue any memory barrier instructions such that the
915167f5
GK
7315pattern as a whole acts as a release barrier, that is the lock is
7316released only after all previous memory operations have completed.
48ae6c13
RH
7317
7318If this pattern is not defined, then a @code{memory_barrier} pattern
8635a919 7319will be emitted, followed by a store of the value to the memory operand.
48ae6c13 7320
86951993
AM
7321@cindex @code{atomic_compare_and_swap@var{mode}} instruction pattern
7322@item @samp{atomic_compare_and_swap@var{mode}}
7323This pattern, if defined, emits code for an atomic compare-and-swap
7324operation with memory model semantics. Operand 2 is the memory on which
7325the atomic operation is performed. Operand 0 is an output operand which
7326is set to true or false based on whether the operation succeeded. Operand
73271 is an output operand which is set to the contents of the memory before
7328the operation was attempted. Operand 3 is the value that is expected to
7329be in memory. Operand 4 is the value to put in memory if the expected
7330value is found there. Operand 5 is set to 1 if this compare and swap is to
7331be treated as a weak operation. Operand 6 is the memory model to be used
7332if the operation is a success. Operand 7 is the memory model to be used
7333if the operation fails.
7334
7335If memory referred to in operand 2 contains the value in operand 3, then
7336operand 4 is stored in memory pointed to by operand 2 and fencing based on
7337the memory model in operand 6 is issued.
7338
7339If memory referred to in operand 2 does not contain the value in operand 3,
7340then fencing based on the memory model in operand 7 is issued.
7341
7342If a target does not support weak compare-and-swap operations, or the port
7343elects not to implement weak operations, the argument in operand 5 can be
7344ignored. Note a strong implementation must be provided.
7345
7346If this pattern is not provided, the @code{__atomic_compare_exchange}
7347built-in functions will utilize the legacy @code{sync_compare_and_swap}
7348pattern with an @code{__ATOMIC_SEQ_CST} memory model.
7349
7350@cindex @code{atomic_load@var{mode}} instruction pattern
7351@item @samp{atomic_load@var{mode}}
7352This pattern implements an atomic load operation with memory model
7353semantics. Operand 1 is the memory address being loaded from. Operand 0
7354is the result of the load. Operand 2 is the memory model to be used for
7355the load operation.
7356
7357If not present, the @code{__atomic_load} built-in function will either
7358resort to a normal load with memory barriers, or a compare-and-swap
7359operation if a normal load would not be atomic.
7360
7361@cindex @code{atomic_store@var{mode}} instruction pattern
7362@item @samp{atomic_store@var{mode}}
7363This pattern implements an atomic store operation with memory model
7364semantics. Operand 0 is the memory address being stored to. Operand 1
7365is the value to be written. Operand 2 is the memory model to be used for
7366the operation.
7367
7368If not present, the @code{__atomic_store} built-in function will attempt to
7369perform a normal store and surround it with any required memory fences. If
7370the store would not be atomic, then an @code{__atomic_exchange} is
7371attempted with the result being ignored.
7372
7373@cindex @code{atomic_exchange@var{mode}} instruction pattern
7374@item @samp{atomic_exchange@var{mode}}
7375This pattern implements an atomic exchange operation with memory model
7376semantics. Operand 1 is the memory location the operation is performed on.
7377Operand 0 is an output operand which is set to the original value contained
7378in the memory pointed to by operand 1. Operand 2 is the value to be
7379stored. Operand 3 is the memory model to be used.
7380
7381If this pattern is not present, the built-in function
7382@code{__atomic_exchange} will attempt to preform the operation with a
7383compare and swap loop.
7384
7385@cindex @code{atomic_add@var{mode}} instruction pattern
7386@cindex @code{atomic_sub@var{mode}} instruction pattern
7387@cindex @code{atomic_or@var{mode}} instruction pattern
7388@cindex @code{atomic_and@var{mode}} instruction pattern
7389@cindex @code{atomic_xor@var{mode}} instruction pattern
7390@cindex @code{atomic_nand@var{mode}} instruction pattern
7391@item @samp{atomic_add@var{mode}}, @samp{atomic_sub@var{mode}}
7392@itemx @samp{atomic_or@var{mode}}, @samp{atomic_and@var{mode}}
7393@itemx @samp{atomic_xor@var{mode}}, @samp{atomic_nand@var{mode}}
86951993
AM
7394These patterns emit code for an atomic operation on memory with memory
7395model semantics. Operand 0 is the memory on which the atomic operation is
7396performed. Operand 1 is the second operand to the binary operator.
7397Operand 2 is the memory model to be used by the operation.
7398
7399If these patterns are not defined, attempts will be made to use legacy
c29c1030 7400@code{sync} patterns, or equivalent patterns which return a result. If
86951993
AM
7401none of these are available a compare-and-swap loop will be used.
7402
7403@cindex @code{atomic_fetch_add@var{mode}} instruction pattern
7404@cindex @code{atomic_fetch_sub@var{mode}} instruction pattern
7405@cindex @code{atomic_fetch_or@var{mode}} instruction pattern
7406@cindex @code{atomic_fetch_and@var{mode}} instruction pattern
7407@cindex @code{atomic_fetch_xor@var{mode}} instruction pattern
7408@cindex @code{atomic_fetch_nand@var{mode}} instruction pattern
7409@item @samp{atomic_fetch_add@var{mode}}, @samp{atomic_fetch_sub@var{mode}}
7410@itemx @samp{atomic_fetch_or@var{mode}}, @samp{atomic_fetch_and@var{mode}}
7411@itemx @samp{atomic_fetch_xor@var{mode}}, @samp{atomic_fetch_nand@var{mode}}
86951993
AM
7412These patterns emit code for an atomic operation on memory with memory
7413model semantics, and return the original value. Operand 0 is an output
7414operand which contains the value of the memory location before the
7415operation was performed. Operand 1 is the memory on which the atomic
7416operation is performed. Operand 2 is the second operand to the binary
7417operator. Operand 3 is the memory model to be used by the operation.
7418
7419If these patterns are not defined, attempts will be made to use legacy
7420@code{sync} patterns. If none of these are available a compare-and-swap
7421loop will be used.
7422
7423@cindex @code{atomic_add_fetch@var{mode}} instruction pattern
7424@cindex @code{atomic_sub_fetch@var{mode}} instruction pattern
7425@cindex @code{atomic_or_fetch@var{mode}} instruction pattern
7426@cindex @code{atomic_and_fetch@var{mode}} instruction pattern
7427@cindex @code{atomic_xor_fetch@var{mode}} instruction pattern
7428@cindex @code{atomic_nand_fetch@var{mode}} instruction pattern
7429@item @samp{atomic_add_fetch@var{mode}}, @samp{atomic_sub_fetch@var{mode}}
7430@itemx @samp{atomic_or_fetch@var{mode}}, @samp{atomic_and_fetch@var{mode}}
7431@itemx @samp{atomic_xor_fetch@var{mode}}, @samp{atomic_nand_fetch@var{mode}}
86951993
AM
7432These patterns emit code for an atomic operation on memory with memory
7433model semantics and return the result after the operation is performed.
7434Operand 0 is an output operand which contains the value after the
7435operation. Operand 1 is the memory on which the atomic operation is
7436performed. Operand 2 is the second operand to the binary operator.
7437Operand 3 is the memory model to be used by the operation.
7438
7439If these patterns are not defined, attempts will be made to use legacy
c29c1030 7440@code{sync} patterns, or equivalent patterns which return the result before
86951993
AM
7441the operation followed by the arithmetic operation required to produce the
7442result. If none of these are available a compare-and-swap loop will be
7443used.
7444
f8a27aa6
RH
7445@cindex @code{atomic_test_and_set} instruction pattern
7446@item @samp{atomic_test_and_set}
f8a27aa6
RH
7447This pattern emits code for @code{__builtin_atomic_test_and_set}.
7448Operand 0 is an output operand which is set to true if the previous
7449previous contents of the byte was "set", and false otherwise. Operand 1
7450is the @code{QImode} memory to be modified. Operand 2 is the memory
7451model to be used.
7452
7453The specific value that defines "set" is implementation defined, and
7454is normally based on what is performed by the native atomic test and set
7455instruction.
7456
adedd5c1
JJ
7457@cindex @code{atomic_bit_test_and_set@var{mode}} instruction pattern
7458@cindex @code{atomic_bit_test_and_complement@var{mode}} instruction pattern
7459@cindex @code{atomic_bit_test_and_reset@var{mode}} instruction pattern
7460@item @samp{atomic_bit_test_and_set@var{mode}}
7461@itemx @samp{atomic_bit_test_and_complement@var{mode}}
7462@itemx @samp{atomic_bit_test_and_reset@var{mode}}
7463These patterns emit code for an atomic bitwise operation on memory with memory
7464model semantics, and return the original value of the specified bit.
7465Operand 0 is an output operand which contains the value of the specified bit
7466from the memory location before the operation was performed. Operand 1 is the
7467memory on which the atomic operation is performed. Operand 2 is the bit within
7468the operand, starting with least significant bit. Operand 3 is the memory model
7469to be used by the operation. Operand 4 is a flag - it is @code{const1_rtx}
7470if operand 0 should contain the original value of the specified bit in the
7471least significant bit of the operand, and @code{const0_rtx} if the bit should
7472be in its original position in the operand.
7473@code{atomic_bit_test_and_set@var{mode}} atomically sets the specified bit after
7474remembering its original value, @code{atomic_bit_test_and_complement@var{mode}}
7475inverts the specified bit and @code{atomic_bit_test_and_reset@var{mode}} clears
7476the specified bit.
7477
7478If these patterns are not defined, attempts will be made to use
7479@code{atomic_fetch_or@var{mode}}, @code{atomic_fetch_xor@var{mode}} or
7480@code{atomic_fetch_and@var{mode}} instruction patterns, or their @code{sync}
7481counterparts. If none of these are available a compare-and-swap
7482loop will be used.
7483
5e5ccf0d
AM
7484@cindex @code{mem_thread_fence} instruction pattern
7485@item @samp{mem_thread_fence}
86951993
AM
7486This pattern emits code required to implement a thread fence with
7487memory model semantics. Operand 0 is the memory model to be used.
7488
5e5ccf0d
AM
7489For the @code{__ATOMIC_RELAXED} model no instructions need to be issued
7490and this expansion is not invoked.
7491
7492The compiler always emits a compiler memory barrier regardless of what
7493expanding this pattern produced.
7494
7495If this pattern is not defined, the compiler falls back to expanding the
7496@code{memory_barrier} pattern, then to emitting @code{__sync_synchronize}
7497library call, and finally to just placing a compiler memory barrier.
86951993 7498
f959607b
CLT
7499@cindex @code{get_thread_pointer@var{mode}} instruction pattern
7500@cindex @code{set_thread_pointer@var{mode}} instruction pattern
7501@item @samp{get_thread_pointer@var{mode}}
7502@itemx @samp{set_thread_pointer@var{mode}}
7503These patterns emit code that reads/sets the TLS thread pointer. Currently,
7504these are only needed if the target needs to support the
7505@code{__builtin_thread_pointer} and @code{__builtin_set_thread_pointer}
7506builtins.
7507
7508The get/set patterns have a single output/input operand respectively,
7509with @var{mode} intended to be @code{Pmode}.
7510
89d75572
TP
7511@cindex @code{stack_protect_combined_set} instruction pattern
7512@item @samp{stack_protect_combined_set}
7513This pattern, if defined, moves a @code{ptr_mode} value from an address
7514whose declaration RTX is given in operand 1 to the memory in operand 0
7515without leaving the value in a register afterward. If several
7516instructions are needed by the target to perform the operation (eg. to
7517load the address from a GOT entry then load the @code{ptr_mode} value
7518and finally store it), it is the backend's responsibility to ensure no
7519intermediate result gets spilled. This is to avoid leaking the value
7520some place that an attacker might use to rewrite the stack guard slot
7521after having clobbered it.
7522
7523If this pattern is not defined, then the address declaration is
7524expanded first in the standard way and a @code{stack_protect_set}
7525pattern is then generated to move the value from that address to the
7526address in operand 0.
7527
7d69de61
RH
7528@cindex @code{stack_protect_set} instruction pattern
7529@item @samp{stack_protect_set}
89d75572
TP
7530This pattern, if defined, moves a @code{ptr_mode} value from the valid
7531memory location in operand 1 to the memory in operand 0 without leaving
7532the value in a register afterward. This is to avoid leaking the value
7533some place that an attacker might use to rewrite the stack guard slot
7534after having clobbered it.
7535
7536Note: on targets where the addressing modes do not allow to load
7537directly from stack guard address, the address is expanded in a standard
7538way first which could cause some spills.
7d69de61
RH
7539
7540If this pattern is not defined, then a plain move pattern is generated.
7541
89d75572
TP
7542@cindex @code{stack_protect_combined_test} instruction pattern
7543@item @samp{stack_protect_combined_test}
7544This pattern, if defined, compares a @code{ptr_mode} value from an
7545address whose declaration RTX is given in operand 1 with the memory in
7546operand 0 without leaving the value in a register afterward and
7547branches to operand 2 if the values were equal. If several
7548instructions are needed by the target to perform the operation (eg. to
7549load the address from a GOT entry then load the @code{ptr_mode} value
7550and finally store it), it is the backend's responsibility to ensure no
7551intermediate result gets spilled. This is to avoid leaking the value
7552some place that an attacker might use to rewrite the stack guard slot
7553after having clobbered it.
7554
7555If this pattern is not defined, then the address declaration is
7556expanded first in the standard way and a @code{stack_protect_test}
7557pattern is then generated to compare the value from that address to the
7558value at the memory in operand 0.
7559
7d69de61
RH
7560@cindex @code{stack_protect_test} instruction pattern
7561@item @samp{stack_protect_test}
643e867f 7562This pattern, if defined, compares a @code{ptr_mode} value from the
89d75572
TP
7563valid memory location in operand 1 with the memory in operand 0 without
7564leaving the value in a register afterward and branches to operand 2 if
7565the values were equal.
7d69de61 7566
3aebbe5f
JJ
7567If this pattern is not defined, then a plain compare pattern and
7568conditional branch pattern is used.
7d69de61 7569
677feb77
DD
7570@cindex @code{clear_cache} instruction pattern
7571@item @samp{clear_cache}
677feb77
DD
7572This pattern, if defined, flushes the instruction cache for a region of
7573memory. The region is bounded to by the Pmode pointers in operand 0
7574inclusive and operand 1 exclusive.
7575
7576If this pattern is not defined, a call to the library function
7577@code{__clear_cache} is used.
7578
03dda8e3
RK
7579@end table
7580
a5249a21
HPN
7581@end ifset
7582@c Each of the following nodes are wrapped in separate
7583@c "@ifset INTERNALS" to work around memory limits for the default
7584@c configuration in older tetex distributions. Known to not work:
7585@c tetex-1.0.7, known to work: tetex-2.0.2.
7586@ifset INTERNALS
03dda8e3
RK
7587@node Pattern Ordering
7588@section When the Order of Patterns Matters
7589@cindex Pattern Ordering
7590@cindex Ordering of Patterns
7591
7592Sometimes an insn can match more than one instruction pattern. Then the
7593pattern that appears first in the machine description is the one used.
7594Therefore, more specific patterns (patterns that will match fewer things)
7595and faster instructions (those that will produce better code when they
7596do match) should usually go first in the description.
7597
7598In some cases the effect of ordering the patterns can be used to hide
7599a pattern when it is not valid. For example, the 68000 has an
7600instruction for converting a fullword to floating point and another
7601for converting a byte to floating point. An instruction converting
7602an integer to floating point could match either one. We put the
7603pattern to convert the fullword first to make sure that one will
7604be used rather than the other. (Otherwise a large integer might
7605be generated as a single-byte immediate quantity, which would not work.)
7606Instead of using this pattern ordering it would be possible to make the
7607pattern for convert-a-byte smart enough to deal properly with any
7608constant value.
7609
a5249a21
HPN
7610@end ifset
7611@ifset INTERNALS
03dda8e3
RK
7612@node Dependent Patterns
7613@section Interdependence of Patterns
7614@cindex Dependent Patterns
7615@cindex Interdependence of Patterns
7616
03dda8e3
RK
7617In some cases machines support instructions identical except for the
7618machine mode of one or more operands. For example, there may be
7619``sign-extend halfword'' and ``sign-extend byte'' instructions whose
7620patterns are
7621
3ab51846 7622@smallexample
03dda8e3
RK
7623(set (match_operand:SI 0 @dots{})
7624 (extend:SI (match_operand:HI 1 @dots{})))
7625
7626(set (match_operand:SI 0 @dots{})
7627 (extend:SI (match_operand:QI 1 @dots{})))
3ab51846 7628@end smallexample
03dda8e3
RK
7629
7630@noindent
7631Constant integers do not specify a machine mode, so an instruction to
7632extend a constant value could match either pattern. The pattern it
7633actually will match is the one that appears first in the file. For correct
7634results, this must be the one for the widest possible mode (@code{HImode},
7635here). If the pattern matches the @code{QImode} instruction, the results
7636will be incorrect if the constant value does not actually fit that mode.
7637
7638Such instructions to extend constants are rarely generated because they are
7639optimized away, but they do occasionally happen in nonoptimized
7640compilations.
7641
7642If a constraint in a pattern allows a constant, the reload pass may
7643replace a register with a constant permitted by the constraint in some
7644cases. Similarly for memory references. Because of this substitution,
7645you should not provide separate patterns for increment and decrement
7646instructions. Instead, they should be generated from the same pattern
7647that supports register-register add insns by examining the operands and
7648generating the appropriate machine instruction.
7649
a5249a21
HPN
7650@end ifset
7651@ifset INTERNALS
03dda8e3
RK
7652@node Jump Patterns
7653@section Defining Jump Instruction Patterns
7654@cindex jump instruction patterns
7655@cindex defining jump instruction patterns
7656
f90b7a5a
PB
7657GCC does not assume anything about how the machine realizes jumps.
7658The machine description should define a single pattern, usually
7659a @code{define_expand}, which expands to all the required insns.
7660
7661Usually, this would be a comparison insn to set the condition code
7662and a separate branch insn testing the condition code and branching
7663or not according to its value. For many machines, however,
7664separating compares and branches is limiting, which is why the
7665more flexible approach with one @code{define_expand} is used in GCC.
7666The machine description becomes clearer for architectures that
7667have compare-and-branch instructions but no condition code. It also
7668works better when different sets of comparison operators are supported
630ba2fd
SB
7669by different kinds of conditional branches (e.g.@: integer vs.@:
7670floating-point), or by conditional branches with respect to conditional stores.
f90b7a5a
PB
7671
7672Two separate insns are always used if the machine description represents
7673a condition code register using the legacy RTL expression @code{(cc0)},
7674and on most machines that use a separate condition code register
7675(@pxref{Condition Code}). For machines that use @code{(cc0)}, in
7676fact, the set and use of the condition code must be separate and
7677adjacent@footnote{@code{note} insns can separate them, though.}, thus
7678allowing flags in @code{cc_status} to be used (@pxref{Condition Code}) and
7679so that the comparison and branch insns could be located from each other
7680by using the functions @code{prev_cc0_setter} and @code{next_cc0_user}.
7681
7682Even in this case having a single entry point for conditional branches
7683is advantageous, because it handles equally well the case where a single
7684comparison instruction records the results of both signed and unsigned
7685comparison of the given operands (with the branch insns coming in distinct
7686signed and unsigned flavors) as in the x86 or SPARC, and the case where
7687there are distinct signed and unsigned compare instructions and only
7688one set of conditional branch instructions as in the PowerPC.
03dda8e3 7689
a5249a21
HPN
7690@end ifset
7691@ifset INTERNALS
6e4fcc95
MH
7692@node Looping Patterns
7693@section Defining Looping Instruction Patterns
7694@cindex looping instruction patterns
7695@cindex defining looping instruction patterns
7696
05713b80 7697Some machines have special jump instructions that can be utilized to
6e4fcc95
MH
7698make loops more efficient. A common example is the 68000 @samp{dbra}
7699instruction which performs a decrement of a register and a branch if the
7700result was greater than zero. Other machines, in particular digital
7701signal processors (DSPs), have special block repeat instructions to
7702provide low-overhead loop support. For example, the TI TMS320C3x/C4x
7703DSPs have a block repeat instruction that loads special registers to
7704mark the top and end of a loop and to count the number of loop
7705iterations. This avoids the need for fetching and executing a
c771326b 7706@samp{dbra}-like instruction and avoids pipeline stalls associated with
6e4fcc95
MH
7707the jump.
7708
f9adcdec
PK
7709GCC has two special named patterns to support low overhead looping.
7710They are @samp{doloop_begin} and @samp{doloop_end}. These are emitted
7711by the loop optimizer for certain well-behaved loops with a finite
7712number of loop iterations using information collected during strength
7713reduction.
6e4fcc95
MH
7714
7715The @samp{doloop_end} pattern describes the actual looping instruction
7716(or the implicit looping operation) and the @samp{doloop_begin} pattern
c21cd8b1 7717is an optional companion pattern that can be used for initialization
6e4fcc95
MH
7718needed for some low-overhead looping instructions.
7719
7720Note that some machines require the actual looping instruction to be
7721emitted at the top of the loop (e.g., the TMS320C3x/C4x DSPs). Emitting
7722the true RTL for a looping instruction at the top of the loop can cause
7723problems with flow analysis. So instead, a dummy @code{doloop} insn is
7724emitted at the end of the loop. The machine dependent reorg pass checks
7725for the presence of this @code{doloop} insn and then searches back to
7726the top of the loop, where it inserts the true looping insn (provided
7727there are no instructions in the loop which would cause problems). Any
7728additional labels can be emitted at this point. In addition, if the
7729desired special iteration counter register was not allocated, this
7730machine dependent reorg pass could emit a traditional compare and jump
7731instruction pair.
7732
f9adcdec
PK
7733For the @samp{doloop_end} pattern, the loop optimizer allocates an
7734additional pseudo register as an iteration counter. This pseudo
7735register cannot be used within the loop (i.e., general induction
7736variables cannot be derived from it), however, in many cases the loop
7737induction variable may become redundant and removed by the flow pass.
7738
7739The @samp{doloop_end} pattern must have a specific structure to be
7740handled correctly by GCC. The example below is taken (slightly
7741simplified) from the PDP-11 target:
7742
7743@smallexample
7744@group
a01abe9d
PK
7745(define_expand "doloop_end"
7746 [(parallel [(set (pc)
7747 (if_then_else
7748 (ne (match_operand:HI 0 "nonimmediate_operand" "+r,!m")
7749 (const_int 1))
7750 (label_ref (match_operand 1 "" ""))
7751 (pc)))
7752 (set (match_dup 0)
7753 (plus:HI (match_dup 0)
7754 (const_int -1)))])]
7755 ""
7756 "@{
7757 if (GET_MODE (operands[0]) != HImode)
7758 FAIL;
7759 @}")
7760
7761(define_insn "doloop_end_insn"
f9adcdec
PK
7762 [(set (pc)
7763 (if_then_else
7764 (ne (match_operand:HI 0 "nonimmediate_operand" "+r,!m")
7765 (const_int 1))
7766 (label_ref (match_operand 1 "" ""))
7767 (pc)))
7768 (set (match_dup 0)
7769 (plus:HI (match_dup 0)
7770 (const_int -1)))]
7771 ""
7772
7773 @{
7774 if (which_alternative == 0)
7775 return "sob %0,%l1";
7776
7777 /* emulate sob */
7778 output_asm_insn ("dec %0", operands);
7779 return "bne %l1";
7780 @})
7781@end group
7782@end smallexample
7783
7784The first part of the pattern describes the branch condition. GCC
7785supports three cases for the way the target machine handles the loop
7786counter:
7787@itemize @bullet
7788@item Loop terminates when the loop register decrements to zero. This
7789is represented by a @code{ne} comparison of the register (its old value)
7790with constant 1 (as in the example above).
7791@item Loop terminates when the loop register decrements to @minus{}1.
7792This is represented by a @code{ne} comparison of the register with
7793constant zero.
7794@item Loop terminates when the loop register decrements to a negative
7795value. This is represented by a @code{ge} comparison of the register
7796with constant zero. For this case, GCC will attach a @code{REG_NONNEG}
7797note to the @code{doloop_end} insn if it can determine that the register
7798will be non-negative.
7799@end itemize
6e4fcc95 7800
f9adcdec
PK
7801Since the @code{doloop_end} insn is a jump insn that also has an output,
7802the reload pass does not handle the output operand. Therefore, the
7803constraint must allow for that operand to be in memory rather than a
a01abe9d
PK
7804register. In the example shown above, that is handled (in the
7805@code{doloop_end_insn} pattern) by using a loop instruction sequence
7806that can handle memory operands when the memory alternative appears.
7807
7808GCC does not check the mode of the loop register operand when generating
7809the @code{doloop_end} pattern. If the pattern is only valid for some
7810modes but not others, the pattern should be a @code{define_expand}
7811pattern that checks the operand mode in the preparation code, and issues
7812@code{FAIL} if an unsupported mode is found. The example above does
7813this, since the machine instruction to be used only exists for
7814@code{HImode}.
7815
7816If the @code{doloop_end} pattern is a @code{define_expand}, there must
7817also be a @code{define_insn} or @code{define_insn_and_split} matching
7818the generated pattern. Otherwise, the compiler will fail during loop
7819optimization.
6e4fcc95 7820
a5249a21
HPN
7821@end ifset
7822@ifset INTERNALS
03dda8e3
RK
7823@node Insn Canonicalizations
7824@section Canonicalization of Instructions
7825@cindex canonicalization of instructions
7826@cindex insn canonicalization
7827
7828There are often cases where multiple RTL expressions could represent an
7829operation performed by a single machine instruction. This situation is
7830most commonly encountered with logical, branch, and multiply-accumulate
7831instructions. In such cases, the compiler attempts to convert these
7832multiple RTL expressions into a single canonical form to reduce the
7833number of insn patterns required.
7834
7835In addition to algebraic simplifications, following canonicalizations
7836are performed:
7837
7838@itemize @bullet
7839@item
7840For commutative and comparison operators, a constant is always made the
7841second operand. If a machine only supports a constant as the second
7842operand, only patterns that match a constant in the second operand need
7843be supplied.
7844
e3d6e740
GK
7845@item
7846For associative operators, a sequence of operators will always chain
7847to the left; for instance, only the left operand of an integer @code{plus}
7848can itself be a @code{plus}. @code{and}, @code{ior}, @code{xor},
7849@code{plus}, @code{mult}, @code{smin}, @code{smax}, @code{umin}, and
7850@code{umax} are associative when applied to integers, and sometimes to
7851floating-point.
7852
7853@item
03dda8e3
RK
7854@cindex @code{neg}, canonicalization of
7855@cindex @code{not}, canonicalization of
7856@cindex @code{mult}, canonicalization of
7857@cindex @code{plus}, canonicalization of
7858@cindex @code{minus}, canonicalization of
7859For these operators, if only one operand is a @code{neg}, @code{not},
7860@code{mult}, @code{plus}, or @code{minus} expression, it will be the
7861first operand.
7862
16823694
GK
7863@item
7864In combinations of @code{neg}, @code{mult}, @code{plus}, and
7865@code{minus}, the @code{neg} operations (if any) will be moved inside
daf2f129 7866the operations as far as possible. For instance,
16823694 7867@code{(neg (mult A B))} is canonicalized as @code{(mult (neg A) B)}, but
9302a061 7868@code{(plus (mult (neg B) C) A)} is canonicalized as
16823694
GK
7869@code{(minus A (mult B C))}.
7870
03dda8e3
RK
7871@cindex @code{compare}, canonicalization of
7872@item
7873For the @code{compare} operator, a constant is always the second operand
f90b7a5a 7874if the first argument is a condition code register or @code{(cc0)}.
03dda8e3 7875
81ad201a
UB
7876@item
7877For instructions that inherently set a condition code register, the
7878@code{compare} operator is always written as the first RTL expression of
7879the @code{parallel} instruction pattern. For example,
7880
7881@smallexample
7882(define_insn ""
7883 [(set (reg:CCZ FLAGS_REG)
7884 (compare:CCZ
7885 (plus:SI
7886 (match_operand:SI 1 "register_operand" "%r")
7887 (match_operand:SI 2 "register_operand" "r"))
7888 (const_int 0)))
7889 (set (match_operand:SI 0 "register_operand" "=r")
7890 (plus:SI (match_dup 1) (match_dup 2)))]
7891 ""
7892 "addl %0, %1, %2")
7893@end smallexample
7894
f90b7a5a 7895@item
03dda8e3
RK
7896An operand of @code{neg}, @code{not}, @code{mult}, @code{plus}, or
7897@code{minus} is made the first operand under the same conditions as
7898above.
7899
921c4418
RIL
7900@item
7901@code{(ltu (plus @var{a} @var{b}) @var{b})} is converted to
7902@code{(ltu (plus @var{a} @var{b}) @var{a})}. Likewise with @code{geu} instead
7903of @code{ltu}.
7904
03dda8e3
RK
7905@item
7906@code{(minus @var{x} (const_int @var{n}))} is converted to
7907@code{(plus @var{x} (const_int @var{-n}))}.
7908
7909@item
7910Within address computations (i.e., inside @code{mem}), a left shift is
7911converted into the appropriate multiplication by a power of two.
7912
7913@cindex @code{ior}, canonicalization of
7914@cindex @code{and}, canonicalization of
7915@cindex De Morgan's law
72938a4c 7916@item
090359d6 7917De Morgan's Law is used to move bitwise negation inside a bitwise
03dda8e3
RK
7918logical-and or logical-or operation. If this results in only one
7919operand being a @code{not} expression, it will be the first one.
7920
7921A machine that has an instruction that performs a bitwise logical-and of one
7922operand with the bitwise negation of the other should specify the pattern
7923for that instruction as
7924
3ab51846 7925@smallexample
03dda8e3
RK
7926(define_insn ""
7927 [(set (match_operand:@var{m} 0 @dots{})
7928 (and:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7929 (match_operand:@var{m} 2 @dots{})))]
7930 "@dots{}"
7931 "@dots{}")
3ab51846 7932@end smallexample
03dda8e3
RK
7933
7934@noindent
7935Similarly, a pattern for a ``NAND'' instruction should be written
7936
3ab51846 7937@smallexample
03dda8e3
RK
7938(define_insn ""
7939 [(set (match_operand:@var{m} 0 @dots{})
7940 (ior:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7941 (not:@var{m} (match_operand:@var{m} 2 @dots{}))))]
7942 "@dots{}"
7943 "@dots{}")
3ab51846 7944@end smallexample
03dda8e3
RK
7945
7946In both cases, it is not necessary to include patterns for the many
7947logically equivalent RTL expressions.
7948
7949@cindex @code{xor}, canonicalization of
7950@item
7951The only possible RTL expressions involving both bitwise exclusive-or
7952and bitwise negation are @code{(xor:@var{m} @var{x} @var{y})}
bd819a4a 7953and @code{(not:@var{m} (xor:@var{m} @var{x} @var{y}))}.
03dda8e3
RK
7954
7955@item
7956The sum of three items, one of which is a constant, will only appear in
7957the form
7958
3ab51846 7959@smallexample
03dda8e3 7960(plus:@var{m} (plus:@var{m} @var{x} @var{y}) @var{constant})
3ab51846 7961@end smallexample
03dda8e3 7962
03dda8e3
RK
7963@cindex @code{zero_extract}, canonicalization of
7964@cindex @code{sign_extract}, canonicalization of
7965@item
7966Equality comparisons of a group of bits (usually a single bit) with zero
7967will be written using @code{zero_extract} rather than the equivalent
7968@code{and} or @code{sign_extract} operations.
7969
c536876e
AS
7970@cindex @code{mult}, canonicalization of
7971@item
7972@code{(sign_extend:@var{m1} (mult:@var{m2} (sign_extend:@var{m2} @var{x})
7973(sign_extend:@var{m2} @var{y})))} is converted to @code{(mult:@var{m1}
7974(sign_extend:@var{m1} @var{x}) (sign_extend:@var{m1} @var{y}))}, and likewise
7975for @code{zero_extend}.
7976
7977@item
7978@code{(sign_extend:@var{m1} (mult:@var{m2} (ashiftrt:@var{m2}
7979@var{x} @var{s}) (sign_extend:@var{m2} @var{y})))} is converted
7980to @code{(mult:@var{m1} (sign_extend:@var{m1} (ashiftrt:@var{m2}
7981@var{x} @var{s})) (sign_extend:@var{m1} @var{y}))}, and likewise for
7982patterns using @code{zero_extend} and @code{lshiftrt}. If the second
7983operand of @code{mult} is also a shift, then that is extended also.
7984This transformation is only applied when it can be proven that the
7985original operation had sufficient precision to prevent overflow.
7986
03dda8e3
RK
7987@end itemize
7988
cd16503a
HPN
7989Further canonicalization rules are defined in the function
7990@code{commutative_operand_precedence} in @file{gcc/rtlanal.c}.
7991
a5249a21
HPN
7992@end ifset
7993@ifset INTERNALS
03dda8e3
RK
7994@node Expander Definitions
7995@section Defining RTL Sequences for Code Generation
7996@cindex expander definitions
7997@cindex code generation RTL sequences
7998@cindex defining RTL sequences for code generation
7999
8000On some target machines, some standard pattern names for RTL generation
8001cannot be handled with single insn, but a sequence of RTL insns can
8002represent them. For these target machines, you can write a
161d7b59 8003@code{define_expand} to specify how to generate the sequence of RTL@.
03dda8e3
RK
8004
8005@findex define_expand
8006A @code{define_expand} is an RTL expression that looks almost like a
8007@code{define_insn}; but, unlike the latter, a @code{define_expand} is used
8008only for RTL generation and it can produce more than one RTL insn.
8009
8010A @code{define_expand} RTX has four operands:
8011
8012@itemize @bullet
8013@item
8014The name. Each @code{define_expand} must have a name, since the only
8015use for it is to refer to it by name.
8016
03dda8e3 8017@item
f3a3d0d3
RH
8018The RTL template. This is a vector of RTL expressions representing
8019a sequence of separate instructions. Unlike @code{define_insn}, there
8020is no implicit surrounding @code{PARALLEL}.
03dda8e3
RK
8021
8022@item
8023The condition, a string containing a C expression. This expression is
8024used to express how the availability of this pattern depends on
f0523f02
JM
8025subclasses of target machine, selected by command-line options when GCC
8026is run. This is just like the condition of a @code{define_insn} that
03dda8e3
RK
8027has a standard name. Therefore, the condition (if present) may not
8028depend on the data in the insn being matched, but only the
8029target-machine-type flags. The compiler needs to test these conditions
8030during initialization in order to learn exactly which named instructions
8031are available in a particular run.
8032
8033@item
8034The preparation statements, a string containing zero or more C
8035statements which are to be executed before RTL code is generated from
8036the RTL template.
8037
8038Usually these statements prepare temporary registers for use as
8039internal operands in the RTL template, but they can also generate RTL
8040insns directly by calling routines such as @code{emit_insn}, etc.
8041Any such insns precede the ones that come from the RTL template.
477c104e
MK
8042
8043@item
8044Optionally, a vector containing the values of attributes. @xref{Insn
8045Attributes}.
03dda8e3
RK
8046@end itemize
8047
8048Every RTL insn emitted by a @code{define_expand} must match some
8049@code{define_insn} in the machine description. Otherwise, the compiler
8050will crash when trying to generate code for the insn or trying to optimize
8051it.
8052
8053The RTL template, in addition to controlling generation of RTL insns,
8054also describes the operands that need to be specified when this pattern
8055is used. In particular, it gives a predicate for each operand.
8056
8057A true operand, which needs to be specified in order to generate RTL from
8058the pattern, should be described with a @code{match_operand} in its first
8059occurrence in the RTL template. This enters information on the operand's
f0523f02 8060predicate into the tables that record such things. GCC uses the
03dda8e3
RK
8061information to preload the operand into a register if that is required for
8062valid RTL code. If the operand is referred to more than once, subsequent
8063references should use @code{match_dup}.
8064
8065The RTL template may also refer to internal ``operands'' which are
8066temporary registers or labels used only within the sequence made by the
8067@code{define_expand}. Internal operands are substituted into the RTL
8068template with @code{match_dup}, never with @code{match_operand}. The
8069values of the internal operands are not passed in as arguments by the
8070compiler when it requests use of this pattern. Instead, they are computed
8071within the pattern, in the preparation statements. These statements
8072compute the values and store them into the appropriate elements of
8073@code{operands} so that @code{match_dup} can find them.
8074
8075There are two special macros defined for use in the preparation statements:
8076@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8077as a statement.
8078
8079@table @code
8080
8081@findex DONE
8082@item DONE
8083Use the @code{DONE} macro to end RTL generation for the pattern. The
8084only RTL insns resulting from the pattern on this occasion will be
8085those already emitted by explicit calls to @code{emit_insn} within the
8086preparation statements; the RTL template will not be generated.
8087
8088@findex FAIL
8089@item FAIL
8090Make the pattern fail on this occasion. When a pattern fails, it means
8091that the pattern was not truly available. The calling routines in the
8092compiler will try other strategies for code generation using other patterns.
8093
8094Failure is currently supported only for binary (addition, multiplication,
c771326b 8095shifting, etc.) and bit-field (@code{extv}, @code{extzv}, and @code{insv})
03dda8e3
RK
8096operations.
8097@end table
8098
55e4756f
DD
8099If the preparation falls through (invokes neither @code{DONE} nor
8100@code{FAIL}), then the @code{define_expand} acts like a
8101@code{define_insn} in that the RTL template is used to generate the
8102insn.
8103
8104The RTL template is not used for matching, only for generating the
8105initial insn list. If the preparation statement always invokes
8106@code{DONE} or @code{FAIL}, the RTL template may be reduced to a simple
8107list of operands, such as this example:
8108
8109@smallexample
8110@group
8111(define_expand "addsi3"
8112 [(match_operand:SI 0 "register_operand" "")
8113 (match_operand:SI 1 "register_operand" "")
8114 (match_operand:SI 2 "register_operand" "")]
8115@end group
8116@group
8117 ""
8118 "
58097133 8119@{
55e4756f
DD
8120 handle_add (operands[0], operands[1], operands[2]);
8121 DONE;
58097133 8122@}")
55e4756f
DD
8123@end group
8124@end smallexample
8125
03dda8e3
RK
8126Here is an example, the definition of left-shift for the SPUR chip:
8127
8128@smallexample
8129@group
8130(define_expand "ashlsi3"
8131 [(set (match_operand:SI 0 "register_operand" "")
8132 (ashift:SI
8133@end group
8134@group
8135 (match_operand:SI 1 "register_operand" "")
8136 (match_operand:SI 2 "nonmemory_operand" "")))]
8137 ""
8138 "
8139@end group
8140@end smallexample
8141
8142@smallexample
8143@group
8144@{
8145 if (GET_CODE (operands[2]) != CONST_INT
8146 || (unsigned) INTVAL (operands[2]) > 3)
8147 FAIL;
8148@}")
8149@end group
8150@end smallexample
8151
8152@noindent
8153This example uses @code{define_expand} so that it can generate an RTL insn
8154for shifting when the shift-count is in the supported range of 0 to 3 but
8155fail in other cases where machine insns aren't available. When it fails,
8156the compiler tries another strategy using different patterns (such as, a
8157library call).
8158
8159If the compiler were able to handle nontrivial condition-strings in
8160patterns with names, then it would be possible to use a
8161@code{define_insn} in that case. Here is another case (zero-extension
8162on the 68000) which makes more use of the power of @code{define_expand}:
8163
8164@smallexample
8165(define_expand "zero_extendhisi2"
8166 [(set (match_operand:SI 0 "general_operand" "")
8167 (const_int 0))
8168 (set (strict_low_part
8169 (subreg:HI
8170 (match_dup 0)
8171 0))
8172 (match_operand:HI 1 "general_operand" ""))]
8173 ""
8174 "operands[1] = make_safe_from (operands[1], operands[0]);")
8175@end smallexample
8176
8177@noindent
8178@findex make_safe_from
8179Here two RTL insns are generated, one to clear the entire output operand
8180and the other to copy the input operand into its low half. This sequence
8181is incorrect if the input operand refers to [the old value of] the output
8182operand, so the preparation statement makes sure this isn't so. The
8183function @code{make_safe_from} copies the @code{operands[1]} into a
8184temporary register if it refers to @code{operands[0]}. It does this
8185by emitting another RTL insn.
8186
8187Finally, a third example shows the use of an internal operand.
8188Zero-extension on the SPUR chip is done by @code{and}-ing the result
8189against a halfword mask. But this mask cannot be represented by a
8190@code{const_int} because the constant value is too large to be legitimate
8191on this machine. So it must be copied into a register with
8192@code{force_reg} and then the register used in the @code{and}.
8193
8194@smallexample
8195(define_expand "zero_extendhisi2"
8196 [(set (match_operand:SI 0 "register_operand" "")
8197 (and:SI (subreg:SI
8198 (match_operand:HI 1 "register_operand" "")
8199 0)
8200 (match_dup 2)))]
8201 ""
8202 "operands[2]
3a598fbe 8203 = force_reg (SImode, GEN_INT (65535)); ")
03dda8e3
RK
8204@end smallexample
8205
f4559287 8206@emph{Note:} If the @code{define_expand} is used to serve a
c771326b 8207standard binary or unary arithmetic operation or a bit-field operation,
03dda8e3
RK
8208then the last insn it generates must not be a @code{code_label},
8209@code{barrier} or @code{note}. It must be an @code{insn},
8210@code{jump_insn} or @code{call_insn}. If you don't need a real insn
8211at the end, emit an insn to copy the result of the operation into
8212itself. Such an insn will generate no code, but it can avoid problems
bd819a4a 8213in the compiler.
03dda8e3 8214
a5249a21
HPN
8215@end ifset
8216@ifset INTERNALS
03dda8e3
RK
8217@node Insn Splitting
8218@section Defining How to Split Instructions
8219@cindex insn splitting
8220@cindex instruction splitting
8221@cindex splitting instructions
8222
fae15c93
VM
8223There are two cases where you should specify how to split a pattern
8224into multiple insns. On machines that have instructions requiring
8225delay slots (@pxref{Delay Slots}) or that have instructions whose
8226output is not available for multiple cycles (@pxref{Processor pipeline
8227description}), the compiler phases that optimize these cases need to
8228be able to move insns into one-instruction delay slots. However, some
8229insns may generate more than one machine instruction. These insns
8230cannot be placed into a delay slot.
03dda8e3
RK
8231
8232Often you can rewrite the single insn as a list of individual insns,
8233each corresponding to one machine instruction. The disadvantage of
8234doing so is that it will cause the compilation to be slower and require
8235more space. If the resulting insns are too complex, it may also
8236suppress some optimizations. The compiler splits the insn if there is a
8237reason to believe that it might improve instruction or delay slot
8238scheduling.
8239
8240The insn combiner phase also splits putative insns. If three insns are
8241merged into one insn with a complex expression that cannot be matched by
8242some @code{define_insn} pattern, the combiner phase attempts to split
8243the complex pattern into two insns that are recognized. Usually it can
8244break the complex pattern into two patterns by splitting out some
8245subexpression. However, in some other cases, such as performing an
8246addition of a large constant in two insns on a RISC machine, the way to
8247split the addition into two insns is machine-dependent.
8248
f3a3d0d3 8249@findex define_split
03dda8e3
RK
8250The @code{define_split} definition tells the compiler how to split a
8251complex insn into several simpler insns. It looks like this:
8252
8253@smallexample
8254(define_split
8255 [@var{insn-pattern}]
8256 "@var{condition}"
8257 [@var{new-insn-pattern-1}
8258 @var{new-insn-pattern-2}
8259 @dots{}]
630d3d5a 8260 "@var{preparation-statements}")
03dda8e3
RK
8261@end smallexample
8262
8263@var{insn-pattern} is a pattern that needs to be split and
8264@var{condition} is the final condition to be tested, as in a
8265@code{define_insn}. When an insn matching @var{insn-pattern} and
8266satisfying @var{condition} is found, it is replaced in the insn list
8267with the insns given by @var{new-insn-pattern-1},
8268@var{new-insn-pattern-2}, etc.
8269
630d3d5a 8270The @var{preparation-statements} are similar to those statements that
03dda8e3
RK
8271are specified for @code{define_expand} (@pxref{Expander Definitions})
8272and are executed before the new RTL is generated to prepare for the
8273generated code or emit some insns whose pattern is not fixed. Unlike
8274those in @code{define_expand}, however, these statements must not
8275generate any new pseudo-registers. Once reload has completed, they also
8276must not allocate any space in the stack frame.
8277
582d1f90
PK
8278There are two special macros defined for use in the preparation statements:
8279@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8280as a statement.
8281
8282@table @code
8283
8284@findex DONE
8285@item DONE
8286Use the @code{DONE} macro to end RTL generation for the splitter. The
8287only RTL insns generated as replacement for the matched input insn will
8288be those already emitted by explicit calls to @code{emit_insn} within
8289the preparation statements; the replacement pattern is not used.
8290
8291@findex FAIL
8292@item FAIL
8293Make the @code{define_split} fail on this occasion. When a @code{define_split}
8294fails, it means that the splitter was not truly available for the inputs
8295it was given, and the input insn will not be split.
8296@end table
8297
8298If the preparation falls through (invokes neither @code{DONE} nor
8299@code{FAIL}), then the @code{define_split} uses the replacement
8300template.
8301
03dda8e3
RK
8302Patterns are matched against @var{insn-pattern} in two different
8303circumstances. If an insn needs to be split for delay slot scheduling
8304or insn scheduling, the insn is already known to be valid, which means
8305that it must have been matched by some @code{define_insn} and, if
df2a54e9 8306@code{reload_completed} is nonzero, is known to satisfy the constraints
03dda8e3
RK
8307of that @code{define_insn}. In that case, the new insn patterns must
8308also be insns that are matched by some @code{define_insn} and, if
df2a54e9 8309@code{reload_completed} is nonzero, must also satisfy the constraints
03dda8e3
RK
8310of those definitions.
8311
8312As an example of this usage of @code{define_split}, consider the following
8313example from @file{a29k.md}, which splits a @code{sign_extend} from
8314@code{HImode} to @code{SImode} into a pair of shift insns:
8315
8316@smallexample
8317(define_split
8318 [(set (match_operand:SI 0 "gen_reg_operand" "")
8319 (sign_extend:SI (match_operand:HI 1 "gen_reg_operand" "")))]
8320 ""
8321 [(set (match_dup 0)
8322 (ashift:SI (match_dup 1)
8323 (const_int 16)))
8324 (set (match_dup 0)
8325 (ashiftrt:SI (match_dup 0)
8326 (const_int 16)))]
8327 "
8328@{ operands[1] = gen_lowpart (SImode, operands[1]); @}")
8329@end smallexample
8330
8331When the combiner phase tries to split an insn pattern, it is always the
8332case that the pattern is @emph{not} matched by any @code{define_insn}.
8333The combiner pass first tries to split a single @code{set} expression
8334and then the same @code{set} expression inside a @code{parallel}, but
8335followed by a @code{clobber} of a pseudo-reg to use as a scratch
8336register. In these cases, the combiner expects exactly two new insn
8337patterns to be generated. It will verify that these patterns match some
8338@code{define_insn} definitions, so you need not do this test in the
8339@code{define_split} (of course, there is no point in writing a
8340@code{define_split} that will never produce insns that match).
8341
8342Here is an example of this use of @code{define_split}, taken from
8343@file{rs6000.md}:
8344
8345@smallexample
8346(define_split
8347 [(set (match_operand:SI 0 "gen_reg_operand" "")
8348 (plus:SI (match_operand:SI 1 "gen_reg_operand" "")
8349 (match_operand:SI 2 "non_add_cint_operand" "")))]
8350 ""
8351 [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
8352 (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
8353"
8354@{
8355 int low = INTVAL (operands[2]) & 0xffff;
8356 int high = (unsigned) INTVAL (operands[2]) >> 16;
8357
8358 if (low & 0x8000)
8359 high++, low |= 0xffff0000;
8360
3a598fbe
JL
8361 operands[3] = GEN_INT (high << 16);
8362 operands[4] = GEN_INT (low);
03dda8e3
RK
8363@}")
8364@end smallexample
8365
8366Here the predicate @code{non_add_cint_operand} matches any
8367@code{const_int} that is @emph{not} a valid operand of a single add
8368insn. The add with the smaller displacement is written so that it
8369can be substituted into the address of a subsequent operation.
8370
8371An example that uses a scratch register, from the same file, generates
8372an equality comparison of a register and a large constant:
8373
8374@smallexample
8375(define_split
8376 [(set (match_operand:CC 0 "cc_reg_operand" "")
8377 (compare:CC (match_operand:SI 1 "gen_reg_operand" "")
8378 (match_operand:SI 2 "non_short_cint_operand" "")))
8379 (clobber (match_operand:SI 3 "gen_reg_operand" ""))]
8380 "find_single_use (operands[0], insn, 0)
8381 && (GET_CODE (*find_single_use (operands[0], insn, 0)) == EQ
8382 || GET_CODE (*find_single_use (operands[0], insn, 0)) == NE)"
8383 [(set (match_dup 3) (xor:SI (match_dup 1) (match_dup 4)))
8384 (set (match_dup 0) (compare:CC (match_dup 3) (match_dup 5)))]
8385 "
8386@{
12bcfaa1 8387 /* @r{Get the constant we are comparing against, C, and see what it
03dda8e3 8388 looks like sign-extended to 16 bits. Then see what constant
12bcfaa1 8389 could be XOR'ed with C to get the sign-extended value.} */
03dda8e3
RK
8390
8391 int c = INTVAL (operands[2]);
8392 int sextc = (c << 16) >> 16;
8393 int xorv = c ^ sextc;
8394
3a598fbe
JL
8395 operands[4] = GEN_INT (xorv);
8396 operands[5] = GEN_INT (sextc);
03dda8e3
RK
8397@}")
8398@end smallexample
8399
8400To avoid confusion, don't write a single @code{define_split} that
8401accepts some insns that match some @code{define_insn} as well as some
8402insns that don't. Instead, write two separate @code{define_split}
8403definitions, one for the insns that are valid and one for the insns that
8404are not valid.
8405
6b24c259
JH
8406The splitter is allowed to split jump instructions into sequence of
8407jumps or create new jumps in while splitting non-jump instructions. As
d5f9df6a 8408the control flow graph and branch prediction information needs to be updated,
f282ffb3 8409several restriction apply.
6b24c259
JH
8410
8411Splitting of jump instruction into sequence that over by another jump
c21cd8b1 8412instruction is always valid, as compiler expect identical behavior of new
6b24c259
JH
8413jump. When new sequence contains multiple jump instructions or new labels,
8414more assistance is needed. Splitter is required to create only unconditional
8415jumps, or simple conditional jump instructions. Additionally it must attach a
63519d23 8416@code{REG_BR_PROB} note to each conditional jump. A global variable
addd6f64 8417@code{split_branch_probability} holds the probability of the original branch in case
e4ae5e77 8418it was a simple conditional jump, @minus{}1 otherwise. To simplify
addd6f64 8419recomputing of edge frequencies, the new sequence is required to have only
6b24c259
JH
8420forward jumps to the newly created labels.
8421
fae81b38 8422@findex define_insn_and_split
c88c0d42
CP
8423For the common case where the pattern of a define_split exactly matches the
8424pattern of a define_insn, use @code{define_insn_and_split}. It looks like
8425this:
8426
8427@smallexample
8428(define_insn_and_split
8429 [@var{insn-pattern}]
8430 "@var{condition}"
8431 "@var{output-template}"
8432 "@var{split-condition}"
8433 [@var{new-insn-pattern-1}
8434 @var{new-insn-pattern-2}
8435 @dots{}]
630d3d5a 8436 "@var{preparation-statements}"
c88c0d42
CP
8437 [@var{insn-attributes}])
8438
8439@end smallexample
8440
8441@var{insn-pattern}, @var{condition}, @var{output-template}, and
8442@var{insn-attributes} are used as in @code{define_insn}. The
8443@var{new-insn-pattern} vector and the @var{preparation-statements} are used as
8444in a @code{define_split}. The @var{split-condition} is also used as in
8445@code{define_split}, with the additional behavior that if the condition starts
8446with @samp{&&}, the condition used for the split will be the constructed as a
d7d9c429 8447logical ``and'' of the split condition with the insn condition. For example,
c88c0d42
CP
8448from i386.md:
8449
8450@smallexample
8451(define_insn_and_split "zero_extendhisi2_and"
8452 [(set (match_operand:SI 0 "register_operand" "=r")
8453 (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))
8454 (clobber (reg:CC 17))]
8455 "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size"
8456 "#"
8457 "&& reload_completed"
f282ffb3 8458 [(parallel [(set (match_dup 0)
9c34dbbf 8459 (and:SI (match_dup 0) (const_int 65535)))
6ccde948 8460 (clobber (reg:CC 17))])]
c88c0d42
CP
8461 ""
8462 [(set_attr "type" "alu1")])
8463
8464@end smallexample
8465
ebb48a4d 8466In this case, the actual split condition will be
aee96fe9 8467@samp{TARGET_ZERO_EXTEND_WITH_AND && !optimize_size && reload_completed}.
c88c0d42
CP
8468
8469The @code{define_insn_and_split} construction provides exactly the same
8470functionality as two separate @code{define_insn} and @code{define_split}
8471patterns. It exists for compactness, and as a maintenance tool to prevent
8472having to ensure the two patterns' templates match.
8473
f4fde1b3
RS
8474@findex define_insn_and_rewrite
8475It is sometimes useful to have a @code{define_insn_and_split}
8476that replaces specific operands of an instruction but leaves the
8477rest of the instruction pattern unchanged. You can do this directly
8478with a @code{define_insn_and_split}, but it requires a
8479@var{new-insn-pattern-1} that repeats most of the original @var{insn-pattern}.
8480There is also the complication that an implicit @code{parallel} in
8481@var{insn-pattern} must become an explicit @code{parallel} in
8482@var{new-insn-pattern-1}, which is easy to overlook.
8483A simpler alternative is to use @code{define_insn_and_rewrite}, which
8484is a form of @code{define_insn_and_split} that automatically generates
8485@var{new-insn-pattern-1} by replacing each @code{match_operand}
8486in @var{insn-pattern} with a corresponding @code{match_dup}, and each
8487@code{match_operator} in the pattern with a corresponding @code{match_op_dup}.
8488The arguments are otherwise identical to @code{define_insn_and_split}:
8489
8490@smallexample
8491(define_insn_and_rewrite
8492 [@var{insn-pattern}]
8493 "@var{condition}"
8494 "@var{output-template}"
8495 "@var{split-condition}"
8496 "@var{preparation-statements}"
8497 [@var{insn-attributes}])
8498@end smallexample
8499
8500The @code{match_dup}s and @code{match_op_dup}s in the new
8501instruction pattern use any new operand values that the
8502@var{preparation-statements} store in the @code{operands} array,
8503as for a normal @code{define_insn_and_split}. @var{preparation-statements}
8504can also emit additional instructions before the new instruction.
8505They can even emit an entirely different sequence of instructions and
8506use @code{DONE} to avoid emitting a new form of the original
8507instruction.
8508
8509The split in a @code{define_insn_and_rewrite} is only intended
8510to apply to existing instructions that match @var{insn-pattern}.
8511@var{split-condition} must therefore start with @code{&&},
8512so that the split condition applies on top of @var{condition}.
8513
8514Here is an example from the AArch64 SVE port, in which operand 1 is
8515known to be equivalent to an all-true constant and isn't used by the
8516output template:
8517
8518@smallexample
8519(define_insn_and_rewrite "*while_ult<GPI:mode><PRED_ALL:mode>_cc"
8520 [(set (reg:CC CC_REGNUM)
8521 (compare:CC
8522 (unspec:SI [(match_operand:PRED_ALL 1)
8523 (unspec:PRED_ALL
8524 [(match_operand:GPI 2 "aarch64_reg_or_zero" "rZ")
8525 (match_operand:GPI 3 "aarch64_reg_or_zero" "rZ")]
8526 UNSPEC_WHILE_LO)]
8527 UNSPEC_PTEST_PTRUE)
8528 (const_int 0)))
8529 (set (match_operand:PRED_ALL 0 "register_operand" "=Upa")
8530 (unspec:PRED_ALL [(match_dup 2)
8531 (match_dup 3)]
8532 UNSPEC_WHILE_LO))]
8533 "TARGET_SVE"
8534 "whilelo\t%0.<PRED_ALL:Vetype>, %<w>2, %<w>3"
8535 ;; Force the compiler to drop the unused predicate operand, so that we
8536 ;; don't have an unnecessary PTRUE.
8537 "&& !CONSTANT_P (operands[1])"
8538 @{
8539 operands[1] = CONSTM1_RTX (<MODE>mode);
8540 @}
8541)
8542@end smallexample
8543
8544The splitter in this case simply replaces operand 1 with the constant
8545value that it is known to have. The equivalent @code{define_insn_and_split}
8546would be:
8547
8548@smallexample
8549(define_insn_and_split "*while_ult<GPI:mode><PRED_ALL:mode>_cc"
8550 [(set (reg:CC CC_REGNUM)
8551 (compare:CC
8552 (unspec:SI [(match_operand:PRED_ALL 1)
8553 (unspec:PRED_ALL
8554 [(match_operand:GPI 2 "aarch64_reg_or_zero" "rZ")
8555 (match_operand:GPI 3 "aarch64_reg_or_zero" "rZ")]
8556 UNSPEC_WHILE_LO)]
8557 UNSPEC_PTEST_PTRUE)
8558 (const_int 0)))
8559 (set (match_operand:PRED_ALL 0 "register_operand" "=Upa")
8560 (unspec:PRED_ALL [(match_dup 2)
8561 (match_dup 3)]
8562 UNSPEC_WHILE_LO))]
8563 "TARGET_SVE"
8564 "whilelo\t%0.<PRED_ALL:Vetype>, %<w>2, %<w>3"
8565 ;; Force the compiler to drop the unused predicate operand, so that we
8566 ;; don't have an unnecessary PTRUE.
8567 "&& !CONSTANT_P (operands[1])"
8568 [(parallel
8569 [(set (reg:CC CC_REGNUM)
8570 (compare:CC
8571 (unspec:SI [(match_dup 1)
8572 (unspec:PRED_ALL [(match_dup 2)
8573 (match_dup 3)]
8574 UNSPEC_WHILE_LO)]
8575 UNSPEC_PTEST_PTRUE)
8576 (const_int 0)))
8577 (set (match_dup 0)
8578 (unspec:PRED_ALL [(match_dup 2)
8579 (match_dup 3)]
8580 UNSPEC_WHILE_LO))])]
8581 @{
8582 operands[1] = CONSTM1_RTX (<MODE>mode);
8583 @}
8584)
8585@end smallexample
8586
a5249a21
HPN
8587@end ifset
8588@ifset INTERNALS
04d8aa70
AM
8589@node Including Patterns
8590@section Including Patterns in Machine Descriptions.
8591@cindex insn includes
8592
8593@findex include
8594The @code{include} pattern tells the compiler tools where to
8595look for patterns that are in files other than in the file
8a36672b 8596@file{.md}. This is used only at build time and there is no preprocessing allowed.
04d8aa70
AM
8597
8598It looks like:
8599
8600@smallexample
8601
8602(include
8603 @var{pathname})
8604@end smallexample
8605
8606For example:
8607
8608@smallexample
8609
f282ffb3 8610(include "filestuff")
04d8aa70
AM
8611
8612@end smallexample
8613
27d30956 8614Where @var{pathname} is a string that specifies the location of the file,
8a36672b 8615specifies the include file to be in @file{gcc/config/target/filestuff}. The
04d8aa70
AM
8616directory @file{gcc/config/target} is regarded as the default directory.
8617
8618
f282ffb3
JM
8619Machine descriptions may be split up into smaller more manageable subsections
8620and placed into subdirectories.
04d8aa70
AM
8621
8622By specifying:
8623
8624@smallexample
8625
f282ffb3 8626(include "BOGUS/filestuff")
04d8aa70
AM
8627
8628@end smallexample
8629
8630the include file is specified to be in @file{gcc/config/@var{target}/BOGUS/filestuff}.
8631
8632Specifying an absolute path for the include file such as;
8633@smallexample
8634
f282ffb3 8635(include "/u2/BOGUS/filestuff")
04d8aa70
AM
8636
8637@end smallexample
f282ffb3 8638is permitted but is not encouraged.
04d8aa70
AM
8639
8640@subsection RTL Generation Tool Options for Directory Search
8641@cindex directory options .md
8642@cindex options, directory search
8643@cindex search options
8644
8645The @option{-I@var{dir}} option specifies directories to search for machine descriptions.
8646For example:
8647
8648@smallexample
8649
8650genrecog -I/p1/abc/proc1 -I/p2/abcd/pro2 target.md
8651
8652@end smallexample
8653
8654
8655Add the directory @var{dir} to the head of the list of directories to be
8656searched for header files. This can be used to override a system machine definition
8657file, substituting your own version, since these directories are
8658searched before the default machine description file directories. If you use more than
8659one @option{-I} option, the directories are scanned in left-to-right
8660order; the standard default directory come after.
8661
8662
a5249a21
HPN
8663@end ifset
8664@ifset INTERNALS
f3a3d0d3
RH
8665@node Peephole Definitions
8666@section Machine-Specific Peephole Optimizers
8667@cindex peephole optimizer definitions
8668@cindex defining peephole optimizers
8669
8670In addition to instruction patterns the @file{md} file may contain
8671definitions of machine-specific peephole optimizations.
8672
8673The combiner does not notice certain peephole optimizations when the data
8674flow in the program does not suggest that it should try them. For example,
8675sometimes two consecutive insns related in purpose can be combined even
8676though the second one does not appear to use a register computed in the
8677first one. A machine-specific peephole optimizer can detect such
8678opportunities.
8679
8680There are two forms of peephole definitions that may be used. The
8681original @code{define_peephole} is run at assembly output time to
8682match insns and substitute assembly text. Use of @code{define_peephole}
8683is deprecated.
8684
8685A newer @code{define_peephole2} matches insns and substitutes new
8686insns. The @code{peephole2} pass is run after register allocation
ebb48a4d 8687but before scheduling, which may result in much better code for
f3a3d0d3
RH
8688targets that do scheduling.
8689
8690@menu
8691* define_peephole:: RTL to Text Peephole Optimizers
8692* define_peephole2:: RTL to RTL Peephole Optimizers
8693@end menu
8694
a5249a21
HPN
8695@end ifset
8696@ifset INTERNALS
f3a3d0d3
RH
8697@node define_peephole
8698@subsection RTL to Text Peephole Optimizers
8699@findex define_peephole
8700
8701@need 1000
8702A definition looks like this:
8703
8704@smallexample
8705(define_peephole
8706 [@var{insn-pattern-1}
8707 @var{insn-pattern-2}
8708 @dots{}]
8709 "@var{condition}"
8710 "@var{template}"
630d3d5a 8711 "@var{optional-insn-attributes}")
f3a3d0d3
RH
8712@end smallexample
8713
8714@noindent
8715The last string operand may be omitted if you are not using any
8716machine-specific information in this machine description. If present,
8717it must obey the same rules as in a @code{define_insn}.
8718
8719In this skeleton, @var{insn-pattern-1} and so on are patterns to match
8720consecutive insns. The optimization applies to a sequence of insns when
8721@var{insn-pattern-1} matches the first one, @var{insn-pattern-2} matches
bd819a4a 8722the next, and so on.
f3a3d0d3
RH
8723
8724Each of the insns matched by a peephole must also match a
8725@code{define_insn}. Peepholes are checked only at the last stage just
8726before code generation, and only optionally. Therefore, any insn which
8727would match a peephole but no @code{define_insn} will cause a crash in code
8728generation in an unoptimized compilation, or at various optimization
8729stages.
8730
8731The operands of the insns are matched with @code{match_operands},
8732@code{match_operator}, and @code{match_dup}, as usual. What is not
8733usual is that the operand numbers apply to all the insn patterns in the
8734definition. So, you can check for identical operands in two insns by
8735using @code{match_operand} in one insn and @code{match_dup} in the
8736other.
8737
8738The operand constraints used in @code{match_operand} patterns do not have
8739any direct effect on the applicability of the peephole, but they will
8740be validated afterward, so make sure your constraints are general enough
8741to apply whenever the peephole matches. If the peephole matches
8742but the constraints are not satisfied, the compiler will crash.
8743
8744It is safe to omit constraints in all the operands of the peephole; or
8745you can write constraints which serve as a double-check on the criteria
8746previously tested.
8747
8748Once a sequence of insns matches the patterns, the @var{condition} is
8749checked. This is a C expression which makes the final decision whether to
8750perform the optimization (we do so if the expression is nonzero). If
8751@var{condition} is omitted (in other words, the string is empty) then the
8752optimization is applied to every sequence of insns that matches the
8753patterns.
8754
8755The defined peephole optimizations are applied after register allocation
8756is complete. Therefore, the peephole definition can check which
8757operands have ended up in which kinds of registers, just by looking at
8758the operands.
8759
8760@findex prev_active_insn
8761The way to refer to the operands in @var{condition} is to write
8762@code{operands[@var{i}]} for operand number @var{i} (as matched by
8763@code{(match_operand @var{i} @dots{})}). Use the variable @code{insn}
8764to refer to the last of the insns being matched; use
8765@code{prev_active_insn} to find the preceding insns.
8766
8767@findex dead_or_set_p
8768When optimizing computations with intermediate results, you can use
8769@var{condition} to match only when the intermediate results are not used
8770elsewhere. Use the C expression @code{dead_or_set_p (@var{insn},
8771@var{op})}, where @var{insn} is the insn in which you expect the value
8772to be used for the last time (from the value of @code{insn}, together
8773with use of @code{prev_nonnote_insn}), and @var{op} is the intermediate
bd819a4a 8774value (from @code{operands[@var{i}]}).
f3a3d0d3
RH
8775
8776Applying the optimization means replacing the sequence of insns with one
8777new insn. The @var{template} controls ultimate output of assembler code
8778for this combined insn. It works exactly like the template of a
8779@code{define_insn}. Operand numbers in this template are the same ones
8780used in matching the original sequence of insns.
8781
8782The result of a defined peephole optimizer does not need to match any of
8783the insn patterns in the machine description; it does not even have an
8784opportunity to match them. The peephole optimizer definition itself serves
8785as the insn pattern to control how the insn is output.
8786
8787Defined peephole optimizers are run as assembler code is being output,
8788so the insns they produce are never combined or rearranged in any way.
8789
8790Here is an example, taken from the 68000 machine description:
8791
8792@smallexample
8793(define_peephole
8794 [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
8795 (set (match_operand:DF 0 "register_operand" "=f")
8796 (match_operand:DF 1 "register_operand" "ad"))]
8797 "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
f3a3d0d3
RH
8798@{
8799 rtx xoperands[2];
a2a8cc44 8800 xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
f3a3d0d3 8801#ifdef MOTOROLA
0f40f9f7
ZW
8802 output_asm_insn ("move.l %1,(sp)", xoperands);
8803 output_asm_insn ("move.l %1,-(sp)", operands);
8804 return "fmove.d (sp)+,%0";
f3a3d0d3 8805#else
0f40f9f7
ZW
8806 output_asm_insn ("movel %1,sp@@", xoperands);
8807 output_asm_insn ("movel %1,sp@@-", operands);
8808 return "fmoved sp@@+,%0";
f3a3d0d3 8809#endif
0f40f9f7 8810@})
f3a3d0d3
RH
8811@end smallexample
8812
8813@need 1000
8814The effect of this optimization is to change
8815
8816@smallexample
8817@group
8818jbsr _foobar
8819addql #4,sp
8820movel d1,sp@@-
8821movel d0,sp@@-
8822fmoved sp@@+,fp0
8823@end group
8824@end smallexample
8825
8826@noindent
8827into
8828
8829@smallexample
8830@group
8831jbsr _foobar
8832movel d1,sp@@
8833movel d0,sp@@-
8834fmoved sp@@+,fp0
8835@end group
8836@end smallexample
8837
8838@ignore
8839@findex CC_REVERSED
8840If a peephole matches a sequence including one or more jump insns, you must
8841take account of the flags such as @code{CC_REVERSED} which specify that the
8842condition codes are represented in an unusual manner. The compiler
8843automatically alters any ordinary conditional jumps which occur in such
8844situations, but the compiler cannot alter jumps which have been replaced by
8845peephole optimizations. So it is up to you to alter the assembler code
8846that the peephole produces. Supply C code to write the assembler output,
8847and in this C code check the condition code status flags and change the
8848assembler code as appropriate.
8849@end ignore
8850
8851@var{insn-pattern-1} and so on look @emph{almost} like the second
8852operand of @code{define_insn}. There is one important difference: the
8853second operand of @code{define_insn} consists of one or more RTX's
8854enclosed in square brackets. Usually, there is only one: then the same
8855action can be written as an element of a @code{define_peephole}. But
8856when there are multiple actions in a @code{define_insn}, they are
8857implicitly enclosed in a @code{parallel}. Then you must explicitly
8858write the @code{parallel}, and the square brackets within it, in the
8859@code{define_peephole}. Thus, if an insn pattern looks like this,
8860
8861@smallexample
8862(define_insn "divmodsi4"
8863 [(set (match_operand:SI 0 "general_operand" "=d")
8864 (div:SI (match_operand:SI 1 "general_operand" "0")
8865 (match_operand:SI 2 "general_operand" "dmsK")))
8866 (set (match_operand:SI 3 "general_operand" "=d")
8867 (mod:SI (match_dup 1) (match_dup 2)))]
8868 "TARGET_68020"
8869 "divsl%.l %2,%3:%0")
8870@end smallexample
8871
8872@noindent
8873then the way to mention this insn in a peephole is as follows:
8874
8875@smallexample
8876(define_peephole
8877 [@dots{}
8878 (parallel
8879 [(set (match_operand:SI 0 "general_operand" "=d")
8880 (div:SI (match_operand:SI 1 "general_operand" "0")
8881 (match_operand:SI 2 "general_operand" "dmsK")))
8882 (set (match_operand:SI 3 "general_operand" "=d")
8883 (mod:SI (match_dup 1) (match_dup 2)))])
8884 @dots{}]
8885 @dots{})
8886@end smallexample
8887
a5249a21
HPN
8888@end ifset
8889@ifset INTERNALS
f3a3d0d3
RH
8890@node define_peephole2
8891@subsection RTL to RTL Peephole Optimizers
8892@findex define_peephole2
8893
8894The @code{define_peephole2} definition tells the compiler how to
ebb48a4d 8895substitute one sequence of instructions for another sequence,
f3a3d0d3
RH
8896what additional scratch registers may be needed and what their
8897lifetimes must be.
8898
8899@smallexample
8900(define_peephole2
8901 [@var{insn-pattern-1}
8902 @var{insn-pattern-2}
8903 @dots{}]
8904 "@var{condition}"
8905 [@var{new-insn-pattern-1}
8906 @var{new-insn-pattern-2}
8907 @dots{}]
630d3d5a 8908 "@var{preparation-statements}")
f3a3d0d3
RH
8909@end smallexample
8910
8911The definition is almost identical to @code{define_split}
8912(@pxref{Insn Splitting}) except that the pattern to match is not a
8913single instruction, but a sequence of instructions.
8914
8915It is possible to request additional scratch registers for use in the
8916output template. If appropriate registers are not free, the pattern
8917will simply not match.
8918
8919@findex match_scratch
8920@findex match_dup
8921Scratch registers are requested with a @code{match_scratch} pattern at
8922the top level of the input pattern. The allocated register (initially) will
8923be dead at the point requested within the original sequence. If the scratch
8924is used at more than a single point, a @code{match_dup} pattern at the
8925top level of the input pattern marks the last position in the input sequence
8926at which the register must be available.
8927
8928Here is an example from the IA-32 machine description:
8929
8930@smallexample
8931(define_peephole2
8932 [(match_scratch:SI 2 "r")
8933 (parallel [(set (match_operand:SI 0 "register_operand" "")
8934 (match_operator:SI 3 "arith_or_logical_operator"
8935 [(match_dup 0)
8936 (match_operand:SI 1 "memory_operand" "")]))
8937 (clobber (reg:CC 17))])]
8938 "! optimize_size && ! TARGET_READ_MODIFY"
8939 [(set (match_dup 2) (match_dup 1))
8940 (parallel [(set (match_dup 0)
8941 (match_op_dup 3 [(match_dup 0) (match_dup 2)]))
8942 (clobber (reg:CC 17))])]
8943 "")
8944@end smallexample
8945
8946@noindent
8947This pattern tries to split a load from its use in the hopes that we'll be
8948able to schedule around the memory load latency. It allocates a single
8949@code{SImode} register of class @code{GENERAL_REGS} (@code{"r"}) that needs
8950to be live only at the point just before the arithmetic.
8951
b192711e 8952A real example requiring extended scratch lifetimes is harder to come by,
f3a3d0d3
RH
8953so here's a silly made-up example:
8954
8955@smallexample
8956(define_peephole2
8957 [(match_scratch:SI 4 "r")
8958 (set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))
8959 (set (match_operand:SI 2 "" "") (match_dup 1))
8960 (match_dup 4)
8961 (set (match_operand:SI 3 "" "") (match_dup 1))]
630d3d5a 8962 "/* @r{determine 1 does not overlap 0 and 2} */"
f3a3d0d3
RH
8963 [(set (match_dup 4) (match_dup 1))
8964 (set (match_dup 0) (match_dup 4))
c8fbf1fa 8965 (set (match_dup 2) (match_dup 4))
f3a3d0d3
RH
8966 (set (match_dup 3) (match_dup 4))]
8967 "")
8968@end smallexample
8969
582d1f90
PK
8970There are two special macros defined for use in the preparation statements:
8971@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8972as a statement.
8973
8974@table @code
8975
8976@findex DONE
8977@item DONE
8978Use the @code{DONE} macro to end RTL generation for the peephole. The
8979only RTL insns generated as replacement for the matched input insn will
8980be those already emitted by explicit calls to @code{emit_insn} within
8981the preparation statements; the replacement pattern is not used.
8982
8983@findex FAIL
8984@item FAIL
8985Make the @code{define_peephole2} fail on this occasion. When a @code{define_peephole2}
8986fails, it means that the replacement was not truly available for the
8987particular inputs it was given. In that case, GCC may still apply a
8988later @code{define_peephole2} that also matches the given insn pattern.
8989(Note that this is different from @code{define_split}, where @code{FAIL}
8990prevents the input insn from being split at all.)
8991@end table
8992
8993If the preparation falls through (invokes neither @code{DONE} nor
8994@code{FAIL}), then the @code{define_peephole2} uses the replacement
8995template.
8996
f3a3d0d3 8997@noindent
a628d195
RH
8998If we had not added the @code{(match_dup 4)} in the middle of the input
8999sequence, it might have been the case that the register we chose at the
9000beginning of the sequence is killed by the first or second @code{set}.
f3a3d0d3 9001
a5249a21
HPN
9002@end ifset
9003@ifset INTERNALS
03dda8e3
RK
9004@node Insn Attributes
9005@section Instruction Attributes
9006@cindex insn attributes
9007@cindex instruction attributes
9008
9009In addition to describing the instruction supported by the target machine,
9010the @file{md} file also defines a group of @dfn{attributes} and a set of
9011values for each. Every generated insn is assigned a value for each attribute.
9012One possible attribute would be the effect that the insn has on the machine's
9013condition code. This attribute can then be used by @code{NOTICE_UPDATE_CC}
9014to track the condition codes.
9015
9016@menu
9017* Defining Attributes:: Specifying attributes and their values.
9018* Expressions:: Valid expressions for attribute values.
9019* Tagging Insns:: Assigning attribute values to insns.
9020* Attr Example:: An example of assigning attributes.
9021* Insn Lengths:: Computing the length of insns.
9022* Constant Attributes:: Defining attributes that are constant.
13b72c22 9023* Mnemonic Attribute:: Obtain the instruction mnemonic as attribute value.
03dda8e3 9024* Delay Slots:: Defining delay slots required for a machine.
fae15c93 9025* Processor pipeline description:: Specifying information for insn scheduling.
03dda8e3
RK
9026@end menu
9027
a5249a21
HPN
9028@end ifset
9029@ifset INTERNALS
03dda8e3
RK
9030@node Defining Attributes
9031@subsection Defining Attributes and their Values
9032@cindex defining attributes and their values
9033@cindex attributes, defining
9034
9035@findex define_attr
9036The @code{define_attr} expression is used to define each attribute required
9037by the target machine. It looks like:
9038
9039@smallexample
9040(define_attr @var{name} @var{list-of-values} @var{default})
9041@end smallexample
9042
13b72c22
AK
9043@var{name} is a string specifying the name of the attribute being
9044defined. Some attributes are used in a special way by the rest of the
9045compiler. The @code{enabled} attribute can be used to conditionally
9046enable or disable insn alternatives (@pxref{Disable Insn
9047Alternatives}). The @code{predicable} attribute, together with a
9048suitable @code{define_cond_exec} (@pxref{Conditional Execution}), can
9049be used to automatically generate conditional variants of instruction
9050patterns. The @code{mnemonic} attribute can be used to check for the
9051instruction mnemonic (@pxref{Mnemonic Attribute}). The compiler
9052internally uses the names @code{ce_enabled} and @code{nonce_enabled},
9053so they should not be used elsewhere as alternative names.
03dda8e3
RK
9054
9055@var{list-of-values} is either a string that specifies a comma-separated
9056list of values that can be assigned to the attribute, or a null string to
9057indicate that the attribute takes numeric values.
9058
9059@var{default} is an attribute expression that gives the value of this
9060attribute for insns that match patterns whose definition does not include
9061an explicit value for this attribute. @xref{Attr Example}, for more
9062information on the handling of defaults. @xref{Constant Attributes},
9063for information on attributes that do not depend on any particular insn.
9064
9065@findex insn-attr.h
9066For each defined attribute, a number of definitions are written to the
9067@file{insn-attr.h} file. For cases where an explicit set of values is
9068specified for an attribute, the following are defined:
9069
9070@itemize @bullet
9071@item
9072A @samp{#define} is written for the symbol @samp{HAVE_ATTR_@var{name}}.
9073
9074@item
2eac577f 9075An enumerated class is defined for @samp{attr_@var{name}} with
03dda8e3 9076elements of the form @samp{@var{upper-name}_@var{upper-value}} where
4bd0bee9 9077the attribute name and value are first converted to uppercase.
03dda8e3
RK
9078
9079@item
9080A function @samp{get_attr_@var{name}} is defined that is passed an insn and
9081returns the attribute value for that insn.
9082@end itemize
9083
9084For example, if the following is present in the @file{md} file:
9085
9086@smallexample
9087(define_attr "type" "branch,fp,load,store,arith" @dots{})
9088@end smallexample
9089
9090@noindent
9091the following lines will be written to the file @file{insn-attr.h}.
9092
9093@smallexample
d327457f 9094#define HAVE_ATTR_type 1
03dda8e3
RK
9095enum attr_type @{TYPE_BRANCH, TYPE_FP, TYPE_LOAD,
9096 TYPE_STORE, TYPE_ARITH@};
9097extern enum attr_type get_attr_type ();
9098@end smallexample
9099
9100If the attribute takes numeric values, no @code{enum} type will be
9101defined and the function to obtain the attribute's value will return
9102@code{int}.
9103
7ac28727
AK
9104There are attributes which are tied to a specific meaning. These
9105attributes are not free to use for other purposes:
9106
9107@table @code
9108@item length
9109The @code{length} attribute is used to calculate the length of emitted
9110code chunks. This is especially important when verifying branch
9111distances. @xref{Insn Lengths}.
9112
9113@item enabled
9114The @code{enabled} attribute can be defined to prevent certain
9115alternatives of an insn definition from being used during code
9116generation. @xref{Disable Insn Alternatives}.
13b72c22
AK
9117
9118@item mnemonic
9119The @code{mnemonic} attribute can be defined to implement instruction
630ba2fd 9120specific checks in e.g.@: the pipeline description.
13b72c22 9121@xref{Mnemonic Attribute}.
7ac28727
AK
9122@end table
9123
d327457f
JR
9124For each of these special attributes, the corresponding
9125@samp{HAVE_ATTR_@var{name}} @samp{#define} is also written when the
9126attribute is not defined; in that case, it is defined as @samp{0}.
9127
8f4fe86c
RS
9128@findex define_enum_attr
9129@anchor{define_enum_attr}
9130Another way of defining an attribute is to use:
9131
9132@smallexample
9133(define_enum_attr "@var{attr}" "@var{enum}" @var{default})
9134@end smallexample
9135
9136This works in just the same way as @code{define_attr}, except that
9137the list of values is taken from a separate enumeration called
9138@var{enum} (@pxref{define_enum}). This form allows you to use
9139the same list of values for several attributes without having to
9140repeat the list each time. For example:
9141
9142@smallexample
9143(define_enum "processor" [
9144 model_a
9145 model_b
9146 @dots{}
9147])
9148(define_enum_attr "arch" "processor"
9149 (const (symbol_ref "target_arch")))
9150(define_enum_attr "tune" "processor"
9151 (const (symbol_ref "target_tune")))
9152@end smallexample
9153
9154defines the same attributes as:
9155
9156@smallexample
9157(define_attr "arch" "model_a,model_b,@dots{}"
9158 (const (symbol_ref "target_arch")))
9159(define_attr "tune" "model_a,model_b,@dots{}"
9160 (const (symbol_ref "target_tune")))
9161@end smallexample
9162
9163but without duplicating the processor list. The second example defines two
9164separate C enums (@code{attr_arch} and @code{attr_tune}) whereas the first
9165defines a single C enum (@code{processor}).
a5249a21
HPN
9166@end ifset
9167@ifset INTERNALS
03dda8e3
RK
9168@node Expressions
9169@subsection Attribute Expressions
9170@cindex attribute expressions
9171
9172RTL expressions used to define attributes use the codes described above
9173plus a few specific to attribute definitions, to be discussed below.
9174Attribute value expressions must have one of the following forms:
9175
9176@table @code
9177@cindex @code{const_int} and attributes
9178@item (const_int @var{i})
9179The integer @var{i} specifies the value of a numeric attribute. @var{i}
9180must be non-negative.
9181
9182The value of a numeric attribute can be specified either with a
00bc45c1
RH
9183@code{const_int}, or as an integer represented as a string in
9184@code{const_string}, @code{eq_attr} (see below), @code{attr},
9185@code{symbol_ref}, simple arithmetic expressions, and @code{set_attr}
9186overrides on specific instructions (@pxref{Tagging Insns}).
03dda8e3
RK
9187
9188@cindex @code{const_string} and attributes
9189@item (const_string @var{value})
9190The string @var{value} specifies a constant attribute value.
9191If @var{value} is specified as @samp{"*"}, it means that the default value of
9192the attribute is to be used for the insn containing this expression.
9193@samp{"*"} obviously cannot be used in the @var{default} expression
bd819a4a 9194of a @code{define_attr}.
03dda8e3
RK
9195
9196If the attribute whose value is being specified is numeric, @var{value}
9197must be a string containing a non-negative integer (normally
9198@code{const_int} would be used in this case). Otherwise, it must
9199contain one of the valid values for the attribute.
9200
9201@cindex @code{if_then_else} and attributes
9202@item (if_then_else @var{test} @var{true-value} @var{false-value})
9203@var{test} specifies an attribute test, whose format is defined below.
9204The value of this expression is @var{true-value} if @var{test} is true,
9205otherwise it is @var{false-value}.
9206
9207@cindex @code{cond} and attributes
9208@item (cond [@var{test1} @var{value1} @dots{}] @var{default})
9209The first operand of this expression is a vector containing an even
9210number of expressions and consisting of pairs of @var{test} and @var{value}
9211expressions. The value of the @code{cond} expression is that of the
9212@var{value} corresponding to the first true @var{test} expression. If
9213none of the @var{test} expressions are true, the value of the @code{cond}
9214expression is that of the @var{default} expression.
9215@end table
9216
9217@var{test} expressions can have one of the following forms:
9218
9219@table @code
9220@cindex @code{const_int} and attribute tests
9221@item (const_int @var{i})
df2a54e9 9222This test is true if @var{i} is nonzero and false otherwise.
03dda8e3
RK
9223
9224@cindex @code{not} and attributes
9225@cindex @code{ior} and attributes
9226@cindex @code{and} and attributes
9227@item (not @var{test})
9228@itemx (ior @var{test1} @var{test2})
9229@itemx (and @var{test1} @var{test2})
9230These tests are true if the indicated logical function is true.
9231
9232@cindex @code{match_operand} and attributes
9233@item (match_operand:@var{m} @var{n} @var{pred} @var{constraints})
9234This test is true if operand @var{n} of the insn whose attribute value
9235is being determined has mode @var{m} (this part of the test is ignored
9236if @var{m} is @code{VOIDmode}) and the function specified by the string
df2a54e9 9237@var{pred} returns a nonzero value when passed operand @var{n} and mode
03dda8e3
RK
9238@var{m} (this part of the test is ignored if @var{pred} is the null
9239string).
9240
9241The @var{constraints} operand is ignored and should be the null string.
9242
0c0d3957
RS
9243@cindex @code{match_test} and attributes
9244@item (match_test @var{c-expr})
9245The test is true if C expression @var{c-expr} is true. In non-constant
9246attributes, @var{c-expr} has access to the following variables:
9247
9248@table @var
9249@item insn
9250The rtl instruction under test.
9251@item which_alternative
9252The @code{define_insn} alternative that @var{insn} matches.
9253@xref{Output Statement}.
9254@item operands
9255An array of @var{insn}'s rtl operands.
9256@end table
9257
9258@var{c-expr} behaves like the condition in a C @code{if} statement,
9259so there is no need to explicitly convert the expression into a boolean
92600 or 1 value. For example, the following two tests are equivalent:
9261
9262@smallexample
9263(match_test "x & 2")
9264(match_test "(x & 2) != 0")
9265@end smallexample
9266
03dda8e3
RK
9267@cindex @code{le} and attributes
9268@cindex @code{leu} and attributes
9269@cindex @code{lt} and attributes
9270@cindex @code{gt} and attributes
9271@cindex @code{gtu} and attributes
9272@cindex @code{ge} and attributes
9273@cindex @code{geu} and attributes
9274@cindex @code{ne} and attributes
9275@cindex @code{eq} and attributes
9276@cindex @code{plus} and attributes
9277@cindex @code{minus} and attributes
9278@cindex @code{mult} and attributes
9279@cindex @code{div} and attributes
9280@cindex @code{mod} and attributes
9281@cindex @code{abs} and attributes
9282@cindex @code{neg} and attributes
9283@cindex @code{ashift} and attributes
9284@cindex @code{lshiftrt} and attributes
9285@cindex @code{ashiftrt} and attributes
9286@item (le @var{arith1} @var{arith2})
9287@itemx (leu @var{arith1} @var{arith2})
9288@itemx (lt @var{arith1} @var{arith2})
9289@itemx (ltu @var{arith1} @var{arith2})
9290@itemx (gt @var{arith1} @var{arith2})
9291@itemx (gtu @var{arith1} @var{arith2})
9292@itemx (ge @var{arith1} @var{arith2})
9293@itemx (geu @var{arith1} @var{arith2})
9294@itemx (ne @var{arith1} @var{arith2})
9295@itemx (eq @var{arith1} @var{arith2})
9296These tests are true if the indicated comparison of the two arithmetic
9297expressions is true. Arithmetic expressions are formed with
9298@code{plus}, @code{minus}, @code{mult}, @code{div}, @code{mod},
9299@code{abs}, @code{neg}, @code{and}, @code{ior}, @code{xor}, @code{not},
bd819a4a 9300@code{ashift}, @code{lshiftrt}, and @code{ashiftrt} expressions.
03dda8e3
RK
9301
9302@findex get_attr
9303@code{const_int} and @code{symbol_ref} are always valid terms (@pxref{Insn
9304Lengths},for additional forms). @code{symbol_ref} is a string
9305denoting a C expression that yields an @code{int} when evaluated by the
9306@samp{get_attr_@dots{}} routine. It should normally be a global
bd819a4a 9307variable.
03dda8e3
RK
9308
9309@findex eq_attr
9310@item (eq_attr @var{name} @var{value})
9311@var{name} is a string specifying the name of an attribute.
9312
9313@var{value} is a string that is either a valid value for attribute
9314@var{name}, a comma-separated list of values, or @samp{!} followed by a
9315value or list. If @var{value} does not begin with a @samp{!}, this
9316test is true if the value of the @var{name} attribute of the current
9317insn is in the list specified by @var{value}. If @var{value} begins
9318with a @samp{!}, this test is true if the attribute's value is
9319@emph{not} in the specified list.
9320
9321For example,
9322
9323@smallexample
9324(eq_attr "type" "load,store")
9325@end smallexample
9326
9327@noindent
9328is equivalent to
9329
9330@smallexample
9331(ior (eq_attr "type" "load") (eq_attr "type" "store"))
9332@end smallexample
9333
9334If @var{name} specifies an attribute of @samp{alternative}, it refers to the
9335value of the compiler variable @code{which_alternative}
9336(@pxref{Output Statement}) and the values must be small integers. For
bd819a4a 9337example,
03dda8e3
RK
9338
9339@smallexample
9340(eq_attr "alternative" "2,3")
9341@end smallexample
9342
9343@noindent
9344is equivalent to
9345
9346@smallexample
9347(ior (eq (symbol_ref "which_alternative") (const_int 2))
9348 (eq (symbol_ref "which_alternative") (const_int 3)))
9349@end smallexample
9350
9351Note that, for most attributes, an @code{eq_attr} test is simplified in cases
9352where the value of the attribute being tested is known for all insns matching
bd819a4a 9353a particular pattern. This is by far the most common case.
03dda8e3
RK
9354
9355@findex attr_flag
9356@item (attr_flag @var{name})
9357The value of an @code{attr_flag} expression is true if the flag
9358specified by @var{name} is true for the @code{insn} currently being
9359scheduled.
9360
9361@var{name} is a string specifying one of a fixed set of flags to test.
9362Test the flags @code{forward} and @code{backward} to determine the
81e7aa8e 9363direction of a conditional branch.
03dda8e3
RK
9364
9365This example describes a conditional branch delay slot which
9366can be nullified for forward branches that are taken (annul-true) or
9367for backward branches which are not taken (annul-false).
9368
9369@smallexample
9370(define_delay (eq_attr "type" "cbranch")
9371 [(eq_attr "in_branch_delay" "true")
9372 (and (eq_attr "in_branch_delay" "true")
9373 (attr_flag "forward"))
9374 (and (eq_attr "in_branch_delay" "true")
9375 (attr_flag "backward"))])
9376@end smallexample
9377
9378The @code{forward} and @code{backward} flags are false if the current
9379@code{insn} being scheduled is not a conditional branch.
9380
03dda8e3
RK
9381@code{attr_flag} is only used during delay slot scheduling and has no
9382meaning to other passes of the compiler.
00bc45c1
RH
9383
9384@findex attr
9385@item (attr @var{name})
9386The value of another attribute is returned. This is most useful
9387for numeric attributes, as @code{eq_attr} and @code{attr_flag}
9388produce more efficient code for non-numeric attributes.
03dda8e3
RK
9389@end table
9390
a5249a21
HPN
9391@end ifset
9392@ifset INTERNALS
03dda8e3
RK
9393@node Tagging Insns
9394@subsection Assigning Attribute Values to Insns
9395@cindex tagging insns
9396@cindex assigning attribute values to insns
9397
9398The value assigned to an attribute of an insn is primarily determined by
9399which pattern is matched by that insn (or which @code{define_peephole}
9400generated it). Every @code{define_insn} and @code{define_peephole} can
9401have an optional last argument to specify the values of attributes for
9402matching insns. The value of any attribute not specified in a particular
9403insn is set to the default value for that attribute, as specified in its
9404@code{define_attr}. Extensive use of default values for attributes
9405permits the specification of the values for only one or two attributes
9406in the definition of most insn patterns, as seen in the example in the
bd819a4a 9407next section.
03dda8e3
RK
9408
9409The optional last argument of @code{define_insn} and
9410@code{define_peephole} is a vector of expressions, each of which defines
9411the value for a single attribute. The most general way of assigning an
9412attribute's value is to use a @code{set} expression whose first operand is an
9413@code{attr} expression giving the name of the attribute being set. The
9414second operand of the @code{set} is an attribute expression
bd819a4a 9415(@pxref{Expressions}) giving the value of the attribute.
03dda8e3
RK
9416
9417When the attribute value depends on the @samp{alternative} attribute
9418(i.e., which is the applicable alternative in the constraint of the
9419insn), the @code{set_attr_alternative} expression can be used. It
9420allows the specification of a vector of attribute expressions, one for
9421each alternative.
9422
9423@findex set_attr
9424When the generality of arbitrary attribute expressions is not required,
9425the simpler @code{set_attr} expression can be used, which allows
9426specifying a string giving either a single attribute value or a list
9427of attribute values, one for each alternative.
9428
9429The form of each of the above specifications is shown below. In each case,
9430@var{name} is a string specifying the attribute to be set.
9431
9432@table @code
9433@item (set_attr @var{name} @var{value-string})
9434@var{value-string} is either a string giving the desired attribute value,
9435or a string containing a comma-separated list giving the values for
9436succeeding alternatives. The number of elements must match the number
9437of alternatives in the constraint of the insn pattern.
9438
9439Note that it may be useful to specify @samp{*} for some alternative, in
9440which case the attribute will assume its default value for insns matching
9441that alternative.
9442
9443@findex set_attr_alternative
9444@item (set_attr_alternative @var{name} [@var{value1} @var{value2} @dots{}])
9445Depending on the alternative of the insn, the value will be one of the
9446specified values. This is a shorthand for using a @code{cond} with
9447tests on the @samp{alternative} attribute.
9448
9449@findex attr
9450@item (set (attr @var{name}) @var{value})
9451The first operand of this @code{set} must be the special RTL expression
9452@code{attr}, whose sole operand is a string giving the name of the
9453attribute being set. @var{value} is the value of the attribute.
9454@end table
9455
9456The following shows three different ways of representing the same
9457attribute value specification:
9458
9459@smallexample
9460(set_attr "type" "load,store,arith")
9461
9462(set_attr_alternative "type"
9463 [(const_string "load") (const_string "store")
9464 (const_string "arith")])
9465
9466(set (attr "type")
9467 (cond [(eq_attr "alternative" "1") (const_string "load")
9468 (eq_attr "alternative" "2") (const_string "store")]
9469 (const_string "arith")))
9470@end smallexample
9471
9472@need 1000
9473@findex define_asm_attributes
9474The @code{define_asm_attributes} expression provides a mechanism to
9475specify the attributes assigned to insns produced from an @code{asm}
9476statement. It has the form:
9477
9478@smallexample
9479(define_asm_attributes [@var{attr-sets}])
9480@end smallexample
9481
9482@noindent
9483where @var{attr-sets} is specified the same as for both the
9484@code{define_insn} and the @code{define_peephole} expressions.
9485
9486These values will typically be the ``worst case'' attribute values. For
9487example, they might indicate that the condition code will be clobbered.
9488
9489A specification for a @code{length} attribute is handled specially. The
9490way to compute the length of an @code{asm} insn is to multiply the
9491length specified in the expression @code{define_asm_attributes} by the
9492number of machine instructions specified in the @code{asm} statement,
9493determined by counting the number of semicolons and newlines in the
9494string. Therefore, the value of the @code{length} attribute specified
9495in a @code{define_asm_attributes} should be the maximum possible length
9496of a single machine instruction.
9497
a5249a21
HPN
9498@end ifset
9499@ifset INTERNALS
03dda8e3
RK
9500@node Attr Example
9501@subsection Example of Attribute Specifications
9502@cindex attribute specifications example
9503@cindex attribute specifications
9504
9505The judicious use of defaulting is important in the efficient use of
9506insn attributes. Typically, insns are divided into @dfn{types} and an
9507attribute, customarily called @code{type}, is used to represent this
9508value. This attribute is normally used only to define the default value
9509for other attributes. An example will clarify this usage.
9510
9511Assume we have a RISC machine with a condition code and in which only
9512full-word operations are performed in registers. Let us assume that we
9513can divide all insns into loads, stores, (integer) arithmetic
9514operations, floating point operations, and branches.
9515
9516Here we will concern ourselves with determining the effect of an insn on
9517the condition code and will limit ourselves to the following possible
9518effects: The condition code can be set unpredictably (clobbered), not
9519be changed, be set to agree with the results of the operation, or only
9520changed if the item previously set into the condition code has been
9521modified.
9522
9523Here is part of a sample @file{md} file for such a machine:
9524
9525@smallexample
9526(define_attr "type" "load,store,arith,fp,branch" (const_string "arith"))
9527
9528(define_attr "cc" "clobber,unchanged,set,change0"
9529 (cond [(eq_attr "type" "load")
9530 (const_string "change0")
9531 (eq_attr "type" "store,branch")
9532 (const_string "unchanged")
9533 (eq_attr "type" "arith")
9534 (if_then_else (match_operand:SI 0 "" "")
9535 (const_string "set")
9536 (const_string "clobber"))]
9537 (const_string "clobber")))
9538
9539(define_insn ""
9540 [(set (match_operand:SI 0 "general_operand" "=r,r,m")
9541 (match_operand:SI 1 "general_operand" "r,m,r"))]
9542 ""
9543 "@@
9544 move %0,%1
9545 load %0,%1
9546 store %0,%1"
9547 [(set_attr "type" "arith,load,store")])
9548@end smallexample
9549
9550Note that we assume in the above example that arithmetic operations
9551performed on quantities smaller than a machine word clobber the condition
9552code since they will set the condition code to a value corresponding to the
9553full-word result.
9554
a5249a21
HPN
9555@end ifset
9556@ifset INTERNALS
03dda8e3
RK
9557@node Insn Lengths
9558@subsection Computing the Length of an Insn
9559@cindex insn lengths, computing
9560@cindex computing the length of an insn
9561
9562For many machines, multiple types of branch instructions are provided, each
9563for different length branch displacements. In most cases, the assembler
9564will choose the correct instruction to use. However, when the assembler
b49900cc 9565cannot do so, GCC can when a special attribute, the @code{length}
03dda8e3
RK
9566attribute, is defined. This attribute must be defined to have numeric
9567values by specifying a null string in its @code{define_attr}.
9568
b49900cc 9569In the case of the @code{length} attribute, two additional forms of
03dda8e3
RK
9570arithmetic terms are allowed in test expressions:
9571
9572@table @code
9573@cindex @code{match_dup} and attributes
9574@item (match_dup @var{n})
9575This refers to the address of operand @var{n} of the current insn, which
9576must be a @code{label_ref}.
9577
9578@cindex @code{pc} and attributes
9579@item (pc)
0c94b59f
EB
9580For non-branch instructions and backward branch instructions, this refers
9581to the address of the current insn. But for forward branch instructions,
9582this refers to the address of the next insn, because the length of the
03dda8e3
RK
9583current insn is to be computed.
9584@end table
9585
9586@cindex @code{addr_vec}, length of
9587@cindex @code{addr_diff_vec}, length of
9588For normal insns, the length will be determined by value of the
b49900cc 9589@code{length} attribute. In the case of @code{addr_vec} and
03dda8e3
RK
9590@code{addr_diff_vec} insn patterns, the length is computed as
9591the number of vectors multiplied by the size of each vector.
9592
9593Lengths are measured in addressable storage units (bytes).
9594
40da08e0
JL
9595Note that it is possible to call functions via the @code{symbol_ref}
9596mechanism to compute the length of an insn. However, if you use this
9597mechanism you must provide dummy clauses to express the maximum length
9598without using the function call. You can an example of this in the
9599@code{pa} machine description for the @code{call_symref} pattern.
9600
03dda8e3
RK
9601The following macros can be used to refine the length computation:
9602
9603@table @code
03dda8e3
RK
9604@findex ADJUST_INSN_LENGTH
9605@item ADJUST_INSN_LENGTH (@var{insn}, @var{length})
9606If defined, modifies the length assigned to instruction @var{insn} as a
9607function of the context in which it is used. @var{length} is an lvalue
9608that contains the initially computed length of the insn and should be
a8aa4e0b 9609updated with the correct length of the insn.
03dda8e3
RK
9610
9611This macro will normally not be required. A case in which it is
161d7b59 9612required is the ROMP@. On this machine, the size of an @code{addr_vec}
03dda8e3
RK
9613insn must be increased by two to compensate for the fact that alignment
9614may be required.
9615@end table
9616
9617@findex get_attr_length
9618The routine that returns @code{get_attr_length} (the value of the
9619@code{length} attribute) can be used by the output routine to
9620determine the form of the branch instruction to be written, as the
9621example below illustrates.
9622
9623As an example of the specification of variable-length branches, consider
9624the IBM 360. If we adopt the convention that a register will be set to
9625the starting address of a function, we can jump to labels within 4k of
9626the start using a four-byte instruction. Otherwise, we need a six-byte
9627sequence to load the address from memory and then branch to it.
9628
9629On such a machine, a pattern for a branch instruction might be specified
9630as follows:
9631
9632@smallexample
9633(define_insn "jump"
9634 [(set (pc)
9635 (label_ref (match_operand 0 "" "")))]
9636 ""
03dda8e3
RK
9637@{
9638 return (get_attr_length (insn) == 4
0f40f9f7
ZW
9639 ? "b %l0" : "l r15,=a(%l0); br r15");
9640@}
9c34dbbf
ZW
9641 [(set (attr "length")
9642 (if_then_else (lt (match_dup 0) (const_int 4096))
9643 (const_int 4)
9644 (const_int 6)))])
03dda8e3
RK
9645@end smallexample
9646
a5249a21
HPN
9647@end ifset
9648@ifset INTERNALS
03dda8e3
RK
9649@node Constant Attributes
9650@subsection Constant Attributes
9651@cindex constant attributes
9652
9653A special form of @code{define_attr}, where the expression for the
9654default value is a @code{const} expression, indicates an attribute that
9655is constant for a given run of the compiler. Constant attributes may be
9656used to specify which variety of processor is used. For example,
9657
9658@smallexample
9659(define_attr "cpu" "m88100,m88110,m88000"
9660 (const
9661 (cond [(symbol_ref "TARGET_88100") (const_string "m88100")
9662 (symbol_ref "TARGET_88110") (const_string "m88110")]
9663 (const_string "m88000"))))
9664
9665(define_attr "memory" "fast,slow"
9666 (const
9667 (if_then_else (symbol_ref "TARGET_FAST_MEM")
9668 (const_string "fast")
9669 (const_string "slow"))))
9670@end smallexample
9671
9672The routine generated for constant attributes has no parameters as it
9673does not depend on any particular insn. RTL expressions used to define
9674the value of a constant attribute may use the @code{symbol_ref} form,
9675but may not use either the @code{match_operand} form or @code{eq_attr}
9676forms involving insn attributes.
9677
13b72c22
AK
9678@end ifset
9679@ifset INTERNALS
9680@node Mnemonic Attribute
9681@subsection Mnemonic Attribute
9682@cindex mnemonic attribute
9683
9684The @code{mnemonic} attribute is a string type attribute holding the
9685instruction mnemonic for an insn alternative. The attribute values
9686will automatically be generated by the machine description parser if
9687there is an attribute definition in the md file:
9688
9689@smallexample
9690(define_attr "mnemonic" "unknown" (const_string "unknown"))
9691@end smallexample
9692
9693The default value can be freely chosen as long as it does not collide
9694with any of the instruction mnemonics. This value will be used
9695whenever the machine description parser is not able to determine the
9696mnemonic string. This might be the case for output templates
9697containing more than a single instruction as in
9698@code{"mvcle\t%0,%1,0\;jo\t.-4"}.
9699
9700The @code{mnemonic} attribute set is not generated automatically if the
9701instruction string is generated via C code.
9702
9703An existing @code{mnemonic} attribute set in an insn definition will not
9704be overriden by the md file parser. That way it is possible to
9705manually set the instruction mnemonics for the cases where the md file
9706parser fails to determine it automatically.
9707
9708The @code{mnemonic} attribute is useful for dealing with instruction
9709specific properties in the pipeline description without defining
9710additional insn attributes.
9711
9712@smallexample
9713(define_attr "ooo_expanded" ""
9714 (cond [(eq_attr "mnemonic" "dlr,dsgr,d,dsgf,stam,dsgfr,dlgr")
9715 (const_int 1)]
9716 (const_int 0)))
9717@end smallexample
9718
a5249a21
HPN
9719@end ifset
9720@ifset INTERNALS
03dda8e3
RK
9721@node Delay Slots
9722@subsection Delay Slot Scheduling
9723@cindex delay slots, defining
9724
9725The insn attribute mechanism can be used to specify the requirements for
9726delay slots, if any, on a target machine. An instruction is said to
9727require a @dfn{delay slot} if some instructions that are physically
9728after the instruction are executed as if they were located before it.
9729Classic examples are branch and call instructions, which often execute
9730the following instruction before the branch or call is performed.
9731
9732On some machines, conditional branch instructions can optionally
9733@dfn{annul} instructions in the delay slot. This means that the
9734instruction will not be executed for certain branch outcomes. Both
9735instructions that annul if the branch is true and instructions that
9736annul if the branch is false are supported.
9737
9738Delay slot scheduling differs from instruction scheduling in that
9739determining whether an instruction needs a delay slot is dependent only
9740on the type of instruction being generated, not on data flow between the
9741instructions. See the next section for a discussion of data-dependent
9742instruction scheduling.
9743
9744@findex define_delay
9745The requirement of an insn needing one or more delay slots is indicated
9746via the @code{define_delay} expression. It has the following form:
9747
9748@smallexample
9749(define_delay @var{test}
9750 [@var{delay-1} @var{annul-true-1} @var{annul-false-1}
9751 @var{delay-2} @var{annul-true-2} @var{annul-false-2}
9752 @dots{}])
9753@end smallexample
9754
9755@var{test} is an attribute test that indicates whether this
9756@code{define_delay} applies to a particular insn. If so, the number of
9757required delay slots is determined by the length of the vector specified
9758as the second argument. An insn placed in delay slot @var{n} must
9759satisfy attribute test @var{delay-n}. @var{annul-true-n} is an
9760attribute test that specifies which insns may be annulled if the branch
9761is true. Similarly, @var{annul-false-n} specifies which insns in the
9762delay slot may be annulled if the branch is false. If annulling is not
bd819a4a 9763supported for that delay slot, @code{(nil)} should be coded.
03dda8e3
RK
9764
9765For example, in the common case where branch and call insns require
9766a single delay slot, which may contain any insn other than a branch or
9767call, the following would be placed in the @file{md} file:
9768
9769@smallexample
9770(define_delay (eq_attr "type" "branch,call")
9771 [(eq_attr "type" "!branch,call") (nil) (nil)])
9772@end smallexample
9773
9774Multiple @code{define_delay} expressions may be specified. In this
9775case, each such expression specifies different delay slot requirements
9776and there must be no insn for which tests in two @code{define_delay}
9777expressions are both true.
9778
9779For example, if we have a machine that requires one delay slot for branches
9780but two for calls, no delay slot can contain a branch or call insn,
9781and any valid insn in the delay slot for the branch can be annulled if the
9782branch is true, we might represent this as follows:
9783
9784@smallexample
9785(define_delay (eq_attr "type" "branch")
9786 [(eq_attr "type" "!branch,call")
9787 (eq_attr "type" "!branch,call")
9788 (nil)])
9789
9790(define_delay (eq_attr "type" "call")
9791 [(eq_attr "type" "!branch,call") (nil) (nil)
9792 (eq_attr "type" "!branch,call") (nil) (nil)])
9793@end smallexample
9794@c the above is *still* too long. --mew 4feb93
9795
a5249a21
HPN
9796@end ifset
9797@ifset INTERNALS
fae15c93
VM
9798@node Processor pipeline description
9799@subsection Specifying processor pipeline description
9800@cindex processor pipeline description
9801@cindex processor functional units
9802@cindex instruction latency time
9803@cindex interlock delays
9804@cindex data dependence delays
9805@cindex reservation delays
9806@cindex pipeline hazard recognizer
9807@cindex automaton based pipeline description
9808@cindex regular expressions
9809@cindex deterministic finite state automaton
9810@cindex automaton based scheduler
9811@cindex RISC
9812@cindex VLIW
9813
ef261fee 9814To achieve better performance, most modern processors
fae15c93
VM
9815(super-pipelined, superscalar @acronym{RISC}, and @acronym{VLIW}
9816processors) have many @dfn{functional units} on which several
9817instructions can be executed simultaneously. An instruction starts
9818execution if its issue conditions are satisfied. If not, the
ef261fee 9819instruction is stalled until its conditions are satisfied. Such
fae15c93 9820@dfn{interlock (pipeline) delay} causes interruption of the fetching
431ae0bf 9821of successor instructions (or demands nop instructions, e.g.@: for some
fae15c93
VM
9822MIPS processors).
9823
9824There are two major kinds of interlock delays in modern processors.
9825The first one is a data dependence delay determining @dfn{instruction
9826latency time}. The instruction execution is not started until all
9827source data have been evaluated by prior instructions (there are more
9828complex cases when the instruction execution starts even when the data
c0478a66 9829are not available but will be ready in given time after the
fae15c93
VM
9830instruction execution start). Taking the data dependence delays into
9831account is simple. The data dependence (true, output, and
9832anti-dependence) delay between two instructions is given by a
9833constant. In most cases this approach is adequate. The second kind
9834of interlock delays is a reservation delay. The reservation delay
9835means that two instructions under execution will be in need of shared
431ae0bf 9836processors resources, i.e.@: buses, internal registers, and/or
fae15c93
VM
9837functional units, which are reserved for some time. Taking this kind
9838of delay into account is complex especially for modern @acronym{RISC}
9839processors.
9840
9841The task of exploiting more processor parallelism is solved by an
ef261fee 9842instruction scheduler. For a better solution to this problem, the
fae15c93 9843instruction scheduler has to have an adequate description of the
fa0aee89
PB
9844processor parallelism (or @dfn{pipeline description}). GCC
9845machine descriptions describe processor parallelism and functional
9846unit reservations for groups of instructions with the aid of
9847@dfn{regular expressions}.
ef261fee
R
9848
9849The GCC instruction scheduler uses a @dfn{pipeline hazard recognizer} to
fae15c93 9850figure out the possibility of the instruction issue by the processor
ef261fee
R
9851on a given simulated processor cycle. The pipeline hazard recognizer is
9852automatically generated from the processor pipeline description. The
fa0aee89
PB
9853pipeline hazard recognizer generated from the machine description
9854is based on a deterministic finite state automaton (@acronym{DFA}):
9855the instruction issue is possible if there is a transition from one
9856automaton state to another one. This algorithm is very fast, and
9857furthermore, its speed is not dependent on processor
9858complexity@footnote{However, the size of the automaton depends on
6ccde948
RW
9859processor complexity. To limit this effect, machine descriptions
9860can split orthogonal parts of the machine description among several
9861automata: but then, since each of these must be stepped independently,
9862this does cause a small decrease in the algorithm's performance.}.
fae15c93 9863
fae15c93 9864@cindex automaton based pipeline description
fa0aee89
PB
9865The rest of this section describes the directives that constitute
9866an automaton-based processor pipeline description. The order of
9867these constructions within the machine description file is not
9868important.
fae15c93
VM
9869
9870@findex define_automaton
9871@cindex pipeline hazard recognizer
9872The following optional construction describes names of automata
9873generated and used for the pipeline hazards recognition. Sometimes
9874the generated finite state automaton used by the pipeline hazard
ef261fee 9875recognizer is large. If we use more than one automaton and bind functional
daf2f129 9876units to the automata, the total size of the automata is usually
fae15c93
VM
9877less than the size of the single automaton. If there is no one such
9878construction, only one finite state automaton is generated.
9879
9880@smallexample
9881(define_automaton @var{automata-names})
9882@end smallexample
9883
9884@var{automata-names} is a string giving names of the automata. The
9885names are separated by commas. All the automata should have unique names.
c62347f0 9886The automaton name is used in the constructions @code{define_cpu_unit} and
fae15c93
VM
9887@code{define_query_cpu_unit}.
9888
9889@findex define_cpu_unit
9890@cindex processor functional units
c62347f0 9891Each processor functional unit used in the description of instruction
fae15c93
VM
9892reservations should be described by the following construction.
9893
9894@smallexample
9895(define_cpu_unit @var{unit-names} [@var{automaton-name}])
9896@end smallexample
9897
9898@var{unit-names} is a string giving the names of the functional units
9899separated by commas. Don't use name @samp{nothing}, it is reserved
9900for other goals.
9901
ef261fee 9902@var{automaton-name} is a string giving the name of the automaton with
fae15c93
VM
9903which the unit is bound. The automaton should be described in
9904construction @code{define_automaton}. You should give
9905@dfn{automaton-name}, if there is a defined automaton.
9906
30028c85
VM
9907The assignment of units to automata are constrained by the uses of the
9908units in insn reservations. The most important constraint is: if a
9909unit reservation is present on a particular cycle of an alternative
9910for an insn reservation, then some unit from the same automaton must
9911be present on the same cycle for the other alternatives of the insn
9912reservation. The rest of the constraints are mentioned in the
9913description of the subsequent constructions.
9914
fae15c93
VM
9915@findex define_query_cpu_unit
9916@cindex querying function unit reservations
9917The following construction describes CPU functional units analogously
30028c85
VM
9918to @code{define_cpu_unit}. The reservation of such units can be
9919queried for an automaton state. The instruction scheduler never
9920queries reservation of functional units for given automaton state. So
9921as a rule, you don't need this construction. This construction could
431ae0bf 9922be used for future code generation goals (e.g.@: to generate
30028c85 9923@acronym{VLIW} insn templates).
fae15c93
VM
9924
9925@smallexample
9926(define_query_cpu_unit @var{unit-names} [@var{automaton-name}])
9927@end smallexample
9928
9929@var{unit-names} is a string giving names of the functional units
9930separated by commas.
9931
ef261fee 9932@var{automaton-name} is a string giving the name of the automaton with
fae15c93
VM
9933which the unit is bound.
9934
9935@findex define_insn_reservation
9936@cindex instruction latency time
9937@cindex regular expressions
9938@cindex data bypass
ef261fee 9939The following construction is the major one to describe pipeline
fae15c93
VM
9940characteristics of an instruction.
9941
9942@smallexample
9943(define_insn_reservation @var{insn-name} @var{default_latency}
9944 @var{condition} @var{regexp})
9945@end smallexample
9946
9947@var{default_latency} is a number giving latency time of the
9948instruction. There is an important difference between the old
9949description and the automaton based pipeline description. The latency
9950time is used for all dependencies when we use the old description. In
ef261fee
R
9951the automaton based pipeline description, the given latency time is only
9952used for true dependencies. The cost of anti-dependencies is always
fae15c93
VM
9953zero and the cost of output dependencies is the difference between
9954latency times of the producing and consuming insns (if the difference
ef261fee
R
9955is negative, the cost is considered to be zero). You can always
9956change the default costs for any description by using the target hook
fae15c93
VM
9957@code{TARGET_SCHED_ADJUST_COST} (@pxref{Scheduling}).
9958
cc6a602b 9959@var{insn-name} is a string giving the internal name of the insn. The
fae15c93
VM
9960internal names are used in constructions @code{define_bypass} and in
9961the automaton description file generated for debugging. The internal
ef261fee 9962name has nothing in common with the names in @code{define_insn}. It is a
fae15c93
VM
9963good practice to use insn classes described in the processor manual.
9964
9965@var{condition} defines what RTL insns are described by this
9966construction. You should remember that you will be in trouble if
9967@var{condition} for two or more different
9968@code{define_insn_reservation} constructions is TRUE for an insn. In
9969this case what reservation will be used for the insn is not defined.
9970Such cases are not checked during generation of the pipeline hazards
9971recognizer because in general recognizing that two conditions may have
9972the same value is quite difficult (especially if the conditions
9973contain @code{symbol_ref}). It is also not checked during the
9974pipeline hazard recognizer work because it would slow down the
9975recognizer considerably.
9976
ef261fee 9977@var{regexp} is a string describing the reservation of the cpu's functional
fae15c93
VM
9978units by the instruction. The reservations are described by a regular
9979expression according to the following syntax:
9980
9981@smallexample
9982 regexp = regexp "," oneof
9983 | oneof
9984
9985 oneof = oneof "|" allof
9986 | allof
9987
9988 allof = allof "+" repeat
9989 | repeat
daf2f129 9990
fae15c93
VM
9991 repeat = element "*" number
9992 | element
9993
9994 element = cpu_function_unit_name
9995 | reservation_name
9996 | result_name
9997 | "nothing"
9998 | "(" regexp ")"
9999@end smallexample
10000
10001@itemize @bullet
10002@item
10003@samp{,} is used for describing the start of the next cycle in
10004the reservation.
10005
10006@item
10007@samp{|} is used for describing a reservation described by the first
10008regular expression @strong{or} a reservation described by the second
10009regular expression @strong{or} etc.
10010
10011@item
10012@samp{+} is used for describing a reservation described by the first
10013regular expression @strong{and} a reservation described by the
10014second regular expression @strong{and} etc.
10015
10016@item
10017@samp{*} is used for convenience and simply means a sequence in which
10018the regular expression are repeated @var{number} times with cycle
10019advancing (see @samp{,}).
10020
10021@item
10022@samp{cpu_function_unit_name} denotes reservation of the named
10023functional unit.
10024
10025@item
10026@samp{reservation_name} --- see description of construction
10027@samp{define_reservation}.
10028
10029@item
10030@samp{nothing} denotes no unit reservations.
10031@end itemize
10032
10033@findex define_reservation
10034Sometimes unit reservations for different insns contain common parts.
10035In such case, you can simplify the pipeline description by describing
10036the common part by the following construction
10037
10038@smallexample
10039(define_reservation @var{reservation-name} @var{regexp})
10040@end smallexample
10041
10042@var{reservation-name} is a string giving name of @var{regexp}.
10043Functional unit names and reservation names are in the same name
10044space. So the reservation names should be different from the
67914693 10045functional unit names and cannot be the reserved name @samp{nothing}.
fae15c93
VM
10046
10047@findex define_bypass
10048@cindex instruction latency time
10049@cindex data bypass
10050The following construction is used to describe exceptions in the
10051latency time for given instruction pair. This is so called bypasses.
10052
10053@smallexample
10054(define_bypass @var{number} @var{out_insn_names} @var{in_insn_names}
10055 [@var{guard}])
10056@end smallexample
10057
10058@var{number} defines when the result generated by the instructions
10059given in string @var{out_insn_names} will be ready for the
f9bf5a8e
RS
10060instructions given in string @var{in_insn_names}. Each of these
10061strings is a comma-separated list of filename-style globs and
10062they refer to the names of @code{define_insn_reservation}s.
10063For example:
10064@smallexample
10065(define_bypass 1 "cpu1_load_*, cpu1_store_*" "cpu1_load_*")
10066@end smallexample
10067defines a bypass between instructions that start with
10068@samp{cpu1_load_} or @samp{cpu1_store_} and those that start with
10069@samp{cpu1_load_}.
fae15c93 10070
ef261fee 10071@var{guard} is an optional string giving the name of a C function which
fae15c93
VM
10072defines an additional guard for the bypass. The function will get the
10073two insns as parameters. If the function returns zero the bypass will
10074be ignored for this case. The additional guard is necessary to
431ae0bf 10075recognize complicated bypasses, e.g.@: when the consumer is only an address
fae15c93
VM
10076of insn @samp{store} (not a stored value).
10077
20a07f44
VM
10078If there are more one bypass with the same output and input insns, the
10079chosen bypass is the first bypass with a guard in description whose
10080guard function returns nonzero. If there is no such bypass, then
10081bypass without the guard function is chosen.
10082
fae15c93
VM
10083@findex exclusion_set
10084@findex presence_set
30028c85 10085@findex final_presence_set
fae15c93 10086@findex absence_set
30028c85 10087@findex final_absence_set
fae15c93
VM
10088@cindex VLIW
10089@cindex RISC
cc6a602b
BE
10090The following five constructions are usually used to describe
10091@acronym{VLIW} processors, or more precisely, to describe a placement
10092of small instructions into @acronym{VLIW} instruction slots. They
10093can be used for @acronym{RISC} processors, too.
fae15c93
VM
10094
10095@smallexample
10096(exclusion_set @var{unit-names} @var{unit-names})
30028c85
VM
10097(presence_set @var{unit-names} @var{patterns})
10098(final_presence_set @var{unit-names} @var{patterns})
10099(absence_set @var{unit-names} @var{patterns})
10100(final_absence_set @var{unit-names} @var{patterns})
fae15c93
VM
10101@end smallexample
10102
10103@var{unit-names} is a string giving names of functional units
10104separated by commas.
10105
30028c85 10106@var{patterns} is a string giving patterns of functional units
0bdcd332 10107separated by comma. Currently pattern is one unit or units
30028c85
VM
10108separated by white-spaces.
10109
fae15c93 10110The first construction (@samp{exclusion_set}) means that each
67914693 10111functional unit in the first string cannot be reserved simultaneously
fae15c93
VM
10112with a unit whose name is in the second string and vice versa. For
10113example, the construction is useful for describing processors
431ae0bf 10114(e.g.@: some SPARC processors) with a fully pipelined floating point
fae15c93
VM
10115functional unit which can execute simultaneously only single floating
10116point insns or only double floating point insns.
10117
10118The second construction (@samp{presence_set}) means that each
67914693 10119functional unit in the first string cannot be reserved unless at
30028c85
VM
10120least one of pattern of units whose names are in the second string is
10121reserved. This is an asymmetric relation. For example, it is useful
10122for description that @acronym{VLIW} @samp{slot1} is reserved after
10123@samp{slot0} reservation. We could describe it by the following
10124construction
10125
10126@smallexample
10127(presence_set "slot1" "slot0")
10128@end smallexample
10129
10130Or @samp{slot1} is reserved only after @samp{slot0} and unit @samp{b0}
10131reservation. In this case we could write
10132
10133@smallexample
10134(presence_set "slot1" "slot0 b0")
10135@end smallexample
10136
10137The third construction (@samp{final_presence_set}) is analogous to
10138@samp{presence_set}. The difference between them is when checking is
10139done. When an instruction is issued in given automaton state
10140reflecting all current and planned unit reservations, the automaton
10141state is changed. The first state is a source state, the second one
10142is a result state. Checking for @samp{presence_set} is done on the
10143source state reservation, checking for @samp{final_presence_set} is
10144done on the result reservation. This construction is useful to
10145describe a reservation which is actually two subsequent reservations.
10146For example, if we use
10147
10148@smallexample
10149(presence_set "slot1" "slot0")
10150@end smallexample
10151
10152the following insn will be never issued (because @samp{slot1} requires
10153@samp{slot0} which is absent in the source state).
10154
10155@smallexample
10156(define_reservation "insn_and_nop" "slot0 + slot1")
10157@end smallexample
10158
10159but it can be issued if we use analogous @samp{final_presence_set}.
10160
10161The forth construction (@samp{absence_set}) means that each functional
10162unit in the first string can be reserved only if each pattern of units
10163whose names are in the second string is not reserved. This is an
10164asymmetric relation (actually @samp{exclusion_set} is analogous to
ff2ce160 10165this one but it is symmetric). For example it might be useful in a
a71b1c58
NC
10166@acronym{VLIW} description to say that @samp{slot0} cannot be reserved
10167after either @samp{slot1} or @samp{slot2} have been reserved. This
10168can be described as:
30028c85
VM
10169
10170@smallexample
a71b1c58 10171(absence_set "slot0" "slot1, slot2")
30028c85
VM
10172@end smallexample
10173
67914693 10174Or @samp{slot2} cannot be reserved if @samp{slot0} and unit @samp{b0}
30028c85
VM
10175are reserved or @samp{slot1} and unit @samp{b1} are reserved. In
10176this case we could write
10177
10178@smallexample
10179(absence_set "slot2" "slot0 b0, slot1 b1")
10180@end smallexample
fae15c93 10181
ef261fee 10182All functional units mentioned in a set should belong to the same
fae15c93
VM
10183automaton.
10184
30028c85
VM
10185The last construction (@samp{final_absence_set}) is analogous to
10186@samp{absence_set} but checking is done on the result (state)
10187reservation. See comments for @samp{final_presence_set}.
10188
fae15c93
VM
10189@findex automata_option
10190@cindex deterministic finite state automaton
10191@cindex nondeterministic finite state automaton
10192@cindex finite state automaton minimization
10193You can control the generator of the pipeline hazard recognizer with
10194the following construction.
10195
10196@smallexample
10197(automata_option @var{options})
10198@end smallexample
10199
10200@var{options} is a string giving options which affect the generated
10201code. Currently there are the following options:
10202
10203@itemize @bullet
10204@item
10205@dfn{no-minimization} makes no minimization of the automaton. This is
30028c85
VM
10206only worth to do when we are debugging the description and need to
10207look more accurately at reservations of states.
fae15c93
VM
10208
10209@item
df1133a6
BE
10210@dfn{time} means printing time statistics about the generation of
10211automata.
10212
10213@item
10214@dfn{stats} means printing statistics about the generated automata
10215such as the number of DFA states, NDFA states and arcs.
e3c8eb86
VM
10216
10217@item
10218@dfn{v} means a generation of the file describing the result automata.
10219The file has suffix @samp{.dfa} and can be used for the description
10220verification and debugging.
10221
10222@item
10223@dfn{w} means a generation of warning instead of error for
10224non-critical errors.
fae15c93 10225
e12da141
BS
10226@item
10227@dfn{no-comb-vect} prevents the automaton generator from generating
10228two data structures and comparing them for space efficiency. Using
10229a comb vector to represent transitions may be better, but it can be
10230very expensive to construct. This option is useful if the build
10231process spends an unacceptably long time in genautomata.
10232
fae15c93
VM
10233@item
10234@dfn{ndfa} makes nondeterministic finite state automata. This affects
10235the treatment of operator @samp{|} in the regular expressions. The
10236usual treatment of the operator is to try the first alternative and,
10237if the reservation is not possible, the second alternative. The
10238nondeterministic treatment means trying all alternatives, some of them
96ddf8ef 10239may be rejected by reservations in the subsequent insns.
dfa849f3 10240
1e6a9047 10241@item
9c582551 10242@dfn{collapse-ndfa} modifies the behavior of the generator when
1e6a9047
BS
10243producing an automaton. An additional state transition to collapse a
10244nondeterministic @acronym{NDFA} state to a deterministic @acronym{DFA}
10245state is generated. It can be triggered by passing @code{const0_rtx} to
10246state_transition. In such an automaton, cycle advance transitions are
10247available only for these collapsed states. This option is useful for
10248ports that want to use the @code{ndfa} option, but also want to use
10249@code{define_query_cpu_unit} to assign units to insns issued in a cycle.
10250
dfa849f3
VM
10251@item
10252@dfn{progress} means output of a progress bar showing how many states
10253were generated so far for automaton being processed. This is useful
10254during debugging a @acronym{DFA} description. If you see too many
10255generated states, you could interrupt the generator of the pipeline
10256hazard recognizer and try to figure out a reason for generation of the
10257huge automaton.
fae15c93
VM
10258@end itemize
10259
10260As an example, consider a superscalar @acronym{RISC} machine which can
10261issue three insns (two integer insns and one floating point insn) on
10262the cycle but can finish only two insns. To describe this, we define
10263the following functional units.
10264
10265@smallexample
10266(define_cpu_unit "i0_pipeline, i1_pipeline, f_pipeline")
ef261fee 10267(define_cpu_unit "port0, port1")
fae15c93
VM
10268@end smallexample
10269
10270All simple integer insns can be executed in any integer pipeline and
10271their result is ready in two cycles. The simple integer insns are
10272issued into the first pipeline unless it is reserved, otherwise they
10273are issued into the second pipeline. Integer division and
10274multiplication insns can be executed only in the second integer
793e17f9 10275pipeline and their results are ready correspondingly in 9 and 4
431ae0bf 10276cycles. The integer division is not pipelined, i.e.@: the subsequent
67914693 10277integer division insn cannot be issued until the current division
fae15c93 10278insn finished. Floating point insns are fully pipelined and their
ef261fee
R
10279results are ready in 3 cycles. Where the result of a floating point
10280insn is used by an integer insn, an additional delay of one cycle is
10281incurred. To describe all of this we could specify
fae15c93
VM
10282
10283@smallexample
10284(define_cpu_unit "div")
10285
68e4d4c5 10286(define_insn_reservation "simple" 2 (eq_attr "type" "int")
ef261fee 10287 "(i0_pipeline | i1_pipeline), (port0 | port1)")
fae15c93 10288
68e4d4c5 10289(define_insn_reservation "mult" 4 (eq_attr "type" "mult")
ef261fee 10290 "i1_pipeline, nothing*2, (port0 | port1)")
fae15c93 10291
793e17f9 10292(define_insn_reservation "div" 9 (eq_attr "type" "div")
ef261fee 10293 "i1_pipeline, div*7, div + (port0 | port1)")
fae15c93 10294
68e4d4c5 10295(define_insn_reservation "float" 3 (eq_attr "type" "float")
ef261fee 10296 "f_pipeline, nothing, (port0 | port1))
fae15c93 10297
ef261fee 10298(define_bypass 4 "float" "simple,mult,div")
fae15c93
VM
10299@end smallexample
10300
10301To simplify the description we could describe the following reservation
10302
10303@smallexample
10304(define_reservation "finish" "port0|port1")
10305@end smallexample
10306
10307and use it in all @code{define_insn_reservation} as in the following
10308construction
10309
10310@smallexample
68e4d4c5 10311(define_insn_reservation "simple" 2 (eq_attr "type" "int")
fae15c93
VM
10312 "(i0_pipeline | i1_pipeline), finish")
10313@end smallexample
10314
10315
a5249a21
HPN
10316@end ifset
10317@ifset INTERNALS
3262c1f5
RH
10318@node Conditional Execution
10319@section Conditional Execution
10320@cindex conditional execution
10321@cindex predication
10322
10323A number of architectures provide for some form of conditional
10324execution, or predication. The hallmark of this feature is the
10325ability to nullify most of the instructions in the instruction set.
10326When the instruction set is large and not entirely symmetric, it
10327can be quite tedious to describe these forms directly in the
10328@file{.md} file. An alternative is the @code{define_cond_exec} template.
10329
10330@findex define_cond_exec
10331@smallexample
10332(define_cond_exec
10333 [@var{predicate-pattern}]
10334 "@var{condition}"
aadaf24e
KT
10335 "@var{output-template}"
10336 "@var{optional-insn-attribues}")
3262c1f5
RH
10337@end smallexample
10338
10339@var{predicate-pattern} is the condition that must be true for the
10340insn to be executed at runtime and should match a relational operator.
10341One can use @code{match_operator} to match several relational operators
10342at once. Any @code{match_operand} operands must have no more than one
10343alternative.
10344
10345@var{condition} is a C expression that must be true for the generated
10346pattern to match.
10347
10348@findex current_insn_predicate
630d3d5a 10349@var{output-template} is a string similar to the @code{define_insn}
3262c1f5
RH
10350output template (@pxref{Output Template}), except that the @samp{*}
10351and @samp{@@} special cases do not apply. This is only useful if the
10352assembly text for the predicate is a simple prefix to the main insn.
10353In order to handle the general case, there is a global variable
10354@code{current_insn_predicate} that will contain the entire predicate
10355if the current insn is predicated, and will otherwise be @code{NULL}.
10356
aadaf24e
KT
10357@var{optional-insn-attributes} is an optional vector of attributes that gets
10358appended to the insn attributes of the produced cond_exec rtx. It can
10359be used to add some distinguishing attribute to cond_exec rtxs produced
10360that way. An example usage would be to use this attribute in conjunction
10361with attributes on the main pattern to disable particular alternatives under
10362certain conditions.
10363
ebb48a4d
JM
10364When @code{define_cond_exec} is used, an implicit reference to
10365the @code{predicable} instruction attribute is made.
0bddee8e
BS
10366@xref{Insn Attributes}. This attribute must be a boolean (i.e.@: have
10367exactly two elements in its @var{list-of-values}), with the possible
10368values being @code{no} and @code{yes}. The default and all uses in
10369the insns must be a simple constant, not a complex expressions. It
10370may, however, depend on the alternative, by using a comma-separated
10371list of values. If that is the case, the port should also define an
10372@code{enabled} attribute (@pxref{Disable Insn Alternatives}), which
10373should also allow only @code{no} and @code{yes} as its values.
3262c1f5 10374
ebb48a4d 10375For each @code{define_insn} for which the @code{predicable}
3262c1f5
RH
10376attribute is true, a new @code{define_insn} pattern will be
10377generated that matches a predicated version of the instruction.
10378For example,
10379
10380@smallexample
10381(define_insn "addsi"
10382 [(set (match_operand:SI 0 "register_operand" "r")
10383 (plus:SI (match_operand:SI 1 "register_operand" "r")
10384 (match_operand:SI 2 "register_operand" "r")))]
10385 "@var{test1}"
10386 "add %2,%1,%0")
10387
10388(define_cond_exec
10389 [(ne (match_operand:CC 0 "register_operand" "c")
10390 (const_int 0))]
10391 "@var{test2}"
10392 "(%0)")
10393@end smallexample
10394
10395@noindent
10396generates a new pattern
10397
10398@smallexample
10399(define_insn ""
10400 [(cond_exec
10401 (ne (match_operand:CC 3 "register_operand" "c") (const_int 0))
10402 (set (match_operand:SI 0 "register_operand" "r")
10403 (plus:SI (match_operand:SI 1 "register_operand" "r")
10404 (match_operand:SI 2 "register_operand" "r"))))]
10405 "(@var{test2}) && (@var{test1})"
10406 "(%3) add %2,%1,%0")
10407@end smallexample
c25c12b8 10408
a5249a21 10409@end ifset
477c104e
MK
10410@ifset INTERNALS
10411@node Define Subst
10412@section RTL Templates Transformations
10413@cindex define_subst
10414
10415For some hardware architectures there are common cases when the RTL
10416templates for the instructions can be derived from the other RTL
10417templates using simple transformations. E.g., @file{i386.md} contains
10418an RTL template for the ordinary @code{sub} instruction---
10419@code{*subsi_1}, and for the @code{sub} instruction with subsequent
10420zero-extension---@code{*subsi_1_zext}. Such cases can be easily
10421implemented by a single meta-template capable of generating a modified
10422case based on the initial one:
10423
10424@findex define_subst
10425@smallexample
10426(define_subst "@var{name}"
10427 [@var{input-template}]
10428 "@var{condition}"
10429 [@var{output-template}])
10430@end smallexample
10431@var{input-template} is a pattern describing the source RTL template,
10432which will be transformed.
10433
10434@var{condition} is a C expression that is conjunct with the condition
10435from the input-template to generate a condition to be used in the
10436output-template.
10437
10438@var{output-template} is a pattern that will be used in the resulting
10439template.
10440
10441@code{define_subst} mechanism is tightly coupled with the notion of the
bdb6985c 10442subst attribute (@pxref{Subst Iterators}). The use of
477c104e
MK
10443@code{define_subst} is triggered by a reference to a subst attribute in
10444the transforming RTL template. This reference initiates duplication of
10445the source RTL template and substitution of the attributes with their
10446values. The source RTL template is left unchanged, while the copy is
10447transformed by @code{define_subst}. This transformation can fail in the
10448case when the source RTL template is not matched against the
10449input-template of the @code{define_subst}. In such case the copy is
10450deleted.
10451
10452@code{define_subst} can be used only in @code{define_insn} and
630ba2fd 10453@code{define_expand}, it cannot be used in other expressions (e.g.@: in
477c104e
MK
10454@code{define_insn_and_split}).
10455
10456@menu
10457* Define Subst Example:: Example of @code{define_subst} work.
10458* Define Subst Pattern Matching:: Process of template comparison.
10459* Define Subst Output Template:: Generation of output template.
10460@end menu
10461
10462@node Define Subst Example
10463@subsection @code{define_subst} Example
10464@cindex define_subst
10465
10466To illustrate how @code{define_subst} works, let us examine a simple
10467template transformation.
10468
10469Suppose there are two kinds of instructions: one that touches flags and
10470the other that does not. The instructions of the second type could be
10471generated with the following @code{define_subst}:
10472
10473@smallexample
10474(define_subst "add_clobber_subst"
10475 [(set (match_operand:SI 0 "" "")
10476 (match_operand:SI 1 "" ""))]
10477 ""
10478 [(set (match_dup 0)
10479 (match_dup 1))
10480 (clobber (reg:CC FLAGS_REG))]
10481@end smallexample
10482
10483This @code{define_subst} can be applied to any RTL pattern containing
10484@code{set} of mode SI and generates a copy with clobber when it is
10485applied.
10486
10487Assume there is an RTL template for a @code{max} instruction to be used
10488in @code{define_subst} mentioned above:
10489
10490@smallexample
10491(define_insn "maxsi"
10492 [(set (match_operand:SI 0 "register_operand" "=r")
10493 (max:SI
10494 (match_operand:SI 1 "register_operand" "r")
10495 (match_operand:SI 2 "register_operand" "r")))]
10496 ""
10497 "max\t@{%2, %1, %0|%0, %1, %2@}"
10498 [@dots{}])
10499@end smallexample
10500
10501To mark the RTL template for @code{define_subst} application,
10502subst-attributes are used. They should be declared in advance:
10503
10504@smallexample
10505(define_subst_attr "add_clobber_name" "add_clobber_subst" "_noclobber" "_clobber")
10506@end smallexample
10507
10508Here @samp{add_clobber_name} is the attribute name,
10509@samp{add_clobber_subst} is the name of the corresponding
10510@code{define_subst}, the third argument (@samp{_noclobber}) is the
10511attribute value that would be substituted into the unchanged version of
10512the source RTL template, and the last argument (@samp{_clobber}) is the
10513value that would be substituted into the second, transformed,
10514version of the RTL template.
10515
10516Once the subst-attribute has been defined, it should be used in RTL
10517templates which need to be processed by the @code{define_subst}. So,
10518the original RTL template should be changed:
10519
10520@smallexample
10521(define_insn "maxsi<add_clobber_name>"
10522 [(set (match_operand:SI 0 "register_operand" "=r")
10523 (max:SI
10524 (match_operand:SI 1 "register_operand" "r")
10525 (match_operand:SI 2 "register_operand" "r")))]
10526 ""
10527 "max\t@{%2, %1, %0|%0, %1, %2@}"
10528 [@dots{}])
10529@end smallexample
10530
10531The result of the @code{define_subst} usage would look like the following:
10532
10533@smallexample
10534(define_insn "maxsi_noclobber"
10535 [(set (match_operand:SI 0 "register_operand" "=r")
10536 (max:SI
10537 (match_operand:SI 1 "register_operand" "r")
10538 (match_operand:SI 2 "register_operand" "r")))]
10539 ""
10540 "max\t@{%2, %1, %0|%0, %1, %2@}"
10541 [@dots{}])
10542(define_insn "maxsi_clobber"
10543 [(set (match_operand:SI 0 "register_operand" "=r")
10544 (max:SI
10545 (match_operand:SI 1 "register_operand" "r")
10546 (match_operand:SI 2 "register_operand" "r")))
10547 (clobber (reg:CC FLAGS_REG))]
10548 ""
10549 "max\t@{%2, %1, %0|%0, %1, %2@}"
10550 [@dots{}])
10551@end smallexample
10552
10553@node Define Subst Pattern Matching
10554@subsection Pattern Matching in @code{define_subst}
10555@cindex define_subst
10556
10557All expressions, allowed in @code{define_insn} or @code{define_expand},
10558are allowed in the input-template of @code{define_subst}, except
10559@code{match_par_dup}, @code{match_scratch}, @code{match_parallel}. The
10560meanings of expressions in the input-template were changed:
10561
10562@code{match_operand} matches any expression (possibly, a subtree in
10563RTL-template), if modes of the @code{match_operand} and this expression
10564are the same, or mode of the @code{match_operand} is @code{VOIDmode}, or
10565this expression is @code{match_dup}, @code{match_op_dup}. If the
10566expression is @code{match_operand} too, and predicate of
10567@code{match_operand} from the input pattern is not empty, then the
10568predicates are compared. That can be used for more accurate filtering
10569of accepted RTL-templates.
10570
10571@code{match_operator} matches common operators (like @code{plus},
10572@code{minus}), @code{unspec}, @code{unspec_volatile} operators and
10573@code{match_operator}s from the original pattern if the modes match and
10574@code{match_operator} from the input pattern has the same number of
10575operands as the operator from the original pattern.
10576
10577@node Define Subst Output Template
10578@subsection Generation of output template in @code{define_subst}
10579@cindex define_subst
10580
10581If all necessary checks for @code{define_subst} application pass, a new
10582RTL-pattern, based on the output-template, is created to replace the old
10583template. Like in input-patterns, meanings of some RTL expressions are
10584changed when they are used in output-patterns of a @code{define_subst}.
10585Thus, @code{match_dup} is used for copying the whole expression from the
10586original pattern, which matched corresponding @code{match_operand} from
10587the input pattern.
10588
10589@code{match_dup N} is used in the output template to be replaced with
10590the expression from the original pattern, which matched
10591@code{match_operand N} from the input pattern. As a consequence,
10592@code{match_dup} cannot be used to point to @code{match_operand}s from
10593the output pattern, it should always refer to a @code{match_operand}
8245edf3
PK
10594from the input pattern. If a @code{match_dup N} occurs more than once
10595in the output template, its first occurrence is replaced with the
10596expression from the original pattern, and the subsequent expressions
10597are replaced with @code{match_dup N}, i.e., a reference to the first
10598expression.
477c104e
MK
10599
10600In the output template one can refer to the expressions from the
10601original pattern and create new ones. For instance, some operands could
10602be added by means of standard @code{match_operand}.
10603
10604After replacing @code{match_dup} with some RTL-subtree from the original
10605pattern, it could happen that several @code{match_operand}s in the
10606output pattern have the same indexes. It is unknown, how many and what
10607indexes would be used in the expression which would replace
10608@code{match_dup}, so such conflicts in indexes are inevitable. To
10609overcome this issue, @code{match_operands} and @code{match_operators},
10610which were introduced into the output pattern, are renumerated when all
10611@code{match_dup}s are replaced.
10612
10613Number of alternatives in @code{match_operand}s introduced into the
10614output template @code{M} could differ from the number of alternatives in
10615the original pattern @code{N}, so in the resultant pattern there would
10616be @code{N*M} alternatives. Thus, constraints from the original pattern
10617would be duplicated @code{N} times, constraints from the output pattern
10618would be duplicated @code{M} times, producing all possible combinations.
10619@end ifset
10620
a5249a21 10621@ifset INTERNALS
c25c12b8
R
10622@node Constant Definitions
10623@section Constant Definitions
10624@cindex constant definitions
10625@findex define_constants
10626
10627Using literal constants inside instruction patterns reduces legibility and
10628can be a maintenance problem.
10629
10630To overcome this problem, you may use the @code{define_constants}
10631expression. It contains a vector of name-value pairs. From that
10632point on, wherever any of the names appears in the MD file, it is as
10633if the corresponding value had been written instead. You may use
10634@code{define_constants} multiple times; each appearance adds more
10635constants to the table. It is an error to redefine a constant with
10636a different value.
10637
10638To come back to the a29k load multiple example, instead of
10639
10640@smallexample
10641(define_insn ""
10642 [(match_parallel 0 "load_multiple_operation"
10643 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10644 (match_operand:SI 2 "memory_operand" "m"))
10645 (use (reg:SI 179))
10646 (clobber (reg:SI 179))])]
10647 ""
10648 "loadm 0,0,%1,%2")
10649@end smallexample
10650
10651You could write:
10652
10653@smallexample
10654(define_constants [
10655 (R_BP 177)
10656 (R_FC 178)
10657 (R_CR 179)
10658 (R_Q 180)
10659])
10660
10661(define_insn ""
10662 [(match_parallel 0 "load_multiple_operation"
10663 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10664 (match_operand:SI 2 "memory_operand" "m"))
10665 (use (reg:SI R_CR))
10666 (clobber (reg:SI R_CR))])]
10667 ""
10668 "loadm 0,0,%1,%2")
10669@end smallexample
10670
10671The constants that are defined with a define_constant are also output
10672in the insn-codes.h header file as #defines.
24609606
RS
10673
10674@cindex enumerations
10675@findex define_c_enum
10676You can also use the machine description file to define enumerations.
10677Like the constants defined by @code{define_constant}, these enumerations
10678are visible to both the machine description file and the main C code.
10679
10680The syntax is as follows:
10681
10682@smallexample
10683(define_c_enum "@var{name}" [
10684 @var{value0}
10685 @var{value1}
10686 @dots{}
10687 @var{valuen}
10688])
10689@end smallexample
10690
10691This definition causes the equivalent of the following C code to appear
10692in @file{insn-constants.h}:
10693
10694@smallexample
10695enum @var{name} @{
10696 @var{value0} = 0,
10697 @var{value1} = 1,
10698 @dots{}
10699 @var{valuen} = @var{n}
10700@};
10701#define NUM_@var{cname}_VALUES (@var{n} + 1)
10702@end smallexample
10703
10704where @var{cname} is the capitalized form of @var{name}.
10705It also makes each @var{valuei} available in the machine description
10706file, just as if it had been declared with:
10707
10708@smallexample
10709(define_constants [(@var{valuei} @var{i})])
10710@end smallexample
10711
10712Each @var{valuei} is usually an upper-case identifier and usually
10713begins with @var{cname}.
10714
10715You can split the enumeration definition into as many statements as
10716you like. The above example is directly equivalent to:
10717
10718@smallexample
10719(define_c_enum "@var{name}" [@var{value0}])
10720(define_c_enum "@var{name}" [@var{value1}])
10721@dots{}
10722(define_c_enum "@var{name}" [@var{valuen}])
10723@end smallexample
10724
10725Splitting the enumeration helps to improve the modularity of each
10726individual @code{.md} file. For example, if a port defines its
10727synchronization instructions in a separate @file{sync.md} file,
10728it is convenient to define all synchronization-specific enumeration
10729values in @file{sync.md} rather than in the main @file{.md} file.
10730
0fe60a1b
RS
10731Some enumeration names have special significance to GCC:
10732
10733@table @code
10734@item unspecv
10735@findex unspec_volatile
10736If an enumeration called @code{unspecv} is defined, GCC will use it
10737when printing out @code{unspec_volatile} expressions. For example:
10738
10739@smallexample
10740(define_c_enum "unspecv" [
10741 UNSPECV_BLOCKAGE
10742])
10743@end smallexample
10744
10745causes GCC to print @samp{(unspec_volatile @dots{} 0)} as:
10746
10747@smallexample
10748(unspec_volatile ... UNSPECV_BLOCKAGE)
10749@end smallexample
10750
10751@item unspec
10752@findex unspec
10753If an enumeration called @code{unspec} is defined, GCC will use
10754it when printing out @code{unspec} expressions. GCC will also use
10755it when printing out @code{unspec_volatile} expressions unless an
10756@code{unspecv} enumeration is also defined. You can therefore
10757decide whether to keep separate enumerations for volatile and
10758non-volatile expressions or whether to use the same enumeration
10759for both.
10760@end table
10761
24609606 10762@findex define_enum
8f4fe86c 10763@anchor{define_enum}
24609606
RS
10764Another way of defining an enumeration is to use @code{define_enum}:
10765
10766@smallexample
10767(define_enum "@var{name}" [
10768 @var{value0}
10769 @var{value1}
10770 @dots{}
10771 @var{valuen}
10772])
10773@end smallexample
10774
10775This directive implies:
10776
10777@smallexample
10778(define_c_enum "@var{name}" [
10779 @var{cname}_@var{cvalue0}
10780 @var{cname}_@var{cvalue1}
10781 @dots{}
10782 @var{cname}_@var{cvaluen}
10783])
10784@end smallexample
10785
8f4fe86c 10786@findex define_enum_attr
24609606 10787where @var{cvaluei} is the capitalized form of @var{valuei}.
8f4fe86c
RS
10788However, unlike @code{define_c_enum}, the enumerations defined
10789by @code{define_enum} can be used in attribute specifications
10790(@pxref{define_enum_attr}).
b11cc610 10791@end ifset
032e8348 10792@ifset INTERNALS
3abcb3a7
HPN
10793@node Iterators
10794@section Iterators
10795@cindex iterators in @file{.md} files
032e8348
RS
10796
10797Ports often need to define similar patterns for more than one machine
3abcb3a7 10798mode or for more than one rtx code. GCC provides some simple iterator
032e8348
RS
10799facilities to make this process easier.
10800
10801@menu
3abcb3a7
HPN
10802* Mode Iterators:: Generating variations of patterns for different modes.
10803* Code Iterators:: Doing the same for codes.
57a4717b 10804* Int Iterators:: Doing the same for integers.
477c104e 10805* Subst Iterators:: Generating variations of patterns for define_subst.
0016d8d9 10806* Parameterized Names:: Specifying iterator values in C++ code.
032e8348
RS
10807@end menu
10808
3abcb3a7
HPN
10809@node Mode Iterators
10810@subsection Mode Iterators
10811@cindex mode iterators in @file{.md} files
032e8348
RS
10812
10813Ports often need to define similar patterns for two or more different modes.
10814For example:
10815
10816@itemize @bullet
10817@item
10818If a processor has hardware support for both single and double
10819floating-point arithmetic, the @code{SFmode} patterns tend to be
10820very similar to the @code{DFmode} ones.
10821
10822@item
10823If a port uses @code{SImode} pointers in one configuration and
10824@code{DImode} pointers in another, it will usually have very similar
10825@code{SImode} and @code{DImode} patterns for manipulating pointers.
10826@end itemize
10827
3abcb3a7 10828Mode iterators allow several patterns to be instantiated from one
032e8348
RS
10829@file{.md} file template. They can be used with any type of
10830rtx-based construct, such as a @code{define_insn},
10831@code{define_split}, or @code{define_peephole2}.
10832
10833@menu
3abcb3a7 10834* Defining Mode Iterators:: Defining a new mode iterator.
6ccde948
RW
10835* Substitutions:: Combining mode iterators with substitutions
10836* Examples:: Examples
032e8348
RS
10837@end menu
10838
3abcb3a7
HPN
10839@node Defining Mode Iterators
10840@subsubsection Defining Mode Iterators
10841@findex define_mode_iterator
032e8348 10842
3abcb3a7 10843The syntax for defining a mode iterator is:
032e8348
RS
10844
10845@smallexample
923158be 10846(define_mode_iterator @var{name} [(@var{mode1} "@var{cond1}") @dots{} (@var{moden} "@var{condn}")])
032e8348
RS
10847@end smallexample
10848
10849This allows subsequent @file{.md} file constructs to use the mode suffix
10850@code{:@var{name}}. Every construct that does so will be expanded
10851@var{n} times, once with every use of @code{:@var{name}} replaced by
10852@code{:@var{mode1}}, once with every use replaced by @code{:@var{mode2}},
10853and so on. In the expansion for a particular @var{modei}, every
10854C condition will also require that @var{condi} be true.
10855
10856For example:
10857
10858@smallexample
3abcb3a7 10859(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
032e8348
RS
10860@end smallexample
10861
10862defines a new mode suffix @code{:P}. Every construct that uses
10863@code{:P} will be expanded twice, once with every @code{:P} replaced
10864by @code{:SI} and once with every @code{:P} replaced by @code{:DI}.
10865The @code{:SI} version will only apply if @code{Pmode == SImode} and
10866the @code{:DI} version will only apply if @code{Pmode == DImode}.
10867
10868As with other @file{.md} conditions, an empty string is treated
10869as ``always true''. @code{(@var{mode} "")} can also be abbreviated
10870to @code{@var{mode}}. For example:
10871
10872@smallexample
3abcb3a7 10873(define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
032e8348
RS
10874@end smallexample
10875
10876means that the @code{:DI} expansion only applies if @code{TARGET_64BIT}
10877but that the @code{:SI} expansion has no such constraint.
10878
3abcb3a7
HPN
10879Iterators are applied in the order they are defined. This can be
10880significant if two iterators are used in a construct that requires
f30990b2 10881substitutions. @xref{Substitutions}.
032e8348 10882
f30990b2 10883@node Substitutions
3abcb3a7 10884@subsubsection Substitution in Mode Iterators
032e8348
RS
10885@findex define_mode_attr
10886
3abcb3a7 10887If an @file{.md} file construct uses mode iterators, each version of the
f30990b2
ILT
10888construct will often need slightly different strings or modes. For
10889example:
032e8348
RS
10890
10891@itemize @bullet
10892@item
10893When a @code{define_expand} defines several @code{add@var{m}3} patterns
10894(@pxref{Standard Names}), each expander will need to use the
10895appropriate mode name for @var{m}.
10896
10897@item
10898When a @code{define_insn} defines several instruction patterns,
10899each instruction will often use a different assembler mnemonic.
f30990b2
ILT
10900
10901@item
10902When a @code{define_insn} requires operands with different modes,
3abcb3a7 10903using an iterator for one of the operand modes usually requires a specific
f30990b2 10904mode for the other operand(s).
032e8348
RS
10905@end itemize
10906
10907GCC supports such variations through a system of ``mode attributes''.
10908There are two standard attributes: @code{mode}, which is the name of
10909the mode in lower case, and @code{MODE}, which is the same thing in
10910upper case. You can define other attributes using:
10911
10912@smallexample
923158be 10913(define_mode_attr @var{name} [(@var{mode1} "@var{value1}") @dots{} (@var{moden} "@var{valuen}")])
032e8348
RS
10914@end smallexample
10915
10916where @var{name} is the name of the attribute and @var{valuei}
10917is the value associated with @var{modei}.
10918
3abcb3a7 10919When GCC replaces some @var{:iterator} with @var{:mode}, it will scan
f30990b2 10920each string and mode in the pattern for sequences of the form
3abcb3a7 10921@code{<@var{iterator}:@var{attr}>}, where @var{attr} is the name of a
f30990b2 10922mode attribute. If the attribute is defined for @var{mode}, the whole
923158be 10923@code{<@dots{}>} sequence will be replaced by the appropriate attribute
f30990b2 10924value.
032e8348
RS
10925
10926For example, suppose an @file{.md} file has:
10927
10928@smallexample
3abcb3a7 10929(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
032e8348
RS
10930(define_mode_attr load [(SI "lw") (DI "ld")])
10931@end smallexample
10932
10933If one of the patterns that uses @code{:P} contains the string
10934@code{"<P:load>\t%0,%1"}, the @code{SI} version of that pattern
10935will use @code{"lw\t%0,%1"} and the @code{DI} version will use
10936@code{"ld\t%0,%1"}.
10937
f30990b2
ILT
10938Here is an example of using an attribute for a mode:
10939
10940@smallexample
3abcb3a7 10941(define_mode_iterator LONG [SI DI])
f30990b2 10942(define_mode_attr SHORT [(SI "HI") (DI "SI")])
923158be
RW
10943(define_insn @dots{}
10944 (sign_extend:LONG (match_operand:<LONG:SHORT> @dots{})) @dots{})
f30990b2
ILT
10945@end smallexample
10946
3abcb3a7
HPN
10947The @code{@var{iterator}:} prefix may be omitted, in which case the
10948substitution will be attempted for every iterator expansion.
032e8348
RS
10949
10950@node Examples
3abcb3a7 10951@subsubsection Mode Iterator Examples
032e8348
RS
10952
10953Here is an example from the MIPS port. It defines the following
10954modes and attributes (among others):
10955
10956@smallexample
3abcb3a7 10957(define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
032e8348
RS
10958(define_mode_attr d [(SI "") (DI "d")])
10959@end smallexample
10960
10961and uses the following template to define both @code{subsi3}
10962and @code{subdi3}:
10963
10964@smallexample
10965(define_insn "sub<mode>3"
10966 [(set (match_operand:GPR 0 "register_operand" "=d")
10967 (minus:GPR (match_operand:GPR 1 "register_operand" "d")
10968 (match_operand:GPR 2 "register_operand" "d")))]
10969 ""
10970 "<d>subu\t%0,%1,%2"
10971 [(set_attr "type" "arith")
10972 (set_attr "mode" "<MODE>")])
10973@end smallexample
10974
10975This is exactly equivalent to:
10976
10977@smallexample
10978(define_insn "subsi3"
10979 [(set (match_operand:SI 0 "register_operand" "=d")
10980 (minus:SI (match_operand:SI 1 "register_operand" "d")
10981 (match_operand:SI 2 "register_operand" "d")))]
10982 ""
10983 "subu\t%0,%1,%2"
10984 [(set_attr "type" "arith")
10985 (set_attr "mode" "SI")])
10986
10987(define_insn "subdi3"
10988 [(set (match_operand:DI 0 "register_operand" "=d")
10989 (minus:DI (match_operand:DI 1 "register_operand" "d")
10990 (match_operand:DI 2 "register_operand" "d")))]
10991 ""
10992 "dsubu\t%0,%1,%2"
10993 [(set_attr "type" "arith")
10994 (set_attr "mode" "DI")])
10995@end smallexample
10996
3abcb3a7
HPN
10997@node Code Iterators
10998@subsection Code Iterators
10999@cindex code iterators in @file{.md} files
11000@findex define_code_iterator
032e8348
RS
11001@findex define_code_attr
11002
3abcb3a7 11003Code iterators operate in a similar way to mode iterators. @xref{Mode Iterators}.
032e8348
RS
11004
11005The construct:
11006
11007@smallexample
923158be 11008(define_code_iterator @var{name} [(@var{code1} "@var{cond1}") @dots{} (@var{coden} "@var{condn}")])
032e8348
RS
11009@end smallexample
11010
11011defines a pseudo rtx code @var{name} that can be instantiated as
11012@var{codei} if condition @var{condi} is true. Each @var{codei}
11013must have the same rtx format. @xref{RTL Classes}.
11014
3abcb3a7 11015As with mode iterators, each pattern that uses @var{name} will be
032e8348
RS
11016expanded @var{n} times, once with all uses of @var{name} replaced by
11017@var{code1}, once with all uses replaced by @var{code2}, and so on.
3abcb3a7 11018@xref{Defining Mode Iterators}.
032e8348
RS
11019
11020It is possible to define attributes for codes as well as for modes.
11021There are two standard code attributes: @code{code}, the name of the
11022code in lower case, and @code{CODE}, the name of the code in upper case.
11023Other attributes are defined using:
11024
11025@smallexample
923158be 11026(define_code_attr @var{name} [(@var{code1} "@var{value1}") @dots{} (@var{coden} "@var{valuen}")])
032e8348
RS
11027@end smallexample
11028
75df257b
RS
11029Instruction patterns can use code attributes as rtx codes, which can be
11030useful if two sets of codes act in tandem. For example, the following
11031@code{define_insn} defines two patterns, one calculating a signed absolute
11032difference and another calculating an unsigned absolute difference:
11033
11034@smallexample
11035(define_code_iterator any_max [smax umax])
11036(define_code_attr paired_min [(smax "smin") (umax "umin")])
11037(define_insn @dots{}
11038 [(set (match_operand:SI 0 @dots{})
11039 (minus:SI (any_max:SI (match_operand:SI 1 @dots{})
11040 (match_operand:SI 2 @dots{}))
11041 (<paired_min>:SI (match_dup 1) (match_dup 2))))]
11042 @dots{})
11043@end smallexample
11044
11045The signed version of the instruction uses @code{smax} and @code{smin}
11046while the unsigned version uses @code{umax} and @code{umin}. There
11047are no versions that pair @code{smax} with @code{umin} or @code{umax}
11048with @code{smin}.
11049
3abcb3a7 11050Here's an example of code iterators in action, taken from the MIPS port:
032e8348
RS
11051
11052@smallexample
3abcb3a7
HPN
11053(define_code_iterator any_cond [unordered ordered unlt unge uneq ltgt unle ungt
11054 eq ne gt ge lt le gtu geu ltu leu])
032e8348
RS
11055
11056(define_expand "b<code>"
11057 [(set (pc)
11058 (if_then_else (any_cond:CC (cc0)
11059 (const_int 0))
11060 (label_ref (match_operand 0 ""))
11061 (pc)))]
11062 ""
11063@{
11064 gen_conditional_branch (operands, <CODE>);
11065 DONE;
11066@})
11067@end smallexample
11068
11069This is equivalent to:
11070
11071@smallexample
11072(define_expand "bunordered"
11073 [(set (pc)
11074 (if_then_else (unordered:CC (cc0)
11075 (const_int 0))
11076 (label_ref (match_operand 0 ""))
11077 (pc)))]
11078 ""
11079@{
11080 gen_conditional_branch (operands, UNORDERED);
11081 DONE;
11082@})
11083
11084(define_expand "bordered"
11085 [(set (pc)
11086 (if_then_else (ordered:CC (cc0)
11087 (const_int 0))
11088 (label_ref (match_operand 0 ""))
11089 (pc)))]
11090 ""
11091@{
11092 gen_conditional_branch (operands, ORDERED);
11093 DONE;
11094@})
11095
923158be 11096@dots{}
032e8348
RS
11097@end smallexample
11098
57a4717b
TB
11099@node Int Iterators
11100@subsection Int Iterators
11101@cindex int iterators in @file{.md} files
11102@findex define_int_iterator
11103@findex define_int_attr
11104
11105Int iterators operate in a similar way to code iterators. @xref{Code Iterators}.
11106
11107The construct:
11108
11109@smallexample
11110(define_int_iterator @var{name} [(@var{int1} "@var{cond1}") @dots{} (@var{intn} "@var{condn}")])
11111@end smallexample
11112
11113defines a pseudo integer constant @var{name} that can be instantiated as
11114@var{inti} if condition @var{condi} is true. Each @var{int}
11115must have the same rtx format. @xref{RTL Classes}. Int iterators can appear
11116in only those rtx fields that have 'i' as the specifier. This means that
11117each @var{int} has to be a constant defined using define_constant or
11118define_c_enum.
11119
11120As with mode and code iterators, each pattern that uses @var{name} will be
11121expanded @var{n} times, once with all uses of @var{name} replaced by
11122@var{int1}, once with all uses replaced by @var{int2}, and so on.
11123@xref{Defining Mode Iterators}.
11124
11125It is possible to define attributes for ints as well as for codes and modes.
11126Attributes are defined using:
11127
11128@smallexample
11129(define_int_attr @var{name} [(@var{int1} "@var{value1}") @dots{} (@var{intn} "@var{valuen}")])
11130@end smallexample
11131
11132Here's an example of int iterators in action, taken from the ARM port:
11133
11134@smallexample
11135(define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
11136
11137(define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
11138
11139(define_insn "neon_vq<absneg><mode>"
11140 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11141 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11142 (match_operand:SI 2 "immediate_operand" "i")]
11143 QABSNEG))]
11144 "TARGET_NEON"
11145 "vq<absneg>.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 11146 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
11147)
11148
11149@end smallexample
11150
11151This is equivalent to:
11152
11153@smallexample
11154(define_insn "neon_vqabs<mode>"
11155 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11156 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11157 (match_operand:SI 2 "immediate_operand" "i")]
11158 UNSPEC_VQABS))]
11159 "TARGET_NEON"
11160 "vqabs.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 11161 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
11162)
11163
11164(define_insn "neon_vqneg<mode>"
11165 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11166 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11167 (match_operand:SI 2 "immediate_operand" "i")]
11168 UNSPEC_VQNEG))]
11169 "TARGET_NEON"
11170 "vqneg.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 11171 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
11172)
11173
11174@end smallexample
11175
477c104e
MK
11176@node Subst Iterators
11177@subsection Subst Iterators
11178@cindex subst iterators in @file{.md} files
11179@findex define_subst
11180@findex define_subst_attr
11181
11182Subst iterators are special type of iterators with the following
11183restrictions: they could not be declared explicitly, they always have
11184only two values, and they do not have explicit dedicated name.
11185Subst-iterators are triggered only when corresponding subst-attribute is
11186used in RTL-pattern.
11187
11188Subst iterators transform templates in the following way: the templates
11189are duplicated, the subst-attributes in these templates are replaced
11190with the corresponding values, and a new attribute is implicitly added
11191to the given @code{define_insn}/@code{define_expand}. The name of the
11192added attribute matches the name of @code{define_subst}. Such
11193attributes are declared implicitly, and it is not allowed to have a
11194@code{define_attr} named as a @code{define_subst}.
11195
11196Each subst iterator is linked to a @code{define_subst}. It is declared
11197implicitly by the first appearance of the corresponding
11198@code{define_subst_attr}, and it is not allowed to define it explicitly.
11199
11200Declarations of subst-attributes have the following syntax:
11201
11202@findex define_subst_attr
11203@smallexample
11204(define_subst_attr "@var{name}"
11205 "@var{subst-name}"
11206 "@var{no-subst-value}"
11207 "@var{subst-applied-value}")
11208@end smallexample
11209
11210@var{name} is a string with which the given subst-attribute could be
11211referred to.
11212
11213@var{subst-name} shows which @code{define_subst} should be applied to an
11214RTL-template if the given subst-attribute is present in the
11215RTL-template.
11216
11217@var{no-subst-value} is a value with which subst-attribute would be
11218replaced in the first copy of the original RTL-template.
11219
11220@var{subst-applied-value} is a value with which subst-attribute would be
11221replaced in the second copy of the original RTL-template.
11222
0016d8d9
RS
11223@node Parameterized Names
11224@subsection Parameterized Names
11225@cindex @samp{@@} in instruction pattern names
11226Ports sometimes need to apply iterators using C++ code, in order to
11227get the code or RTL pattern for a specific instruction. For example,
11228suppose we have the @samp{neon_vq<absneg><mode>} pattern given above:
11229
11230@smallexample
11231(define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
11232
11233(define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
11234
11235(define_insn "neon_vq<absneg><mode>"
11236 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11237 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11238 (match_operand:SI 2 "immediate_operand" "i")]
11239 QABSNEG))]
11240 @dots{}
11241)
11242@end smallexample
11243
11244A port might need to generate this pattern for a variable
11245@samp{QABSNEG} value and a variable @samp{VDQIW} mode. There are two
11246ways of doing this. The first is to build the rtx for the pattern
11247directly from C++ code; this is a valid technique and avoids any risk
11248of combinatorial explosion. The second is to prefix the instruction
11249name with the special character @samp{@@}, which tells GCC to generate
11250the four additional functions below. In each case, @var{name} is the
11251name of the instruction without the leading @samp{@@} character,
11252without the @samp{<@dots{}>} placeholders, and with any underscore
11253before a @samp{<@dots{}>} placeholder removed if keeping it would
11254lead to a double or trailing underscore.
11255
11256@table @samp
11257@item insn_code maybe_code_for_@var{name} (@var{i1}, @var{i2}, @dots{})
11258See whether replacing the first @samp{<@dots{}>} placeholder with
11259iterator value @var{i1}, the second with iterator value @var{i2}, and
11260so on, gives a valid instruction. Return its code if so, otherwise
11261return @code{CODE_FOR_nothing}.
11262
11263@item insn_code code_for_@var{name} (@var{i1}, @var{i2}, @dots{})
11264Same, but abort the compiler if the requested instruction does not exist.
11265
11266@item rtx maybe_gen_@var{name} (@var{i1}, @var{i2}, @dots{}, @var{op0}, @var{op1}, @dots{})
11267Check for a valid instruction in the same way as
11268@code{maybe_code_for_@var{name}}. If the instruction exists,
11269generate an instance of it using the operand values given by @var{op0},
11270@var{op1}, and so on, otherwise return null.
11271
11272@item rtx gen_@var{name} (@var{i1}, @var{i2}, @dots{}, @var{op0}, @var{op1}, @dots{})
11273Same, but abort the compiler if the requested instruction does not exist,
11274or if the instruction generator invoked the @code{FAIL} macro.
11275@end table
11276
11277For example, changing the pattern above to:
11278
11279@smallexample
11280(define_insn "@@neon_vq<absneg><mode>"
11281 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
11282 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
11283 (match_operand:SI 2 "immediate_operand" "i")]
11284 QABSNEG))]
11285 @dots{}
11286)
11287@end smallexample
11288
11289would define the same patterns as before, but in addition would generate
11290the four functions below:
11291
11292@smallexample
11293insn_code maybe_code_for_neon_vq (int, machine_mode);
11294insn_code code_for_neon_vq (int, machine_mode);
11295rtx maybe_gen_neon_vq (int, machine_mode, rtx, rtx, rtx);
11296rtx gen_neon_vq (int, machine_mode, rtx, rtx, rtx);
11297@end smallexample
11298
11299Calling @samp{code_for_neon_vq (UNSPEC_VQABS, V8QImode)}
11300would then give @code{CODE_FOR_neon_vqabsv8qi}.
11301
11302It is possible to have multiple @samp{@@} patterns with the same
11303name and same types of iterator. For example:
11304
11305@smallexample
11306(define_insn "@@some_arithmetic_op<mode>"
11307 [(set (match_operand:INTEGER_MODES 0 "register_operand") @dots{})]
11308 @dots{}
11309)
11310
11311(define_insn "@@some_arithmetic_op<mode>"
11312 [(set (match_operand:FLOAT_MODES 0 "register_operand") @dots{})]
11313 @dots{}
11314)
11315@end smallexample
11316
11317would produce a single set of functions that handles both
11318@code{INTEGER_MODES} and @code{FLOAT_MODES}.
11319
d281492d
RS
11320It is also possible for these @samp{@@} patterns to have different
11321numbers of operands from each other. For example, patterns with
11322a binary rtl code might take three operands (one output and two inputs)
11323while patterns with a ternary rtl code might take four operands (one
11324output and three inputs). This combination would produce separate
11325@samp{maybe_gen_@var{name}} and @samp{gen_@var{name}} functions for
11326each operand count, but it would still produce a single
11327@samp{maybe_code_for_@var{name}} and a single @samp{code_for_@var{name}}.
11328
032e8348 11329@end ifset