]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/md.texi
Add documentation for "mode" attribute for types.
[thirdparty/gcc.git] / gcc / doc / md.texi
CommitLineData
85ec4feb 1@c Copyright (C) 1988-2018 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
49e478af 118An optional name. The presence of a name indicates that this instruction
03dda8e3
RK
119pattern can perform a certain standard job for the RTL-generation
120pass of the compiler. This pass knows certain names and will use
121the instruction patterns with those names, if the names are defined
122in the machine description.
123
124The absence of a name is indicated by writing an empty string
125where the name should go. Nameless instruction patterns are never
126used for generating RTL code, but they may permit several simpler insns
127to be combined later on.
128
129Names that are not thus known and used in RTL-generation have no
130effect; they are equivalent to no name at all.
131
661cb0b7
RK
132For the purpose of debugging the compiler, you may also specify a
133name beginning with the @samp{*} character. Such a name is used only
2f9d3709
JG
134for identifying the instruction in RTL dumps; it is equivalent to having
135a nameless pattern for all other purposes. Names beginning with the
136@samp{*} character are not required to be unique.
661cb0b7 137
03dda8e3 138@item
2f9d3709
JG
139The @dfn{RTL template}: This is a vector of incomplete RTL expressions
140which describe the semantics of the instruction (@pxref{RTL Template}).
141It is incomplete because it may contain @code{match_operand},
03dda8e3
RK
142@code{match_operator}, and @code{match_dup} expressions that stand for
143operands of the instruction.
144
2f9d3709
JG
145If the vector has multiple elements, the RTL template is treated as a
146@code{parallel} expression.
03dda8e3
RK
147
148@item
149@cindex pattern conditions
150@cindex conditions, in patterns
2f9d3709
JG
151The condition: This is a string which contains a C expression. When the
152compiler attempts to match RTL against a pattern, the condition is
153evaluated. If the condition evaluates to @code{true}, the match is
154permitted. The condition may be an empty string, which is treated
155as always @code{true}.
03dda8e3
RK
156
157@cindex named patterns and conditions
2f9d3709
JG
158For a named pattern, the condition may not depend on the data in the
159insn being matched, but only the target-machine-type flags. The compiler
160needs to test these conditions during initialization in order to learn
161exactly which named instructions are available in a particular run.
03dda8e3
RK
162
163@findex operands
164For nameless patterns, the condition is applied only when matching an
165individual insn, and only after the insn has matched the pattern's
166recognition template. The insn's operands may be found in the vector
2f9d3709
JG
167@code{operands}.
168
49e478af
RS
169An instruction condition cannot become more restrictive as compilation
170progresses. If the condition accepts a particular RTL instruction at
171one stage of compilation, it must continue to accept that instruction
172until the final pass. For example, @samp{!reload_completed} and
173@samp{can_create_pseudo_p ()} are both invalid instruction conditions,
174because they are true during the earlier RTL passes and false during
175the later ones. For the same reason, if a condition accepts an
176instruction before register allocation, it cannot later try to control
177register allocation by excluding certain register or value combinations.
178
179Although a condition cannot become more restrictive as compilation
180progresses, the condition for a nameless pattern @emph{can} become
181more permissive. For example, a nameless instruction can require
182@samp{reload_completed} to be true, in which case it only matches
183after register allocation.
03dda8e3
RK
184
185@item
2f9d3709
JG
186The @dfn{output template} or @dfn{output statement}: This is either
187a string, or a fragment of C code which returns a string.
03dda8e3
RK
188
189When simple substitution isn't general enough, you can specify a piece
190of C code to compute the output. @xref{Output Statement}.
191
192@item
2f9d3709
JG
193The @dfn{insn attributes}: This is an optional vector containing the values of
194attributes for insns matching this pattern (@pxref{Insn Attributes}).
03dda8e3
RK
195@end enumerate
196
197@node Example
198@section Example of @code{define_insn}
199@cindex @code{define_insn} example
200
2f9d3709
JG
201Here is an example of an instruction pattern, taken from the machine
202description for the 68000/68020.
03dda8e3 203
3ab51846 204@smallexample
03dda8e3
RK
205(define_insn "tstsi"
206 [(set (cc0)
207 (match_operand:SI 0 "general_operand" "rm"))]
208 ""
209 "*
f282ffb3 210@{
0f40f9f7 211 if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
03dda8e3 212 return \"tstl %0\";
f282ffb3 213 return \"cmpl #0,%0\";
0f40f9f7 214@}")
3ab51846 215@end smallexample
0f40f9f7
ZW
216
217@noindent
218This can also be written using braced strings:
219
3ab51846 220@smallexample
0f40f9f7
ZW
221(define_insn "tstsi"
222 [(set (cc0)
223 (match_operand:SI 0 "general_operand" "rm"))]
224 ""
f282ffb3 225@{
0f40f9f7
ZW
226 if (TARGET_68020 || ! ADDRESS_REG_P (operands[0]))
227 return "tstl %0";
f282ffb3 228 return "cmpl #0,%0";
0f40f9f7 229@})
3ab51846 230@end smallexample
03dda8e3 231
2f9d3709
JG
232This describes an instruction which sets the condition codes based on the
233value of a general operand. It has no condition, so any insn with an RTL
234description of the form shown may be matched to this pattern. The name
235@samp{tstsi} means ``test a @code{SImode} value'' and tells the RTL
236generation pass that, when it is necessary to test such a value, an insn
237to do so can be constructed using this pattern.
03dda8e3
RK
238
239The output control string is a piece of C code which chooses which
240output template to return based on the kind of operand and the specific
241type of CPU for which code is being generated.
242
243@samp{"rm"} is an operand constraint. Its meaning is explained below.
244
245@node RTL Template
246@section RTL Template
247@cindex RTL insn template
248@cindex generating insns
249@cindex insns, generating
250@cindex recognizing insns
251@cindex insns, recognizing
252
253The RTL template is used to define which insns match the particular pattern
254and how to find their operands. For named patterns, the RTL template also
255says how to construct an insn from specified operands.
256
257Construction involves substituting specified operands into a copy of the
258template. Matching involves determining the values that serve as the
259operands in the insn being matched. Both of these activities are
260controlled by special expression types that direct matching and
261substitution of the operands.
262
263@table @code
264@findex match_operand
265@item (match_operand:@var{m} @var{n} @var{predicate} @var{constraint})
266This expression is a placeholder for operand number @var{n} of
267the insn. When constructing an insn, operand number @var{n}
268will be substituted at this point. When matching an insn, whatever
269appears at this position in the insn will be taken as operand
270number @var{n}; but it must satisfy @var{predicate} or this instruction
271pattern will not match at all.
272
273Operand numbers must be chosen consecutively counting from zero in
274each instruction pattern. There may be only one @code{match_operand}
275expression in the pattern for each operand number. Usually operands
276are numbered in the order of appearance in @code{match_operand}
72938a4c
MM
277expressions. In the case of a @code{define_expand}, any operand numbers
278used only in @code{match_dup} expressions have higher values than all
279other operand numbers.
03dda8e3 280
e543e219
ZW
281@var{predicate} is a string that is the name of a function that
282accepts two arguments, an expression and a machine mode.
283@xref{Predicates}. During matching, the function will be called with
284the putative operand as the expression and @var{m} as the mode
285argument (if @var{m} is not specified, @code{VOIDmode} will be used,
286which normally causes @var{predicate} to accept any mode). If it
287returns zero, this instruction pattern fails to match.
288@var{predicate} may be an empty string; then it means no test is to be
289done on the operand, so anything which occurs in this position is
290valid.
03dda8e3
RK
291
292Most of the time, @var{predicate} will reject modes other than @var{m}---but
293not always. For example, the predicate @code{address_operand} uses
294@var{m} as the mode of memory ref that the address should be valid for.
295Many predicates accept @code{const_int} nodes even though their mode is
296@code{VOIDmode}.
297
298@var{constraint} controls reloading and the choice of the best register
299class to use for a value, as explained later (@pxref{Constraints}).
e543e219 300If the constraint would be an empty string, it can be omitted.
03dda8e3
RK
301
302People are often unclear on the difference between the constraint and the
303predicate. The predicate helps decide whether a given insn matches the
304pattern. The constraint plays no role in this decision; instead, it
305controls various decisions in the case of an insn which does match.
306
03dda8e3
RK
307@findex match_scratch
308@item (match_scratch:@var{m} @var{n} @var{constraint})
309This expression is also a placeholder for operand number @var{n}
310and indicates that operand must be a @code{scratch} or @code{reg}
311expression.
312
313When matching patterns, this is equivalent to
314
315@smallexample
e80f9fef 316(match_operand:@var{m} @var{n} "scratch_operand" @var{constraint})
03dda8e3
RK
317@end smallexample
318
319but, when generating RTL, it produces a (@code{scratch}:@var{m})
320expression.
321
322If the last few expressions in a @code{parallel} are @code{clobber}
323expressions whose operands are either a hard register or
324@code{match_scratch}, the combiner can add or delete them when
325necessary. @xref{Side Effects}.
326
327@findex match_dup
328@item (match_dup @var{n})
329This expression is also a placeholder for operand number @var{n}.
330It is used when the operand needs to appear more than once in the
331insn.
332
333In construction, @code{match_dup} acts just like @code{match_operand}:
334the operand is substituted into the insn being constructed. But in
335matching, @code{match_dup} behaves differently. It assumes that operand
336number @var{n} has already been determined by a @code{match_operand}
337appearing earlier in the recognition template, and it matches only an
338identical-looking expression.
339
55e4756f
DD
340Note that @code{match_dup} should not be used to tell the compiler that
341a particular register is being used for two operands (example:
342@code{add} that adds one register to another; the second register is
343both an input operand and the output operand). Use a matching
344constraint (@pxref{Simple Constraints}) for those. @code{match_dup} is for the cases where one
345operand is used in two places in the template, such as an instruction
346that computes both a quotient and a remainder, where the opcode takes
347two input operands but the RTL template has to refer to each of those
348twice; once for the quotient pattern and once for the remainder pattern.
349
03dda8e3
RK
350@findex match_operator
351@item (match_operator:@var{m} @var{n} @var{predicate} [@var{operands}@dots{}])
352This pattern is a kind of placeholder for a variable RTL expression
353code.
354
355When constructing an insn, it stands for an RTL expression whose
356expression code is taken from that of operand @var{n}, and whose
357operands are constructed from the patterns @var{operands}.
358
359When matching an expression, it matches an expression if the function
360@var{predicate} returns nonzero on that expression @emph{and} the
361patterns @var{operands} match the operands of the expression.
362
363Suppose that the function @code{commutative_operator} is defined as
364follows, to match any expression whose operator is one of the
365commutative arithmetic operators of RTL and whose mode is @var{mode}:
366
367@smallexample
368int
ec8e098d 369commutative_integer_operator (x, mode)
03dda8e3 370 rtx x;
ef4bddc2 371 machine_mode mode;
03dda8e3
RK
372@{
373 enum rtx_code code = GET_CODE (x);
374 if (GET_MODE (x) != mode)
375 return 0;
ec8e098d 376 return (GET_RTX_CLASS (code) == RTX_COMM_ARITH
03dda8e3
RK
377 || code == EQ || code == NE);
378@}
379@end smallexample
380
381Then the following pattern will match any RTL expression consisting
382of a commutative operator applied to two general operands:
383
384@smallexample
385(match_operator:SI 3 "commutative_operator"
386 [(match_operand:SI 1 "general_operand" "g")
387 (match_operand:SI 2 "general_operand" "g")])
388@end smallexample
389
390Here the vector @code{[@var{operands}@dots{}]} contains two patterns
391because the expressions to be matched all contain two operands.
392
393When this pattern does match, the two operands of the commutative
394operator are recorded as operands 1 and 2 of the insn. (This is done
395by the two instances of @code{match_operand}.) Operand 3 of the insn
396will be the entire commutative expression: use @code{GET_CODE
397(operands[3])} to see which commutative operator was used.
398
399The machine mode @var{m} of @code{match_operator} works like that of
400@code{match_operand}: it is passed as the second argument to the
401predicate function, and that function is solely responsible for
402deciding whether the expression to be matched ``has'' that mode.
403
404When constructing an insn, argument 3 of the gen-function will specify
e979f9e8 405the operation (i.e.@: the expression code) for the expression to be
03dda8e3
RK
406made. It should be an RTL expression, whose expression code is copied
407into a new expression whose operands are arguments 1 and 2 of the
408gen-function. The subexpressions of argument 3 are not used;
409only its expression code matters.
410
411When @code{match_operator} is used in a pattern for matching an insn,
412it usually best if the operand number of the @code{match_operator}
413is higher than that of the actual operands of the insn. This improves
414register allocation because the register allocator often looks at
415operands 1 and 2 of insns to see if it can do register tying.
416
417There is no way to specify constraints in @code{match_operator}. The
418operand of the insn which corresponds to the @code{match_operator}
419never has any constraints because it is never reloaded as a whole.
420However, if parts of its @var{operands} are matched by
421@code{match_operand} patterns, those parts may have constraints of
422their own.
423
424@findex match_op_dup
425@item (match_op_dup:@var{m} @var{n}[@var{operands}@dots{}])
426Like @code{match_dup}, except that it applies to operators instead of
427operands. When constructing an insn, operand number @var{n} will be
428substituted at this point. But in matching, @code{match_op_dup} behaves
429differently. It assumes that operand number @var{n} has already been
430determined by a @code{match_operator} appearing earlier in the
431recognition template, and it matches only an identical-looking
432expression.
433
434@findex match_parallel
435@item (match_parallel @var{n} @var{predicate} [@var{subpat}@dots{}])
436This pattern is a placeholder for an insn that consists of a
437@code{parallel} expression with a variable number of elements. This
438expression should only appear at the top level of an insn pattern.
439
440When constructing an insn, operand number @var{n} will be substituted at
441this point. When matching an insn, it matches if the body of the insn
442is a @code{parallel} expression with at least as many elements as the
443vector of @var{subpat} expressions in the @code{match_parallel}, if each
444@var{subpat} matches the corresponding element of the @code{parallel},
445@emph{and} the function @var{predicate} returns nonzero on the
446@code{parallel} that is the body of the insn. It is the responsibility
447of the predicate to validate elements of the @code{parallel} beyond
bd819a4a 448those listed in the @code{match_parallel}.
03dda8e3
RK
449
450A typical use of @code{match_parallel} is to match load and store
451multiple expressions, which can contain a variable number of elements
452in a @code{parallel}. For example,
03dda8e3
RK
453
454@smallexample
455(define_insn ""
456 [(match_parallel 0 "load_multiple_operation"
457 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
458 (match_operand:SI 2 "memory_operand" "m"))
459 (use (reg:SI 179))
460 (clobber (reg:SI 179))])]
461 ""
462 "loadm 0,0,%1,%2")
463@end smallexample
464
465This example comes from @file{a29k.md}. The function
9c34dbbf 466@code{load_multiple_operation} is defined in @file{a29k.c} and checks
03dda8e3
RK
467that subsequent elements in the @code{parallel} are the same as the
468@code{set} in the pattern, except that they are referencing subsequent
469registers and memory locations.
470
471An insn that matches this pattern might look like:
472
473@smallexample
474(parallel
475 [(set (reg:SI 20) (mem:SI (reg:SI 100)))
476 (use (reg:SI 179))
477 (clobber (reg:SI 179))
478 (set (reg:SI 21)
479 (mem:SI (plus:SI (reg:SI 100)
480 (const_int 4))))
481 (set (reg:SI 22)
482 (mem:SI (plus:SI (reg:SI 100)
483 (const_int 8))))])
484@end smallexample
485
486@findex match_par_dup
487@item (match_par_dup @var{n} [@var{subpat}@dots{}])
488Like @code{match_op_dup}, but for @code{match_parallel} instead of
489@code{match_operator}.
490
03dda8e3
RK
491@end table
492
493@node Output Template
494@section Output Templates and Operand Substitution
495@cindex output templates
496@cindex operand substitution
497
498@cindex @samp{%} in template
499@cindex percent sign
500The @dfn{output template} is a string which specifies how to output the
501assembler code for an instruction pattern. Most of the template is a
502fixed string which is output literally. The character @samp{%} is used
503to specify where to substitute an operand; it can also be used to
504identify places where different variants of the assembler require
505different syntax.
506
507In the simplest case, a @samp{%} followed by a digit @var{n} says to output
508operand @var{n} at that point in the string.
509
510@samp{%} followed by a letter and a digit says to output an operand in an
511alternate fashion. Four letters have standard, built-in meanings described
512below. The machine description macro @code{PRINT_OPERAND} can define
513additional letters with nonstandard meanings.
514
515@samp{%c@var{digit}} can be used to substitute an operand that is a
516constant value without the syntax that normally indicates an immediate
517operand.
518
519@samp{%n@var{digit}} is like @samp{%c@var{digit}} except that the value of
520the constant is negated before printing.
521
522@samp{%a@var{digit}} can be used to substitute an operand as if it were a
523memory reference, with the actual operand treated as the address. This may
524be useful when outputting a ``load address'' instruction, because often the
525assembler syntax for such an instruction requires you to write the operand
526as if it were a memory reference.
527
528@samp{%l@var{digit}} is used to substitute a @code{label_ref} into a jump
529instruction.
530
531@samp{%=} outputs a number which is unique to each instruction in the
532entire compilation. This is useful for making local labels to be
533referred to more than once in a single template that generates multiple
534assembler instructions.
535
536@samp{%} followed by a punctuation character specifies a substitution that
537does not use an operand. Only one case is standard: @samp{%%} outputs a
538@samp{%} into the assembler code. Other nonstandard cases can be
539defined in the @code{PRINT_OPERAND} macro. You must also define
540which punctuation characters are valid with the
541@code{PRINT_OPERAND_PUNCT_VALID_P} macro.
542
543@cindex \
544@cindex backslash
545The template may generate multiple assembler instructions. Write the text
546for the instructions, with @samp{\;} between them.
547
548@cindex matching operands
549When the RTL contains two operands which are required by constraint to match
550each other, the output template must refer only to the lower-numbered operand.
551Matching operands are not always identical, and the rest of the compiler
552arranges to put the proper RTL expression for printing into the lower-numbered
553operand.
554
555One use of nonstandard letters or punctuation following @samp{%} is to
556distinguish between different assembler languages for the same machine; for
557example, Motorola syntax versus MIT syntax for the 68000. Motorola syntax
558requires periods in most opcode names, while MIT syntax does not. For
559example, the opcode @samp{movel} in MIT syntax is @samp{move.l} in Motorola
560syntax. The same file of patterns is used for both kinds of output syntax,
561but the character sequence @samp{%.} is used in each place where Motorola
562syntax wants a period. The @code{PRINT_OPERAND} macro for Motorola syntax
563defines the sequence to output a period; the macro for MIT syntax defines
564it to do nothing.
565
566@cindex @code{#} in template
567As a special case, a template consisting of the single character @code{#}
568instructs the compiler to first split the insn, and then output the
569resulting instructions separately. This helps eliminate redundancy in the
570output templates. If you have a @code{define_insn} that needs to emit
e4ae5e77 571multiple assembler instructions, and there is a matching @code{define_split}
03dda8e3
RK
572already defined, then you can simply use @code{#} as the output template
573instead of writing an output template that emits the multiple assembler
574instructions.
575
49e478af
RS
576Note that @code{#} only has an effect while generating assembly code;
577it does not affect whether a split occurs earlier. An associated
578@code{define_split} must exist and it must be suitable for use after
579register allocation.
580
03dda8e3
RK
581If the macro @code{ASSEMBLER_DIALECT} is defined, you can use construct
582of the form @samp{@{option0|option1|option2@}} in the templates. These
583describe multiple variants of assembler language syntax.
584@xref{Instruction Output}.
585
586@node Output Statement
587@section C Statements for Assembler Output
588@cindex output statements
589@cindex C statements for assembler output
590@cindex generating assembler output
591
592Often a single fixed template string cannot produce correct and efficient
593assembler code for all the cases that are recognized by a single
594instruction pattern. For example, the opcodes may depend on the kinds of
595operands; or some unfortunate combinations of operands may require extra
596machine instructions.
597
598If the output control string starts with a @samp{@@}, then it is actually
599a series of templates, each on a separate line. (Blank lines and
600leading spaces and tabs are ignored.) The templates correspond to the
601pattern's constraint alternatives (@pxref{Multi-Alternative}). For example,
602if a target machine has a two-address add instruction @samp{addr} to add
603into a register and another @samp{addm} to add a register to memory, you
604might write this pattern:
605
606@smallexample
607(define_insn "addsi3"
608 [(set (match_operand:SI 0 "general_operand" "=r,m")
609 (plus:SI (match_operand:SI 1 "general_operand" "0,0")
610 (match_operand:SI 2 "general_operand" "g,r")))]
611 ""
612 "@@
613 addr %2,%0
614 addm %2,%0")
615@end smallexample
616
617@cindex @code{*} in template
618@cindex asterisk in template
619If the output control string starts with a @samp{*}, then it is not an
620output template but rather a piece of C program that should compute a
621template. It should execute a @code{return} statement to return the
622template-string you want. Most such templates use C string literals, which
623require doublequote characters to delimit them. To include these
624doublequote characters in the string, prefix each one with @samp{\}.
625
0f40f9f7
ZW
626If the output control string is written as a brace block instead of a
627double-quoted string, it is automatically assumed to be C code. In that
628case, it is not necessary to put in a leading asterisk, or to escape the
629doublequotes surrounding C string literals.
630
03dda8e3
RK
631The operands may be found in the array @code{operands}, whose C data type
632is @code{rtx []}.
633
634It is very common to select different ways of generating assembler code
635based on whether an immediate operand is within a certain range. Be
636careful when doing this, because the result of @code{INTVAL} is an
637integer on the host machine. If the host machine has more bits in an
638@code{int} than the target machine has in the mode in which the constant
639will be used, then some of the bits you get from @code{INTVAL} will be
640superfluous. For proper results, you must carefully disregard the
641values of those bits.
642
643@findex output_asm_insn
644It is possible to output an assembler instruction and then go on to output
645or compute more of them, using the subroutine @code{output_asm_insn}. This
646receives two arguments: a template-string and a vector of operands. The
647vector may be @code{operands}, or it may be another array of @code{rtx}
648that you declare locally and initialize yourself.
649
650@findex which_alternative
651When an insn pattern has multiple alternatives in its constraints, often
652the appearance of the assembler code is determined mostly by which alternative
653was matched. When this is so, the C code can test the variable
654@code{which_alternative}, which is the ordinal number of the alternative
655that was actually satisfied (0 for the first, 1 for the second alternative,
656etc.).
657
658For example, suppose there are two opcodes for storing zero, @samp{clrreg}
659for registers and @samp{clrmem} for memory locations. Here is how
660a pattern could use @code{which_alternative} to choose between them:
661
662@smallexample
663(define_insn ""
664 [(set (match_operand:SI 0 "general_operand" "=r,m")
665 (const_int 0))]
666 ""
0f40f9f7 667 @{
03dda8e3 668 return (which_alternative == 0
0f40f9f7
ZW
669 ? "clrreg %0" : "clrmem %0");
670 @})
03dda8e3
RK
671@end smallexample
672
673The example above, where the assembler code to generate was
674@emph{solely} determined by the alternative, could also have been specified
675as follows, having the output control string start with a @samp{@@}:
676
677@smallexample
678@group
679(define_insn ""
680 [(set (match_operand:SI 0 "general_operand" "=r,m")
681 (const_int 0))]
682 ""
683 "@@
684 clrreg %0
685 clrmem %0")
686@end group
687@end smallexample
e543e219 688
94c765ab
R
689If you just need a little bit of C code in one (or a few) alternatives,
690you can use @samp{*} inside of a @samp{@@} multi-alternative template:
691
692@smallexample
693@group
694(define_insn ""
695 [(set (match_operand:SI 0 "general_operand" "=r,<,m")
696 (const_int 0))]
697 ""
698 "@@
699 clrreg %0
700 * return stack_mem_p (operands[0]) ? \"push 0\" : \"clrmem %0\";
701 clrmem %0")
702@end group
703@end smallexample
704
e543e219
ZW
705@node Predicates
706@section Predicates
707@cindex predicates
708@cindex operand predicates
709@cindex operator predicates
710
711A predicate determines whether a @code{match_operand} or
712@code{match_operator} expression matches, and therefore whether the
713surrounding instruction pattern will be used for that combination of
714operands. GCC has a number of machine-independent predicates, and you
715can define machine-specific predicates as needed. By convention,
716predicates used with @code{match_operand} have names that end in
717@samp{_operand}, and those used with @code{match_operator} have names
718that end in @samp{_operator}.
719
527a3750 720All predicates are boolean functions (in the mathematical sense) of
e543e219
ZW
721two arguments: the RTL expression that is being considered at that
722position in the instruction pattern, and the machine mode that the
723@code{match_operand} or @code{match_operator} specifies. In this
724section, the first argument is called @var{op} and the second argument
725@var{mode}. Predicates can be called from C as ordinary two-argument
726functions; this can be useful in output templates or other
727machine-specific code.
728
729Operand predicates can allow operands that are not actually acceptable
730to the hardware, as long as the constraints give reload the ability to
731fix them up (@pxref{Constraints}). However, GCC will usually generate
732better code if the predicates specify the requirements of the machine
733instructions as closely as possible. Reload cannot fix up operands
734that must be constants (``immediate operands''); you must use a
735predicate that allows only constants, or else enforce the requirement
736in the extra condition.
737
738@cindex predicates and machine modes
739@cindex normal predicates
740@cindex special predicates
741Most predicates handle their @var{mode} argument in a uniform manner.
742If @var{mode} is @code{VOIDmode} (unspecified), then @var{op} can have
743any mode. If @var{mode} is anything else, then @var{op} must have the
744same mode, unless @var{op} is a @code{CONST_INT} or integer
745@code{CONST_DOUBLE}. These RTL expressions always have
746@code{VOIDmode}, so it would be counterproductive to check that their
747mode matches. Instead, predicates that accept @code{CONST_INT} and/or
748integer @code{CONST_DOUBLE} check that the value stored in the
749constant will fit in the requested mode.
750
751Predicates with this behavior are called @dfn{normal}.
752@command{genrecog} can optimize the instruction recognizer based on
753knowledge of how normal predicates treat modes. It can also diagnose
754certain kinds of common errors in the use of normal predicates; for
755instance, it is almost always an error to use a normal predicate
756without specifying a mode.
757
758Predicates that do something different with their @var{mode} argument
759are called @dfn{special}. The generic predicates
760@code{address_operand} and @code{pmode_register_operand} are special
761predicates. @command{genrecog} does not do any optimizations or
762diagnosis when special predicates are used.
763
764@menu
765* Machine-Independent Predicates:: Predicates available to all back ends.
766* Defining Predicates:: How to write machine-specific predicate
767 functions.
768@end menu
769
770@node Machine-Independent Predicates
771@subsection Machine-Independent Predicates
772@cindex machine-independent predicates
773@cindex generic predicates
774
775These are the generic predicates available to all back ends. They are
776defined in @file{recog.c}. The first category of predicates allow
777only constant, or @dfn{immediate}, operands.
778
779@defun immediate_operand
780This predicate allows any sort of constant that fits in @var{mode}.
781It is an appropriate choice for instructions that take operands that
782must be constant.
783@end defun
784
785@defun const_int_operand
786This predicate allows any @code{CONST_INT} expression that fits in
787@var{mode}. It is an appropriate choice for an immediate operand that
788does not allow a symbol or label.
789@end defun
790
791@defun const_double_operand
792This predicate accepts any @code{CONST_DOUBLE} expression that has
793exactly @var{mode}. If @var{mode} is @code{VOIDmode}, it will also
794accept @code{CONST_INT}. It is intended for immediate floating point
795constants.
796@end defun
797
798@noindent
799The second category of predicates allow only some kind of machine
800register.
801
802@defun register_operand
803This predicate allows any @code{REG} or @code{SUBREG} expression that
804is valid for @var{mode}. It is often suitable for arithmetic
805instruction operands on a RISC machine.
806@end defun
807
808@defun pmode_register_operand
809This is a slight variant on @code{register_operand} which works around
810a limitation in the machine-description reader.
811
cd1a8088 812@smallexample
e543e219 813(match_operand @var{n} "pmode_register_operand" @var{constraint})
cd1a8088 814@end smallexample
e543e219
ZW
815
816@noindent
817means exactly what
818
cd1a8088 819@smallexample
e543e219 820(match_operand:P @var{n} "register_operand" @var{constraint})
cd1a8088 821@end smallexample
e543e219
ZW
822
823@noindent
824would mean, if the machine-description reader accepted @samp{:P}
825mode suffixes. Unfortunately, it cannot, because @code{Pmode} is an
826alias for some other mode, and might vary with machine-specific
8a36672b 827options. @xref{Misc}.
e543e219
ZW
828@end defun
829
830@defun scratch_operand
831This predicate allows hard registers and @code{SCRATCH} expressions,
832but not pseudo-registers. It is used internally by @code{match_scratch};
833it should not be used directly.
834@end defun
835
836@noindent
837The third category of predicates allow only some kind of memory reference.
838
839@defun memory_operand
840This predicate allows any valid reference to a quantity of mode
841@var{mode} in memory, as determined by the weak form of
842@code{GO_IF_LEGITIMATE_ADDRESS} (@pxref{Addressing Modes}).
843@end defun
844
845@defun address_operand
846This predicate is a little unusual; it allows any operand that is a
847valid expression for the @emph{address} of a quantity of mode
848@var{mode}, again determined by the weak form of
849@code{GO_IF_LEGITIMATE_ADDRESS}. To first order, if
850@samp{@w{(mem:@var{mode} (@var{exp}))}} is acceptable to
851@code{memory_operand}, then @var{exp} is acceptable to
852@code{address_operand}. Note that @var{exp} does not necessarily have
853the mode @var{mode}.
854@end defun
855
856@defun indirect_operand
857This is a stricter form of @code{memory_operand} which allows only
858memory references with a @code{general_operand} as the address
859expression. New uses of this predicate are discouraged, because
860@code{general_operand} is very permissive, so it's hard to tell what
861an @code{indirect_operand} does or does not allow. If a target has
862different requirements for memory operands for different instructions,
863it is better to define target-specific predicates which enforce the
864hardware's requirements explicitly.
865@end defun
866
867@defun push_operand
868This predicate allows a memory reference suitable for pushing a value
869onto the stack. This will be a @code{MEM} which refers to
df18c24a 870@code{stack_pointer_rtx}, with a side effect in its address expression
e543e219
ZW
871(@pxref{Incdec}); which one is determined by the
872@code{STACK_PUSH_CODE} macro (@pxref{Frame Layout}).
873@end defun
874
875@defun pop_operand
876This predicate allows a memory reference suitable for popping a value
877off the stack. Again, this will be a @code{MEM} referring to
df18c24a 878@code{stack_pointer_rtx}, with a side effect in its address
e543e219
ZW
879expression. However, this time @code{STACK_POP_CODE} is expected.
880@end defun
881
882@noindent
883The fourth category of predicates allow some combination of the above
884operands.
885
886@defun nonmemory_operand
887This predicate allows any immediate or register operand valid for @var{mode}.
888@end defun
889
890@defun nonimmediate_operand
891This predicate allows any register or memory operand valid for @var{mode}.
892@end defun
893
894@defun general_operand
895This predicate allows any immediate, register, or memory operand
896valid for @var{mode}.
897@end defun
898
899@noindent
c6963675 900Finally, there are two generic operator predicates.
e543e219
ZW
901
902@defun comparison_operator
903This predicate matches any expression which performs an arithmetic
904comparison in @var{mode}; that is, @code{COMPARISON_P} is true for the
905expression code.
906@end defun
907
c6963675
PB
908@defun ordered_comparison_operator
909This predicate matches any expression which performs an arithmetic
910comparison in @var{mode} and whose expression code is valid for integer
911modes; that is, the expression code will be one of @code{eq}, @code{ne},
912@code{lt}, @code{ltu}, @code{le}, @code{leu}, @code{gt}, @code{gtu},
913@code{ge}, @code{geu}.
914@end defun
915
e543e219
ZW
916@node Defining Predicates
917@subsection Defining Machine-Specific Predicates
918@cindex defining predicates
919@findex define_predicate
920@findex define_special_predicate
921
922Many machines have requirements for their operands that cannot be
923expressed precisely using the generic predicates. You can define
924additional predicates using @code{define_predicate} and
925@code{define_special_predicate} expressions. These expressions have
926three operands:
927
928@itemize @bullet
929@item
930The name of the predicate, as it will be referred to in
931@code{match_operand} or @code{match_operator} expressions.
932
933@item
934An RTL expression which evaluates to true if the predicate allows the
935operand @var{op}, false if it does not. This expression can only use
936the following RTL codes:
937
938@table @code
939@item MATCH_OPERAND
940When written inside a predicate expression, a @code{MATCH_OPERAND}
941expression evaluates to true if the predicate it names would allow
942@var{op}. The operand number and constraint are ignored. Due to
943limitations in @command{genrecog}, you can only refer to generic
944predicates and predicates that have already been defined.
945
946@item MATCH_CODE
6e7a4706
ZW
947This expression evaluates to true if @var{op} or a specified
948subexpression of @var{op} has one of a given list of RTX codes.
949
950The first operand of this expression is a string constant containing a
951comma-separated list of RTX code names (in lower case). These are the
952codes for which the @code{MATCH_CODE} will be true.
953
954The second operand is a string constant which indicates what
955subexpression of @var{op} to examine. If it is absent or the empty
956string, @var{op} itself is examined. Otherwise, the string constant
957must be a sequence of digits and/or lowercase letters. Each character
958indicates a subexpression to extract from the current expression; for
959the first character this is @var{op}, for the second and subsequent
960characters it is the result of the previous character. A digit
961@var{n} extracts @samp{@w{XEXP (@var{e}, @var{n})}}; a letter @var{l}
962extracts @samp{@w{XVECEXP (@var{e}, 0, @var{n})}} where @var{n} is the
963alphabetic ordinal of @var{l} (0 for `a', 1 for 'b', and so on). The
964@code{MATCH_CODE} then examines the RTX code of the subexpression
965extracted by the complete string. It is not possible to extract
966components of an @code{rtvec} that is not at position 0 within its RTX
967object.
e543e219
ZW
968
969@item MATCH_TEST
970This expression has one operand, a string constant containing a C
971expression. The predicate's arguments, @var{op} and @var{mode}, are
972available with those names in the C expression. The @code{MATCH_TEST}
973evaluates to true if the C expression evaluates to a nonzero value.
974@code{MATCH_TEST} expressions must not have side effects.
975
976@item AND
977@itemx IOR
978@itemx NOT
979@itemx IF_THEN_ELSE
980The basic @samp{MATCH_} expressions can be combined using these
981logical operators, which have the semantics of the C operators
6e7a4706
ZW
982@samp{&&}, @samp{||}, @samp{!}, and @samp{@w{? :}} respectively. As
983in Common Lisp, you may give an @code{AND} or @code{IOR} expression an
984arbitrary number of arguments; this has exactly the same effect as
985writing a chain of two-argument @code{AND} or @code{IOR} expressions.
e543e219
ZW
986@end table
987
988@item
f0eb93a8 989An optional block of C code, which should execute
e543e219
ZW
990@samp{@w{return true}} if the predicate is found to match and
991@samp{@w{return false}} if it does not. It must not have any side
992effects. The predicate arguments, @var{op} and @var{mode}, are
993available with those names.
994
995If a code block is present in a predicate definition, then the RTL
996expression must evaluate to true @emph{and} the code block must
997execute @samp{@w{return true}} for the predicate to allow the operand.
998The RTL expression is evaluated first; do not re-check anything in the
999code block that was checked in the RTL expression.
1000@end itemize
1001
1002The program @command{genrecog} scans @code{define_predicate} and
1003@code{define_special_predicate} expressions to determine which RTX
1004codes are possibly allowed. You should always make this explicit in
1005the RTL predicate expression, using @code{MATCH_OPERAND} and
1006@code{MATCH_CODE}.
1007
1008Here is an example of a simple predicate definition, from the IA64
1009machine description:
1010
1011@smallexample
1012@group
1013;; @r{True if @var{op} is a @code{SYMBOL_REF} which refers to the sdata section.}
1014(define_predicate "small_addr_symbolic_operand"
1015 (and (match_code "symbol_ref")
1016 (match_test "SYMBOL_REF_SMALL_ADDR_P (op)")))
1017@end group
1018@end smallexample
1019
1020@noindent
1021And here is another, showing the use of the C block.
1022
1023@smallexample
1024@group
1025;; @r{True if @var{op} is a register operand that is (or could be) a GR reg.}
1026(define_predicate "gr_register_operand"
1027 (match_operand 0 "register_operand")
1028@{
1029 unsigned int regno;
1030 if (GET_CODE (op) == SUBREG)
1031 op = SUBREG_REG (op);
1032
1033 regno = REGNO (op);
1034 return (regno >= FIRST_PSEUDO_REGISTER || GENERAL_REGNO_P (regno));
1035@})
1036@end group
1037@end smallexample
1038
1039Predicates written with @code{define_predicate} automatically include
1040a test that @var{mode} is @code{VOIDmode}, or @var{op} has the same
1041mode as @var{mode}, or @var{op} is a @code{CONST_INT} or
1042@code{CONST_DOUBLE}. They do @emph{not} check specifically for
1043integer @code{CONST_DOUBLE}, nor do they test that the value of either
1044kind of constant fits in the requested mode. This is because
1045target-specific predicates that take constants usually have to do more
1046stringent value checks anyway. If you need the exact same treatment
1047of @code{CONST_INT} or @code{CONST_DOUBLE} that the generic predicates
1048provide, use a @code{MATCH_OPERAND} subexpression to call
1049@code{const_int_operand}, @code{const_double_operand}, or
1050@code{immediate_operand}.
1051
1052Predicates written with @code{define_special_predicate} do not get any
1053automatic mode checks, and are treated as having special mode handling
1054by @command{genrecog}.
1055
1056The program @command{genpreds} is responsible for generating code to
1057test predicates. It also writes a header file containing function
1058declarations for all machine-specific predicates. It is not necessary
1059to declare these predicates in @file{@var{cpu}-protos.h}.
03dda8e3
RK
1060@end ifset
1061
1062@c Most of this node appears by itself (in a different place) even
b11cc610
JM
1063@c when the INTERNALS flag is clear. Passages that require the internals
1064@c manual's context are conditionalized to appear only in the internals manual.
03dda8e3
RK
1065@ifset INTERNALS
1066@node Constraints
1067@section Operand Constraints
1068@cindex operand constraints
1069@cindex constraints
1070
e543e219
ZW
1071Each @code{match_operand} in an instruction pattern can specify
1072constraints for the operands allowed. The constraints allow you to
1073fine-tune matching within the set of operands allowed by the
1074predicate.
1075
03dda8e3
RK
1076@end ifset
1077@ifclear INTERNALS
1078@node Constraints
1079@section Constraints for @code{asm} Operands
1080@cindex operand constraints, @code{asm}
1081@cindex constraints, @code{asm}
1082@cindex @code{asm} constraints
1083
1084Here are specific details on what constraint letters you can use with
1085@code{asm} operands.
1086@end ifclear
1087Constraints can say whether
1088an operand may be in a register, and which kinds of register; whether the
1089operand can be a memory reference, and which kinds of address; whether the
1090operand may be an immediate constant, and which possible values it may
1091have. Constraints can also require two operands to match.
54f044eb
JJ
1092Side-effects aren't allowed in operands of inline @code{asm}, unless
1093@samp{<} or @samp{>} constraints are used, because there is no guarantee
df18c24a 1094that the side effects will happen exactly once in an instruction that can update
54f044eb 1095the addressing register.
03dda8e3
RK
1096
1097@ifset INTERNALS
1098@menu
1099* Simple Constraints:: Basic use of constraints.
1100* Multi-Alternative:: When an insn has two alternative constraint-patterns.
1101* Class Preferences:: Constraints guide which hard register to put things in.
1102* Modifiers:: More precise control over effects of constraints.
1103* Machine Constraints:: Existing constraints for some particular machines.
9840b2fa 1104* Disable Insn Alternatives:: Disable insn alternatives using attributes.
f38840db
ZW
1105* Define Constraints:: How to define machine-specific constraints.
1106* C Constraint Interface:: How to test constraints from C code.
03dda8e3
RK
1107@end menu
1108@end ifset
1109
1110@ifclear INTERNALS
1111@menu
1112* Simple Constraints:: Basic use of constraints.
1113* Multi-Alternative:: When an insn has two alternative constraint-patterns.
1114* Modifiers:: More precise control over effects of constraints.
1115* Machine Constraints:: Special constraints for some particular machines.
1116@end menu
1117@end ifclear
1118
1119@node Simple Constraints
1120@subsection Simple Constraints
1121@cindex simple constraints
1122
1123The simplest kind of constraint is a string full of letters, each of
1124which describes one kind of operand that is permitted. Here are
1125the letters that are allowed:
1126
1127@table @asis
88a56c2e
HPN
1128@item whitespace
1129Whitespace characters are ignored and can be inserted at any position
1130except the first. This enables each alternative for different operands to
1131be visually aligned in the machine description even if they have different
1132number of constraints and modifiers.
1133
03dda8e3
RK
1134@cindex @samp{m} in constraint
1135@cindex memory references in constraints
1136@item @samp{m}
1137A memory operand is allowed, with any kind of address that the machine
1138supports in general.
a4edaf83
AK
1139Note that the letter used for the general memory constraint can be
1140re-defined by a back end using the @code{TARGET_MEM_CONSTRAINT} macro.
03dda8e3
RK
1141
1142@cindex offsettable address
1143@cindex @samp{o} in constraint
1144@item @samp{o}
1145A memory operand is allowed, but only if the address is
1146@dfn{offsettable}. This means that adding a small integer (actually,
1147the width in bytes of the operand, as determined by its machine mode)
1148may be added to the address and the result is also a valid memory
1149address.
1150
1151@cindex autoincrement/decrement addressing
1152For example, an address which is constant is offsettable; so is an
1153address that is the sum of a register and a constant (as long as a
1154slightly larger constant is also within the range of address-offsets
1155supported by the machine); but an autoincrement or autodecrement
1156address is not offsettable. More complicated indirect/indexed
1157addresses may or may not be offsettable depending on the other
1158addressing modes that the machine supports.
1159
1160Note that in an output operand which can be matched by another
1161operand, the constraint letter @samp{o} is valid only when accompanied
1162by both @samp{<} (if the target machine has predecrement addressing)
1163and @samp{>} (if the target machine has preincrement addressing).
1164
1165@cindex @samp{V} in constraint
1166@item @samp{V}
1167A memory operand that is not offsettable. In other words, anything that
1168would fit the @samp{m} constraint but not the @samp{o} constraint.
1169
1170@cindex @samp{<} in constraint
1171@item @samp{<}
1172A memory operand with autodecrement addressing (either predecrement or
54f044eb
JJ
1173postdecrement) is allowed. In inline @code{asm} this constraint is only
1174allowed if the operand is used exactly once in an instruction that can
df18c24a 1175handle the side effects. Not using an operand with @samp{<} in constraint
54f044eb 1176string in the inline @code{asm} pattern at all or using it in multiple
df18c24a 1177instructions isn't valid, because the side effects wouldn't be performed
54f044eb
JJ
1178or would be performed more than once. Furthermore, on some targets
1179the operand with @samp{<} in constraint string must be accompanied by
1180special instruction suffixes like @code{%U0} instruction suffix on PowerPC
1181or @code{%P0} on IA-64.
03dda8e3
RK
1182
1183@cindex @samp{>} in constraint
1184@item @samp{>}
1185A memory operand with autoincrement addressing (either preincrement or
54f044eb
JJ
1186postincrement) is allowed. In inline @code{asm} the same restrictions
1187as for @samp{<} apply.
03dda8e3
RK
1188
1189@cindex @samp{r} in constraint
1190@cindex registers in constraints
1191@item @samp{r}
1192A register operand is allowed provided that it is in a general
1193register.
1194
03dda8e3
RK
1195@cindex constants in constraints
1196@cindex @samp{i} in constraint
1197@item @samp{i}
1198An immediate integer operand (one with constant value) is allowed.
1199This includes symbolic constants whose values will be known only at
8ac658b6 1200assembly time or later.
03dda8e3
RK
1201
1202@cindex @samp{n} in constraint
1203@item @samp{n}
1204An immediate integer operand with a known numeric value is allowed.
1205Many systems cannot support assembly-time constants for operands less
1206than a word wide. Constraints for these operands should use @samp{n}
1207rather than @samp{i}.
1208
1209@cindex @samp{I} in constraint
1210@item @samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}
1211Other letters in the range @samp{I} through @samp{P} may be defined in
1212a machine-dependent fashion to permit immediate integer operands with
1213explicit integer values in specified ranges. For example, on the
121468000, @samp{I} is defined to stand for the range of values 1 to 8.
1215This is the range permitted as a shift count in the shift
1216instructions.
1217
1218@cindex @samp{E} in constraint
1219@item @samp{E}
1220An immediate floating operand (expression code @code{const_double}) is
1221allowed, but only if the target floating point format is the same as
1222that of the host machine (on which the compiler is running).
1223
1224@cindex @samp{F} in constraint
1225@item @samp{F}
bf7cd754
R
1226An immediate floating operand (expression code @code{const_double} or
1227@code{const_vector}) is allowed.
03dda8e3
RK
1228
1229@cindex @samp{G} in constraint
1230@cindex @samp{H} in constraint
1231@item @samp{G}, @samp{H}
1232@samp{G} and @samp{H} may be defined in a machine-dependent fashion to
1233permit immediate floating operands in particular ranges of values.
1234
1235@cindex @samp{s} in constraint
1236@item @samp{s}
1237An immediate integer operand whose value is not an explicit integer is
1238allowed.
1239
1240This might appear strange; if an insn allows a constant operand with a
1241value not known at compile time, it certainly must allow any known
1242value. So why use @samp{s} instead of @samp{i}? Sometimes it allows
1243better code to be generated.
1244
1245For example, on the 68000 in a fullword instruction it is possible to
630d3d5a 1246use an immediate operand; but if the immediate value is between @minus{}128
03dda8e3
RK
1247and 127, better code results from loading the value into a register and
1248using the register. This is because the load into the register can be
1249done with a @samp{moveq} instruction. We arrange for this to happen
1250by defining the letter @samp{K} to mean ``any integer outside the
630d3d5a 1251range @minus{}128 to 127'', and then specifying @samp{Ks} in the operand
03dda8e3
RK
1252constraints.
1253
1254@cindex @samp{g} in constraint
1255@item @samp{g}
1256Any register, memory or immediate integer operand is allowed, except for
1257registers that are not general registers.
1258
1259@cindex @samp{X} in constraint
1260@item @samp{X}
1261@ifset INTERNALS
1262Any operand whatsoever is allowed, even if it does not satisfy
1263@code{general_operand}. This is normally used in the constraint of
1264a @code{match_scratch} when certain alternatives will not actually
1265require a scratch register.
1266@end ifset
1267@ifclear INTERNALS
1268Any operand whatsoever is allowed.
1269@end ifclear
1270
1271@cindex @samp{0} in constraint
1272@cindex digits in constraint
1273@item @samp{0}, @samp{1}, @samp{2}, @dots{} @samp{9}
1274An operand that matches the specified operand number is allowed. If a
1275digit is used together with letters within the same alternative, the
1276digit should come last.
1277
84b72302 1278This number is allowed to be more than a single digit. If multiple
c0478a66 1279digits are encountered consecutively, they are interpreted as a single
84b72302
RH
1280decimal integer. There is scant chance for ambiguity, since to-date
1281it has never been desirable that @samp{10} be interpreted as matching
1282either operand 1 @emph{or} operand 0. Should this be desired, one
1283can use multiple alternatives instead.
1284
03dda8e3
RK
1285@cindex matching constraint
1286@cindex constraint, matching
1287This is called a @dfn{matching constraint} and what it really means is
1288that the assembler has only a single operand that fills two roles
1289@ifset INTERNALS
1290considered separate in the RTL insn. For example, an add insn has two
1291input operands and one output operand in the RTL, but on most CISC
1292@end ifset
1293@ifclear INTERNALS
1294which @code{asm} distinguishes. For example, an add instruction uses
1295two input operands and an output operand, but on most CISC
1296@end ifclear
1297machines an add instruction really has only two operands, one of them an
1298input-output operand:
1299
1300@smallexample
1301addl #35,r12
1302@end smallexample
1303
1304Matching constraints are used in these circumstances.
1305More precisely, the two operands that match must include one input-only
1306operand and one output-only operand. Moreover, the digit must be a
1307smaller number than the number of the operand that uses it in the
1308constraint.
1309
1310@ifset INTERNALS
1311For operands to match in a particular case usually means that they
1312are identical-looking RTL expressions. But in a few special cases
1313specific kinds of dissimilarity are allowed. For example, @code{*x}
1314as an input operand will match @code{*x++} as an output operand.
1315For proper results in such cases, the output template should always
1316use the output-operand's number when printing the operand.
1317@end ifset
1318
1319@cindex load address instruction
1320@cindex push address instruction
1321@cindex address constraints
1322@cindex @samp{p} in constraint
1323@item @samp{p}
1324An operand that is a valid memory address is allowed. This is
1325for ``load address'' and ``push address'' instructions.
1326
1327@findex address_operand
1328@samp{p} in the constraint must be accompanied by @code{address_operand}
1329as the predicate in the @code{match_operand}. This predicate interprets
1330the mode specified in the @code{match_operand} as the mode of the memory
1331reference for which the address would be valid.
1332
c2cba7a9 1333@cindex other register constraints
03dda8e3 1334@cindex extensible constraints
630d3d5a 1335@item @var{other-letters}
c2cba7a9
RH
1336Other letters can be defined in machine-dependent fashion to stand for
1337particular classes of registers or other arbitrary operand types.
1338@samp{d}, @samp{a} and @samp{f} are defined on the 68000/68020 to stand
1339for data, address and floating point registers.
03dda8e3
RK
1340@end table
1341
1342@ifset INTERNALS
1343In order to have valid assembler code, each operand must satisfy
1344its constraint. But a failure to do so does not prevent the pattern
1345from applying to an insn. Instead, it directs the compiler to modify
1346the code so that the constraint will be satisfied. Usually this is
1347done by copying an operand into a register.
1348
1349Contrast, therefore, the two instruction patterns that follow:
1350
1351@smallexample
1352(define_insn ""
1353 [(set (match_operand:SI 0 "general_operand" "=r")
1354 (plus:SI (match_dup 0)
1355 (match_operand:SI 1 "general_operand" "r")))]
1356 ""
1357 "@dots{}")
1358@end smallexample
1359
1360@noindent
1361which has two operands, one of which must appear in two places, and
1362
1363@smallexample
1364(define_insn ""
1365 [(set (match_operand:SI 0 "general_operand" "=r")
1366 (plus:SI (match_operand:SI 1 "general_operand" "0")
1367 (match_operand:SI 2 "general_operand" "r")))]
1368 ""
1369 "@dots{}")
1370@end smallexample
1371
1372@noindent
1373which has three operands, two of which are required by a constraint to be
1374identical. If we are considering an insn of the form
1375
1376@smallexample
1377(insn @var{n} @var{prev} @var{next}
1378 (set (reg:SI 3)
1379 (plus:SI (reg:SI 6) (reg:SI 109)))
1380 @dots{})
1381@end smallexample
1382
1383@noindent
1384the first pattern would not apply at all, because this insn does not
1385contain two identical subexpressions in the right place. The pattern would
d78aa55c 1386say, ``That does not look like an add instruction; try other patterns''.
03dda8e3 1387The second pattern would say, ``Yes, that's an add instruction, but there
d78aa55c 1388is something wrong with it''. It would direct the reload pass of the
03dda8e3
RK
1389compiler to generate additional insns to make the constraint true. The
1390results might look like this:
1391
1392@smallexample
1393(insn @var{n2} @var{prev} @var{n}
1394 (set (reg:SI 3) (reg:SI 6))
1395 @dots{})
1396
1397(insn @var{n} @var{n2} @var{next}
1398 (set (reg:SI 3)
1399 (plus:SI (reg:SI 3) (reg:SI 109)))
1400 @dots{})
1401@end smallexample
1402
1403It is up to you to make sure that each operand, in each pattern, has
1404constraints that can handle any RTL expression that could be present for
1405that operand. (When multiple alternatives are in use, each pattern must,
1406for each possible combination of operand expressions, have at least one
1407alternative which can handle that combination of operands.) The
1408constraints don't need to @emph{allow} any possible operand---when this is
1409the case, they do not constrain---but they must at least point the way to
1410reloading any possible operand so that it will fit.
1411
1412@itemize @bullet
1413@item
1414If the constraint accepts whatever operands the predicate permits,
1415there is no problem: reloading is never necessary for this operand.
1416
1417For example, an operand whose constraints permit everything except
1418registers is safe provided its predicate rejects registers.
1419
1420An operand whose predicate accepts only constant values is safe
1421provided its constraints include the letter @samp{i}. If any possible
1422constant value is accepted, then nothing less than @samp{i} will do;
1423if the predicate is more selective, then the constraints may also be
1424more selective.
1425
1426@item
1427Any operand expression can be reloaded by copying it into a register.
1428So if an operand's constraints allow some kind of register, it is
1429certain to be safe. It need not permit all classes of registers; the
1430compiler knows how to copy a register into another register of the
1431proper class in order to make an instruction valid.
1432
1433@cindex nonoffsettable memory reference
1434@cindex memory reference, nonoffsettable
1435@item
1436A nonoffsettable memory reference can be reloaded by copying the
1437address into a register. So if the constraint uses the letter
1438@samp{o}, all memory references are taken care of.
1439
1440@item
1441A constant operand can be reloaded by allocating space in memory to
1442hold it as preinitialized data. Then the memory reference can be used
1443in place of the constant. So if the constraint uses the letters
1444@samp{o} or @samp{m}, constant operands are not a problem.
1445
1446@item
1447If the constraint permits a constant and a pseudo register used in an insn
1448was not allocated to a hard register and is equivalent to a constant,
1449the register will be replaced with the constant. If the predicate does
1450not permit a constant and the insn is re-recognized for some reason, the
1451compiler will crash. Thus the predicate must always recognize any
1452objects allowed by the constraint.
1453@end itemize
1454
1455If the operand's predicate can recognize registers, but the constraint does
1456not permit them, it can make the compiler crash. When this operand happens
1457to be a register, the reload pass will be stymied, because it does not know
1458how to copy a register temporarily into memory.
1459
1460If the predicate accepts a unary operator, the constraint applies to the
1461operand. For example, the MIPS processor at ISA level 3 supports an
1462instruction which adds two registers in @code{SImode} to produce a
1463@code{DImode} result, but only if the registers are correctly sign
1464extended. This predicate for the input operands accepts a
1465@code{sign_extend} of an @code{SImode} register. Write the constraint
1466to indicate the type of register that is required for the operand of the
1467@code{sign_extend}.
1468@end ifset
1469
1470@node Multi-Alternative
1471@subsection Multiple Alternative Constraints
1472@cindex multiple alternative constraints
1473
1474Sometimes a single instruction has multiple alternative sets of possible
1475operands. For example, on the 68000, a logical-or instruction can combine
1476register or an immediate value into memory, or it can combine any kind of
1477operand into a register; but it cannot combine one memory location into
1478another.
1479
1480These constraints are represented as multiple alternatives. An alternative
1481can be described by a series of letters for each operand. The overall
1482constraint for an operand is made from the letters for this operand
1483from the first alternative, a comma, the letters for this operand from
1484the second alternative, a comma, and so on until the last alternative.
a6fa947e
DW
1485All operands for a single instruction must have the same number of
1486alternatives.
03dda8e3
RK
1487@ifset INTERNALS
1488Here is how it is done for fullword logical-or on the 68000:
1489
1490@smallexample
1491(define_insn "iorsi3"
1492 [(set (match_operand:SI 0 "general_operand" "=m,d")
1493 (ior:SI (match_operand:SI 1 "general_operand" "%0,0")
1494 (match_operand:SI 2 "general_operand" "dKs,dmKs")))]
1495 @dots{})
1496@end smallexample
1497
1498The first alternative has @samp{m} (memory) for operand 0, @samp{0} for
1499operand 1 (meaning it must match operand 0), and @samp{dKs} for operand
15002. The second alternative has @samp{d} (data register) for operand 0,
1501@samp{0} for operand 1, and @samp{dmKs} for operand 2. The @samp{=} and
1502@samp{%} in the constraints apply to all the alternatives; their
1503meaning is explained in the next section (@pxref{Class Preferences}).
03dda8e3 1504
03dda8e3
RK
1505If all the operands fit any one alternative, the instruction is valid.
1506Otherwise, for each alternative, the compiler counts how many instructions
1507must be added to copy the operands so that that alternative applies.
1508The alternative requiring the least copying is chosen. If two alternatives
1509need the same amount of copying, the one that comes first is chosen.
1510These choices can be altered with the @samp{?} and @samp{!} characters:
1511
1512@table @code
1513@cindex @samp{?} in constraint
1514@cindex question mark
1515@item ?
1516Disparage slightly the alternative that the @samp{?} appears in,
1517as a choice when no alternative applies exactly. The compiler regards
1518this alternative as one unit more costly for each @samp{?} that appears
1519in it.
1520
1521@cindex @samp{!} in constraint
1522@cindex exclamation point
1523@item !
1524Disparage severely the alternative that the @samp{!} appears in.
1525This alternative can still be used if it fits without reloading,
1526but if reloading is needed, some other alternative will be used.
d1457701
VM
1527
1528@cindex @samp{^} in constraint
1529@cindex caret
1530@item ^
1531This constraint is analogous to @samp{?} but it disparages slightly
0ab9eed6 1532the alternative only if the operand with the @samp{^} needs a reload.
d1457701
VM
1533
1534@cindex @samp{$} in constraint
1535@cindex dollar sign
1536@item $
1537This constraint is analogous to @samp{!} but it disparages severely
1538the alternative only if the operand with the @samp{$} needs a reload.
03dda8e3
RK
1539@end table
1540
03dda8e3
RK
1541When an insn pattern has multiple alternatives in its constraints, often
1542the appearance of the assembler code is determined mostly by which
1543alternative was matched. When this is so, the C code for writing the
1544assembler code can use the variable @code{which_alternative}, which is
1545the ordinal number of the alternative that was actually satisfied (0 for
1546the first, 1 for the second alternative, etc.). @xref{Output Statement}.
1547@end ifset
a6fa947e
DW
1548@ifclear INTERNALS
1549
1550So the first alternative for the 68000's logical-or could be written as
1551@code{"+m" (output) : "ir" (input)}. The second could be @code{"+r"
1552(output): "irm" (input)}. However, the fact that two memory locations
1553cannot be used in a single instruction prevents simply using @code{"+rm"
1554(output) : "irm" (input)}. Using multi-alternatives, this might be
1555written as @code{"+m,r" (output) : "ir,irm" (input)}. This describes
1556all the available alternatives to the compiler, allowing it to choose
1557the most efficient one for the current conditions.
1558
1559There is no way within the template to determine which alternative was
1560chosen. However you may be able to wrap your @code{asm} statements with
1561builtins such as @code{__builtin_constant_p} to achieve the desired results.
1562@end ifclear
03dda8e3
RK
1563
1564@ifset INTERNALS
1565@node Class Preferences
1566@subsection Register Class Preferences
1567@cindex class preference constraints
1568@cindex register class preference constraints
1569
1570@cindex voting between constraint alternatives
1571The operand constraints have another function: they enable the compiler
1572to decide which kind of hardware register a pseudo register is best
1573allocated to. The compiler examines the constraints that apply to the
1574insns that use the pseudo register, looking for the machine-dependent
1575letters such as @samp{d} and @samp{a} that specify classes of registers.
1576The pseudo register is put in whichever class gets the most ``votes''.
1577The constraint letters @samp{g} and @samp{r} also vote: they vote in
1578favor of a general register. The machine description says which registers
1579are considered general.
1580
1581Of course, on some machines all registers are equivalent, and no register
1582classes are defined. Then none of this complexity is relevant.
1583@end ifset
1584
1585@node Modifiers
1586@subsection Constraint Modifier Characters
1587@cindex modifiers in constraints
1588@cindex constraint modifier characters
1589
1590@c prevent bad page break with this line
1591Here are constraint modifier characters.
1592
1593@table @samp
1594@cindex @samp{=} in constraint
1595@item =
5fd4bc96
JG
1596Means that this operand is written to by this instruction:
1597the previous value is discarded and replaced by new data.
03dda8e3
RK
1598
1599@cindex @samp{+} in constraint
1600@item +
1601Means that this operand is both read and written by the instruction.
1602
1603When the compiler fixes up the operands to satisfy the constraints,
5fd4bc96
JG
1604it needs to know which operands are read by the instruction and
1605which are written by it. @samp{=} identifies an operand which is only
1606written; @samp{+} identifies an operand that is both read and written; all
1607other operands are assumed to only be read.
03dda8e3 1608
c5c76735
JL
1609If you specify @samp{=} or @samp{+} in a constraint, you put it in the
1610first character of the constraint string.
1611
03dda8e3
RK
1612@cindex @samp{&} in constraint
1613@cindex earlyclobber operand
1614@item &
1615Means (in a particular alternative) that this operand is an
5fd4bc96 1616@dfn{earlyclobber} operand, which is written before the instruction is
03dda8e3 1617finished using the input operands. Therefore, this operand may not lie
5fd4bc96 1618in a register that is read by the instruction or as part of any memory
03dda8e3
RK
1619address.
1620
1621@samp{&} applies only to the alternative in which it is written. In
1622constraints with multiple alternatives, sometimes one alternative
1623requires @samp{&} while others do not. See, for example, the
1624@samp{movdf} insn of the 68000.
1625
5fd4bc96
JG
1626A operand which is read by the instruction can be tied to an earlyclobber
1627operand if its only use as an input occurs before the early result is
1628written. Adding alternatives of this form often allows GCC to produce
1629better code when only some of the read operands can be affected by the
1630earlyclobber. See, for example, the @samp{mulsi3} insn of the ARM@.
03dda8e3 1631
5fd4bc96
JG
1632Furthermore, if the @dfn{earlyclobber} operand is also a read/write
1633operand, then that operand is written only after it's used.
34386e79 1634
5fd4bc96
JG
1635@samp{&} does not obviate the need to write @samp{=} or @samp{+}. As
1636@dfn{earlyclobber} operands are always written, a read-only
1637@dfn{earlyclobber} operand is ill-formed and will be rejected by the
1638compiler.
03dda8e3
RK
1639
1640@cindex @samp{%} in constraint
1641@item %
1642Declares the instruction to be commutative for this operand and the
1643following operand. This means that the compiler may interchange the
1644two operands if that is the cheapest way to make all operands fit the
73f793e3 1645constraints. @samp{%} applies to all alternatives and must appear as
5fd4bc96 1646the first character in the constraint. Only read-only operands can use
73f793e3
RS
1647@samp{%}.
1648
03dda8e3
RK
1649@ifset INTERNALS
1650This is often used in patterns for addition instructions
1651that really have only two operands: the result must go in one of the
1652arguments. Here for example, is how the 68000 halfword-add
1653instruction is defined:
1654
1655@smallexample
1656(define_insn "addhi3"
1657 [(set (match_operand:HI 0 "general_operand" "=m,r")
1658 (plus:HI (match_operand:HI 1 "general_operand" "%0,0")
1659 (match_operand:HI 2 "general_operand" "di,g")))]
1660 @dots{})
1661@end smallexample
1662@end ifset
daf2f129 1663GCC can only handle one commutative pair in an asm; if you use more,
595163db
EB
1664the compiler may fail. Note that you need not use the modifier if
1665the two alternatives are strictly identical; this would only waste
4f237f2e
DW
1666time in the reload pass.
1667@ifset INTERNALS
1668The modifier is not operational after
be3914df
HPN
1669register allocation, so the result of @code{define_peephole2}
1670and @code{define_split}s performed after reload cannot rely on
1671@samp{%} to make the intended insn match.
03dda8e3
RK
1672
1673@cindex @samp{#} in constraint
1674@item #
1675Says that all following characters, up to the next comma, are to be
1676ignored as a constraint. They are significant only for choosing
1677register preferences.
1678
03dda8e3
RK
1679@cindex @samp{*} in constraint
1680@item *
1681Says that the following character should be ignored when choosing
1682register preferences. @samp{*} has no effect on the meaning of the
55a2c322
VM
1683constraint as a constraint, and no effect on reloading. For LRA
1684@samp{*} additionally disparages slightly the alternative if the
1685following character matches the operand.
03dda8e3
RK
1686
1687Here is an example: the 68000 has an instruction to sign-extend a
1688halfword in a data register, and can also sign-extend a value by
1689copying it into an address register. While either kind of register is
1690acceptable, the constraints on an address-register destination are
1691less strict, so it is best if register allocation makes an address
1692register its goal. Therefore, @samp{*} is used so that the @samp{d}
1693constraint letter (for data register) is ignored when computing
1694register preferences.
1695
1696@smallexample
1697(define_insn "extendhisi2"
1698 [(set (match_operand:SI 0 "general_operand" "=*d,a")
1699 (sign_extend:SI
1700 (match_operand:HI 1 "general_operand" "0,g")))]
1701 @dots{})
1702@end smallexample
1703@end ifset
1704@end table
1705
1706@node Machine Constraints
1707@subsection Constraints for Particular Machines
1708@cindex machine specific constraints
1709@cindex constraints, machine specific
1710
1711Whenever possible, you should use the general-purpose constraint letters
1712in @code{asm} arguments, since they will convey meaning more readily to
1713people reading your code. Failing that, use the constraint letters
1714that usually have very similar meanings across architectures. The most
1715commonly used constraints are @samp{m} and @samp{r} (for memory and
1716general-purpose registers respectively; @pxref{Simple Constraints}), and
1717@samp{I}, usually the letter indicating the most common
1718immediate-constant format.
1719
f38840db
ZW
1720Each architecture defines additional constraints. These constraints
1721are used by the compiler itself for instruction generation, as well as
1722for @code{asm} statements; therefore, some of the constraints are not
1723particularly useful for @code{asm}. Here is a summary of some of the
1724machine-dependent constraints available on some particular machines;
1725it includes both constraints that are useful for @code{asm} and
1726constraints that aren't. The compiler source file mentioned in the
1727table heading for each architecture is the definitive reference for
1728the meanings of that architecture's constraints.
6ccde948 1729
b4fbcb1b 1730@c Please keep this table alphabetized by target!
03dda8e3 1731@table @emph
5c0da018
IB
1732@item AArch64 family---@file{config/aarch64/constraints.md}
1733@table @code
1734@item k
1735The stack pointer register (@code{SP})
1736
1737@item w
43cacb12
RS
1738Floating point register, Advanced SIMD vector register or SVE vector register
1739
1740@item Upl
1741One of the low eight SVE predicate registers (@code{P0} to @code{P7})
1742
1743@item Upa
1744Any of the SVE predicate registers (@code{P0} to @code{P15})
5c0da018
IB
1745
1746@item I
1747Integer constant that is valid as an immediate operand in an @code{ADD}
1748instruction
1749
1750@item J
1751Integer constant that is valid as an immediate operand in a @code{SUB}
1752instruction (once negated)
1753
1754@item K
1755Integer constant that can be used with a 32-bit logical instruction
1756
1757@item L
1758Integer constant that can be used with a 64-bit logical instruction
1759
1760@item M
1761Integer constant that is valid as an immediate operand in a 32-bit @code{MOV}
1762pseudo instruction. The @code{MOV} may be assembled to one of several different
1763machine instructions depending on the value
1764
1765@item N
1766Integer constant that is valid as an immediate operand in a 64-bit @code{MOV}
1767pseudo instruction
1768
1769@item S
1770An absolute symbolic address or a label reference
1771
1772@item Y
1773Floating point constant zero
1774
1775@item Z
1776Integer constant zero
1777
5c0da018
IB
1778@item Ush
1779The high part (bits 12 and upwards) of the pc-relative address of a symbol
1780within 4GB of the instruction
1781
1782@item Q
1783A memory address which uses a single base register with no offset
1784
1785@item Ump
1786A memory address suitable for a load/store pair instruction in SI, DI, SF and
1787DF modes
1788
5c0da018
IB
1789@end table
1790
1791
5d5f6720
JR
1792@item ARC ---@file{config/arc/constraints.md}
1793@table @code
1794@item q
1795Registers usable in ARCompact 16-bit instructions: @code{r0}-@code{r3},
1796@code{r12}-@code{r15}. This constraint can only match when the @option{-mq}
1797option is in effect.
1798
1799@item e
1800Registers usable as base-regs of memory addresses in ARCompact 16-bit memory
1801instructions: @code{r0}-@code{r3}, @code{r12}-@code{r15}, @code{sp}.
1802This constraint can only match when the @option{-mq}
1803option is in effect.
1804@item D
1805ARC FPX (dpfp) 64-bit registers. @code{D0}, @code{D1}.
1806
1807@item I
1808A signed 12-bit integer constant.
1809
1810@item Cal
1811constant for arithmetic/logical operations. This might be any constant
1812that can be put into a long immediate by the assmbler or linker without
1813involving a PIC relocation.
1814
1815@item K
1816A 3-bit unsigned integer constant.
1817
1818@item L
1819A 6-bit unsigned integer constant.
1820
1821@item CnL
1822One's complement of a 6-bit unsigned integer constant.
1823
1824@item CmL
1825Two's complement of a 6-bit unsigned integer constant.
1826
1827@item M
1828A 5-bit unsigned integer constant.
1829
1830@item O
1831A 7-bit unsigned integer constant.
1832
1833@item P
1834A 8-bit unsigned integer constant.
1835
1836@item H
1837Any const_double value.
1838@end table
1839
dae840fc 1840@item ARM family---@file{config/arm/constraints.md}
03dda8e3 1841@table @code
b24671f7
RR
1842
1843@item h
1844In Thumb state, the core registers @code{r8}-@code{r15}.
1845
1846@item k
1847The stack pointer register.
1848
1849@item l
1850In Thumb State the core registers @code{r0}-@code{r7}. In ARM state this
1851is an alias for the @code{r} constraint.
1852
1853@item t
1854VFP floating-point registers @code{s0}-@code{s31}. Used for 32 bit values.
1855
9b66ebb1 1856@item w
b24671f7
RR
1857VFP floating-point registers @code{d0}-@code{d31} and the appropriate
1858subset @code{d0}-@code{d15} based on command line options.
1859Used for 64 bit values only. Not valid for Thumb1.
1860
1861@item y
1862The iWMMX co-processor registers.
1863
1864@item z
1865The iWMMX GR registers.
9b66ebb1 1866
03dda8e3 1867@item G
dae840fc 1868The floating-point constant 0.0
03dda8e3
RK
1869
1870@item I
1871Integer that is valid as an immediate operand in a data processing
1872instruction. That is, an integer in the range 0 to 255 rotated by a
1873multiple of 2
1874
1875@item J
630d3d5a 1876Integer in the range @minus{}4095 to 4095
03dda8e3
RK
1877
1878@item K
1879Integer that satisfies constraint @samp{I} when inverted (ones complement)
1880
1881@item L
1882Integer that satisfies constraint @samp{I} when negated (twos complement)
1883
1884@item M
1885Integer in the range 0 to 32
1886
1887@item Q
1888A memory reference where the exact address is in a single register
1889(`@samp{m}' is preferable for @code{asm} statements)
1890
1891@item R
1892An item in the constant pool
1893
1894@item S
1895A symbol in the text segment of the current file
03dda8e3 1896
1e1ab407 1897@item Uv
9b66ebb1
PB
1898A memory reference suitable for VFP load/store insns (reg+constant offset)
1899
fdd695fd
PB
1900@item Uy
1901A memory reference suitable for iWMMXt load/store instructions.
1902
1e1ab407 1903@item Uq
0bdcd332 1904A memory reference suitable for the ARMv4 ldrsb instruction.
db875b15 1905@end table
1e1ab407 1906
fc262682 1907@item AVR family---@file{config/avr/constraints.md}
052a4b28
DC
1908@table @code
1909@item l
1910Registers from r0 to r15
1911
1912@item a
1913Registers from r16 to r23
1914
1915@item d
1916Registers from r16 to r31
1917
1918@item w
3a69a7d5 1919Registers from r24 to r31. These registers can be used in @samp{adiw} command
052a4b28
DC
1920
1921@item e
d7d9c429 1922Pointer register (r26--r31)
052a4b28
DC
1923
1924@item b
d7d9c429 1925Base pointer register (r28--r31)
052a4b28 1926
3a69a7d5
MM
1927@item q
1928Stack pointer register (SPH:SPL)
1929
052a4b28
DC
1930@item t
1931Temporary register r0
1932
1933@item x
1934Register pair X (r27:r26)
1935
1936@item y
1937Register pair Y (r29:r28)
1938
1939@item z
1940Register pair Z (r31:r30)
1941
1942@item I
630d3d5a 1943Constant greater than @minus{}1, less than 64
052a4b28
DC
1944
1945@item J
630d3d5a 1946Constant greater than @minus{}64, less than 1
052a4b28
DC
1947
1948@item K
1949Constant integer 2
1950
1951@item L
1952Constant integer 0
1953
1954@item M
1955Constant that fits in 8 bits
1956
1957@item N
630d3d5a 1958Constant integer @minus{}1
052a4b28
DC
1959
1960@item O
3a69a7d5 1961Constant integer 8, 16, or 24
052a4b28
DC
1962
1963@item P
1964Constant integer 1
1965
1966@item G
1967A floating point constant 0.0
0e8eb4d8 1968
0e8eb4d8
EW
1969@item Q
1970A memory address based on Y or Z pointer with displacement.
052a4b28 1971@end table
53054e77 1972
b4fbcb1b
SL
1973@item Blackfin family---@file{config/bfin/constraints.md}
1974@table @code
1975@item a
1976P register
1977
1978@item d
1979D register
1980
1981@item z
1982A call clobbered P register.
1983
1984@item q@var{n}
1985A single register. If @var{n} is in the range 0 to 7, the corresponding D
1986register. If it is @code{A}, then the register P0.
1987
1988@item D
1989Even-numbered D register
1990
1991@item W
1992Odd-numbered D register
1993
1994@item e
1995Accumulator register.
1996
1997@item A
1998Even-numbered accumulator register.
1999
2000@item B
2001Odd-numbered accumulator register.
2002
2003@item b
2004I register
2005
2006@item v
2007B register
2008
2009@item f
2010M register
2011
2012@item c
2013Registers used for circular buffering, i.e. I, B, or L registers.
2014
2015@item C
2016The CC register.
2017
2018@item t
2019LT0 or LT1.
2020
2021@item k
2022LC0 or LC1.
2023
2024@item u
2025LB0 or LB1.
2026
2027@item x
2028Any D, P, B, M, I or L register.
2029
2030@item y
2031Additional registers typically used only in prologues and epilogues: RETS,
2032RETN, RETI, RETX, RETE, ASTAT, SEQSTAT and USP.
2033
2034@item w
2035Any register except accumulators or CC.
2036
2037@item Ksh
2038Signed 16 bit integer (in the range @minus{}32768 to 32767)
2039
2040@item Kuh
2041Unsigned 16 bit integer (in the range 0 to 65535)
2042
2043@item Ks7
2044Signed 7 bit integer (in the range @minus{}64 to 63)
2045
2046@item Ku7
2047Unsigned 7 bit integer (in the range 0 to 127)
2048
2049@item Ku5
2050Unsigned 5 bit integer (in the range 0 to 31)
2051
2052@item Ks4
2053Signed 4 bit integer (in the range @minus{}8 to 7)
2054
2055@item Ks3
2056Signed 3 bit integer (in the range @minus{}3 to 4)
2057
2058@item Ku3
2059Unsigned 3 bit integer (in the range 0 to 7)
2060
2061@item P@var{n}
2062Constant @var{n}, where @var{n} is a single-digit constant in the range 0 to 4.
2063
2064@item PA
2065An integer equal to one of the MACFLAG_XXX constants that is suitable for
2066use with either accumulator.
2067
2068@item PB
2069An integer equal to one of the MACFLAG_XXX constants that is suitable for
2070use only with accumulator A1.
2071
2072@item M1
2073Constant 255.
2074
2075@item M2
2076Constant 65535.
2077
2078@item J
2079An integer constant with exactly a single bit set.
2080
2081@item L
2082An integer constant with all bits set except exactly one.
2083
2084@item H
2085
2086@item Q
2087Any SYMBOL_REF.
2088@end table
2089
2090@item CR16 Architecture---@file{config/cr16/cr16.h}
2091@table @code
2092
2093@item b
2094Registers from r0 to r14 (registers without stack pointer)
2095
2096@item t
2097Register from r0 to r11 (all 16-bit registers)
2098
2099@item p
2100Register from r12 to r15 (all 32-bit registers)
2101
2102@item I
2103Signed constant that fits in 4 bits
2104
2105@item J
2106Signed constant that fits in 5 bits
2107
2108@item K
2109Signed constant that fits in 6 bits
2110
2111@item L
2112Unsigned constant that fits in 4 bits
2113
2114@item M
2115Signed constant that fits in 32 bits
2116
2117@item N
2118Check for 64 bits wide constants for add/sub instructions
2119
2120@item G
2121Floating point constant that is legal for store immediate
2122@end table
2123
feeeff5c
JR
2124@item Epiphany---@file{config/epiphany/constraints.md}
2125@table @code
2126@item U16
2127An unsigned 16-bit constant.
2128
2129@item K
2130An unsigned 5-bit constant.
2131
2132@item L
2133A signed 11-bit constant.
2134
2135@item Cm1
2136A signed 11-bit constant added to @minus{}1.
2137Can only match when the @option{-m1reg-@var{reg}} option is active.
2138
2139@item Cl1
2140Left-shift of @minus{}1, i.e., a bit mask with a block of leading ones, the rest
2141being a block of trailing zeroes.
2142Can only match when the @option{-m1reg-@var{reg}} option is active.
2143
2144@item Cr1
2145Right-shift of @minus{}1, i.e., a bit mask with a trailing block of ones, the
2146rest being zeroes. Or to put it another way, one less than a power of two.
2147Can only match when the @option{-m1reg-@var{reg}} option is active.
2148
2149@item Cal
2150Constant for arithmetic/logical operations.
2151This is like @code{i}, except that for position independent code,
2152no symbols / expressions needing relocations are allowed.
2153
2154@item Csy
2155Symbolic constant for call/jump instruction.
2156
2157@item Rcs
2158The register class usable in short insns. This is a register class
2159constraint, and can thus drive register allocation.
2160This constraint won't match unless @option{-mprefer-short-insn-regs} is
2161in effect.
2162
2163@item Rsc
2164The the register class of registers that can be used to hold a
2165sibcall call address. I.e., a caller-saved register.
2166
2167@item Rct
2168Core control register class.
2169
2170@item Rgs
2171The register group usable in short insns.
2172This constraint does not use a register class, so that it only
2173passively matches suitable registers, and doesn't drive register allocation.
2174
2175@ifset INTERNALS
2176@item Car
2177Constant suitable for the addsi3_r pattern. This is a valid offset
2178For byte, halfword, or word addressing.
2179@end ifset
2180
2181@item Rra
2182Matches the return address if it can be replaced with the link register.
2183
2184@item Rcc
2185Matches the integer condition code register.
2186
2187@item Sra
2188Matches the return address if it is in a stack slot.
2189
2190@item Cfm
2191Matches control register values to switch fp mode, which are encapsulated in
2192@code{UNSPEC_FP_MODE}.
2193@end table
2194
b4fbcb1b 2195@item FRV---@file{config/frv/frv.h}
b25364a0 2196@table @code
b4fbcb1b
SL
2197@item a
2198Register in the class @code{ACC_REGS} (@code{acc0} to @code{acc7}).
b25364a0
S
2199
2200@item b
b4fbcb1b
SL
2201Register in the class @code{EVEN_ACC_REGS} (@code{acc0} to @code{acc7}).
2202
2203@item c
2204Register in the class @code{CC_REGS} (@code{fcc0} to @code{fcc3} and
2205@code{icc0} to @code{icc3}).
2206
2207@item d
2208Register in the class @code{GPR_REGS} (@code{gr0} to @code{gr63}).
2209
2210@item e
2211Register in the class @code{EVEN_REGS} (@code{gr0} to @code{gr63}).
2212Odd registers are excluded not in the class but through the use of a machine
2213mode larger than 4 bytes.
2214
2215@item f
2216Register in the class @code{FPR_REGS} (@code{fr0} to @code{fr63}).
2217
2218@item h
2219Register in the class @code{FEVEN_REGS} (@code{fr0} to @code{fr63}).
2220Odd registers are excluded not in the class but through the use of a machine
2221mode larger than 4 bytes.
2222
2223@item l
2224Register in the class @code{LR_REG} (the @code{lr} register).
2225
2226@item q
2227Register in the class @code{QUAD_REGS} (@code{gr2} to @code{gr63}).
2228Register numbers not divisible by 4 are excluded not in the class but through
2229the use of a machine mode larger than 8 bytes.
b25364a0
S
2230
2231@item t
b4fbcb1b 2232Register in the class @code{ICC_REGS} (@code{icc0} to @code{icc3}).
b25364a0 2233
b4fbcb1b
SL
2234@item u
2235Register in the class @code{FCC_REGS} (@code{fcc0} to @code{fcc3}).
2236
2237@item v
2238Register in the class @code{ICR_REGS} (@code{cc4} to @code{cc7}).
2239
2240@item w
2241Register in the class @code{FCR_REGS} (@code{cc0} to @code{cc3}).
2242
2243@item x
2244Register in the class @code{QUAD_FPR_REGS} (@code{fr0} to @code{fr63}).
2245Register numbers not divisible by 4 are excluded not in the class but through
2246the use of a machine mode larger than 8 bytes.
2247
2248@item z
2249Register in the class @code{SPR_REGS} (@code{lcr} and @code{lr}).
2250
2251@item A
2252Register in the class @code{QUAD_ACC_REGS} (@code{acc0} to @code{acc7}).
2253
2254@item B
2255Register in the class @code{ACCG_REGS} (@code{accg0} to @code{accg7}).
2256
2257@item C
2258Register in the class @code{CR_REGS} (@code{cc0} to @code{cc7}).
2259
2260@item G
2261Floating point constant zero
b25364a0
S
2262
2263@item I
b4fbcb1b 22646-bit signed integer constant
b25364a0
S
2265
2266@item J
b4fbcb1b 226710-bit signed integer constant
b25364a0
S
2268
2269@item L
b4fbcb1b 227016-bit signed integer constant
b25364a0
S
2271
2272@item M
b4fbcb1b 227316-bit unsigned integer constant
b25364a0
S
2274
2275@item N
b4fbcb1b
SL
227612-bit signed integer constant that is negative---i.e.@: in the
2277range of @minus{}2048 to @minus{}1
2278
2279@item O
2280Constant zero
2281
2282@item P
228312-bit signed integer constant that is greater than zero---i.e.@: in the
2284range of 1 to 2047.
b25364a0 2285
b25364a0
S
2286@end table
2287
fef939d6
JB
2288@item FT32---@file{config/ft32/constraints.md}
2289@table @code
2290@item A
2291An absolute address
2292
2293@item B
2294An offset address
2295
2296@item W
2297A register indirect memory operand
2298
2299@item e
2300An offset address.
2301
2302@item f
2303An offset address.
2304
2305@item O
2306The constant zero or one
2307
2308@item I
2309A 16-bit signed constant (@minus{}32768 @dots{} 32767)
2310
2311@item w
2312A bitfield mask suitable for bext or bins
2313
2314@item x
2315An inverted bitfield mask suitable for bext or bins
2316
2317@item L
2318A 16-bit unsigned constant, multiple of 4 (0 @dots{} 65532)
2319
2320@item S
2321A 20-bit signed constant (@minus{}524288 @dots{} 524287)
2322
2323@item b
2324A constant for a bitfield width (1 @dots{} 16)
2325
2326@item KA
2327A 10-bit signed constant (@minus{}512 @dots{} 511)
2328
2329@end table
2330
8119b4e4
JDA
2331@item Hewlett-Packard PA-RISC---@file{config/pa/pa.h}
2332@table @code
2333@item a
2334General register 1
2335
2336@item f
2337Floating point register
2338
2339@item q
2340Shift amount register
2341
2342@item x
2343Floating point register (deprecated)
2344
2345@item y
2346Upper floating point register (32-bit), floating point register (64-bit)
2347
2348@item Z
2349Any register
2350
2351@item I
2352Signed 11-bit integer constant
2353
2354@item J
2355Signed 14-bit integer constant
2356
2357@item K
2358Integer constant that can be deposited with a @code{zdepi} instruction
2359
2360@item L
2361Signed 5-bit integer constant
2362
2363@item M
2364Integer constant 0
2365
2366@item N
2367Integer constant that can be loaded with a @code{ldil} instruction
2368
2369@item O
2370Integer constant whose value plus one is a power of 2
2371
2372@item P
2373Integer constant that can be used for @code{and} operations in @code{depi}
2374and @code{extru} instructions
2375
2376@item S
2377Integer constant 31
2378
2379@item U
2380Integer constant 63
2381
2382@item G
2383Floating-point constant 0.0
2384
2385@item A
2386A @code{lo_sum} data-linkage-table memory operand
2387
2388@item Q
2389A memory operand that can be used as the destination operand of an
2390integer store instruction
2391
2392@item R
2393A scaled or unscaled indexed memory operand
2394
2395@item T
2396A memory operand for floating-point loads and stores
2397
2398@item W
2399A register indirect memory operand
2400@end table
2401
b4fbcb1b 2402@item Intel IA-64---@file{config/ia64/ia64.h}
03dda8e3 2403@table @code
b4fbcb1b
SL
2404@item a
2405General register @code{r0} to @code{r3} for @code{addl} instruction
03dda8e3 2406
b4fbcb1b
SL
2407@item b
2408Branch register
7a430e3b
SC
2409
2410@item c
2411Predicate register (@samp{c} as in ``conditional'')
2412
b4fbcb1b
SL
2413@item d
2414Application register residing in M-unit
0d4a78eb 2415
b4fbcb1b
SL
2416@item e
2417Application register residing in I-unit
0d4a78eb 2418
b4fbcb1b
SL
2419@item f
2420Floating-point register
3efd5670 2421
b4fbcb1b
SL
2422@item m
2423Memory operand. If used together with @samp{<} or @samp{>},
2424the operand can have postincrement and postdecrement which
2425require printing with @samp{%Pn} on IA-64.
3efd5670 2426
b4fbcb1b
SL
2427@item G
2428Floating-point constant 0.0 or 1.0
0d4a78eb 2429
b4fbcb1b
SL
2430@item I
243114-bit signed integer constant
0d4a78eb
BS
2432
2433@item J
b4fbcb1b
SL
243422-bit signed integer constant
2435
2436@item K
24378-bit signed integer constant for logical instructions
0d4a78eb
BS
2438
2439@item L
b4fbcb1b 24408-bit adjusted signed integer constant for compare pseudo-ops
0d4a78eb 2441
b4fbcb1b
SL
2442@item M
24436-bit unsigned integer constant for shift counts
2444
2445@item N
24469-bit signed integer constant for load and store postincrements
2447
2448@item O
2449The constant zero
2450
2451@item P
24520 or @minus{}1 for @code{dep} instruction
0d4a78eb
BS
2453
2454@item Q
b4fbcb1b
SL
2455Non-volatile memory for floating-point loads and stores
2456
2457@item R
2458Integer constant in the range 1 to 4 for @code{shladd} instruction
2459
2460@item S
2461Memory operand except postincrement and postdecrement. This is
2462now roughly the same as @samp{m} when not used together with @samp{<}
2463or @samp{>}.
0d4a78eb
BS
2464@end table
2465
74fe790b
ZW
2466@item M32C---@file{config/m32c/m32c.c}
2467@table @code
38b2d076
DD
2468@item Rsp
2469@itemx Rfb
2470@itemx Rsb
2471@samp{$sp}, @samp{$fb}, @samp{$sb}.
2472
2473@item Rcr
2474Any control register, when they're 16 bits wide (nothing if control
2475registers are 24 bits wide)
2476
2477@item Rcl
2478Any control register, when they're 24 bits wide.
2479
2480@item R0w
2481@itemx R1w
2482@itemx R2w
2483@itemx R3w
2484$r0, $r1, $r2, $r3.
2485
2486@item R02
2487$r0 or $r2, or $r2r0 for 32 bit values.
2488
2489@item R13
2490$r1 or $r3, or $r3r1 for 32 bit values.
2491
2492@item Rdi
2493A register that can hold a 64 bit value.
2494
2495@item Rhl
2496$r0 or $r1 (registers with addressable high/low bytes)
2497
2498@item R23
2499$r2 or $r3
2500
2501@item Raa
2502Address registers
2503
2504@item Raw
2505Address registers when they're 16 bits wide.
2506
2507@item Ral
2508Address registers when they're 24 bits wide.
2509
2510@item Rqi
2511Registers that can hold QI values.
2512
2513@item Rad
2514Registers that can be used with displacements ($a0, $a1, $sb).
2515
2516@item Rsi
2517Registers that can hold 32 bit values.
2518
2519@item Rhi
2520Registers that can hold 16 bit values.
2521
2522@item Rhc
2523Registers chat can hold 16 bit values, including all control
2524registers.
2525
2526@item Rra
2527$r0 through R1, plus $a0 and $a1.
2528
2529@item Rfl
2530The flags register.
2531
2532@item Rmm
2533The memory-based pseudo-registers $mem0 through $mem15.
2534
2535@item Rpi
2536Registers that can hold pointers (16 bit registers for r8c, m16c; 24
2537bit registers for m32cm, m32c).
2538
2539@item Rpa
2540Matches multiple registers in a PARALLEL to form a larger register.
2541Used to match function return values.
2542
2543@item Is3
8ad1dde7 2544@minus{}8 @dots{} 7
38b2d076
DD
2545
2546@item IS1
8ad1dde7 2547@minus{}128 @dots{} 127
38b2d076
DD
2548
2549@item IS2
8ad1dde7 2550@minus{}32768 @dots{} 32767
38b2d076
DD
2551
2552@item IU2
25530 @dots{} 65535
2554
2555@item In4
8ad1dde7 2556@minus{}8 @dots{} @minus{}1 or 1 @dots{} 8
38b2d076
DD
2557
2558@item In5
8ad1dde7 2559@minus{}16 @dots{} @minus{}1 or 1 @dots{} 16
38b2d076 2560
23fed240 2561@item In6
8ad1dde7 2562@minus{}32 @dots{} @minus{}1 or 1 @dots{} 32
38b2d076
DD
2563
2564@item IM2
8ad1dde7 2565@minus{}65536 @dots{} @minus{}1
38b2d076
DD
2566
2567@item Ilb
2568An 8 bit value with exactly one bit set.
2569
2570@item Ilw
2571A 16 bit value with exactly one bit set.
2572
2573@item Sd
2574The common src/dest memory addressing modes.
2575
2576@item Sa
2577Memory addressed using $a0 or $a1.
2578
2579@item Si
2580Memory addressed with immediate addresses.
2581
2582@item Ss
2583Memory addressed using the stack pointer ($sp).
2584
2585@item Sf
2586Memory addressed using the frame base register ($fb).
2587
2588@item Ss
2589Memory addressed using the small base register ($sb).
2590
2591@item S1
2592$r1h
e2491744
DD
2593@end table
2594
80920132
ME
2595@item MicroBlaze---@file{config/microblaze/constraints.md}
2596@table @code
2597@item d
2598A general register (@code{r0} to @code{r31}).
2599
2600@item z
2601A status register (@code{rmsr}, @code{$fcc1} to @code{$fcc7}).
e2491744 2602
74fe790b 2603@end table
38b2d076 2604
cbbb5b6d 2605@item MIPS---@file{config/mips/constraints.md}
4226378a
PK
2606@table @code
2607@item d
0cb14750
MR
2608A general-purpose register. This is equivalent to @code{r} unless
2609generating MIPS16 code, in which case the MIPS16 register set is used.
4226378a
PK
2610
2611@item f
cbbb5b6d 2612A floating-point register (if available).
4226378a
PK
2613
2614@item h
21dfc6dc 2615Formerly the @code{hi} register. This constraint is no longer supported.
4226378a
PK
2616
2617@item l
21dfc6dc
RS
2618The @code{lo} register. Use this register to store values that are
2619no bigger than a word.
4226378a
PK
2620
2621@item x
21dfc6dc
RS
2622The concatenated @code{hi} and @code{lo} registers. Use this register
2623to store doubleword values.
cbbb5b6d
RS
2624
2625@item c
2626A register suitable for use in an indirect jump. This will always be
2627@code{$25} for @option{-mabicalls}.
4226378a 2628
2feaae20
RS
2629@item v
2630Register @code{$3}. Do not use this constraint in new code;
2631it is retained only for compatibility with glibc.
2632
4226378a 2633@item y
cbbb5b6d 2634Equivalent to @code{r}; retained for backwards compatibility.
4226378a
PK
2635
2636@item z
cbbb5b6d 2637A floating-point condition code register.
4226378a
PK
2638
2639@item I
cbbb5b6d 2640A signed 16-bit constant (for arithmetic instructions).
4226378a
PK
2641
2642@item J
cbbb5b6d 2643Integer zero.
4226378a
PK
2644
2645@item K
cbbb5b6d 2646An unsigned 16-bit constant (for logic instructions).
4226378a
PK
2647
2648@item L
cbbb5b6d
RS
2649A signed 32-bit constant in which the lower 16 bits are zero.
2650Such constants can be loaded using @code{lui}.
4226378a
PK
2651
2652@item M
cbbb5b6d
RS
2653A constant that cannot be loaded using @code{lui}, @code{addiu}
2654or @code{ori}.
4226378a
PK
2655
2656@item N
8ad1dde7 2657A constant in the range @minus{}65535 to @minus{}1 (inclusive).
4226378a
PK
2658
2659@item O
cbbb5b6d 2660A signed 15-bit constant.
4226378a
PK
2661
2662@item P
cbbb5b6d 2663A constant in the range 1 to 65535 (inclusive).
4226378a
PK
2664
2665@item G
cbbb5b6d 2666Floating-point zero.
4226378a
PK
2667
2668@item R
cbbb5b6d 2669An address that can be used in a non-macro load or store.
22c4c869
CM
2670
2671@item ZC
047b52f6
MF
2672A memory operand whose address is formed by a base register and offset
2673that is suitable for use in instructions with the same addressing mode
2674as @code{ll} and @code{sc}.
22c4c869
CM
2675
2676@item ZD
82f84ecb
MF
2677An address suitable for a @code{prefetch} instruction, or for any other
2678instruction with the same addressing mode as @code{prefetch}.
4226378a
PK
2679@end table
2680
c47b0cb4 2681@item Motorola 680x0---@file{config/m68k/constraints.md}
03dda8e3
RK
2682@table @code
2683@item a
2684Address register
2685
2686@item d
2687Data register
2688
2689@item f
269068881 floating-point register, if available
2691
03dda8e3
RK
2692@item I
2693Integer in the range 1 to 8
2694
2695@item J
1e5f973d 269616-bit signed number
03dda8e3
RK
2697
2698@item K
2699Signed number whose magnitude is greater than 0x80
2700
2701@item L
630d3d5a 2702Integer in the range @minus{}8 to @minus{}1
03dda8e3
RK
2703
2704@item M
2705Signed number whose magnitude is greater than 0x100
2706
c47b0cb4
MK
2707@item N
2708Range 24 to 31, rotatert:SI 8 to 1 expressed as rotate
2709
2710@item O
271116 (for rotate using swap)
2712
2713@item P
2714Range 8 to 15, rotatert:HI 8 to 1 expressed as rotate
2715
2716@item R
2717Numbers that mov3q can handle
2718
03dda8e3
RK
2719@item G
2720Floating point constant that is not a 68881 constant
c47b0cb4
MK
2721
2722@item S
2723Operands that satisfy 'm' when -mpcrel is in effect
2724
2725@item T
2726Operands that satisfy 's' when -mpcrel is not in effect
2727
2728@item Q
2729Address register indirect addressing mode
2730
2731@item U
2732Register offset addressing
2733
2734@item W
2735const_call_operand
2736
2737@item Cs
2738symbol_ref or const
2739
2740@item Ci
2741const_int
2742
2743@item C0
2744const_int 0
2745
2746@item Cj
2747Range of signed numbers that don't fit in 16 bits
2748
2749@item Cmvq
2750Integers valid for mvq
2751
2752@item Capsw
2753Integers valid for a moveq followed by a swap
2754
2755@item Cmvz
2756Integers valid for mvz
2757
2758@item Cmvs
2759Integers valid for mvs
2760
2761@item Ap
2762push_operand
2763
2764@item Ac
2765Non-register operands allowed in clr
2766
03dda8e3
RK
2767@end table
2768
cceb575c
AG
2769@item Moxie---@file{config/moxie/constraints.md}
2770@table @code
2771@item A
2772An absolute address
2773
2774@item B
2775An offset address
2776
2777@item W
2778A register indirect memory operand
2779
2780@item I
2781A constant in the range of 0 to 255.
2782
2783@item N
8ad1dde7 2784A constant in the range of 0 to @minus{}255.
cceb575c
AG
2785
2786@end table
2787
f6a83b4a
DD
2788@item MSP430--@file{config/msp430/constraints.md}
2789@table @code
2790
2791@item R12
2792Register R12.
2793
2794@item R13
2795Register R13.
2796
2797@item K
2798Integer constant 1.
2799
2800@item L
2801Integer constant -1^20..1^19.
2802
2803@item M
2804Integer constant 1-4.
2805
2806@item Ya
2807Memory references which do not require an extended MOVX instruction.
2808
2809@item Yl
2810Memory reference, labels only.
2811
2812@item Ys
2813Memory reference, stack only.
2814
2815@end table
2816
9304f876
CJW
2817@item NDS32---@file{config/nds32/constraints.md}
2818@table @code
2819@item w
2820LOW register class $r0 to $r7 constraint for V3/V3M ISA.
2821@item l
2822LOW register class $r0 to $r7.
2823@item d
2824MIDDLE register class $r0 to $r11, $r16 to $r19.
2825@item h
2826HIGH register class $r12 to $r14, $r20 to $r31.
2827@item t
2828Temporary assist register $ta (i.e.@: $r15).
2829@item k
2830Stack register $sp.
2831@item Iu03
2832Unsigned immediate 3-bit value.
2833@item In03
2834Negative immediate 3-bit value in the range of @minus{}7--0.
2835@item Iu04
2836Unsigned immediate 4-bit value.
2837@item Is05
2838Signed immediate 5-bit value.
2839@item Iu05
2840Unsigned immediate 5-bit value.
2841@item In05
2842Negative immediate 5-bit value in the range of @minus{}31--0.
2843@item Ip05
2844Unsigned immediate 5-bit value for movpi45 instruction with range 16--47.
2845@item Iu06
2846Unsigned immediate 6-bit value constraint for addri36.sp instruction.
2847@item Iu08
2848Unsigned immediate 8-bit value.
2849@item Iu09
2850Unsigned immediate 9-bit value.
2851@item Is10
2852Signed immediate 10-bit value.
2853@item Is11
2854Signed immediate 11-bit value.
2855@item Is15
2856Signed immediate 15-bit value.
2857@item Iu15
2858Unsigned immediate 15-bit value.
2859@item Ic15
2860A constant which is not in the range of imm15u but ok for bclr instruction.
2861@item Ie15
2862A constant which is not in the range of imm15u but ok for bset instruction.
2863@item It15
2864A constant which is not in the range of imm15u but ok for btgl instruction.
2865@item Ii15
2866A constant whose compliment value is in the range of imm15u
2867and ok for bitci instruction.
2868@item Is16
2869Signed immediate 16-bit value.
2870@item Is17
2871Signed immediate 17-bit value.
2872@item Is19
2873Signed immediate 19-bit value.
2874@item Is20
2875Signed immediate 20-bit value.
2876@item Ihig
2877The immediate value that can be simply set high 20-bit.
2878@item Izeb
2879The immediate value 0xff.
2880@item Izeh
2881The immediate value 0xffff.
2882@item Ixls
2883The immediate value 0x01.
2884@item Ix11
2885The immediate value 0x7ff.
2886@item Ibms
2887The immediate value with power of 2.
2888@item Ifex
2889The immediate value with power of 2 minus 1.
2890@item U33
2891Memory constraint for 333 format.
2892@item U45
2893Memory constraint for 45 format.
2894@item U37
2895Memory constraint for 37 format.
2896@end table
2897
e430824f
CLT
2898@item Nios II family---@file{config/nios2/constraints.md}
2899@table @code
2900
2901@item I
2902Integer that is valid as an immediate operand in an
2903instruction taking a signed 16-bit number. Range
2904@minus{}32768 to 32767.
2905
2906@item J
2907Integer that is valid as an immediate operand in an
2908instruction taking an unsigned 16-bit number. Range
29090 to 65535.
2910
2911@item K
2912Integer that is valid as an immediate operand in an
2913instruction taking only the upper 16-bits of a
291432-bit number. Range 32-bit numbers with the lower
291516-bits being 0.
2916
2917@item L
2918Integer that is valid as an immediate operand for a
2919shift instruction. Range 0 to 31.
2920
2921@item M
2922Integer that is valid as an immediate operand for
2923only the value 0. Can be used in conjunction with
2924the format modifier @code{z} to use @code{r0}
2925instead of @code{0} in the assembly output.
2926
2927@item N
2928Integer that is valid as an immediate operand for
2929a custom instruction opcode. Range 0 to 255.
2930
3bbbe009
SL
2931@item P
2932An immediate operand for R2 andchi/andci instructions.
2933
e430824f
CLT
2934@item S
2935Matches immediates which are addresses in the small
2936data section and therefore can be added to @code{gp}
2937as a 16-bit immediate to re-create their 32-bit value.
2938
524d2e49
SL
2939@item U
2940Matches constants suitable as an operand for the rdprs and
2941cache instructions.
2942
2943@item v
2944A memory operand suitable for Nios II R2 load/store
2945exclusive instructions.
2946
42e6ab74
SL
2947@item w
2948A memory operand suitable for load/store IO and cache
2949instructions.
2950
e430824f
CLT
2951@ifset INTERNALS
2952@item T
2953A @code{const} wrapped @code{UNSPEC} expression,
2954representing a supported PIC or TLS relocation.
2955@end ifset
2956
2957@end table
2958
5e426dd4
PK
2959@item PDP-11---@file{config/pdp11/constraints.md}
2960@table @code
2961@item a
2962Floating point registers AC0 through AC3. These can be loaded from/to
2963memory with a single instruction.
2964
2965@item d
868e54d1
PK
2966Odd numbered general registers (R1, R3, R5). These are used for
296716-bit multiply operations.
5e426dd4 2968
b4324a14
PK
2969@item D
2970A memory reference that is encoded within the opcode, but not
2971auto-increment or auto-decrement.
2972
5e426dd4
PK
2973@item f
2974Any of the floating point registers (AC0 through AC5).
2975
2976@item G
2977Floating point constant 0.
2978
b4324a14
PK
2979@item h
2980Floating point registers AC4 and AC5. These cannot be loaded from/to
2981memory with a single instruction.
2982
5e426dd4
PK
2983@item I
2984An integer constant that fits in 16 bits.
2985
b4fbcb1b
SL
2986@item J
2987An integer constant whose low order 16 bits are zero.
2988
2989@item K
2990An integer constant that does not meet the constraints for codes
2991@samp{I} or @samp{J}.
2992
2993@item L
2994The integer constant 1.
2995
2996@item M
2997The integer constant @minus{}1.
2998
2999@item N
3000The integer constant 0.
3001
3002@item O
b4324a14 3003Integer constants 0 through 3; shifts by these
b4fbcb1b
SL
3004amounts are handled as multiple single-bit shifts rather than a single
3005variable-length shift.
3006
3007@item Q
3008A memory reference which requires an additional word (address or
3009offset) after the opcode.
3010
3011@item R
3012A memory reference that is encoded within the opcode.
3013
3014@end table
3015
3016@item PowerPC and IBM RS6000---@file{config/rs6000/constraints.md}
3017@table @code
3018@item b
3019Address base register
3020
3021@item d
3022Floating point register (containing 64-bit value)
3023
3024@item f
3025Floating point register (containing 32-bit value)
3026
3027@item v
3028Altivec vector register
3029
3030@item wa
dc703d70 3031Any VSX register if the @option{-mvsx} option was used or NO_REGS.
b4fbcb1b 3032
6a116f14
MM
3033When using any of the register constraints (@code{wa}, @code{wd},
3034@code{wf}, @code{wg}, @code{wh}, @code{wi}, @code{wj}, @code{wk},
4e8a3a35
MM
3035@code{wl}, @code{wm}, @code{wo}, @code{wp}, @code{wq}, @code{ws},
3036@code{wt}, @code{wu}, @code{wv}, @code{ww}, or @code{wy})
c477a667
MM
3037that take VSX registers, you must use @code{%x<n>} in the template so
3038that the correct register is used. Otherwise the register number
3039output in the assembly file will be incorrect if an Altivec register
3040is an operand of a VSX instruction that expects VSX register
3041numbering.
6a116f14
MM
3042
3043@smallexample
dc703d70
SL
3044asm ("xvadddp %x0,%x1,%x2"
3045 : "=wa" (v1)
3046 : "wa" (v2), "wa" (v3));
6a116f14
MM
3047@end smallexample
3048
dc703d70 3049@noindent
6a116f14
MM
3050is correct, but:
3051
3052@smallexample
dc703d70
SL
3053asm ("xvadddp %0,%1,%2"
3054 : "=wa" (v1)
3055 : "wa" (v2), "wa" (v3));
6a116f14
MM
3056@end smallexample
3057
dc703d70 3058@noindent
6a116f14
MM
3059is not correct.
3060
dd551aa1
MM
3061If an instruction only takes Altivec registers, you do not want to use
3062@code{%x<n>}.
3063
3064@smallexample
dc703d70
SL
3065asm ("xsaddqp %0,%1,%2"
3066 : "=v" (v1)
3067 : "v" (v2), "v" (v3));
dd551aa1
MM
3068@end smallexample
3069
dc703d70 3070@noindent
dd551aa1
MM
3071is correct because the @code{xsaddqp} instruction only takes Altivec
3072registers, while:
3073
3074@smallexample
dc703d70
SL
3075asm ("xsaddqp %x0,%x1,%x2"
3076 : "=v" (v1)
3077 : "v" (v2), "v" (v3));
dd551aa1
MM
3078@end smallexample
3079
dc703d70 3080@noindent
dd551aa1
MM
3081is incorrect.
3082
d5906efc 3083@item wb
1610d410 3084Altivec register if @option{-mcpu=power9} is used or NO_REGS.
d5906efc 3085
b4fbcb1b
SL
3086@item wd
3087VSX vector register to hold vector double data or NO_REGS.
3088
dd551aa1 3089@item we
1610d410 3090VSX register if the @option{-mcpu=power9} and @option{-m64} options
d5906efc 3091were used or NO_REGS.
dd551aa1 3092
b4fbcb1b
SL
3093@item wf
3094VSX vector register to hold vector float data or NO_REGS.
3095
3096@item wg
3097If @option{-mmfpgpr} was used, a floating point register or NO_REGS.
3098
3099@item wh
3100Floating point register if direct moves are available, or NO_REGS.
3101
3102@item wi
3103FP or VSX register to hold 64-bit integers for VSX insns or NO_REGS.
3104
3105@item wj
3106FP or VSX register to hold 64-bit integers for direct moves or NO_REGS.
3107
3108@item wk
3109FP or VSX register to hold 64-bit doubles for direct moves or NO_REGS.
3110
3111@item wl
3112Floating point register if the LFIWAX instruction is enabled or NO_REGS.
3113
3114@item wm
3115VSX register if direct move instructions are enabled, or NO_REGS.
3116
3117@item wn
3118No register (NO_REGS).
3119
4e8a3a35
MM
3120@item wo
3121VSX register to use for ISA 3.0 vector instructions, or NO_REGS.
3122
c477a667
MM
3123@item wp
3124VSX register to use for IEEE 128-bit floating point TFmode, or NO_REGS.
3125
3126@item wq
3127VSX register to use for IEEE 128-bit floating point, or NO_REGS.
3128
b4fbcb1b
SL
3129@item wr
3130General purpose register if 64-bit instructions are enabled or NO_REGS.
3131
3132@item ws
3133VSX vector register to hold scalar double values or NO_REGS.
3134
3135@item wt
3136VSX vector register to hold 128 bit integer or NO_REGS.
3137
3138@item wu
3139Altivec register to use for float/32-bit int loads/stores or NO_REGS.
3140
3141@item wv
3142Altivec register to use for double loads/stores or NO_REGS.
3143
3144@item ww
3145FP or VSX register to perform float operations under @option{-mvsx} or NO_REGS.
3146
3147@item wx
3148Floating point register if the STFIWX instruction is enabled or NO_REGS.
3149
3150@item wy
3151FP or VSX register to perform ISA 2.07 float ops or NO_REGS.
3152
3153@item wz
3154Floating point register if the LFIWZX instruction is enabled or NO_REGS.
3155
99211352
AS
3156@item wA
3157Address base register if 64-bit instructions are enabled or NO_REGS.
3158
1a3c3ee9
MM
3159@item wB
3160Signed 5-bit constant integer that can be loaded into an altivec register.
3161
b4fbcb1b
SL
3162@item wD
3163Int constant that is the element number of the 64-bit scalar in a vector.
3164
50c78b9a
MM
3165@item wE
3166Vector constant that can be loaded with the XXSPLTIB instruction.
3167
dd551aa1
MM
3168@item wF
3169Memory operand suitable for power9 fusion load/stores.
3170
3171@item wG
3172Memory operand suitable for TOC fusion memory references.
3173
787c7a65
MM
3174@item wH
3175Altivec register if @option{-mvsx-small-integer}.
3176
3177@item wI
3178Floating point register if @option{-mvsx-small-integer}.
3179
3180@item wJ
3181FP register if @option{-mvsx-small-integer} and @option{-mpower9-vector}.
3182
3183@item wK
3184Altivec register if @option{-mvsx-small-integer} and @option{-mpower9-vector}.
3185
dd551aa1 3186@item wL
50c78b9a 3187Int constant that is the element number that the MFVSRLD instruction.
dd551aa1
MM
3188targets.
3189
50c78b9a
MM
3190@item wM
3191Match vector constant with all 1's if the XXLORC instruction is available.
3192
3fd2b007
MM
3193@item wO
3194A memory operand suitable for the ISA 3.0 vector d-form instructions.
3195
b4fbcb1b
SL
3196@item wQ
3197A memory address that will work with the @code{lq} and @code{stq}
3198instructions.
3199
50c78b9a
MM
3200@item wS
3201Vector constant that can be loaded with XXSPLTIB & sign extension.
3202
b4fbcb1b
SL
3203@item h
3204@samp{MQ}, @samp{CTR}, or @samp{LINK} register
3205
b4fbcb1b
SL
3206@item c
3207@samp{CTR} register
3208
3209@item l
3210@samp{LINK} register
3211
3212@item x
3213@samp{CR} register (condition register) number 0
3214
3215@item y
3216@samp{CR} register (condition register)
3217
3218@item z
3219@samp{XER[CA]} carry bit (part of the XER register)
3220
3221@item I
3222Signed 16-bit constant
3223
3224@item J
3225Unsigned 16-bit constant shifted left 16 bits (use @samp{L} instead for
3226@code{SImode} constants)
3227
3228@item K
3229Unsigned 16-bit constant
3230
3231@item L
3232Signed 16-bit constant shifted left 16 bits
3233
3234@item M
3235Constant larger than 31
3236
3237@item N
3238Exact power of 2
3239
3240@item O
3241Zero
3242
3243@item P
3244Constant whose negation is a signed 16-bit constant
3245
3246@item G
3247Floating point constant that can be loaded into a register with one
3248instruction per word
3249
3250@item H
3251Integer/Floating point constant that can be loaded into a register using
3252three instructions
3253
3254@item m
3255Memory operand.
3256Normally, @code{m} does not allow addresses that update the base register.
3257If @samp{<} or @samp{>} constraint is also used, they are allowed and
3258therefore on PowerPC targets in that case it is only safe
3259to use @samp{m<>} in an @code{asm} statement if that @code{asm} statement
3260accesses the operand exactly once. The @code{asm} statement must also
3261use @samp{%U@var{<opno>}} as a placeholder for the ``update'' flag in the
3262corresponding load or store instruction. For example:
3263
3264@smallexample
3265asm ("st%U0 %1,%0" : "=m<>" (mem) : "r" (val));
3266@end smallexample
3267
3268is correct but:
3269
3270@smallexample
3271asm ("st %1,%0" : "=m<>" (mem) : "r" (val));
3272@end smallexample
3273
3274is not.
3275
3276@item es
3277A ``stable'' memory operand; that is, one which does not include any
3278automodification of the base register. This used to be useful when
3279@samp{m} allowed automodification of the base register, but as those are now only
3280allowed when @samp{<} or @samp{>} is used, @samp{es} is basically the same
3281as @samp{m} without @samp{<} and @samp{>}.
3282
3283@item Q
3284Memory operand that is an offset from a register (it is usually better
3285to use @samp{m} or @samp{es} in @code{asm} statements)
3286
3287@item Z
3288Memory operand that is an indexed or indirect from a register (it is
3289usually better to use @samp{m} or @samp{es} in @code{asm} statements)
3290
3291@item R
3292AIX TOC entry
5e426dd4 3293
b4fbcb1b
SL
3294@item a
3295Address operand that is an indexed or indirect from a register (@samp{p} is
3296preferable for @code{asm} statements)
5e426dd4 3297
b4fbcb1b
SL
3298@item U
3299System V Release 4 small data area reference
5e426dd4 3300
b4fbcb1b
SL
3301@item W
3302Vector constant that does not require memory
5e426dd4 3303
b4fbcb1b
SL
3304@item j
3305Vector constant that is all zeros.
5e426dd4
PK
3306
3307@end table
3308
85b8555e
DD
3309@item RL78---@file{config/rl78/constraints.md}
3310@table @code
3311
3312@item Int3
3313An integer constant in the range 1 @dots{} 7.
3314@item Int8
3315An integer constant in the range 0 @dots{} 255.
3316@item J
3317An integer constant in the range @minus{}255 @dots{} 0
3318@item K
3319The integer constant 1.
3320@item L
3321The integer constant -1.
3322@item M
3323The integer constant 0.
3324@item N
3325The integer constant 2.
3326@item O
3327The integer constant -2.
3328@item P
3329An integer constant in the range 1 @dots{} 15.
3330@item Qbi
3331The built-in compare types--eq, ne, gtu, ltu, geu, and leu.
3332@item Qsc
3333The synthetic compare types--gt, lt, ge, and le.
3334@item Wab
3335A memory reference with an absolute address.
3336@item Wbc
3337A memory reference using @code{BC} as a base register, with an optional offset.
3338@item Wca
3339A memory reference using @code{AX}, @code{BC}, @code{DE}, or @code{HL} for the address, for calls.
3340@item Wcv
3341A memory reference using any 16-bit register pair for the address, for calls.
3342@item Wd2
3343A memory reference using @code{DE} as a base register, with an optional offset.
3344@item Wde
3345A memory reference using @code{DE} as a base register, without any offset.
3346@item Wfr
3347Any memory reference to an address in the far address space.
3348@item Wh1
3349A memory reference using @code{HL} as a base register, with an optional one-byte offset.
3350@item Whb
3351A memory reference using @code{HL} as a base register, with @code{B} or @code{C} as the index register.
3352@item Whl
3353A memory reference using @code{HL} as a base register, without any offset.
3354@item Ws1
3355A memory reference using @code{SP} as a base register, with an optional one-byte offset.
3356@item Y
3357Any memory reference to an address in the near address space.
3358@item A
3359The @code{AX} register.
3360@item B
3361The @code{BC} register.
3362@item D
3363The @code{DE} register.
3364@item R
3365@code{A} through @code{L} registers.
3366@item S
3367The @code{SP} register.
3368@item T
3369The @code{HL} register.
3370@item Z08W
3371The 16-bit @code{R8} register.
3372@item Z10W
3373The 16-bit @code{R10} register.
3374@item Zint
3375The registers reserved for interrupts (@code{R24} to @code{R31}).
3376@item a
3377The @code{A} register.
3378@item b
3379The @code{B} register.
3380@item c
3381The @code{C} register.
3382@item d
3383The @code{D} register.
3384@item e
3385The @code{E} register.
3386@item h
3387The @code{H} register.
3388@item l
3389The @code{L} register.
3390@item v
3391The virtual registers.
3392@item w
3393The @code{PSW} register.
3394@item x
3395The @code{X} register.
3396
3397@end table
09cae750
PD
3398
3399@item RISC-V---@file{config/riscv/constraints.md}
3400@table @code
3401
3402@item f
3403A floating-point register (if availiable).
3404
3405@item I
3406An I-type 12-bit signed immediate.
3407
3408@item J
3409Integer zero.
3410
3411@item K
3412A 5-bit unsigned immediate for CSR access instructions.
3413
3414@item A
3415An address that is held in a general-purpose register.
3416
3417@end table
85b8555e 3418
65a324b4
NC
3419@item RX---@file{config/rx/constraints.md}
3420@table @code
3421@item Q
3422An address which does not involve register indirect addressing or
3423pre/post increment/decrement addressing.
3424
3425@item Symbol
3426A symbol reference.
3427
3428@item Int08
3429A constant in the range @minus{}256 to 255, inclusive.
3430
3431@item Sint08
3432A constant in the range @minus{}128 to 127, inclusive.
3433
3434@item Sint16
3435A constant in the range @minus{}32768 to 32767, inclusive.
3436
3437@item Sint24
3438A constant in the range @minus{}8388608 to 8388607, inclusive.
3439
3440@item Uint04
3441A constant in the range 0 to 15, inclusive.
3442
3443@end table
3444
b4fbcb1b
SL
3445@item S/390 and zSeries---@file{config/s390/s390.h}
3446@table @code
3447@item a
3448Address register (general purpose register except r0)
3449
3450@item c
3451Condition code register
3452
3453@item d
3454Data register (arbitrary general purpose register)
3455
3456@item f
3457Floating-point register
3458
3459@item I
3460Unsigned 8-bit constant (0--255)
3461
3462@item J
3463Unsigned 12-bit constant (0--4095)
3464
3465@item K
3466Signed 16-bit constant (@minus{}32768--32767)
3467
3468@item L
3469Value appropriate as displacement.
3470@table @code
3471@item (0..4095)
3472for short displacement
3473@item (@minus{}524288..524287)
3474for long displacement
3475@end table
3476
3477@item M
3478Constant integer with a value of 0x7fffffff.
3479
3480@item N
3481Multiple letter constraint followed by 4 parameter letters.
3482@table @code
3483@item 0..9:
3484number of the part counting from most to least significant
3485@item H,Q:
3486mode of the part
3487@item D,S,H:
3488mode of the containing operand
3489@item 0,F:
3490value of the other parts (F---all bits set)
3491@end table
3492The constraint matches if the specified part of a constant
3493has a value different from its other parts.
3494
3495@item Q
3496Memory reference without index register and with short displacement.
3497
3498@item R
3499Memory reference with index register and short displacement.
3500
3501@item S
3502Memory reference without index register but with long displacement.
3503
3504@item T
3505Memory reference with index register and long displacement.
3506
3507@item U
3508Pointer with short displacement.
3509
3510@item W
3511Pointer with long displacement.
3512
3513@item Y
3514Shift count operand.
3515
3516@end table
3517
03dda8e3 3518@need 1000
74fe790b 3519@item SPARC---@file{config/sparc/sparc.h}
03dda8e3
RK
3520@table @code
3521@item f
53e5f173
EB
3522Floating-point register on the SPARC-V8 architecture and
3523lower floating-point register on the SPARC-V9 architecture.
03dda8e3
RK
3524
3525@item e
8a36672b 3526Floating-point register. It is equivalent to @samp{f} on the
53e5f173
EB
3527SPARC-V8 architecture and contains both lower and upper
3528floating-point registers on the SPARC-V9 architecture.
03dda8e3 3529
8a69f99f
EB
3530@item c
3531Floating-point condition code register.
3532
3533@item d
8a36672b 3534Lower floating-point register. It is only valid on the SPARC-V9
53e5f173 3535architecture when the Visual Instruction Set is available.
8a69f99f
EB
3536
3537@item b
8a36672b 3538Floating-point register. It is only valid on the SPARC-V9 architecture
53e5f173 3539when the Visual Instruction Set is available.
8a69f99f
EB
3540
3541@item h
354264-bit global or out register for the SPARC-V8+ architecture.
3543
923f9ded
DM
3544@item C
3545The constant all-ones, for floating-point.
3546
8b98b5fd
DM
3547@item A
3548Signed 5-bit constant
3549
66e62b49
KH
3550@item D
3551A vector constant
3552
03dda8e3 3553@item I
1e5f973d 3554Signed 13-bit constant
03dda8e3
RK
3555
3556@item J
3557Zero
3558
3559@item K
1e5f973d 356032-bit constant with the low 12 bits clear (a constant that can be
03dda8e3
RK
3561loaded with the @code{sethi} instruction)
3562
7d6040e8 3563@item L
923f9ded
DM
3564A constant in the range supported by @code{movcc} instructions (11-bit
3565signed immediate)
7d6040e8
AO
3566
3567@item M
923f9ded
DM
3568A constant in the range supported by @code{movrcc} instructions (10-bit
3569signed immediate)
7d6040e8
AO
3570
3571@item N
3572Same as @samp{K}, except that it verifies that bits that are not in the
57694e40 3573lower 32-bit range are all zero. Must be used instead of @samp{K} for
7d6040e8
AO
3574modes wider than @code{SImode}
3575
ef0139b1
EB
3576@item O
3577The constant 4096
3578
03dda8e3
RK
3579@item G
3580Floating-point zero
3581
3582@item H
1e5f973d 3583Signed 13-bit constant, sign-extended to 32 or 64 bits
03dda8e3 3584
923f9ded
DM
3585@item P
3586The constant -1
3587
03dda8e3 3588@item Q
62190128
DM
3589Floating-point constant whose integral representation can
3590be moved into an integer register using a single sethi
3591instruction
3592
3593@item R
3594Floating-point constant whose integral representation can
3595be moved into an integer register using a single mov
3596instruction
03dda8e3
RK
3597
3598@item S
62190128
DM
3599Floating-point constant whose integral representation can
3600be moved into an integer register using a high/lo_sum
3601instruction sequence
03dda8e3
RK
3602
3603@item T
3604Memory address aligned to an 8-byte boundary
3605
aaa050aa
DM
3606@item U
3607Even register
3608
7a31a340 3609@item W
c75d6010
JM
3610Memory address for @samp{e} constraint registers
3611
923f9ded
DM
3612@item w
3613Memory address with only a base register
3614
c75d6010
JM
3615@item Y
3616Vector zero
7a31a340 3617
6ca30df6
MH
3618@end table
3619
85d9c13c
TS
3620@item SPU---@file{config/spu/spu.h}
3621@table @code
3622@item a
ff2ce160 3623An immediate which can be loaded with the il/ila/ilh/ilhu instructions. const_int is treated as a 64 bit value.
85d9c13c
TS
3624
3625@item c
ff2ce160 3626An immediate for and/xor/or instructions. const_int is treated as a 64 bit value.
85d9c13c
TS
3627
3628@item d
ff2ce160 3629An immediate for the @code{iohl} instruction. const_int is treated as a 64 bit value.
85d9c13c
TS
3630
3631@item f
ff2ce160 3632An immediate which can be loaded with @code{fsmbi}.
85d9c13c
TS
3633
3634@item A
ff2ce160 3635An immediate which can be loaded with the il/ila/ilh/ilhu instructions. const_int is treated as a 32 bit value.
85d9c13c 3636
b4fbcb1b
SL
3637@item B
3638An immediate for most arithmetic instructions. const_int is treated as a 32 bit value.
9f339dde 3639
b4fbcb1b
SL
3640@item C
3641An immediate for and/xor/or instructions. const_int is treated as a 32 bit value.
9f339dde 3642
b4fbcb1b
SL
3643@item D
3644An immediate for the @code{iohl} instruction. const_int is treated as a 32 bit value.
9f339dde
GK
3645
3646@item I
b4fbcb1b 3647A constant in the range [@minus{}64, 63] for shift/rotate instructions.
9f339dde
GK
3648
3649@item J
b4fbcb1b 3650An unsigned 7-bit constant for conversion/nop/channel instructions.
9f339dde
GK
3651
3652@item K
b4fbcb1b 3653A signed 10-bit constant for most arithmetic instructions.
9f339dde
GK
3654
3655@item M
b4fbcb1b 3656A signed 16 bit immediate for @code{stop}.
9f339dde
GK
3657
3658@item N
b4fbcb1b 3659An unsigned 16-bit constant for @code{iohl} and @code{fsmbi}.
9f339dde
GK
3660
3661@item O
b4fbcb1b 3662An unsigned 7-bit constant whose 3 least significant bits are 0.
9f339dde
GK
3663
3664@item P
b4fbcb1b 3665An unsigned 3-bit constant for 16-byte rotates and shifts
9f339dde
GK
3666
3667@item R
b4fbcb1b 3668Call operand, reg, for indirect calls
9f339dde
GK
3669
3670@item S
b4fbcb1b 3671Call operand, symbol, for relative calls.
9f339dde
GK
3672
3673@item T
b4fbcb1b 3674Call operand, const_int, for absolute calls.
9f339dde
GK
3675
3676@item U
b4fbcb1b
SL
3677An immediate which can be loaded with the il/ila/ilh/ilhu instructions. const_int is sign extended to 128 bit.
3678
3679@item W
3680An immediate for shift and rotate instructions. const_int is treated as a 32 bit value.
3681
3682@item Y
3683An immediate for and/xor/or instructions. const_int is sign extended as a 128 bit.
9f339dde 3684
e2ce66a9 3685@item Z
b4fbcb1b 3686An immediate for the @code{iohl} instruction. const_int is sign extended to 128 bit.
e2ce66a9 3687
9f339dde
GK
3688@end table
3689
bcead286
BS
3690@item TI C6X family---@file{config/c6x/constraints.md}
3691@table @code
3692@item a
3693Register file A (A0--A31).
3694
3695@item b
3696Register file B (B0--B31).
3697
3698@item A
3699Predicate registers in register file A (A0--A2 on C64X and
3700higher, A1 and A2 otherwise).
3701
3702@item B
3703Predicate registers in register file B (B0--B2).
3704
3705@item C
3706A call-used register in register file B (B0--B9, B16--B31).
3707
3708@item Da
3709Register file A, excluding predicate registers (A3--A31,
3710plus A0 if not C64X or higher).
3711
3712@item Db
3713Register file B, excluding predicate registers (B3--B31).
3714
3715@item Iu4
3716Integer constant in the range 0 @dots{} 15.
3717
3718@item Iu5
3719Integer constant in the range 0 @dots{} 31.
3720
3721@item In5
3722Integer constant in the range @minus{}31 @dots{} 0.
3723
3724@item Is5
3725Integer constant in the range @minus{}16 @dots{} 15.
3726
3727@item I5x
3728Integer constant that can be the operand of an ADDA or a SUBA insn.
3729
3730@item IuB
3731Integer constant in the range 0 @dots{} 65535.
3732
3733@item IsB
3734Integer constant in the range @minus{}32768 @dots{} 32767.
3735
3736@item IsC
3737Integer constant in the range @math{-2^{20}} @dots{} @math{2^{20} - 1}.
3738
3739@item Jc
3740Integer constant that is a valid mask for the clr instruction.
3741
3742@item Js
3743Integer constant that is a valid mask for the set instruction.
3744
3745@item Q
3746Memory location with A base register.
3747
3748@item R
3749Memory location with B base register.
3750
3751@ifset INTERNALS
3752@item S0
3753On C64x+ targets, a GP-relative small data reference.
3754
3755@item S1
3756Any kind of @code{SYMBOL_REF}, for use in a call address.
3757
3758@item Si
3759Any kind of immediate operand, unless it matches the S0 constraint.
3760
3761@item T
3762Memory location with B base register, but not using a long offset.
3763
3764@item W
fd250f0d 3765A memory operand with an address that cannot be used in an unaligned access.
bcead286
BS
3766
3767@end ifset
3768@item Z
3769Register B14 (aka DP).
3770
3771@end table
3772
dd552284
WL
3773@item TILE-Gx---@file{config/tilegx/constraints.md}
3774@table @code
3775@item R00
3776@itemx R01
3777@itemx R02
3778@itemx R03
3779@itemx R04
3780@itemx R05
3781@itemx R06
3782@itemx R07
3783@itemx R08
3784@itemx R09
655c5444 3785@itemx R10
dd552284
WL
3786Each of these represents a register constraint for an individual
3787register, from r0 to r10.
3788
3789@item I
3790Signed 8-bit integer constant.
3791
3792@item J
3793Signed 16-bit integer constant.
3794
3795@item K
3796Unsigned 16-bit integer constant.
3797
3798@item L
3799Integer constant that fits in one signed byte when incremented by one
3800(@minus{}129 @dots{} 126).
3801
3802@item m
3803Memory operand. If used together with @samp{<} or @samp{>}, the
3804operand can have postincrement which requires printing with @samp{%In}
3805and @samp{%in} on TILE-Gx. For example:
3806
3807@smallexample
3808asm ("st_add %I0,%1,%i0" : "=m<>" (*mem) : "r" (val));
3809@end smallexample
3810
3811@item M
3812A bit mask suitable for the BFINS instruction.
3813
3814@item N
3815Integer constant that is a byte tiled out eight times.
3816
3817@item O
3818The integer zero constant.
3819
3820@item P
3821Integer constant that is a sign-extended byte tiled out as four shorts.
3822
3823@item Q
3824Integer constant that fits in one signed byte when incremented
3825(@minus{}129 @dots{} 126), but excluding -1.
3826
3827@item S
3828Integer constant that has all 1 bits consecutive and starting at bit 0.
3829
3830@item T
3831A 16-bit fragment of a got, tls, or pc-relative reference.
3832
3833@item U
3834Memory operand except postincrement. This is roughly the same as
3835@samp{m} when not used together with @samp{<} or @samp{>}.
3836
3837@item W
3838An 8-element vector constant with identical elements.
3839
3840@item Y
3841A 4-element vector constant with identical elements.
3842
3843@item Z0
3844The integer constant 0xffffffff.
3845
3846@item Z1
3847The integer constant 0xffffffff00000000.
3848
3849@end table
3850
3851@item TILEPro---@file{config/tilepro/constraints.md}
3852@table @code
3853@item R00
3854@itemx R01
3855@itemx R02
3856@itemx R03
3857@itemx R04
3858@itemx R05
3859@itemx R06
3860@itemx R07
3861@itemx R08
3862@itemx R09
655c5444 3863@itemx R10
dd552284
WL
3864Each of these represents a register constraint for an individual
3865register, from r0 to r10.
3866
3867@item I
3868Signed 8-bit integer constant.
3869
3870@item J
3871Signed 16-bit integer constant.
3872
3873@item K
3874Nonzero integer constant with low 16 bits zero.
3875
3876@item L
3877Integer constant that fits in one signed byte when incremented by one
3878(@minus{}129 @dots{} 126).
3879
3880@item m
3881Memory operand. If used together with @samp{<} or @samp{>}, the
3882operand can have postincrement which requires printing with @samp{%In}
3883and @samp{%in} on TILEPro. For example:
3884
3885@smallexample
3886asm ("swadd %I0,%1,%i0" : "=m<>" (mem) : "r" (val));
3887@end smallexample
3888
3889@item M
3890A bit mask suitable for the MM instruction.
3891
3892@item N
3893Integer constant that is a byte tiled out four times.
3894
3895@item O
3896The integer zero constant.
3897
3898@item P
3899Integer constant that is a sign-extended byte tiled out as two shorts.
3900
3901@item Q
3902Integer constant that fits in one signed byte when incremented
3903(@minus{}129 @dots{} 126), but excluding -1.
3904
3905@item T
3906A symbolic operand, or a 16-bit fragment of a got, tls, or pc-relative
3907reference.
3908
3909@item U
3910Memory operand except postincrement. This is roughly the same as
3911@samp{m} when not used together with @samp{<} or @samp{>}.
3912
3913@item W
3914A 4-element vector constant with identical elements.
3915
3916@item Y
3917A 2-element vector constant with identical elements.
3918
3919@end table
3920
0969ec7d
EB
3921@item Visium---@file{config/visium/constraints.md}
3922@table @code
3923@item b
3924EAM register @code{mdb}
3925
3926@item c
3927EAM register @code{mdc}
3928
3929@item f
3930Floating point register
3931
3932@ifset INTERNALS
3933@item k
3934Register for sibcall optimization
3935@end ifset
3936
3937@item l
3938General register, but not @code{r29}, @code{r30} and @code{r31}
3939
3940@item t
3941Register @code{r1}
3942
3943@item u
3944Register @code{r2}
3945
3946@item v
3947Register @code{r3}
3948
3949@item G
3950Floating-point constant 0.0
3951
3952@item J
3953Integer constant in the range 0 .. 65535 (16-bit immediate)
3954
3955@item K
3956Integer constant in the range 1 .. 31 (5-bit immediate)
3957
3958@item L
3959Integer constant in the range @minus{}65535 .. @minus{}1 (16-bit negative immediate)
3960
3961@item M
3962Integer constant @minus{}1
3963
3964@item O
3965Integer constant 0
3966
3967@item P
3968Integer constant 32
3969@end table
3970
b4fbcb1b
SL
3971@item x86 family---@file{config/i386/constraints.md}
3972@table @code
3973@item R
3974Legacy register---the eight integer registers available on all
3975i386 processors (@code{a}, @code{b}, @code{c}, @code{d},
3976@code{si}, @code{di}, @code{bp}, @code{sp}).
3977
3978@item q
3979Any register accessible as @code{@var{r}l}. In 32-bit mode, @code{a},
3980@code{b}, @code{c}, and @code{d}; in 64-bit mode, any integer register.
3981
3982@item Q
3983Any register accessible as @code{@var{r}h}: @code{a}, @code{b},
3984@code{c}, and @code{d}.
3985
3986@ifset INTERNALS
3987@item l
3988Any register that can be used as the index in a base+index memory
3989access: that is, any general register except the stack pointer.
3990@end ifset
3991
3992@item a
3993The @code{a} register.
3994
3995@item b
3996The @code{b} register.
3997
3998@item c
3999The @code{c} register.
4000
4001@item d
4002The @code{d} register.
4003
4004@item S
4005The @code{si} register.
4006
4007@item D
4008The @code{di} register.
4009
4010@item A
4011The @code{a} and @code{d} registers. This class is used for instructions
4012that return double word results in the @code{ax:dx} register pair. Single
4013word values will be allocated either in @code{ax} or @code{dx}.
4014For example on i386 the following implements @code{rdtsc}:
4015
4016@smallexample
4017unsigned long long rdtsc (void)
4018@{
4019 unsigned long long tick;
4020 __asm__ __volatile__("rdtsc":"=A"(tick));
4021 return tick;
4022@}
4023@end smallexample
4024
4025This is not correct on x86-64 as it would allocate tick in either @code{ax}
4026or @code{dx}. You have to use the following variant instead:
4027
4028@smallexample
4029unsigned long long rdtsc (void)
4030@{
4031 unsigned int tickl, tickh;
4032 __asm__ __volatile__("rdtsc":"=a"(tickl),"=d"(tickh));
4033 return ((unsigned long long)tickh << 32)|tickl;
4034@}
4035@end smallexample
4036
de3fb1a6
SP
4037@item U
4038The call-clobbered integer registers.
b4fbcb1b
SL
4039
4040@item f
4041Any 80387 floating-point (stack) register.
4042
4043@item t
4044Top of 80387 floating-point stack (@code{%st(0)}).
4045
4046@item u
4047Second from top of 80387 floating-point stack (@code{%st(1)}).
4048
de3fb1a6
SP
4049@ifset INTERNALS
4050@item Yk
4051Any mask register that can be used as a predicate, i.e. @code{k1-k7}.
4052
4053@item k
4054Any mask register.
4055@end ifset
4056
b4fbcb1b
SL
4057@item y
4058Any MMX register.
4059
4060@item x
4061Any SSE register.
4062
de3fb1a6
SP
4063@item v
4064Any EVEX encodable SSE register (@code{%xmm0-%xmm31}).
4065
4066@ifset INTERNALS
4067@item w
4068Any bound register.
4069@end ifset
4070
b4fbcb1b
SL
4071@item Yz
4072First SSE register (@code{%xmm0}).
4073
4074@ifset INTERNALS
b4fbcb1b
SL
4075@item Yi
4076Any SSE register, when SSE2 and inter-unit moves are enabled.
4077
de3fb1a6
SP
4078@item Yj
4079Any SSE register, when SSE2 and inter-unit moves from vector registers are enabled.
4080
b4fbcb1b
SL
4081@item Ym
4082Any MMX register, when inter-unit moves are enabled.
de3fb1a6
SP
4083
4084@item Yn
4085Any MMX register, when inter-unit moves from vector registers are enabled.
4086
4087@item Yp
4088Any integer register when @code{TARGET_PARTIAL_REG_STALL} is disabled.
4089
4090@item Ya
4091Any integer register when zero extensions with @code{AND} are disabled.
4092
4093@item Yb
4094Any register that can be used as the GOT base when calling@*
4095@code{___tls_get_addr}: that is, any general register except @code{a}
4096and @code{sp} registers, for @option{-fno-plt} if linker supports it.
4097Otherwise, @code{b} register.
4098
4099@item Yf
4100Any x87 register when 80387 floating-point arithmetic is enabled.
4101
4102@item Yr
4103Lower SSE register when avoiding REX prefix and all SSE registers otherwise.
4104
4105@item Yv
4106For AVX512VL, any EVEX-encodable SSE register (@code{%xmm0-%xmm31}),
4107otherwise any SSE register.
4108
4109@item Yh
4110Any EVEX-encodable SSE register, that has number factor of four.
4111
4112@item Bf
4113Flags register operand.
4114
4115@item Bg
4116GOT memory operand.
4117
4118@item Bm
4119Vector memory operand.
4120
4121@item Bc
4122Constant memory operand.
4123
4124@item Bn
4125Memory operand without REX prefix.
4126
4127@item Bs
4128Sibcall memory operand.
4129
4130@item Bw
4131Call memory operand.
4132
4133@item Bz
4134Constant call address operand.
4135
4136@item BC
4137SSE constant -1 operand.
b4fbcb1b
SL
4138@end ifset
4139
4140@item I
4141Integer constant in the range 0 @dots{} 31, for 32-bit shifts.
4142
4143@item J
4144Integer constant in the range 0 @dots{} 63, for 64-bit shifts.
4145
4146@item K
4147Signed 8-bit integer constant.
4148
4149@item L
4150@code{0xFF} or @code{0xFFFF}, for andsi as a zero-extending move.
4151
4152@item M
41530, 1, 2, or 3 (shifts for the @code{lea} instruction).
4154
4155@item N
4156Unsigned 8-bit integer constant (for @code{in} and @code{out}
4157instructions).
4158
4159@ifset INTERNALS
4160@item O
4161Integer constant in the range 0 @dots{} 127, for 128-bit shifts.
4162@end ifset
4163
4164@item G
4165Standard 80387 floating point constant.
4166
4167@item C
aec0b19e 4168SSE constant zero operand.
b4fbcb1b
SL
4169
4170@item e
417132-bit signed integer constant, or a symbolic reference known
4172to fit that range (for immediate operands in sign-extending x86-64
4173instructions).
4174
de3fb1a6
SP
4175@item We
417632-bit signed integer constant, or a symbolic reference known
4177to fit that range (for sign-extending conversion operations that
4178require non-@code{VOIDmode} immediate operands).
4179
4180@item Wz
418132-bit unsigned integer constant, or a symbolic reference known
4182to fit that range (for zero-extending conversion operations that
4183require non-@code{VOIDmode} immediate operands).
4184
4185@item Wd
4186128-bit integer constant where both the high and low 64-bit word
4187satisfy the @code{e} constraint.
4188
b4fbcb1b
SL
4189@item Z
419032-bit unsigned integer constant, or a symbolic reference known
4191to fit that range (for immediate operands in zero-extending x86-64
4192instructions).
4193
de3fb1a6
SP
4194@item Tv
4195VSIB address operand.
4196
4197@item Ts
4198Address operand without segment register.
4199
b4fbcb1b
SL
4200@end table
4201
4202@item Xstormy16---@file{config/stormy16/stormy16.h}
4203@table @code
4204@item a
4205Register r0.
4206
4207@item b
4208Register r1.
4209
4210@item c
4211Register r2.
4212
4213@item d
4214Register r8.
4215
4216@item e
4217Registers r0 through r7.
4218
4219@item t
4220Registers r0 and r1.
4221
4222@item y
4223The carry register.
4224
4225@item z
4226Registers r8 and r9.
4227
4228@item I
4229A constant between 0 and 3 inclusive.
4230
4231@item J
4232A constant that has exactly one bit set.
4233
4234@item K
4235A constant that has exactly one bit clear.
4236
4237@item L
4238A constant between 0 and 255 inclusive.
4239
4240@item M
4241A constant between @minus{}255 and 0 inclusive.
4242
4243@item N
4244A constant between @minus{}3 and 0 inclusive.
4245
4246@item O
4247A constant between 1 and 4 inclusive.
4248
4249@item P
4250A constant between @minus{}4 and @minus{}1 inclusive.
4251
4252@item Q
4253A memory reference that is a stack push.
4254
4255@item R
4256A memory reference that is a stack pop.
4257
4258@item S
4259A memory reference that refers to a constant address of known value.
4260
4261@item T
4262The register indicated by Rx (not implemented yet).
4263
4264@item U
4265A constant that is not between 2 and 15 inclusive.
4266
4267@item Z
4268The constant 0.
4269
4270@end table
4271
887af464 4272@item Xtensa---@file{config/xtensa/constraints.md}
03984308
BW
4273@table @code
4274@item a
4275General-purpose 32-bit register
4276
4277@item b
4278One-bit boolean register
4279
4280@item A
4281MAC16 40-bit accumulator register
4282
4283@item I
4284Signed 12-bit integer constant, for use in MOVI instructions
4285
4286@item J
4287Signed 8-bit integer constant, for use in ADDI instructions
4288
4289@item K
4290Integer constant valid for BccI instructions
4291
4292@item L
4293Unsigned constant valid for BccUI instructions
4294
4295@end table
4296
03dda8e3
RK
4297@end table
4298
7ac28727
AK
4299@ifset INTERNALS
4300@node Disable Insn Alternatives
4301@subsection Disable insn alternatives using the @code{enabled} attribute
4302@cindex enabled
4303
9840b2fa
RS
4304There are three insn attributes that may be used to selectively disable
4305instruction alternatives:
7ac28727 4306
9840b2fa
RS
4307@table @code
4308@item enabled
4309Says whether an alternative is available on the current subtarget.
7ac28727 4310
9840b2fa
RS
4311@item preferred_for_size
4312Says whether an enabled alternative should be used in code that is
4313optimized for size.
7ac28727 4314
9840b2fa
RS
4315@item preferred_for_speed
4316Says whether an enabled alternative should be used in code that is
4317optimized for speed.
4318@end table
4319
4320All these attributes should use @code{(const_int 1)} to allow an alternative
4321or @code{(const_int 0)} to disallow it. The attributes must be a static
4322property of the subtarget; they cannot for example depend on the
4323current operands, on the current optimization level, on the location
4324of the insn within the body of a loop, on whether register allocation
4325has finished, or on the current compiler pass.
4326
4327The @code{enabled} attribute is a correctness property. It tells GCC to act
4328as though the disabled alternatives were never defined in the first place.
4329This is useful when adding new instructions to an existing pattern in
4330cases where the new instructions are only available for certain cpu
4331architecture levels (typically mapped to the @code{-march=} command-line
4332option).
4333
4334In contrast, the @code{preferred_for_size} and @code{preferred_for_speed}
4335attributes are strong optimization hints rather than correctness properties.
4336@code{preferred_for_size} tells GCC which alternatives to consider when
4337adding or modifying an instruction that GCC wants to optimize for size.
4338@code{preferred_for_speed} does the same thing for speed. Note that things
4339like code motion can lead to cases where code optimized for size uses
4340alternatives that are not preferred for size, and similarly for speed.
4341
4342Although @code{define_insn}s can in principle specify the @code{enabled}
4343attribute directly, it is often clearer to have subsiduary attributes
4344for each architectural feature of interest. The @code{define_insn}s
4345can then use these subsiduary attributes to say which alternatives
4346require which features. The example below does this for @code{cpu_facility}.
7ac28727
AK
4347
4348E.g. the following two patterns could easily be merged using the @code{enabled}
4349attribute:
4350
4351@smallexample
4352
4353(define_insn "*movdi_old"
4354 [(set (match_operand:DI 0 "register_operand" "=d")
4355 (match_operand:DI 1 "register_operand" " d"))]
4356 "!TARGET_NEW"
4357 "lgr %0,%1")
4358
4359(define_insn "*movdi_new"
4360 [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4361 (match_operand:DI 1 "register_operand" " d,d,f"))]
4362 "TARGET_NEW"
4363 "@@
4364 lgr %0,%1
4365 ldgr %0,%1
4366 lgdr %0,%1")
4367
4368@end smallexample
4369
4370to:
4371
4372@smallexample
4373
4374(define_insn "*movdi_combined"
4375 [(set (match_operand:DI 0 "register_operand" "=d,f,d")
4376 (match_operand:DI 1 "register_operand" " d,d,f"))]
4377 ""
4378 "@@
4379 lgr %0,%1
4380 ldgr %0,%1
4381 lgdr %0,%1"
4382 [(set_attr "cpu_facility" "*,new,new")])
4383
4384@end smallexample
4385
4386with the @code{enabled} attribute defined like this:
4387
4388@smallexample
4389
4390(define_attr "cpu_facility" "standard,new" (const_string "standard"))
4391
4392(define_attr "enabled" ""
4393 (cond [(eq_attr "cpu_facility" "standard") (const_int 1)
4394 (and (eq_attr "cpu_facility" "new")
4395 (ne (symbol_ref "TARGET_NEW") (const_int 0)))
4396 (const_int 1)]
4397 (const_int 0)))
4398
4399@end smallexample
4400
4401@end ifset
4402
03dda8e3 4403@ifset INTERNALS
f38840db
ZW
4404@node Define Constraints
4405@subsection Defining Machine-Specific Constraints
4406@cindex defining constraints
4407@cindex constraints, defining
4408
4409Machine-specific constraints fall into two categories: register and
4410non-register constraints. Within the latter category, constraints
4411which allow subsets of all possible memory or address operands should
4412be specially marked, to give @code{reload} more information.
4413
4414Machine-specific constraints can be given names of arbitrary length,
4415but they must be entirely composed of letters, digits, underscores
4416(@samp{_}), and angle brackets (@samp{< >}). Like C identifiers, they
ff2ce160 4417must begin with a letter or underscore.
f38840db
ZW
4418
4419In order to avoid ambiguity in operand constraint strings, no
4420constraint can have a name that begins with any other constraint's
4421name. For example, if @code{x} is defined as a constraint name,
4422@code{xy} may not be, and vice versa. As a consequence of this rule,
4423no constraint may begin with one of the generic constraint letters:
4424@samp{E F V X g i m n o p r s}.
4425
4426Register constraints correspond directly to register classes.
4427@xref{Register Classes}. There is thus not much flexibility in their
4428definitions.
4429
4430@deffn {MD Expression} define_register_constraint name regclass docstring
4431All three arguments are string constants.
4432@var{name} is the name of the constraint, as it will appear in
5be527d0
RG
4433@code{match_operand} expressions. If @var{name} is a multi-letter
4434constraint its length shall be the same for all constraints starting
4435with the same letter. @var{regclass} can be either the
f38840db
ZW
4436name of the corresponding register class (@pxref{Register Classes}),
4437or a C expression which evaluates to the appropriate register class.
4438If it is an expression, it must have no side effects, and it cannot
4439look at the operand. The usual use of expressions is to map some
4440register constraints to @code{NO_REGS} when the register class
4441is not available on a given subarchitecture.
4442
4443@var{docstring} is a sentence documenting the meaning of the
4444constraint. Docstrings are explained further below.
4445@end deffn
4446
4447Non-register constraints are more like predicates: the constraint
527a3750 4448definition gives a boolean expression which indicates whether the
f38840db
ZW
4449constraint matches.
4450
4451@deffn {MD Expression} define_constraint name docstring exp
4452The @var{name} and @var{docstring} arguments are the same as for
4453@code{define_register_constraint}, but note that the docstring comes
4454immediately after the name for these expressions. @var{exp} is an RTL
4455expression, obeying the same rules as the RTL expressions in predicate
4456definitions. @xref{Defining Predicates}, for details. If it
4457evaluates true, the constraint matches; if it evaluates false, it
4458doesn't. Constraint expressions should indicate which RTL codes they
4459might match, just like predicate expressions.
4460
4461@code{match_test} C expressions have access to the
4462following variables:
4463
4464@table @var
4465@item op
4466The RTL object defining the operand.
4467@item mode
4468The machine mode of @var{op}.
4469@item ival
4470@samp{INTVAL (@var{op})}, if @var{op} is a @code{const_int}.
4471@item hval
4472@samp{CONST_DOUBLE_HIGH (@var{op})}, if @var{op} is an integer
4473@code{const_double}.
4474@item lval
4475@samp{CONST_DOUBLE_LOW (@var{op})}, if @var{op} is an integer
4476@code{const_double}.
4477@item rval
4478@samp{CONST_DOUBLE_REAL_VALUE (@var{op})}, if @var{op} is a floating-point
3fa1b0e5 4479@code{const_double}.
f38840db
ZW
4480@end table
4481
4482The @var{*val} variables should only be used once another piece of the
4483expression has verified that @var{op} is the appropriate kind of RTL
4484object.
4485@end deffn
4486
4487Most non-register constraints should be defined with
4488@code{define_constraint}. The remaining two definition expressions
4489are only appropriate for constraints that should be handled specially
4490by @code{reload} if they fail to match.
4491
4492@deffn {MD Expression} define_memory_constraint name docstring exp
4493Use this expression for constraints that match a subset of all memory
4494operands: that is, @code{reload} can make them match by converting the
4495operand to the form @samp{@w{(mem (reg @var{X}))}}, where @var{X} is a
4496base register (from the register class specified by
4497@code{BASE_REG_CLASS}, @pxref{Register Classes}).
4498
4499For example, on the S/390, some instructions do not accept arbitrary
4500memory references, but only those that do not make use of an index
4501register. The constraint letter @samp{Q} is defined to represent a
4502memory address of this type. If @samp{Q} is defined with
4503@code{define_memory_constraint}, a @samp{Q} constraint can handle any
4504memory operand, because @code{reload} knows it can simply copy the
4505memory address into a base register if required. This is analogous to
e4ae5e77 4506the way an @samp{o} constraint can handle any memory operand.
f38840db
ZW
4507
4508The syntax and semantics are otherwise identical to
4509@code{define_constraint}.
4510@end deffn
4511
9eb1ca69
VM
4512@deffn {MD Expression} define_special_memory_constraint name docstring exp
4513Use this expression for constraints that match a subset of all memory
4514operands: that is, @code{reload} can not make them match by reloading
4515the address as it is described for @code{define_memory_constraint} or
4516such address reload is undesirable with the performance point of view.
4517
4518For example, @code{define_special_memory_constraint} can be useful if
4519specifically aligned memory is necessary or desirable for some insn
4520operand.
4521
4522The syntax and semantics are otherwise identical to
4523@code{define_constraint}.
4524@end deffn
4525
f38840db
ZW
4526@deffn {MD Expression} define_address_constraint name docstring exp
4527Use this expression for constraints that match a subset of all address
4528operands: that is, @code{reload} can make the constraint match by
4529converting the operand to the form @samp{@w{(reg @var{X})}}, again
4530with @var{X} a base register.
4531
4532Constraints defined with @code{define_address_constraint} can only be
4533used with the @code{address_operand} predicate, or machine-specific
4534predicates that work the same way. They are treated analogously to
4535the generic @samp{p} constraint.
4536
4537The syntax and semantics are otherwise identical to
4538@code{define_constraint}.
4539@end deffn
4540
4541For historical reasons, names beginning with the letters @samp{G H}
4542are reserved for constraints that match only @code{const_double}s, and
4543names beginning with the letters @samp{I J K L M N O P} are reserved
4544for constraints that match only @code{const_int}s. This may change in
4545the future. For the time being, constraints with these names must be
4546written in a stylized form, so that @code{genpreds} can tell you did
4547it correctly:
4548
4549@smallexample
4550@group
4551(define_constraint "[@var{GHIJKLMNOP}]@dots{}"
4552 "@var{doc}@dots{}"
4553 (and (match_code "const_int") ; @r{@code{const_double} for G/H}
4554 @var{condition}@dots{})) ; @r{usually a @code{match_test}}
4555@end group
4556@end smallexample
4557@c the semicolons line up in the formatted manual
4558
4559It is fine to use names beginning with other letters for constraints
4560that match @code{const_double}s or @code{const_int}s.
4561
4562Each docstring in a constraint definition should be one or more complete
4563sentences, marked up in Texinfo format. @emph{They are currently unused.}
4564In the future they will be copied into the GCC manual, in @ref{Machine
4565Constraints}, replacing the hand-maintained tables currently found in
4566that section. Also, in the future the compiler may use this to give
4567more helpful diagnostics when poor choice of @code{asm} constraints
4568causes a reload failure.
4569
4570If you put the pseudo-Texinfo directive @samp{@@internal} at the
4571beginning of a docstring, then (in the future) it will appear only in
4572the internals manual's version of the machine-specific constraint tables.
4573Use this for constraints that should not appear in @code{asm} statements.
4574
4575@node C Constraint Interface
4576@subsection Testing constraints from C
4577@cindex testing constraints
4578@cindex constraints, testing
4579
4580It is occasionally useful to test a constraint from C code rather than
4581implicitly via the constraint string in a @code{match_operand}. The
4582generated file @file{tm_p.h} declares a few interfaces for working
8677664e
RS
4583with constraints. At present these are defined for all constraints
4584except @code{g} (which is equivalent to @code{general_operand}).
f38840db
ZW
4585
4586Some valid constraint names are not valid C identifiers, so there is a
4587mangling scheme for referring to them from C@. Constraint names that
4588do not contain angle brackets or underscores are left unchanged.
4589Underscores are doubled, each @samp{<} is replaced with @samp{_l}, and
4590each @samp{>} with @samp{_g}. Here are some examples:
4591
4592@c the @c's prevent double blank lines in the printed manual.
4593@example
4594@multitable {Original} {Mangled}
cccb0908 4595@item @strong{Original} @tab @strong{Mangled} @c
f38840db
ZW
4596@item @code{x} @tab @code{x} @c
4597@item @code{P42x} @tab @code{P42x} @c
4598@item @code{P4_x} @tab @code{P4__x} @c
4599@item @code{P4>x} @tab @code{P4_gx} @c
4600@item @code{P4>>} @tab @code{P4_g_g} @c
4601@item @code{P4_g>} @tab @code{P4__g_g} @c
4602@end multitable
4603@end example
4604
4605Throughout this section, the variable @var{c} is either a constraint
4606in the abstract sense, or a constant from @code{enum constraint_num};
4607the variable @var{m} is a mangled constraint name (usually as part of
4608a larger identifier).
4609
4610@deftp Enum constraint_num
8677664e 4611For each constraint except @code{g}, there is a corresponding
f38840db
ZW
4612enumeration constant: @samp{CONSTRAINT_} plus the mangled name of the
4613constraint. Functions that take an @code{enum constraint_num} as an
4614argument expect one of these constants.
f38840db
ZW
4615@end deftp
4616
4617@deftypefun {inline bool} satisfies_constraint_@var{m} (rtx @var{exp})
8677664e 4618For each non-register constraint @var{m} except @code{g}, there is
f38840db
ZW
4619one of these functions; it returns @code{true} if @var{exp} satisfies the
4620constraint. These functions are only visible if @file{rtl.h} was included
4621before @file{tm_p.h}.
4622@end deftypefun
4623
4624@deftypefun bool constraint_satisfied_p (rtx @var{exp}, enum constraint_num @var{c})
4625Like the @code{satisfies_constraint_@var{m}} functions, but the
4626constraint to test is given as an argument, @var{c}. If @var{c}
4627specifies a register constraint, this function will always return
4628@code{false}.
4629@end deftypefun
4630
2aeedf58 4631@deftypefun {enum reg_class} reg_class_for_constraint (enum constraint_num @var{c})
f38840db
ZW
4632Returns the register class associated with @var{c}. If @var{c} is not
4633a register constraint, or those registers are not available for the
4634currently selected subtarget, returns @code{NO_REGS}.
4635@end deftypefun
4636
4637Here is an example use of @code{satisfies_constraint_@var{m}}. In
4638peephole optimizations (@pxref{Peephole Definitions}), operand
4639constraint strings are ignored, so if there are relevant constraints,
4640they must be tested in the C condition. In the example, the
4641optimization is applied if operand 2 does @emph{not} satisfy the
4642@samp{K} constraint. (This is a simplified version of a peephole
4643definition from the i386 machine description.)
4644
4645@smallexample
4646(define_peephole2
4647 [(match_scratch:SI 3 "r")
4648 (set (match_operand:SI 0 "register_operand" "")
6ccde948
RW
4649 (mult:SI (match_operand:SI 1 "memory_operand" "")
4650 (match_operand:SI 2 "immediate_operand" "")))]
f38840db
ZW
4651
4652 "!satisfies_constraint_K (operands[2])"
4653
4654 [(set (match_dup 3) (match_dup 1))
4655 (set (match_dup 0) (mult:SI (match_dup 3) (match_dup 2)))]
4656
4657 "")
4658@end smallexample
4659
03dda8e3
RK
4660@node Standard Names
4661@section Standard Pattern Names For Generation
4662@cindex standard pattern names
4663@cindex pattern names
4664@cindex names, pattern
4665
4666Here is a table of the instruction names that are meaningful in the RTL
4667generation pass of the compiler. Giving one of these names to an
4668instruction pattern tells the RTL generation pass that it can use the
556e0f21 4669pattern to accomplish a certain task.
03dda8e3
RK
4670
4671@table @asis
4672@cindex @code{mov@var{m}} instruction pattern
4673@item @samp{mov@var{m}}
4bd0bee9 4674Here @var{m} stands for a two-letter machine mode name, in lowercase.
03dda8e3
RK
4675This instruction pattern moves data with that machine mode from operand
46761 to operand 0. For example, @samp{movsi} moves full-word data.
4677
4678If operand 0 is a @code{subreg} with mode @var{m} of a register whose
4679own mode is wider than @var{m}, the effect of this instruction is
4680to store the specified value in the part of the register that corresponds
8feb4e28
JL
4681to mode @var{m}. Bits outside of @var{m}, but which are within the
4682same target word as the @code{subreg} are undefined. Bits which are
4683outside the target word are left unchanged.
03dda8e3
RK
4684
4685This class of patterns is special in several ways. First of all, each
65945ec1
HPN
4686of these names up to and including full word size @emph{must} be defined,
4687because there is no other way to copy a datum from one place to another.
4688If there are patterns accepting operands in larger modes,
4689@samp{mov@var{m}} must be defined for integer modes of those sizes.
03dda8e3
RK
4690
4691Second, these patterns are not used solely in the RTL generation pass.
4692Even the reload pass can generate move insns to copy values from stack
4693slots into temporary registers. When it does so, one of the operands is
4694a hard register and the other is an operand that can need to be reloaded
4695into a register.
4696
4697@findex force_reg
4698Therefore, when given such a pair of operands, the pattern must generate
4699RTL which needs no reloading and needs no temporary registers---no
4700registers other than the operands. For example, if you support the
4701pattern with a @code{define_expand}, then in such a case the
4702@code{define_expand} mustn't call @code{force_reg} or any other such
4703function which might generate new pseudo registers.
4704
4705This requirement exists even for subword modes on a RISC machine where
4706fetching those modes from memory normally requires several insns and
39ed8974 4707some temporary registers.
03dda8e3
RK
4708
4709@findex change_address
4710During reload a memory reference with an invalid address may be passed
4711as an operand. Such an address will be replaced with a valid address
4712later in the reload pass. In this case, nothing may be done with the
4713address except to use it as it stands. If it is copied, it will not be
4714replaced with a valid address. No attempt should be made to make such
4715an address into a valid address and no routine (such as
4716@code{change_address}) that will do so may be called. Note that
4717@code{general_operand} will fail when applied to such an address.
4718
4719@findex reload_in_progress
4720The global variable @code{reload_in_progress} (which must be explicitly
4721declared if required) can be used to determine whether such special
4722handling is required.
4723
4724The variety of operands that have reloads depends on the rest of the
4725machine description, but typically on a RISC machine these can only be
4726pseudo registers that did not get hard registers, while on other
4727machines explicit memory references will get optional reloads.
4728
4729If a scratch register is required to move an object to or from memory,
f1db3576
JL
4730it can be allocated using @code{gen_reg_rtx} prior to life analysis.
4731
9c34dbbf 4732If there are cases which need scratch registers during or after reload,
8a99f6f9 4733you must provide an appropriate secondary_reload target hook.
03dda8e3 4734
ef4375b2
KZ
4735@findex can_create_pseudo_p
4736The macro @code{can_create_pseudo_p} can be used to determine if it
f1db3576
JL
4737is unsafe to create new pseudo registers. If this variable is nonzero, then
4738it is unsafe to call @code{gen_reg_rtx} to allocate a new pseudo.
4739
956d6950 4740The constraints on a @samp{mov@var{m}} must permit moving any hard
03dda8e3 4741register to any other hard register provided that
f939c3e6 4742@code{TARGET_HARD_REGNO_MODE_OK} permits mode @var{m} in both registers and
de8f4b07
AS
4743@code{TARGET_REGISTER_MOVE_COST} applied to their classes returns a value
4744of 2.
03dda8e3 4745
956d6950 4746It is obligatory to support floating point @samp{mov@var{m}}
03dda8e3
RK
4747instructions into and out of any registers that can hold fixed point
4748values, because unions and structures (which have modes @code{SImode} or
4749@code{DImode}) can be in those registers and they may have floating
4750point members.
4751
956d6950 4752There may also be a need to support fixed point @samp{mov@var{m}}
03dda8e3
RK
4753instructions in and out of floating point registers. Unfortunately, I
4754have forgotten why this was so, and I don't know whether it is still
f939c3e6 4755true. If @code{TARGET_HARD_REGNO_MODE_OK} rejects fixed point values in
03dda8e3 4756floating point registers, then the constraints of the fixed point
956d6950 4757@samp{mov@var{m}} instructions must be designed to avoid ever trying to
03dda8e3
RK
4758reload into a floating point register.
4759
4760@cindex @code{reload_in} instruction pattern
4761@cindex @code{reload_out} instruction pattern
4762@item @samp{reload_in@var{m}}
4763@itemx @samp{reload_out@var{m}}
8a99f6f9
R
4764These named patterns have been obsoleted by the target hook
4765@code{secondary_reload}.
4766
03dda8e3
RK
4767Like @samp{mov@var{m}}, but used when a scratch register is required to
4768move between operand 0 and operand 1. Operand 2 describes the scratch
4769register. See the discussion of the @code{SECONDARY_RELOAD_CLASS}
4770macro in @pxref{Register Classes}.
4771
d989f648 4772There are special restrictions on the form of the @code{match_operand}s
f282ffb3 4773used in these patterns. First, only the predicate for the reload
560dbedd
RH
4774operand is examined, i.e., @code{reload_in} examines operand 1, but not
4775the predicates for operand 0 or 2. Second, there may be only one
d989f648
RH
4776alternative in the constraints. Third, only a single register class
4777letter may be used for the constraint; subsequent constraint letters
4778are ignored. As a special exception, an empty constraint string
4779matches the @code{ALL_REGS} register class. This may relieve ports
4780of the burden of defining an @code{ALL_REGS} constraint letter just
4781for these patterns.
4782
03dda8e3
RK
4783@cindex @code{movstrict@var{m}} instruction pattern
4784@item @samp{movstrict@var{m}}
4785Like @samp{mov@var{m}} except that if operand 0 is a @code{subreg}
4786with mode @var{m} of a register whose natural mode is wider,
4787the @samp{movstrict@var{m}} instruction is guaranteed not to alter
4788any of the register except the part which belongs to mode @var{m}.
4789
1e0598e2
RH
4790@cindex @code{movmisalign@var{m}} instruction pattern
4791@item @samp{movmisalign@var{m}}
4792This variant of a move pattern is designed to load or store a value
4793from a memory address that is not naturally aligned for its mode.
4794For a store, the memory will be in operand 0; for a load, the memory
4795will be in operand 1. The other operand is guaranteed not to be a
4796memory, so that it's easy to tell whether this is a load or store.
4797
4798This pattern is used by the autovectorizer, and when expanding a
4799@code{MISALIGNED_INDIRECT_REF} expression.
4800
03dda8e3
RK
4801@cindex @code{load_multiple} instruction pattern
4802@item @samp{load_multiple}
4803Load several consecutive memory locations into consecutive registers.
4804Operand 0 is the first of the consecutive registers, operand 1
4805is the first memory location, and operand 2 is a constant: the
4806number of consecutive registers.
4807
4808Define this only if the target machine really has such an instruction;
4809do not define this if the most efficient way of loading consecutive
4810registers from memory is to do them one at a time.
4811
4812On some machines, there are restrictions as to which consecutive
4813registers can be stored into memory, such as particular starting or
4814ending register numbers or only a range of valid counts. For those
4815machines, use a @code{define_expand} (@pxref{Expander Definitions})
4816and make the pattern fail if the restrictions are not met.
4817
4818Write the generated insn as a @code{parallel} with elements being a
4819@code{set} of one register from the appropriate memory location (you may
4820also need @code{use} or @code{clobber} elements). Use a
4821@code{match_parallel} (@pxref{RTL Template}) to recognize the insn. See
c9693e96 4822@file{rs6000.md} for examples of the use of this insn pattern.
03dda8e3
RK
4823
4824@cindex @samp{store_multiple} instruction pattern
4825@item @samp{store_multiple}
4826Similar to @samp{load_multiple}, but store several consecutive registers
4827into consecutive memory locations. Operand 0 is the first of the
4828consecutive memory locations, operand 1 is the first register, and
4829operand 2 is a constant: the number of consecutive registers.
4830
272c6793
RS
4831@cindex @code{vec_load_lanes@var{m}@var{n}} instruction pattern
4832@item @samp{vec_load_lanes@var{m}@var{n}}
4833Perform an interleaved load of several vectors from memory operand 1
4834into register operand 0. Both operands have mode @var{m}. The register
4835operand is viewed as holding consecutive vectors of mode @var{n},
4836while the memory operand is a flat array that contains the same number
4837of elements. The operation is equivalent to:
4838
4839@smallexample
4840int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4841for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4842 for (i = 0; i < c; i++)
4843 operand0[i][j] = operand1[j * c + i];
4844@end smallexample
4845
4846For example, @samp{vec_load_lanestiv4hi} loads 8 16-bit values
4847from memory into a register of mode @samp{TI}@. The register
4848contains two consecutive vectors of mode @samp{V4HI}@.
4849
4850This pattern can only be used if:
4851@smallexample
4852TARGET_ARRAY_MODE_SUPPORTED_P (@var{n}, @var{c})
4853@end smallexample
4854is true. GCC assumes that, if a target supports this kind of
4855instruction for some mode @var{n}, it also supports unaligned
4856loads for vectors of mode @var{n}.
4857
a54a5997
RS
4858This pattern is not allowed to @code{FAIL}.
4859
7e11fc7f
RS
4860@cindex @code{vec_mask_load_lanes@var{m}@var{n}} instruction pattern
4861@item @samp{vec_mask_load_lanes@var{m}@var{n}}
4862Like @samp{vec_load_lanes@var{m}@var{n}}, but takes an additional
4863mask operand (operand 2) that specifies which elements of the destination
4864vectors should be loaded. Other elements of the destination
4865vectors are set to zero. The operation is equivalent to:
4866
4867@smallexample
4868int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4869for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4870 if (operand2[j])
4871 for (i = 0; i < c; i++)
4872 operand0[i][j] = operand1[j * c + i];
4873 else
4874 for (i = 0; i < c; i++)
4875 operand0[i][j] = 0;
4876@end smallexample
4877
4878This pattern is not allowed to @code{FAIL}.
4879
272c6793
RS
4880@cindex @code{vec_store_lanes@var{m}@var{n}} instruction pattern
4881@item @samp{vec_store_lanes@var{m}@var{n}}
4882Equivalent to @samp{vec_load_lanes@var{m}@var{n}}, with the memory
4883and register operands reversed. That is, the instruction is
4884equivalent to:
4885
4886@smallexample
4887int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4888for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4889 for (i = 0; i < c; i++)
4890 operand0[j * c + i] = operand1[i][j];
4891@end smallexample
4892
4893for a memory operand 0 and register operand 1.
4894
a54a5997
RS
4895This pattern is not allowed to @code{FAIL}.
4896
7e11fc7f
RS
4897@cindex @code{vec_mask_store_lanes@var{m}@var{n}} instruction pattern
4898@item @samp{vec_mask_store_lanes@var{m}@var{n}}
4899Like @samp{vec_store_lanes@var{m}@var{n}}, but takes an additional
4900mask operand (operand 2) that specifies which elements of the source
4901vectors should be stored. The operation is equivalent to:
4902
4903@smallexample
4904int c = GET_MODE_SIZE (@var{m}) / GET_MODE_SIZE (@var{n});
4905for (j = 0; j < GET_MODE_NUNITS (@var{n}); j++)
4906 if (operand2[j])
4907 for (i = 0; i < c; i++)
4908 operand0[j * c + i] = operand1[i][j];
4909@end smallexample
4910
4911This pattern is not allowed to @code{FAIL}.
4912
bfaa08b7
RS
4913@cindex @code{gather_load@var{m}} instruction pattern
4914@item @samp{gather_load@var{m}}
4915Load several separate memory locations into a vector of mode @var{m}.
4916Operand 1 is a scalar base address and operand 2 is a vector of
4917offsets from that base. Operand 0 is a destination vector with the
4918same number of elements as the offset. For each element index @var{i}:
4919
4920@itemize @bullet
4921@item
4922extend the offset element @var{i} to address width, using zero
4923extension if operand 3 is 1 and sign extension if operand 3 is zero;
4924@item
4925multiply the extended offset by operand 4;
4926@item
4927add the result to the base; and
4928@item
4929load the value at that address into element @var{i} of operand 0.
4930@end itemize
4931
4932The value of operand 3 does not matter if the offsets are already
4933address width.
4934
4935@cindex @code{mask_gather_load@var{m}} instruction pattern
4936@item @samp{mask_gather_load@var{m}}
4937Like @samp{gather_load@var{m}}, but takes an extra mask operand as
4938operand 5. Bit @var{i} of the mask is set if element @var{i}
4939of the result should be loaded from memory and clear if element @var{i}
4940of the result should be set to zero.
4941
f307441a
RS
4942@cindex @code{scatter_store@var{m}} instruction pattern
4943@item @samp{scatter_store@var{m}}
4944Store a vector of mode @var{m} into several distinct memory locations.
4945Operand 0 is a scalar base address and operand 1 is a vector of offsets
4946from that base. Operand 4 is the vector of values that should be stored,
4947which has the same number of elements as the offset. For each element
4948index @var{i}:
4949
4950@itemize @bullet
4951@item
4952extend the offset element @var{i} to address width, using zero
4953extension if operand 2 is 1 and sign extension if operand 2 is zero;
4954@item
4955multiply the extended offset by operand 3;
4956@item
4957add the result to the base; and
4958@item
4959store element @var{i} of operand 4 to that address.
4960@end itemize
4961
4962The value of operand 2 does not matter if the offsets are already
4963address width.
4964
4965@cindex @code{mask_scatter_store@var{m}} instruction pattern
4966@item @samp{mask_scatter_store@var{m}}
4967Like @samp{scatter_store@var{m}}, but takes an extra mask operand as
4968operand 5. Bit @var{i} of the mask is set if element @var{i}
4969of the result should be stored to memory.
4970
ef1140a9
JH
4971@cindex @code{vec_set@var{m}} instruction pattern
4972@item @samp{vec_set@var{m}}
4973Set given field in the vector value. Operand 0 is the vector to modify,
4974operand 1 is new value of field and operand 2 specify the field index.
4975
ff03930a
JJ
4976@cindex @code{vec_extract@var{m}@var{n}} instruction pattern
4977@item @samp{vec_extract@var{m}@var{n}}
ef1140a9 4978Extract given field from the vector value. Operand 1 is the vector, operand 2
ff03930a
JJ
4979specify field index and operand 0 place to store value into. The
4980@var{n} mode is the mode of the field or vector of fields that should be
4981extracted, should be either element mode of the vector mode @var{m}, or
4982a vector mode with the same element mode and smaller number of elements.
4983If @var{n} is a vector mode, the index is counted in units of that mode.
4984
4985@cindex @code{vec_init@var{m}@var{n}} instruction pattern
4986@item @samp{vec_init@var{m}@var{n}}
425a2bde 4987Initialize the vector to given values. Operand 0 is the vector to initialize
ff03930a
JJ
4988and operand 1 is parallel containing values for individual fields. The
4989@var{n} mode is the mode of the elements, should be either element mode of
4990the vector mode @var{m}, or a vector mode with the same element mode and
4991smaller number of elements.
ef1140a9 4992
be4c1d4a
RS
4993@cindex @code{vec_duplicate@var{m}} instruction pattern
4994@item @samp{vec_duplicate@var{m}}
4995Initialize vector output operand 0 so that each element has the value given
4996by scalar input operand 1. The vector has mode @var{m} and the scalar has
4997the mode appropriate for one element of @var{m}.
4998
4999This pattern only handles duplicates of non-constant inputs. Constant
5000vectors go through the @code{mov@var{m}} pattern instead.
5001
5002This pattern is not allowed to @code{FAIL}.
5003
9adab579
RS
5004@cindex @code{vec_series@var{m}} instruction pattern
5005@item @samp{vec_series@var{m}}
5006Initialize vector output operand 0 so that element @var{i} is equal to
5007operand 1 plus @var{i} times operand 2. In other words, create a linear
5008series whose base value is operand 1 and whose step is operand 2.
5009
5010The vector output has mode @var{m} and the scalar inputs have the mode
5011appropriate for one element of @var{m}. This pattern is not used for
5012floating-point vectors, in order to avoid having to specify the
5013rounding behavior for @var{i} > 1.
5014
5015This pattern is not allowed to @code{FAIL}.
5016
7cfb4d93
RS
5017@cindex @code{while_ult@var{m}@var{n}} instruction pattern
5018@item @code{while_ult@var{m}@var{n}}
5019Set operand 0 to a mask that is true while incrementing operand 1
5020gives a value that is less than operand 2. Operand 0 has mode @var{n}
5021and operands 1 and 2 are scalar integers of mode @var{m}.
5022The operation is equivalent to:
5023
5024@smallexample
5025operand0[0] = operand1 < operand2;
5026for (i = 1; i < GET_MODE_NUNITS (@var{n}); i++)
5027 operand0[i] = operand0[i - 1] && (operand1 + i < operand2);
5028@end smallexample
5029
12fb875f
IE
5030@cindex @code{vec_cmp@var{m}@var{n}} instruction pattern
5031@item @samp{vec_cmp@var{m}@var{n}}
5032Output a vector comparison. Operand 0 of mode @var{n} is the destination for
5033predicate in operand 1 which is a signed vector comparison with operands of
5034mode @var{m} in operands 2 and 3. Predicate is computed by element-wise
5035evaluation of the vector comparison with a truth value of all-ones and a false
5036value of all-zeros.
5037
5038@cindex @code{vec_cmpu@var{m}@var{n}} instruction pattern
5039@item @samp{vec_cmpu@var{m}@var{n}}
5040Similar to @code{vec_cmp@var{m}@var{n}} but perform unsigned vector comparison.
5041
96592eed
JJ
5042@cindex @code{vec_cmpeq@var{m}@var{n}} instruction pattern
5043@item @samp{vec_cmpeq@var{m}@var{n}}
5044Similar to @code{vec_cmp@var{m}@var{n}} but perform equality or non-equality
5045vector comparison only. If @code{vec_cmp@var{m}@var{n}}
5046or @code{vec_cmpu@var{m}@var{n}} instruction pattern is supported,
5047it will be preferred over @code{vec_cmpeq@var{m}@var{n}}, so there is
5048no need to define this instruction pattern if the others are supported.
5049
e9e1d143
RG
5050@cindex @code{vcond@var{m}@var{n}} instruction pattern
5051@item @samp{vcond@var{m}@var{n}}
5052Output a conditional vector move. Operand 0 is the destination to
5053receive a combination of operand 1 and operand 2, which are of mode @var{m},
12fb875f 5054dependent on the outcome of the predicate in operand 3 which is a signed
e9e1d143
RG
5055vector comparison with operands of mode @var{n} in operands 4 and 5. The
5056modes @var{m} and @var{n} should have the same size. Operand 0
5057will be set to the value @var{op1} & @var{msk} | @var{op2} & ~@var{msk}
5058where @var{msk} is computed by element-wise evaluation of the vector
5059comparison with a truth value of all-ones and a false value of all-zeros.
5060
12fb875f
IE
5061@cindex @code{vcondu@var{m}@var{n}} instruction pattern
5062@item @samp{vcondu@var{m}@var{n}}
5063Similar to @code{vcond@var{m}@var{n}} but performs unsigned vector
5064comparison.
5065
96592eed
JJ
5066@cindex @code{vcondeq@var{m}@var{n}} instruction pattern
5067@item @samp{vcondeq@var{m}@var{n}}
5068Similar to @code{vcond@var{m}@var{n}} but performs equality or
5069non-equality vector comparison only. If @code{vcond@var{m}@var{n}}
5070or @code{vcondu@var{m}@var{n}} instruction pattern is supported,
5071it will be preferred over @code{vcondeq@var{m}@var{n}}, so there is
5072no need to define this instruction pattern if the others are supported.
5073
12fb875f
IE
5074@cindex @code{vcond_mask_@var{m}@var{n}} instruction pattern
5075@item @samp{vcond_mask_@var{m}@var{n}}
5076Similar to @code{vcond@var{m}@var{n}} but operand 3 holds a pre-computed
5077result of vector comparison.
5078
5079@cindex @code{maskload@var{m}@var{n}} instruction pattern
5080@item @samp{maskload@var{m}@var{n}}
5081Perform a masked load of vector from memory operand 1 of mode @var{m}
5082into register operand 0. Mask is provided in register operand 2 of
5083mode @var{n}.
5084
a54a5997
RS
5085This pattern is not allowed to @code{FAIL}.
5086
12fb875f 5087@cindex @code{maskstore@var{m}@var{n}} instruction pattern
a54a5997 5088@item @samp{maskstore@var{m}@var{n}}
12fb875f
IE
5089Perform a masked store of vector from register operand 1 of mode @var{m}
5090into memory operand 0. Mask is provided in register operand 2 of
5091mode @var{n}.
5092
a54a5997
RS
5093This pattern is not allowed to @code{FAIL}.
5094
2205ed25
RH
5095@cindex @code{vec_perm@var{m}} instruction pattern
5096@item @samp{vec_perm@var{m}}
5097Output a (variable) vector permutation. Operand 0 is the destination
5098to receive elements from operand 1 and operand 2, which are of mode
5099@var{m}. Operand 3 is the @dfn{selector}. It is an integral mode
5100vector of the same width and number of elements as mode @var{m}.
5101
5102The input elements are numbered from 0 in operand 1 through
5103@math{2*@var{N}-1} in operand 2. The elements of the selector must
5104be computed modulo @math{2*@var{N}}. Note that if
5105@code{rtx_equal_p(operand1, operand2)}, this can be implemented
5106with just operand 1 and selector elements modulo @var{N}.
5107
d7943c8b
RH
5108In order to make things easy for a number of targets, if there is no
5109@samp{vec_perm} pattern for mode @var{m}, but there is for mode @var{q}
5110where @var{q} is a vector of @code{QImode} of the same width as @var{m},
5111the middle-end will lower the mode @var{m} @code{VEC_PERM_EXPR} to
5112mode @var{q}.
5113
f151c9e1
RS
5114See also @code{TARGET_VECTORIZER_VEC_PERM_CONST}, which performs
5115the analogous operation for constant selectors.
2205ed25 5116
759915ca
EC
5117@cindex @code{push@var{m}1} instruction pattern
5118@item @samp{push@var{m}1}
299c5111 5119Output a push instruction. Operand 0 is value to push. Used only when
38f4324c
JH
5120@code{PUSH_ROUNDING} is defined. For historical reason, this pattern may be
5121missing and in such case an @code{mov} expander is used instead, with a
6e9aac46 5122@code{MEM} expression forming the push operation. The @code{mov} expander
38f4324c
JH
5123method is deprecated.
5124
03dda8e3
RK
5125@cindex @code{add@var{m}3} instruction pattern
5126@item @samp{add@var{m}3}
5127Add operand 2 and operand 1, storing the result in operand 0. All operands
5128must have mode @var{m}. This can be used even on two-address machines, by
5129means of constraints requiring operands 1 and 0 to be the same location.
5130
0f996086
CF
5131@cindex @code{ssadd@var{m}3} instruction pattern
5132@cindex @code{usadd@var{m}3} instruction pattern
03dda8e3 5133@cindex @code{sub@var{m}3} instruction pattern
0f996086
CF
5134@cindex @code{sssub@var{m}3} instruction pattern
5135@cindex @code{ussub@var{m}3} instruction pattern
03dda8e3 5136@cindex @code{mul@var{m}3} instruction pattern
0f996086
CF
5137@cindex @code{ssmul@var{m}3} instruction pattern
5138@cindex @code{usmul@var{m}3} instruction pattern
03dda8e3 5139@cindex @code{div@var{m}3} instruction pattern
0f996086 5140@cindex @code{ssdiv@var{m}3} instruction pattern
03dda8e3 5141@cindex @code{udiv@var{m}3} instruction pattern
0f996086 5142@cindex @code{usdiv@var{m}3} instruction pattern
03dda8e3
RK
5143@cindex @code{mod@var{m}3} instruction pattern
5144@cindex @code{umod@var{m}3} instruction pattern
03dda8e3
RK
5145@cindex @code{umin@var{m}3} instruction pattern
5146@cindex @code{umax@var{m}3} instruction pattern
5147@cindex @code{and@var{m}3} instruction pattern
5148@cindex @code{ior@var{m}3} instruction pattern
5149@cindex @code{xor@var{m}3} instruction pattern
0f996086 5150@item @samp{ssadd@var{m}3}, @samp{usadd@var{m}3}
f457c50c
AS
5151@itemx @samp{sub@var{m}3}, @samp{sssub@var{m}3}, @samp{ussub@var{m}3}
5152@itemx @samp{mul@var{m}3}, @samp{ssmul@var{m}3}, @samp{usmul@var{m}3}
0f996086
CF
5153@itemx @samp{div@var{m}3}, @samp{ssdiv@var{m}3}
5154@itemx @samp{udiv@var{m}3}, @samp{usdiv@var{m}3}
7ae4d8d4
RH
5155@itemx @samp{mod@var{m}3}, @samp{umod@var{m}3}
5156@itemx @samp{umin@var{m}3}, @samp{umax@var{m}3}
03dda8e3
RK
5157@itemx @samp{and@var{m}3}, @samp{ior@var{m}3}, @samp{xor@var{m}3}
5158Similar, for other arithmetic operations.
7ae4d8d4 5159
481efdd9
EB
5160@cindex @code{addv@var{m}4} instruction pattern
5161@item @samp{addv@var{m}4}
5162Like @code{add@var{m}3} but takes a @code{code_label} as operand 3 and
5163emits code to jump to it if signed overflow occurs during the addition.
5164This pattern is used to implement the built-in functions performing
5165signed integer addition with overflow checking.
5166
5167@cindex @code{subv@var{m}4} instruction pattern
5168@cindex @code{mulv@var{m}4} instruction pattern
5169@item @samp{subv@var{m}4}, @samp{mulv@var{m}4}
5170Similar, for other signed arithmetic operations.
5171
cde9d596
RH
5172@cindex @code{uaddv@var{m}4} instruction pattern
5173@item @samp{uaddv@var{m}4}
5174Like @code{addv@var{m}4} but for unsigned addition. That is to
5175say, the operation is the same as signed addition but the jump
481efdd9
EB
5176is taken only on unsigned overflow.
5177
cde9d596
RH
5178@cindex @code{usubv@var{m}4} instruction pattern
5179@cindex @code{umulv@var{m}4} instruction pattern
5180@item @samp{usubv@var{m}4}, @samp{umulv@var{m}4}
5181Similar, for other unsigned arithmetic operations.
5182
481efdd9
EB
5183@cindex @code{addptr@var{m}3} instruction pattern
5184@item @samp{addptr@var{m}3}
5185Like @code{add@var{m}3} but is guaranteed to only be used for address
5186calculations. The expanded code is not allowed to clobber the
5187condition code. It only needs to be defined if @code{add@var{m}3}
5188sets the condition code. If adds used for address calculations and
5189normal adds are not compatible it is required to expand a distinct
5190pattern (e.g. using an unspec). The pattern is used by LRA to emit
5191address calculations. @code{add@var{m}3} is used if
5192@code{addptr@var{m}3} is not defined.
5193
1b1562a5
MM
5194@cindex @code{fma@var{m}4} instruction pattern
5195@item @samp{fma@var{m}4}
5196Multiply operand 2 and operand 1, then add operand 3, storing the
d6373302
KZ
5197result in operand 0 without doing an intermediate rounding step. All
5198operands must have mode @var{m}. This pattern is used to implement
5199the @code{fma}, @code{fmaf}, and @code{fmal} builtin functions from
5200the ISO C99 standard.
1b1562a5 5201
16949072
RG
5202@cindex @code{fms@var{m}4} instruction pattern
5203@item @samp{fms@var{m}4}
5204Like @code{fma@var{m}4}, except operand 3 subtracted from the
5205product instead of added to the product. This is represented
5206in the rtl as
5207
5208@smallexample
5209(fma:@var{m} @var{op1} @var{op2} (neg:@var{m} @var{op3}))
5210@end smallexample
5211
5212@cindex @code{fnma@var{m}4} instruction pattern
5213@item @samp{fnma@var{m}4}
5214Like @code{fma@var{m}4} except that the intermediate product
5215is negated before being added to operand 3. This is represented
5216in the rtl as
5217
5218@smallexample
5219(fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} @var{op3})
5220@end smallexample
5221
5222@cindex @code{fnms@var{m}4} instruction pattern
5223@item @samp{fnms@var{m}4}
5224Like @code{fms@var{m}4} except that the intermediate product
5225is negated before subtracting operand 3. This is represented
5226in the rtl as
5227
5228@smallexample
5229(fma:@var{m} (neg:@var{m} @var{op1}) @var{op2} (neg:@var{m} @var{op3}))
5230@end smallexample
5231
b71b019a
JH
5232@cindex @code{min@var{m}3} instruction pattern
5233@cindex @code{max@var{m}3} instruction pattern
7ae4d8d4
RH
5234@item @samp{smin@var{m}3}, @samp{smax@var{m}3}
5235Signed minimum and maximum operations. When used with floating point,
5236if both operands are zeros, or if either operand is @code{NaN}, then
5237it is unspecified which of the two operands is returned as the result.
03dda8e3 5238
ccb57bb0
DS
5239@cindex @code{fmin@var{m}3} instruction pattern
5240@cindex @code{fmax@var{m}3} instruction pattern
5241@item @samp{fmin@var{m}3}, @samp{fmax@var{m}3}
5242IEEE-conformant minimum and maximum operations. If one operand is a quiet
5243@code{NaN}, then the other operand is returned. If both operands are quiet
5244@code{NaN}, then a quiet @code{NaN} is returned. In the case when gcc supports
18ea359a 5245signaling @code{NaN} (-fsignaling-nans) an invalid floating point exception is
ccb57bb0
DS
5246raised and a quiet @code{NaN} is returned.
5247
a54a5997
RS
5248All operands have mode @var{m}, which is a scalar or vector
5249floating-point mode. These patterns are not allowed to @code{FAIL}.
5250
d43a252e
AL
5251@cindex @code{reduc_smin_scal_@var{m}} instruction pattern
5252@cindex @code{reduc_smax_scal_@var{m}} instruction pattern
5253@item @samp{reduc_smin_scal_@var{m}}, @samp{reduc_smax_scal_@var{m}}
5254Find the signed minimum/maximum of the elements of a vector. The vector is
5255operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5256the elements of the input vector.
5257
5258@cindex @code{reduc_umin_scal_@var{m}} instruction pattern
5259@cindex @code{reduc_umax_scal_@var{m}} instruction pattern
5260@item @samp{reduc_umin_scal_@var{m}}, @samp{reduc_umax_scal_@var{m}}
5261Find the unsigned minimum/maximum of the elements of a vector. The vector is
5262operand 1, and operand 0 is the scalar result, with mode equal to the mode of
5263the elements of the input vector.
5264
5265@cindex @code{reduc_plus_scal_@var{m}} instruction pattern
5266@item @samp{reduc_plus_scal_@var{m}}
5267Compute the sum of the elements of a vector. The vector is operand 1, and
5268operand 0 is the scalar result, with mode equal to the mode of the elements of
5269the input vector.
61abee65 5270
898f07b0
RS
5271@cindex @code{reduc_and_scal_@var{m}} instruction pattern
5272@item @samp{reduc_and_scal_@var{m}}
5273@cindex @code{reduc_ior_scal_@var{m}} instruction pattern
5274@itemx @samp{reduc_ior_scal_@var{m}}
5275@cindex @code{reduc_xor_scal_@var{m}} instruction pattern
5276@itemx @samp{reduc_xor_scal_@var{m}}
5277Compute the bitwise @code{AND}/@code{IOR}/@code{XOR} reduction of the elements
5278of a vector of mode @var{m}. Operand 1 is the vector input and operand 0
5279is the scalar result. The mode of the scalar result is the same as one
5280element of @var{m}.
5281
bfe1bb57
RS
5282@cindex @code{extract_last_@var{m}} instruction pattern
5283@item @code{extract_last_@var{m}}
5284Find the last set bit in mask operand 1 and extract the associated element
5285of vector operand 2. Store the result in scalar operand 0. Operand 2
5286has vector mode @var{m} while operand 0 has the mode appropriate for one
5287element of @var{m}. Operand 1 has the usual mask mode for vectors of mode
5288@var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5289
bb6c2b68
RS
5290@cindex @code{fold_extract_last_@var{m}} instruction pattern
5291@item @code{fold_extract_last_@var{m}}
5292If any bits of mask operand 2 are set, find the last set bit, extract
5293the associated element from vector operand 3, and store the result
5294in operand 0. Store operand 1 in operand 0 otherwise. Operand 3
5295has mode @var{m} and operands 0 and 1 have the mode appropriate for
5296one element of @var{m}. Operand 2 has the usual mask mode for vectors
5297of mode @var{m}; see @code{TARGET_VECTORIZE_GET_MASK_MODE}.
5298
b781a135
RS
5299@cindex @code{fold_left_plus_@var{m}} instruction pattern
5300@item @code{fold_left_plus_@var{m}}
5301Take scalar operand 1 and successively add each element from vector
5302operand 2. Store the result in scalar operand 0. The vector has
5303mode @var{m} and the scalars have the mode appropriate for one
5304element of @var{m}. The operation is strictly in-order: there is
5305no reassociation.
5306
20f06221
DN
5307@cindex @code{sdot_prod@var{m}} instruction pattern
5308@item @samp{sdot_prod@var{m}}
5309@cindex @code{udot_prod@var{m}} instruction pattern
544aee0d 5310@itemx @samp{udot_prod@var{m}}
ff2ce160
MS
5311Compute the sum of the products of two signed/unsigned elements.
5312Operand 1 and operand 2 are of the same mode. Their product, which is of a
5313wider mode, is computed and added to operand 3. Operand 3 is of a mode equal or
20f06221 5314wider than the mode of the product. The result is placed in operand 0, which
ff2ce160 5315is of the same mode as operand 3.
20f06221 5316
79d652a5
CH
5317@cindex @code{ssad@var{m}} instruction pattern
5318@item @samp{ssad@var{m}}
5319@cindex @code{usad@var{m}} instruction pattern
5320@item @samp{usad@var{m}}
5321Compute the sum of absolute differences of two signed/unsigned elements.
5322Operand 1 and operand 2 are of the same mode. Their absolute difference, which
5323is of a wider mode, is computed and added to operand 3. Operand 3 is of a mode
5324equal or wider than the mode of the absolute difference. The result is placed
5325in operand 0, which is of the same mode as operand 3.
5326
97532d1a
MC
5327@cindex @code{widen_ssum@var{m3}} instruction pattern
5328@item @samp{widen_ssum@var{m3}}
5329@cindex @code{widen_usum@var{m3}} instruction pattern
5330@itemx @samp{widen_usum@var{m3}}
ff2ce160 5331Operands 0 and 2 are of the same mode, which is wider than the mode of
20f06221
DN
5332operand 1. Add operand 1 to operand 2 and place the widened result in
5333operand 0. (This is used express accumulation of elements into an accumulator
5334of a wider mode.)
5335
f1739b48
RS
5336@cindex @code{vec_shl_insert_@var{m}} instruction pattern
5337@item @samp{vec_shl_insert_@var{m}}
5338Shift the elements in vector input operand 1 left one element (i.e.
5339away from element 0) and fill the vacated element 0 with the scalar
5340in operand 2. Store the result in vector output operand 0. Operands
53410 and 1 have mode @var{m} and operand 2 has the mode appropriate for
5342one element of @var{m}.
5343
61abee65 5344@cindex @code{vec_shr_@var{m}} instruction pattern
e29dfbf0 5345@item @samp{vec_shr_@var{m}}
729ff76e 5346Whole vector right shift in bits, i.e. towards element 0.
61abee65 5347Operand 1 is a vector to be shifted.
759915ca 5348Operand 2 is an integer shift amount in bits.
61abee65
DN
5349Operand 0 is where the resulting shifted vector is stored.
5350The output and input vectors should have the same modes.
5351
8115817b
UB
5352@cindex @code{vec_pack_trunc_@var{m}} instruction pattern
5353@item @samp{vec_pack_trunc_@var{m}}
5354Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5355are vectors of the same mode having N integral or floating point elements
0ee2ea09 5356of size S@. Operand 0 is the resulting vector in which 2*N elements of
8115817b
UB
5357size N/2 are concatenated after narrowing them down using truncation.
5358
89d67cca
DN
5359@cindex @code{vec_pack_ssat_@var{m}} instruction pattern
5360@cindex @code{vec_pack_usat_@var{m}} instruction pattern
8115817b
UB
5361@item @samp{vec_pack_ssat_@var{m}}, @samp{vec_pack_usat_@var{m}}
5362Narrow (demote) and merge the elements of two vectors. Operands 1 and 2
5363are vectors of the same mode having N integral elements of size S.
89d67cca 5364Operand 0 is the resulting vector in which the elements of the two input
8115817b
UB
5365vectors are concatenated after narrowing them down using signed/unsigned
5366saturating arithmetic.
89d67cca 5367
d9987fb4
UB
5368@cindex @code{vec_pack_sfix_trunc_@var{m}} instruction pattern
5369@cindex @code{vec_pack_ufix_trunc_@var{m}} instruction pattern
5370@item @samp{vec_pack_sfix_trunc_@var{m}}, @samp{vec_pack_ufix_trunc_@var{m}}
5371Narrow, convert to signed/unsigned integral type and merge the elements
5372of two vectors. Operands 1 and 2 are vectors of the same mode having N
0ee2ea09 5373floating point elements of size S@. Operand 0 is the resulting vector
d9987fb4
UB
5374in which 2*N elements of size N/2 are concatenated.
5375
1bda738b
JJ
5376@cindex @code{vec_packs_float_@var{m}} instruction pattern
5377@cindex @code{vec_packu_float_@var{m}} instruction pattern
5378@item @samp{vec_packs_float_@var{m}}, @samp{vec_packu_float_@var{m}}
5379Narrow, convert to floating point type and merge the elements
5380of two vectors. Operands 1 and 2 are vectors of the same mode having N
5381signed/unsigned integral elements of size S@. Operand 0 is the resulting vector
5382in which 2*N elements of size N/2 are concatenated.
5383
89d67cca
DN
5384@cindex @code{vec_unpacks_hi_@var{m}} instruction pattern
5385@cindex @code{vec_unpacks_lo_@var{m}} instruction pattern
8115817b
UB
5386@item @samp{vec_unpacks_hi_@var{m}}, @samp{vec_unpacks_lo_@var{m}}
5387Extract and widen (promote) the high/low part of a vector of signed
5388integral or floating point elements. The input vector (operand 1) has N
0ee2ea09 5389elements of size S@. Widen (promote) the high/low elements of the vector
8115817b
UB
5390using signed or floating point extension and place the resulting N/2
5391values of size 2*S in the output vector (operand 0).
5392
89d67cca
DN
5393@cindex @code{vec_unpacku_hi_@var{m}} instruction pattern
5394@cindex @code{vec_unpacku_lo_@var{m}} instruction pattern
8115817b
UB
5395@item @samp{vec_unpacku_hi_@var{m}}, @samp{vec_unpacku_lo_@var{m}}
5396Extract and widen (promote) the high/low part of a vector of unsigned
5397integral elements. The input vector (operand 1) has N elements of size S.
5398Widen (promote) the high/low elements of the vector using zero extension and
5399place the resulting N/2 values of size 2*S in the output vector (operand 0).
89d67cca 5400
d9987fb4
UB
5401@cindex @code{vec_unpacks_float_hi_@var{m}} instruction pattern
5402@cindex @code{vec_unpacks_float_lo_@var{m}} instruction pattern
5403@cindex @code{vec_unpacku_float_hi_@var{m}} instruction pattern
5404@cindex @code{vec_unpacku_float_lo_@var{m}} instruction pattern
5405@item @samp{vec_unpacks_float_hi_@var{m}}, @samp{vec_unpacks_float_lo_@var{m}}
5406@itemx @samp{vec_unpacku_float_hi_@var{m}}, @samp{vec_unpacku_float_lo_@var{m}}
5407Extract, convert to floating point type and widen the high/low part of a
5408vector of signed/unsigned integral elements. The input vector (operand 1)
0ee2ea09 5409has N elements of size S@. Convert the high/low elements of the vector using
d9987fb4
UB
5410floating point conversion and place the resulting N/2 values of size 2*S in
5411the output vector (operand 0).
5412
1bda738b
JJ
5413@cindex @code{vec_unpack_sfix_trunc_hi_@var{m}} instruction pattern
5414@cindex @code{vec_unpack_sfix_trunc_lo_@var{m}} instruction pattern
5415@cindex @code{vec_unpack_ufix_trunc_hi_@var{m}} instruction pattern
5416@cindex @code{vec_unpack_ufix_trunc_lo_@var{m}} instruction pattern
5417@item @samp{vec_unpack_sfix_trunc_hi_@var{m}},
5418@itemx @samp{vec_unpack_sfix_trunc_lo_@var{m}}
5419@itemx @samp{vec_unpack_ufix_trunc_hi_@var{m}}
5420@itemx @samp{vec_unpack_ufix_trunc_lo_@var{m}}
5421Extract, convert to signed/unsigned integer type and widen the high/low part of a
5422vector of floating point elements. The input vector (operand 1)
5423has N elements of size S@. Convert the high/low elements of the vector
5424to integers and place the resulting N/2 values of size 2*S in
5425the output vector (operand 0).
5426
89d67cca 5427@cindex @code{vec_widen_umult_hi_@var{m}} instruction pattern
3f30a9a6 5428@cindex @code{vec_widen_umult_lo_@var{m}} instruction pattern
89d67cca
DN
5429@cindex @code{vec_widen_smult_hi_@var{m}} instruction pattern
5430@cindex @code{vec_widen_smult_lo_@var{m}} instruction pattern
3f30a9a6
RH
5431@cindex @code{vec_widen_umult_even_@var{m}} instruction pattern
5432@cindex @code{vec_widen_umult_odd_@var{m}} instruction pattern
5433@cindex @code{vec_widen_smult_even_@var{m}} instruction pattern
5434@cindex @code{vec_widen_smult_odd_@var{m}} instruction pattern
d9987fb4
UB
5435@item @samp{vec_widen_umult_hi_@var{m}}, @samp{vec_widen_umult_lo_@var{m}}
5436@itemx @samp{vec_widen_smult_hi_@var{m}}, @samp{vec_widen_smult_lo_@var{m}}
3f30a9a6
RH
5437@itemx @samp{vec_widen_umult_even_@var{m}}, @samp{vec_widen_umult_odd_@var{m}}
5438@itemx @samp{vec_widen_smult_even_@var{m}}, @samp{vec_widen_smult_odd_@var{m}}
8115817b 5439Signed/Unsigned widening multiplication. The two inputs (operands 1 and 2)
0ee2ea09 5440are vectors with N signed/unsigned elements of size S@. Multiply the high/low
3f30a9a6 5441or even/odd elements of the two vectors, and put the N/2 products of size 2*S
4a271b7e
BM
5442in the output vector (operand 0). A target shouldn't implement even/odd pattern
5443pair if it is less efficient than lo/hi one.
89d67cca 5444
36ba4aae
IR
5445@cindex @code{vec_widen_ushiftl_hi_@var{m}} instruction pattern
5446@cindex @code{vec_widen_ushiftl_lo_@var{m}} instruction pattern
5447@cindex @code{vec_widen_sshiftl_hi_@var{m}} instruction pattern
5448@cindex @code{vec_widen_sshiftl_lo_@var{m}} instruction pattern
5449@item @samp{vec_widen_ushiftl_hi_@var{m}}, @samp{vec_widen_ushiftl_lo_@var{m}}
5450@itemx @samp{vec_widen_sshiftl_hi_@var{m}}, @samp{vec_widen_sshiftl_lo_@var{m}}
5451Signed/Unsigned widening shift left. The first input (operand 1) is a vector
5452with N signed/unsigned elements of size S@. Operand 2 is a constant. Shift
5453the high/low elements of operand 1, and put the N/2 results of size 2*S in the
5454output vector (operand 0).
5455
03dda8e3
RK
5456@cindex @code{mulhisi3} instruction pattern
5457@item @samp{mulhisi3}
5458Multiply operands 1 and 2, which have mode @code{HImode}, and store
5459a @code{SImode} product in operand 0.
5460
5461@cindex @code{mulqihi3} instruction pattern
5462@cindex @code{mulsidi3} instruction pattern
5463@item @samp{mulqihi3}, @samp{mulsidi3}
5464Similar widening-multiplication instructions of other widths.
5465
5466@cindex @code{umulqihi3} instruction pattern
5467@cindex @code{umulhisi3} instruction pattern
5468@cindex @code{umulsidi3} instruction pattern
5469@item @samp{umulqihi3}, @samp{umulhisi3}, @samp{umulsidi3}
5470Similar widening-multiplication instructions that do unsigned
5471multiplication.
5472
8b44057d
BS
5473@cindex @code{usmulqihi3} instruction pattern
5474@cindex @code{usmulhisi3} instruction pattern
5475@cindex @code{usmulsidi3} instruction pattern
5476@item @samp{usmulqihi3}, @samp{usmulhisi3}, @samp{usmulsidi3}
5477Similar widening-multiplication instructions that interpret the first
5478operand as unsigned and the second operand as signed, then do a signed
5479multiplication.
5480
03dda8e3 5481@cindex @code{smul@var{m}3_highpart} instruction pattern
759c58af 5482@item @samp{smul@var{m}3_highpart}
03dda8e3
RK
5483Perform a signed multiplication of operands 1 and 2, which have mode
5484@var{m}, and store the most significant half of the product in operand 0.
5485The least significant half of the product is discarded.
5486
5487@cindex @code{umul@var{m}3_highpart} instruction pattern
5488@item @samp{umul@var{m}3_highpart}
5489Similar, but the multiplication is unsigned.
5490
7f9844ca
RS
5491@cindex @code{madd@var{m}@var{n}4} instruction pattern
5492@item @samp{madd@var{m}@var{n}4}
5493Multiply operands 1 and 2, sign-extend them to mode @var{n}, add
5494operand 3, and store the result in operand 0. Operands 1 and 2
5495have mode @var{m} and operands 0 and 3 have mode @var{n}.
0f996086 5496Both modes must be integer or fixed-point modes and @var{n} must be twice
7f9844ca
RS
5497the size of @var{m}.
5498
5499In other words, @code{madd@var{m}@var{n}4} is like
5500@code{mul@var{m}@var{n}3} except that it also adds operand 3.
5501
5502These instructions are not allowed to @code{FAIL}.
5503
5504@cindex @code{umadd@var{m}@var{n}4} instruction pattern
5505@item @samp{umadd@var{m}@var{n}4}
5506Like @code{madd@var{m}@var{n}4}, but zero-extend the multiplication
5507operands instead of sign-extending them.
5508
0f996086
CF
5509@cindex @code{ssmadd@var{m}@var{n}4} instruction pattern
5510@item @samp{ssmadd@var{m}@var{n}4}
5511Like @code{madd@var{m}@var{n}4}, but all involved operations must be
5512signed-saturating.
5513
5514@cindex @code{usmadd@var{m}@var{n}4} instruction pattern
5515@item @samp{usmadd@var{m}@var{n}4}
5516Like @code{umadd@var{m}@var{n}4}, but all involved operations must be
5517unsigned-saturating.
5518
14661f36
CF
5519@cindex @code{msub@var{m}@var{n}4} instruction pattern
5520@item @samp{msub@var{m}@var{n}4}
5521Multiply operands 1 and 2, sign-extend them to mode @var{n}, subtract the
5522result from operand 3, and store the result in operand 0. Operands 1 and 2
5523have mode @var{m} and operands 0 and 3 have mode @var{n}.
0f996086 5524Both modes must be integer or fixed-point modes and @var{n} must be twice
14661f36
CF
5525the size of @var{m}.
5526
5527In other words, @code{msub@var{m}@var{n}4} is like
5528@code{mul@var{m}@var{n}3} except that it also subtracts the result
5529from operand 3.
5530
5531These instructions are not allowed to @code{FAIL}.
5532
5533@cindex @code{umsub@var{m}@var{n}4} instruction pattern
5534@item @samp{umsub@var{m}@var{n}4}
5535Like @code{msub@var{m}@var{n}4}, but zero-extend the multiplication
5536operands instead of sign-extending them.
5537
0f996086
CF
5538@cindex @code{ssmsub@var{m}@var{n}4} instruction pattern
5539@item @samp{ssmsub@var{m}@var{n}4}
5540Like @code{msub@var{m}@var{n}4}, but all involved operations must be
5541signed-saturating.
5542
5543@cindex @code{usmsub@var{m}@var{n}4} instruction pattern
5544@item @samp{usmsub@var{m}@var{n}4}
5545Like @code{umsub@var{m}@var{n}4}, but all involved operations must be
5546unsigned-saturating.
5547
03dda8e3
RK
5548@cindex @code{divmod@var{m}4} instruction pattern
5549@item @samp{divmod@var{m}4}
5550Signed division that produces both a quotient and a remainder.
5551Operand 1 is divided by operand 2 to produce a quotient stored
5552in operand 0 and a remainder stored in operand 3.
5553
5554For machines with an instruction that produces both a quotient and a
5555remainder, provide a pattern for @samp{divmod@var{m}4} but do not
5556provide patterns for @samp{div@var{m}3} and @samp{mod@var{m}3}. This
5557allows optimization in the relatively common case when both the quotient
5558and remainder are computed.
5559
5560If an instruction that just produces a quotient or just a remainder
5561exists and is more efficient than the instruction that produces both,
5562write the output routine of @samp{divmod@var{m}4} to call
5563@code{find_reg_note} and look for a @code{REG_UNUSED} note on the
5564quotient or remainder and generate the appropriate instruction.
5565
5566@cindex @code{udivmod@var{m}4} instruction pattern
5567@item @samp{udivmod@var{m}4}
5568Similar, but does unsigned division.
5569
273a2526 5570@anchor{shift patterns}
03dda8e3 5571@cindex @code{ashl@var{m}3} instruction pattern
0f996086
CF
5572@cindex @code{ssashl@var{m}3} instruction pattern
5573@cindex @code{usashl@var{m}3} instruction pattern
5574@item @samp{ashl@var{m}3}, @samp{ssashl@var{m}3}, @samp{usashl@var{m}3}
03dda8e3
RK
5575Arithmetic-shift operand 1 left by a number of bits specified by operand
55762, and store the result in operand 0. Here @var{m} is the mode of
5577operand 0 and operand 1; operand 2's mode is specified by the
5578instruction pattern, and the compiler will convert the operand to that
78250306
JJ
5579mode before generating the instruction. The shift or rotate expander
5580or instruction pattern should explicitly specify the mode of the operand 2,
5581it should never be @code{VOIDmode}. The meaning of out-of-range shift
273a2526 5582counts can optionally be specified by @code{TARGET_SHIFT_TRUNCATION_MASK}.
71d46ca5 5583@xref{TARGET_SHIFT_TRUNCATION_MASK}. Operand 2 is always a scalar type.
03dda8e3
RK
5584
5585@cindex @code{ashr@var{m}3} instruction pattern
5586@cindex @code{lshr@var{m}3} instruction pattern
5587@cindex @code{rotl@var{m}3} instruction pattern
5588@cindex @code{rotr@var{m}3} instruction pattern
5589@item @samp{ashr@var{m}3}, @samp{lshr@var{m}3}, @samp{rotl@var{m}3}, @samp{rotr@var{m}3}
5590Other shift and rotate instructions, analogous to the
71d46ca5
MM
5591@code{ashl@var{m}3} instructions. Operand 2 is always a scalar type.
5592
5593@cindex @code{vashl@var{m}3} instruction pattern
5594@cindex @code{vashr@var{m}3} instruction pattern
5595@cindex @code{vlshr@var{m}3} instruction pattern
5596@cindex @code{vrotl@var{m}3} instruction pattern
5597@cindex @code{vrotr@var{m}3} instruction pattern
5598@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}
5599Vector shift and rotate instructions that take vectors as operand 2
5600instead of a scalar type.
03dda8e3 5601
0267732b
RS
5602@cindex @code{avg@var{m}3_floor} instruction pattern
5603@cindex @code{uavg@var{m}3_floor} instruction pattern
5604@item @samp{avg@var{m}3_floor}
5605@itemx @samp{uavg@var{m}3_floor}
5606Signed and unsigned average instructions. These instructions add
5607operands 1 and 2 without truncation, divide the result by 2,
5608round towards -Inf, and store the result in operand 0. This is
5609equivalent to the C code:
5610@smallexample
5611narrow op0, op1, op2;
5612@dots{}
5613op0 = (narrow) (((wide) op1 + (wide) op2) >> 1);
5614@end smallexample
5615where the sign of @samp{narrow} determines whether this is a signed
5616or unsigned operation.
5617
5618@cindex @code{avg@var{m}3_ceil} instruction pattern
5619@cindex @code{uavg@var{m}3_ceil} instruction pattern
5620@item @samp{avg@var{m}3_ceil}
5621@itemx @samp{uavg@var{m}3_ceil}
5622Like @samp{avg@var{m}3_floor} and @samp{uavg@var{m}3_floor}, but round
5623towards +Inf. This is equivalent to the C code:
5624@smallexample
5625narrow op0, op1, op2;
5626@dots{}
5627op0 = (narrow) (((wide) op1 + (wide) op2 + 1) >> 1);
5628@end smallexample
5629
ac868f29
EB
5630@cindex @code{bswap@var{m}2} instruction pattern
5631@item @samp{bswap@var{m}2}
5632Reverse the order of bytes of operand 1 and store the result in operand 0.
5633
03dda8e3 5634@cindex @code{neg@var{m}2} instruction pattern
0f996086
CF
5635@cindex @code{ssneg@var{m}2} instruction pattern
5636@cindex @code{usneg@var{m}2} instruction pattern
5637@item @samp{neg@var{m}2}, @samp{ssneg@var{m}2}, @samp{usneg@var{m}2}
03dda8e3
RK
5638Negate operand 1 and store the result in operand 0.
5639
481efdd9
EB
5640@cindex @code{negv@var{m}3} instruction pattern
5641@item @samp{negv@var{m}3}
5642Like @code{neg@var{m}2} but takes a @code{code_label} as operand 2 and
5643emits code to jump to it if signed overflow occurs during the negation.
5644
03dda8e3
RK
5645@cindex @code{abs@var{m}2} instruction pattern
5646@item @samp{abs@var{m}2}
5647Store the absolute value of operand 1 into operand 0.
5648
5649@cindex @code{sqrt@var{m}2} instruction pattern
5650@item @samp{sqrt@var{m}2}
a54a5997
RS
5651Store the square root of operand 1 into operand 0. Both operands have
5652mode @var{m}, which is a scalar or vector floating-point mode.
03dda8e3 5653
a54a5997 5654This pattern is not allowed to @code{FAIL}.
e7b489c8 5655
ee62a5a6
RS
5656@cindex @code{rsqrt@var{m}2} instruction pattern
5657@item @samp{rsqrt@var{m}2}
5658Store the reciprocal of the square root of operand 1 into operand 0.
a54a5997
RS
5659Both operands have mode @var{m}, which is a scalar or vector
5660floating-point mode.
5661
ee62a5a6
RS
5662On most architectures this pattern is only approximate, so either
5663its C condition or the @code{TARGET_OPTAB_SUPPORTED_P} hook should
5664check for the appropriate math flags. (Using the C condition is
5665more direct, but using @code{TARGET_OPTAB_SUPPORTED_P} can be useful
5666if a target-specific built-in also uses the @samp{rsqrt@var{m}2}
5667pattern.)
5668
5669This pattern is not allowed to @code{FAIL}.
5670
17b98269
UB
5671@cindex @code{fmod@var{m}3} instruction pattern
5672@item @samp{fmod@var{m}3}
5673Store the remainder of dividing operand 1 by operand 2 into
a54a5997
RS
5674operand 0, rounded towards zero to an integer. All operands have
5675mode @var{m}, which is a scalar or vector floating-point mode.
17b98269 5676
a54a5997 5677This pattern is not allowed to @code{FAIL}.
17b98269
UB
5678
5679@cindex @code{remainder@var{m}3} instruction pattern
5680@item @samp{remainder@var{m}3}
5681Store the remainder of dividing operand 1 by operand 2 into
a54a5997
RS
5682operand 0, rounded to the nearest integer. All operands have
5683mode @var{m}, which is a scalar or vector floating-point mode.
5684
5685This pattern is not allowed to @code{FAIL}.
5686
5687@cindex @code{scalb@var{m}3} instruction pattern
5688@item @samp{scalb@var{m}3}
5689Raise @code{FLT_RADIX} to the power of operand 2, multiply it by
5690operand 1, and store the result in operand 0. All operands have
5691mode @var{m}, which is a scalar or vector floating-point mode.
17b98269 5692
a54a5997
RS
5693This pattern is not allowed to @code{FAIL}.
5694
5695@cindex @code{ldexp@var{m}3} instruction pattern
5696@item @samp{ldexp@var{m}3}
5697Raise 2 to the power of operand 2, multiply it by operand 1, and store
5698the result in operand 0. Operands 0 and 1 have mode @var{m}, which is
5699a scalar or vector floating-point mode. Operand 2's mode has
5700the same number of elements as @var{m} and each element is wide
5701enough to store an @code{int}. The integers are signed.
5702
5703This pattern is not allowed to @code{FAIL}.
17b98269 5704
e7b489c8
RS
5705@cindex @code{cos@var{m}2} instruction pattern
5706@item @samp{cos@var{m}2}
a54a5997
RS
5707Store the cosine of operand 1 into operand 0. Both operands have
5708mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5709
a54a5997 5710This pattern is not allowed to @code{FAIL}.
e7b489c8
RS
5711
5712@cindex @code{sin@var{m}2} instruction pattern
5713@item @samp{sin@var{m}2}
a54a5997
RS
5714Store the sine of operand 1 into operand 0. Both operands have
5715mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5716
a54a5997 5717This pattern is not allowed to @code{FAIL}.
e7b489c8 5718
6d1f6aff
OE
5719@cindex @code{sincos@var{m}3} instruction pattern
5720@item @samp{sincos@var{m}3}
6ba9e401 5721Store the cosine of operand 2 into operand 0 and the sine of
a54a5997
RS
5722operand 2 into operand 1. All operands have mode @var{m},
5723which is a scalar or vector floating-point mode.
6d1f6aff 5724
6d1f6aff
OE
5725Targets that can calculate the sine and cosine simultaneously can
5726implement this pattern as opposed to implementing individual
5727@code{sin@var{m}2} and @code{cos@var{m}2} patterns. The @code{sin}
5728and @code{cos} built-in functions will then be expanded to the
5729@code{sincos@var{m}3} pattern, with one of the output values
5730left unused.
5731
a54a5997
RS
5732@cindex @code{tan@var{m}2} instruction pattern
5733@item @samp{tan@var{m}2}
5734Store the tangent of operand 1 into operand 0. Both operands have
5735mode @var{m}, which is a scalar or vector floating-point mode.
5736
5737This pattern is not allowed to @code{FAIL}.
5738
5739@cindex @code{asin@var{m}2} instruction pattern
5740@item @samp{asin@var{m}2}
5741Store the arc sine of operand 1 into operand 0. Both operands have
5742mode @var{m}, which is a scalar or vector floating-point mode.
5743
5744This pattern is not allowed to @code{FAIL}.
5745
5746@cindex @code{acos@var{m}2} instruction pattern
5747@item @samp{acos@var{m}2}
5748Store the arc cosine of operand 1 into operand 0. Both operands have
5749mode @var{m}, which is a scalar or vector floating-point mode.
5750
5751This pattern is not allowed to @code{FAIL}.
5752
5753@cindex @code{atan@var{m}2} instruction pattern
5754@item @samp{atan@var{m}2}
5755Store the arc tangent of operand 1 into operand 0. Both operands have
5756mode @var{m}, which is a scalar or vector floating-point mode.
5757
5758This pattern is not allowed to @code{FAIL}.
5759
e7b489c8
RS
5760@cindex @code{exp@var{m}2} instruction pattern
5761@item @samp{exp@var{m}2}
a54a5997
RS
5762Raise e (the base of natural logarithms) to the power of operand 1
5763and store the result in operand 0. Both operands have mode @var{m},
5764which is a scalar or vector floating-point mode.
5765
5766This pattern is not allowed to @code{FAIL}.
5767
5768@cindex @code{expm1@var{m}2} instruction pattern
5769@item @samp{expm1@var{m}2}
5770Raise e (the base of natural logarithms) to the power of operand 1,
5771subtract 1, and store the result in operand 0. Both operands have
5772mode @var{m}, which is a scalar or vector floating-point mode.
5773
5774For inputs close to zero, the pattern is expected to be more
5775accurate than a separate @code{exp@var{m}2} and @code{sub@var{m}3}
5776would be.
5777
5778This pattern is not allowed to @code{FAIL}.
5779
5780@cindex @code{exp10@var{m}2} instruction pattern
5781@item @samp{exp10@var{m}2}
5782Raise 10 to the power of operand 1 and store the result in operand 0.
5783Both operands have mode @var{m}, which is a scalar or vector
5784floating-point mode.
5785
5786This pattern is not allowed to @code{FAIL}.
5787
5788@cindex @code{exp2@var{m}2} instruction pattern
5789@item @samp{exp2@var{m}2}
5790Raise 2 to the power of operand 1 and store the result in operand 0.
5791Both operands have mode @var{m}, which is a scalar or vector
5792floating-point mode.
e7b489c8 5793
a54a5997 5794This pattern is not allowed to @code{FAIL}.
e7b489c8
RS
5795
5796@cindex @code{log@var{m}2} instruction pattern
5797@item @samp{log@var{m}2}
a54a5997
RS
5798Store the natural logarithm of operand 1 into operand 0. Both operands
5799have mode @var{m}, which is a scalar or vector floating-point mode.
5800
5801This pattern is not allowed to @code{FAIL}.
5802
5803@cindex @code{log1p@var{m}2} instruction pattern
5804@item @samp{log1p@var{m}2}
5805Add 1 to operand 1, compute the natural logarithm, and store
5806the result in operand 0. Both operands have mode @var{m}, which is
5807a scalar or vector floating-point mode.
5808
5809For inputs close to zero, the pattern is expected to be more
5810accurate than a separate @code{add@var{m}3} and @code{log@var{m}2}
5811would be.
5812
5813This pattern is not allowed to @code{FAIL}.
5814
5815@cindex @code{log10@var{m}2} instruction pattern
5816@item @samp{log10@var{m}2}
5817Store the base-10 logarithm of operand 1 into operand 0. Both operands
5818have mode @var{m}, which is a scalar or vector floating-point mode.
5819
5820This pattern is not allowed to @code{FAIL}.
5821
5822@cindex @code{log2@var{m}2} instruction pattern
5823@item @samp{log2@var{m}2}
5824Store the base-2 logarithm of operand 1 into operand 0. Both operands
5825have mode @var{m}, which is a scalar or vector floating-point mode.
e7b489c8 5826
a54a5997
RS
5827This pattern is not allowed to @code{FAIL}.
5828
5829@cindex @code{logb@var{m}2} instruction pattern
5830@item @samp{logb@var{m}2}
5831Store the base-@code{FLT_RADIX} logarithm of operand 1 into operand 0.
5832Both operands have mode @var{m}, which is a scalar or vector
5833floating-point mode.
5834
5835This pattern is not allowed to @code{FAIL}.
5836
5837@cindex @code{significand@var{m}2} instruction pattern
5838@item @samp{significand@var{m}2}
5839Store the significand of floating-point operand 1 in operand 0.
5840Both operands have mode @var{m}, which is a scalar or vector
5841floating-point mode.
5842
5843This pattern is not allowed to @code{FAIL}.
03dda8e3 5844
b5e01d4b
RS
5845@cindex @code{pow@var{m}3} instruction pattern
5846@item @samp{pow@var{m}3}
5847Store the value of operand 1 raised to the exponent operand 2
a54a5997
RS
5848into operand 0. All operands have mode @var{m}, which is a scalar
5849or vector floating-point mode.
b5e01d4b 5850
a54a5997 5851This pattern is not allowed to @code{FAIL}.
b5e01d4b
RS
5852
5853@cindex @code{atan2@var{m}3} instruction pattern
5854@item @samp{atan2@var{m}3}
5855Store the arc tangent (inverse tangent) of operand 1 divided by
5856operand 2 into operand 0, using the signs of both arguments to
a54a5997
RS
5857determine the quadrant of the result. All operands have mode
5858@var{m}, which is a scalar or vector floating-point mode.
b5e01d4b 5859
a54a5997 5860This pattern is not allowed to @code{FAIL}.
b5e01d4b 5861
4977bab6
ZW
5862@cindex @code{floor@var{m}2} instruction pattern
5863@item @samp{floor@var{m}2}
a54a5997
RS
5864Store the largest integral value not greater than operand 1 in operand 0.
5865Both operands have mode @var{m}, which is a scalar or vector
0d2f700f
JM
5866floating-point mode. If @option{-ffp-int-builtin-inexact} is in
5867effect, the ``inexact'' exception may be raised for noninteger
5868operands; otherwise, it may not.
4977bab6 5869
a54a5997 5870This pattern is not allowed to @code{FAIL}.
4977bab6 5871
10553f10
UB
5872@cindex @code{btrunc@var{m}2} instruction pattern
5873@item @samp{btrunc@var{m}2}
a54a5997
RS
5874Round operand 1 to an integer, towards zero, and store the result in
5875operand 0. Both operands have mode @var{m}, which is a scalar or
0d2f700f
JM
5876vector floating-point mode. If @option{-ffp-int-builtin-inexact} is
5877in effect, the ``inexact'' exception may be raised for noninteger
5878operands; otherwise, it may not.
4977bab6 5879
a54a5997 5880This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5881
5882@cindex @code{round@var{m}2} instruction pattern
5883@item @samp{round@var{m}2}
a54a5997
RS
5884Round operand 1 to the nearest integer, rounding away from zero in the
5885event of a tie, and store the result in operand 0. Both operands have
0d2f700f
JM
5886mode @var{m}, which is a scalar or vector floating-point mode. If
5887@option{-ffp-int-builtin-inexact} is in effect, the ``inexact''
5888exception may be raised for noninteger operands; otherwise, it may
5889not.
4977bab6 5890
a54a5997 5891This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5892
5893@cindex @code{ceil@var{m}2} instruction pattern
5894@item @samp{ceil@var{m}2}
a54a5997
RS
5895Store the smallest integral value not less than operand 1 in operand 0.
5896Both operands have mode @var{m}, which is a scalar or vector
0d2f700f
JM
5897floating-point mode. If @option{-ffp-int-builtin-inexact} is in
5898effect, the ``inexact'' exception may be raised for noninteger
5899operands; otherwise, it may not.
4977bab6 5900
a54a5997 5901This pattern is not allowed to @code{FAIL}.
4977bab6
ZW
5902
5903@cindex @code{nearbyint@var{m}2} instruction pattern
5904@item @samp{nearbyint@var{m}2}
a54a5997
RS
5905Round operand 1 to an integer, using the current rounding mode, and
5906store the result in operand 0. Do not raise an inexact condition when
5907the result is different from the argument. Both operands have mode
5908@var{m}, which is a scalar or vector floating-point mode.
4977bab6 5909
a54a5997 5910This pattern is not allowed to @code{FAIL}.
4977bab6 5911
10553f10
UB
5912@cindex @code{rint@var{m}2} instruction pattern
5913@item @samp{rint@var{m}2}
a54a5997
RS
5914Round operand 1 to an integer, using the current rounding mode, and
5915store the result in operand 0. Raise an inexact condition when
5916the result is different from the argument. Both operands have mode
5917@var{m}, which is a scalar or vector floating-point mode.
10553f10 5918
a54a5997 5919This pattern is not allowed to @code{FAIL}.
10553f10 5920
bb7f0423
RG
5921@cindex @code{lrint@var{m}@var{n}2}
5922@item @samp{lrint@var{m}@var{n}2}
5923Convert operand 1 (valid for floating point mode @var{m}) to fixed
5924point mode @var{n} as a signed number according to the current
5925rounding mode and store in operand 0 (which has mode @var{n}).
5926
4d81bf84 5927@cindex @code{lround@var{m}@var{n}2}
e0d4c0b3 5928@item @samp{lround@var{m}@var{n}2}
4d81bf84
RG
5929Convert operand 1 (valid for floating point mode @var{m}) to fixed
5930point mode @var{n} as a signed number rounding to nearest and away
5931from zero and store in operand 0 (which has mode @var{n}).
5932
c3a4177f 5933@cindex @code{lfloor@var{m}@var{n}2}
e0d4c0b3 5934@item @samp{lfloor@var{m}@var{n}2}
c3a4177f
RG
5935Convert operand 1 (valid for floating point mode @var{m}) to fixed
5936point mode @var{n} as a signed number rounding down and store in
5937operand 0 (which has mode @var{n}).
5938
5939@cindex @code{lceil@var{m}@var{n}2}
e0d4c0b3 5940@item @samp{lceil@var{m}@var{n}2}
c3a4177f
RG
5941Convert operand 1 (valid for floating point mode @var{m}) to fixed
5942point mode @var{n} as a signed number rounding up and store in
5943operand 0 (which has mode @var{n}).
5944
d35a40fc
DE
5945@cindex @code{copysign@var{m}3} instruction pattern
5946@item @samp{copysign@var{m}3}
5947Store a value with the magnitude of operand 1 and the sign of operand
a54a5997
RS
59482 into operand 0. All operands have mode @var{m}, which is a scalar or
5949vector floating-point mode.
d35a40fc 5950
a54a5997 5951This pattern is not allowed to @code{FAIL}.
d35a40fc 5952
03dda8e3
RK
5953@cindex @code{ffs@var{m}2} instruction pattern
5954@item @samp{ffs@var{m}2}
5955Store into operand 0 one plus the index of the least significant 1-bit
a54a5997 5956of operand 1. If operand 1 is zero, store zero.
03dda8e3 5957
a54a5997
RS
5958@var{m} is either a scalar or vector integer mode. When it is a scalar,
5959operand 1 has mode @var{m} but operand 0 can have whatever scalar
5960integer mode is suitable for the target. The compiler will insert
5961conversion instructions as necessary (typically to convert the result
5962to the same width as @code{int}). When @var{m} is a vector, both
5963operands must have mode @var{m}.
5964
5965This pattern is not allowed to @code{FAIL}.
03dda8e3 5966
e7a45277
KT
5967@cindex @code{clrsb@var{m}2} instruction pattern
5968@item @samp{clrsb@var{m}2}
5969Count leading redundant sign bits.
5970Store into operand 0 the number of redundant sign bits in operand 1, starting
5971at the most significant bit position.
5972A redundant sign bit is defined as any sign bit after the first. As such,
5973this count will be one less than the count of leading sign bits.
5974
a54a5997
RS
5975@var{m} is either a scalar or vector integer mode. When it is a scalar,
5976operand 1 has mode @var{m} but operand 0 can have whatever scalar
5977integer mode is suitable for the target. The compiler will insert
5978conversion instructions as necessary (typically to convert the result
5979to the same width as @code{int}). When @var{m} is a vector, both
5980operands must have mode @var{m}.
5981
5982This pattern is not allowed to @code{FAIL}.
5983
2928cd7a
RH
5984@cindex @code{clz@var{m}2} instruction pattern
5985@item @samp{clz@var{m}2}
e7a45277
KT
5986Store into operand 0 the number of leading 0-bits in operand 1, starting
5987at the most significant bit position. If operand 1 is 0, the
2a6627c2
JN
5988@code{CLZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
5989the result is undefined or has a useful value.
a54a5997
RS
5990
5991@var{m} is either a scalar or vector integer mode. When it is a scalar,
5992operand 1 has mode @var{m} but operand 0 can have whatever scalar
5993integer mode is suitable for the target. The compiler will insert
5994conversion instructions as necessary (typically to convert the result
5995to the same width as @code{int}). When @var{m} is a vector, both
5996operands must have mode @var{m}.
5997
5998This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
5999
6000@cindex @code{ctz@var{m}2} instruction pattern
6001@item @samp{ctz@var{m}2}
e7a45277
KT
6002Store into operand 0 the number of trailing 0-bits in operand 1, starting
6003at the least significant bit position. If operand 1 is 0, the
2a6627c2
JN
6004@code{CTZ_DEFINED_VALUE_AT_ZERO} (@pxref{Misc}) macro defines if
6005the result is undefined or has a useful value.
a54a5997
RS
6006
6007@var{m} is either a scalar or vector integer mode. When it is a scalar,
6008operand 1 has mode @var{m} but operand 0 can have whatever scalar
6009integer mode is suitable for the target. The compiler will insert
6010conversion instructions as necessary (typically to convert the result
6011to the same width as @code{int}). When @var{m} is a vector, both
6012operands must have mode @var{m}.
6013
6014This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6015
6016@cindex @code{popcount@var{m}2} instruction pattern
6017@item @samp{popcount@var{m}2}
a54a5997
RS
6018Store into operand 0 the number of 1-bits in operand 1.
6019
6020@var{m} is either a scalar or vector integer mode. When it is a scalar,
6021operand 1 has mode @var{m} but operand 0 can have whatever scalar
6022integer mode is suitable for the target. The compiler will insert
6023conversion instructions as necessary (typically to convert the result
6024to the same width as @code{int}). When @var{m} is a vector, both
6025operands must have mode @var{m}.
6026
6027This pattern is not allowed to @code{FAIL}.
2928cd7a
RH
6028
6029@cindex @code{parity@var{m}2} instruction pattern
6030@item @samp{parity@var{m}2}
e7a45277 6031Store into operand 0 the parity of operand 1, i.e.@: the number of 1-bits
a54a5997
RS
6032in operand 1 modulo 2.
6033
6034@var{m} is either a scalar or vector integer mode. When it is a scalar,
6035operand 1 has mode @var{m} but operand 0 can have whatever scalar
6036integer mode is suitable for the target. The compiler will insert
6037conversion instructions as necessary (typically to convert the result
6038to the same width as @code{int}). When @var{m} is a vector, both
6039operands must have mode @var{m}.
6040
6041This pattern is not allowed to @code{FAIL}.
2928cd7a 6042
03dda8e3
RK
6043@cindex @code{one_cmpl@var{m}2} instruction pattern
6044@item @samp{one_cmpl@var{m}2}
6045Store the bitwise-complement of operand 1 into operand 0.
6046
70128ad9
AO
6047@cindex @code{movmem@var{m}} instruction pattern
6048@item @samp{movmem@var{m}}
beed8fc0
AO
6049Block move instruction. The destination and source blocks of memory
6050are the first two operands, and both are @code{mem:BLK}s with an
6051address in mode @code{Pmode}.
e5e809f4 6052
03dda8e3 6053The number of bytes to move is the third operand, in mode @var{m}.
5689294c 6054Usually, you specify @code{Pmode} for @var{m}. However, if you can
e5e809f4 6055generate better code knowing the range of valid lengths is smaller than
5689294c
L
6056those representable in a full Pmode pointer, you should provide
6057a pattern with a
e5e809f4
JL
6058mode corresponding to the range of values you can handle efficiently
6059(e.g., @code{QImode} for values in the range 0--127; note we avoid numbers
5689294c 6060that appear negative) and also a pattern with @code{Pmode}.
03dda8e3
RK
6061
6062The fourth operand is the known shared alignment of the source and
6063destination, in the form of a @code{const_int} rtx. Thus, if the
6064compiler knows that both source and destination are word-aligned,
6065it may provide the value 4 for this operand.
6066
079a182e
JH
6067Optional operands 5 and 6 specify expected alignment and size of block
6068respectively. The expected alignment differs from alignment in operand 4
6069in a way that the blocks are not required to be aligned according to it in
9946ca2d
RA
6070all cases. This expected alignment is also in bytes, just like operand 4.
6071Expected size, when unknown, is set to @code{(const_int -1)}.
079a182e 6072
70128ad9 6073Descriptions of multiple @code{movmem@var{m}} patterns can only be
4693911f 6074beneficial if the patterns for smaller modes have fewer restrictions
8c01d9b6 6075on their first, second and fourth operands. Note that the mode @var{m}
70128ad9 6076in @code{movmem@var{m}} does not impose any restriction on the mode of
8c01d9b6
JL
6077individually moved data units in the block.
6078
03dda8e3
RK
6079These patterns need not give special consideration to the possibility
6080that the source and destination strings might overlap.
6081
beed8fc0
AO
6082@cindex @code{movstr} instruction pattern
6083@item @samp{movstr}
6084String copy instruction, with @code{stpcpy} semantics. Operand 0 is
6085an output operand in mode @code{Pmode}. The addresses of the
6086destination and source strings are operands 1 and 2, and both are
6087@code{mem:BLK}s with addresses in mode @code{Pmode}. The execution of
6088the expansion of this pattern should store in operand 0 the address in
6089which the @code{NUL} terminator was stored in the destination string.
6090
3918b108
JH
6091This patern has also several optional operands that are same as in
6092@code{setmem}.
6093
57e84f18
AS
6094@cindex @code{setmem@var{m}} instruction pattern
6095@item @samp{setmem@var{m}}
6096Block set instruction. The destination string is the first operand,
beed8fc0 6097given as a @code{mem:BLK} whose address is in mode @code{Pmode}. The
57e84f18
AS
6098number of bytes to set is the second operand, in mode @var{m}. The value to
6099initialize the memory with is the third operand. Targets that only support the
6100clearing of memory should reject any value that is not the constant 0. See
beed8fc0 6101@samp{movmem@var{m}} for a discussion of the choice of mode.
03dda8e3 6102
57e84f18 6103The fourth operand is the known alignment of the destination, in the form
03dda8e3
RK
6104of a @code{const_int} rtx. Thus, if the compiler knows that the
6105destination is word-aligned, it may provide the value 4 for this
6106operand.
6107
079a182e
JH
6108Optional operands 5 and 6 specify expected alignment and size of block
6109respectively. The expected alignment differs from alignment in operand 4
6110in a way that the blocks are not required to be aligned according to it in
9946ca2d
RA
6111all cases. This expected alignment is also in bytes, just like operand 4.
6112Expected size, when unknown, is set to @code{(const_int -1)}.
3918b108
JH
6113Operand 7 is the minimal size of the block and operand 8 is the
6114maximal size of the block (NULL if it can not be represented as CONST_INT).
82bb7d4e
JH
6115Operand 9 is the probable maximal size (i.e. we can not rely on it for correctness,
6116but it can be used for choosing proper code sequence for a given size).
079a182e 6117
57e84f18 6118The use for multiple @code{setmem@var{m}} is as for @code{movmem@var{m}}.
8c01d9b6 6119
40c1d5f8
AS
6120@cindex @code{cmpstrn@var{m}} instruction pattern
6121@item @samp{cmpstrn@var{m}}
358b8f01 6122String compare instruction, with five operands. Operand 0 is the output;
03dda8e3 6123it has mode @var{m}. The remaining four operands are like the operands
70128ad9 6124of @samp{movmem@var{m}}. The two memory blocks specified are compared
5cc2f4f3
KG
6125byte by byte in lexicographic order starting at the beginning of each
6126string. The instruction is not allowed to prefetch more than one byte
6127at a time since either string may end in the first byte and reading past
6128that may access an invalid page or segment and cause a fault. The
9b0f6f5e
NC
6129comparison terminates early if the fetched bytes are different or if
6130they are equal to zero. The effect of the instruction is to store a
6131value in operand 0 whose sign indicates the result of the comparison.
03dda8e3 6132
40c1d5f8
AS
6133@cindex @code{cmpstr@var{m}} instruction pattern
6134@item @samp{cmpstr@var{m}}
6135String compare instruction, without known maximum length. Operand 0 is the
6136output; it has mode @var{m}. The second and third operand are the blocks of
6137memory to be compared; both are @code{mem:BLK} with an address in mode
6138@code{Pmode}.
6139
6140The fourth operand is the known shared alignment of the source and
6141destination, in the form of a @code{const_int} rtx. Thus, if the
6142compiler knows that both source and destination are word-aligned,
6143it may provide the value 4 for this operand.
6144
6145The two memory blocks specified are compared byte by byte in lexicographic
6146order starting at the beginning of each string. The instruction is not allowed
6147to prefetch more than one byte at a time since either string may end in the
6148first byte and reading past that may access an invalid page or segment and
9b0f6f5e
NC
6149cause a fault. The comparison will terminate when the fetched bytes
6150are different or if they are equal to zero. The effect of the
6151instruction is to store a value in operand 0 whose sign indicates the
6152result of the comparison.
40c1d5f8 6153
358b8f01
JJ
6154@cindex @code{cmpmem@var{m}} instruction pattern
6155@item @samp{cmpmem@var{m}}
6156Block compare instruction, with five operands like the operands
6157of @samp{cmpstr@var{m}}. The two memory blocks specified are compared
6158byte by byte in lexicographic order starting at the beginning of each
6159block. Unlike @samp{cmpstr@var{m}} the instruction can prefetch
9b0f6f5e
NC
6160any bytes in the two memory blocks. Also unlike @samp{cmpstr@var{m}}
6161the comparison will not stop if both bytes are zero. The effect of
6162the instruction is to store a value in operand 0 whose sign indicates
6163the result of the comparison.
358b8f01 6164
03dda8e3
RK
6165@cindex @code{strlen@var{m}} instruction pattern
6166@item @samp{strlen@var{m}}
6167Compute the length of a string, with three operands.
6168Operand 0 is the result (of mode @var{m}), operand 1 is
6169a @code{mem} referring to the first character of the string,
6170operand 2 is the character to search for (normally zero),
6171and operand 3 is a constant describing the known alignment
6172of the beginning of the string.
6173
e0d4c0b3 6174@cindex @code{float@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6175@item @samp{float@var{m}@var{n}2}
6176Convert signed integer operand 1 (valid for fixed point mode @var{m}) to
6177floating point mode @var{n} and store in operand 0 (which has mode
6178@var{n}).
6179
e0d4c0b3 6180@cindex @code{floatuns@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6181@item @samp{floatuns@var{m}@var{n}2}
6182Convert unsigned integer operand 1 (valid for fixed point mode @var{m})
6183to floating point mode @var{n} and store in operand 0 (which has mode
6184@var{n}).
6185
e0d4c0b3 6186@cindex @code{fix@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6187@item @samp{fix@var{m}@var{n}2}
6188Convert operand 1 (valid for floating point mode @var{m}) to fixed
6189point mode @var{n} as a signed number and store in operand 0 (which
6190has mode @var{n}). This instruction's result is defined only when
6191the value of operand 1 is an integer.
6192
0e1d7f32
AH
6193If the machine description defines this pattern, it also needs to
6194define the @code{ftrunc} pattern.
6195
e0d4c0b3 6196@cindex @code{fixuns@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6197@item @samp{fixuns@var{m}@var{n}2}
6198Convert operand 1 (valid for floating point mode @var{m}) to fixed
6199point mode @var{n} as an unsigned number and store in operand 0 (which
6200has mode @var{n}). This instruction's result is defined only when the
6201value of operand 1 is an integer.
6202
6203@cindex @code{ftrunc@var{m}2} instruction pattern
6204@item @samp{ftrunc@var{m}2}
6205Convert operand 1 (valid for floating point mode @var{m}) to an
6206integer value, still represented in floating point mode @var{m}, and
6207store it in operand 0 (valid for floating point mode @var{m}).
6208
e0d4c0b3 6209@cindex @code{fix_trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6210@item @samp{fix_trunc@var{m}@var{n}2}
6211Like @samp{fix@var{m}@var{n}2} but works for any floating point value
6212of mode @var{m} by converting the value to an integer.
6213
e0d4c0b3 6214@cindex @code{fixuns_trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6215@item @samp{fixuns_trunc@var{m}@var{n}2}
6216Like @samp{fixuns@var{m}@var{n}2} but works for any floating point
6217value of mode @var{m} by converting the value to an integer.
6218
e0d4c0b3 6219@cindex @code{trunc@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6220@item @samp{trunc@var{m}@var{n}2}
6221Truncate operand 1 (valid for mode @var{m}) to mode @var{n} and
6222store in operand 0 (which has mode @var{n}). Both modes must be fixed
6223point or both floating point.
6224
e0d4c0b3 6225@cindex @code{extend@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6226@item @samp{extend@var{m}@var{n}2}
6227Sign-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6228store in operand 0 (which has mode @var{n}). Both modes must be fixed
6229point or both floating point.
6230
e0d4c0b3 6231@cindex @code{zero_extend@var{m}@var{n}2} instruction pattern
03dda8e3
RK
6232@item @samp{zero_extend@var{m}@var{n}2}
6233Zero-extend operand 1 (valid for mode @var{m}) to mode @var{n} and
6234store in operand 0 (which has mode @var{n}). Both modes must be fixed
6235point.
6236
e0d4c0b3 6237@cindex @code{fract@var{m}@var{n}2} instruction pattern
0f996086
CF
6238@item @samp{fract@var{m}@var{n}2}
6239Convert operand 1 of mode @var{m} to mode @var{n} and store in
6240operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6241could be fixed-point to fixed-point, signed integer to fixed-point,
6242fixed-point to signed integer, floating-point to fixed-point,
6243or fixed-point to floating-point.
6244When overflows or underflows happen, the results are undefined.
6245
e0d4c0b3 6246@cindex @code{satfract@var{m}@var{n}2} instruction pattern
0f996086
CF
6247@item @samp{satfract@var{m}@var{n}2}
6248Convert operand 1 of mode @var{m} to mode @var{n} and store in
6249operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6250could be fixed-point to fixed-point, signed integer to fixed-point,
6251or floating-point to fixed-point.
6252When overflows or underflows happen, the instruction saturates the
6253results to the maximum or the minimum.
6254
e0d4c0b3 6255@cindex @code{fractuns@var{m}@var{n}2} instruction pattern
0f996086
CF
6256@item @samp{fractuns@var{m}@var{n}2}
6257Convert operand 1 of mode @var{m} to mode @var{n} and store in
6258operand 0 (which has mode @var{n}). Mode @var{m} and mode @var{n}
6259could be unsigned integer to fixed-point, or
6260fixed-point to unsigned integer.
6261When overflows or underflows happen, the results are undefined.
6262
e0d4c0b3 6263@cindex @code{satfractuns@var{m}@var{n}2} instruction pattern
0f996086
CF
6264@item @samp{satfractuns@var{m}@var{n}2}
6265Convert unsigned integer operand 1 of mode @var{m} to fixed-point mode
6266@var{n} and store in operand 0 (which has mode @var{n}).
6267When overflows or underflows happen, the instruction saturates the
6268results to the maximum or the minimum.
6269
d2eeb2d1
RS
6270@cindex @code{extv@var{m}} instruction pattern
6271@item @samp{extv@var{m}}
6272Extract a bit-field from register operand 1, sign-extend it, and store
6273it in operand 0. Operand 2 specifies the width of the field in bits
6274and operand 3 the starting bit, which counts from the most significant
6275bit if @samp{BITS_BIG_ENDIAN} is true and from the least significant bit
6276otherwise.
6277
6278Operands 0 and 1 both have mode @var{m}. Operands 2 and 3 have a
6279target-specific mode.
6280
6281@cindex @code{extvmisalign@var{m}} instruction pattern
6282@item @samp{extvmisalign@var{m}}
6283Extract a bit-field from memory operand 1, sign extend it, and store
6284it in operand 0. Operand 2 specifies the width in bits and operand 3
6285the starting bit. The starting bit is always somewhere in the first byte of
6286operand 1; it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6287is true and from the least significant bit otherwise.
6288
6289Operand 0 has mode @var{m} while operand 1 has @code{BLK} mode.
6290Operands 2 and 3 have a target-specific mode.
6291
6292The instruction must not read beyond the last byte of the bit-field.
6293
6294@cindex @code{extzv@var{m}} instruction pattern
6295@item @samp{extzv@var{m}}
6296Like @samp{extv@var{m}} except that the bit-field value is zero-extended.
6297
6298@cindex @code{extzvmisalign@var{m}} instruction pattern
6299@item @samp{extzvmisalign@var{m}}
6300Like @samp{extvmisalign@var{m}} except that the bit-field value is
6301zero-extended.
6302
6303@cindex @code{insv@var{m}} instruction pattern
6304@item @samp{insv@var{m}}
6305Insert operand 3 into a bit-field of register operand 0. Operand 1
6306specifies the width of the field in bits and operand 2 the starting bit,
6307which counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6308is true and from the least significant bit otherwise.
6309
6310Operands 0 and 3 both have mode @var{m}. Operands 1 and 2 have a
6311target-specific mode.
6312
6313@cindex @code{insvmisalign@var{m}} instruction pattern
6314@item @samp{insvmisalign@var{m}}
6315Insert operand 3 into a bit-field of memory operand 0. Operand 1
6316specifies the width of the field in bits and operand 2 the starting bit.
6317The starting bit is always somewhere in the first byte of operand 0;
6318it counts from the most significant bit if @samp{BITS_BIG_ENDIAN}
6319is true and from the least significant bit otherwise.
6320
6321Operand 3 has mode @var{m} while operand 0 has @code{BLK} mode.
6322Operands 1 and 2 have a target-specific mode.
6323
6324The instruction must not read or write beyond the last byte of the bit-field.
6325
03dda8e3
RK
6326@cindex @code{extv} instruction pattern
6327@item @samp{extv}
c771326b 6328Extract a bit-field from operand 1 (a register or memory operand), where
03dda8e3
RK
6329operand 2 specifies the width in bits and operand 3 the starting bit,
6330and store it in operand 0. Operand 0 must have mode @code{word_mode}.
6331Operand 1 may have mode @code{byte_mode} or @code{word_mode}; often
6332@code{word_mode} is allowed only for registers. Operands 2 and 3 must
6333be valid for @code{word_mode}.
6334
6335The RTL generation pass generates this instruction only with constants
3ab997e8 6336for operands 2 and 3 and the constant is never zero for operand 2.
03dda8e3
RK
6337
6338The bit-field value is sign-extended to a full word integer
6339before it is stored in operand 0.
6340
d2eeb2d1
RS
6341This pattern is deprecated; please use @samp{extv@var{m}} and
6342@code{extvmisalign@var{m}} instead.
6343
03dda8e3
RK
6344@cindex @code{extzv} instruction pattern
6345@item @samp{extzv}
6346Like @samp{extv} except that the bit-field value is zero-extended.
6347
d2eeb2d1
RS
6348This pattern is deprecated; please use @samp{extzv@var{m}} and
6349@code{extzvmisalign@var{m}} instead.
6350
03dda8e3
RK
6351@cindex @code{insv} instruction pattern
6352@item @samp{insv}
c771326b
JM
6353Store operand 3 (which must be valid for @code{word_mode}) into a
6354bit-field in operand 0, where operand 1 specifies the width in bits and
03dda8e3
RK
6355operand 2 the starting bit. Operand 0 may have mode @code{byte_mode} or
6356@code{word_mode}; often @code{word_mode} is allowed only for registers.
6357Operands 1 and 2 must be valid for @code{word_mode}.
6358
6359The RTL generation pass generates this instruction only with constants
3ab997e8 6360for operands 1 and 2 and the constant is never zero for operand 1.
03dda8e3 6361
d2eeb2d1
RS
6362This pattern is deprecated; please use @samp{insv@var{m}} and
6363@code{insvmisalign@var{m}} instead.
6364
03dda8e3
RK
6365@cindex @code{mov@var{mode}cc} instruction pattern
6366@item @samp{mov@var{mode}cc}
6367Conditionally move operand 2 or operand 3 into operand 0 according to the
6368comparison in operand 1. If the comparison is true, operand 2 is moved
6369into operand 0, otherwise operand 3 is moved.
6370
6371The mode of the operands being compared need not be the same as the operands
6372being moved. Some machines, sparc64 for example, have instructions that
6373conditionally move an integer value based on the floating point condition
6374codes and vice versa.
6375
6376If the machine does not have conditional move instructions, do not
6377define these patterns.
6378
068f5dea 6379@cindex @code{add@var{mode}cc} instruction pattern
4b5cc2b3 6380@item @samp{add@var{mode}cc}
068f5dea
JH
6381Similar to @samp{mov@var{mode}cc} but for conditional addition. Conditionally
6382move operand 2 or (operands 2 + operand 3) into operand 0 according to the
5285c21c 6383comparison in operand 1. If the comparison is false, operand 2 is moved into
4b5cc2b3 6384operand 0, otherwise (operand 2 + operand 3) is moved.
068f5dea 6385
0972596e
RS
6386@cindex @code{cond_add@var{mode}} instruction pattern
6387@cindex @code{cond_sub@var{mode}} instruction pattern
6c4fd4a9
RS
6388@cindex @code{cond_mul@var{mode}} instruction pattern
6389@cindex @code{cond_div@var{mode}} instruction pattern
6390@cindex @code{cond_udiv@var{mode}} instruction pattern
6391@cindex @code{cond_mod@var{mode}} instruction pattern
6392@cindex @code{cond_umod@var{mode}} instruction pattern
0972596e
RS
6393@cindex @code{cond_and@var{mode}} instruction pattern
6394@cindex @code{cond_ior@var{mode}} instruction pattern
6395@cindex @code{cond_xor@var{mode}} instruction pattern
6396@cindex @code{cond_smin@var{mode}} instruction pattern
6397@cindex @code{cond_smax@var{mode}} instruction pattern
6398@cindex @code{cond_umin@var{mode}} instruction pattern
6399@cindex @code{cond_umax@var{mode}} instruction pattern
6400@item @samp{cond_add@var{mode}}
6401@itemx @samp{cond_sub@var{mode}}
6c4fd4a9
RS
6402@itemx @samp{cond_mul@var{mode}}
6403@itemx @samp{cond_div@var{mode}}
6404@itemx @samp{cond_udiv@var{mode}}
6405@itemx @samp{cond_mod@var{mode}}
6406@itemx @samp{cond_umod@var{mode}}
0972596e
RS
6407@itemx @samp{cond_and@var{mode}}
6408@itemx @samp{cond_ior@var{mode}}
6409@itemx @samp{cond_xor@var{mode}}
6410@itemx @samp{cond_smin@var{mode}}
6411@itemx @samp{cond_smax@var{mode}}
6412@itemx @samp{cond_umin@var{mode}}
6413@itemx @samp{cond_umax@var{mode}}
9d4ac06e
RS
6414When operand 1 is true, perform an operation on operands 2 and 3 and
6415store the result in operand 0, otherwise store operand 4 in operand 0.
6416The operation works elementwise if the operands are vectors.
6417
6418The scalar case is equivalent to:
6419
6420@smallexample
6421op0 = op1 ? op2 @var{op} op3 : op4;
6422@end smallexample
6423
6424while the vector case is equivalent to:
0972596e
RS
6425
6426@smallexample
9d4ac06e
RS
6427for (i = 0; i < GET_MODE_NUNITS (@var{m}); i++)
6428 op0[i] = op1[i] ? op2[i] @var{op} op3[i] : op4[i];
0972596e
RS
6429@end smallexample
6430
6431where, for example, @var{op} is @code{+} for @samp{cond_add@var{mode}}.
6432
6433When defined for floating-point modes, the contents of @samp{op3[i]}
6434are not interpreted if @var{op1[i]} is false, just like they would not
6435be in a normal C @samp{?:} condition.
6436
9d4ac06e
RS
6437Operands 0, 2, 3 and 4 all have mode @var{m}. Operand 1 is a scalar
6438integer if @var{m} is scalar, otherwise it has the mode returned by
6439@code{TARGET_VECTORIZE_GET_MASK_MODE}.
0972596e 6440
ce68b5cf
KT
6441@cindex @code{neg@var{mode}cc} instruction pattern
6442@item @samp{neg@var{mode}cc}
6443Similar to @samp{mov@var{mode}cc} but for conditional negation. Conditionally
6444move the negation of operand 2 or the unchanged operand 3 into operand 0
6445according to the comparison in operand 1. If the comparison is true, the negation
6446of operand 2 is moved into operand 0, otherwise operand 3 is moved.
6447
6448@cindex @code{not@var{mode}cc} instruction pattern
6449@item @samp{not@var{mode}cc}
6450Similar to @samp{neg@var{mode}cc} but for conditional complement.
6451Conditionally move the bitwise complement of operand 2 or the unchanged
6452operand 3 into operand 0 according to the comparison in operand 1.
6453If the comparison is true, the complement of operand 2 is moved into
6454operand 0, otherwise operand 3 is moved.
6455
f90b7a5a
PB
6456@cindex @code{cstore@var{mode}4} instruction pattern
6457@item @samp{cstore@var{mode}4}
6458Store zero or nonzero in operand 0 according to whether a comparison
6459is true. Operand 1 is a comparison operator. Operand 2 and operand 3
6460are the first and second operand of the comparison, respectively.
6461You specify the mode that operand 0 must have when you write the
6462@code{match_operand} expression. The compiler automatically sees which
6463mode you have used and supplies an operand of that mode.
03dda8e3
RK
6464
6465The value stored for a true condition must have 1 as its low bit, or
6466else must be negative. Otherwise the instruction is not suitable and
6467you should omit it from the machine description. You describe to the
6468compiler exactly which value is stored by defining the macro
6469@code{STORE_FLAG_VALUE} (@pxref{Misc}). If a description cannot be
ac5eda13
PB
6470found that can be used for all the possible comparison operators, you
6471should pick one and use a @code{define_expand} to map all results
6472onto the one you chose.
6473
6474These operations may @code{FAIL}, but should do so only in relatively
6475uncommon cases; if they would @code{FAIL} for common cases involving
6476integer comparisons, it is best to restrict the predicates to not
6477allow these operands. Likewise if a given comparison operator will
6478always fail, independent of the operands (for floating-point modes, the
6479@code{ordered_comparison_operator} predicate is often useful in this case).
6480
6481If this pattern is omitted, the compiler will generate a conditional
6482branch---for example, it may copy a constant one to the target and branching
6483around an assignment of zero to the target---or a libcall. If the predicate
6484for operand 1 only rejects some operators, it will also try reordering the
6485operands and/or inverting the result value (e.g.@: by an exclusive OR).
6486These possibilities could be cheaper or equivalent to the instructions
6487used for the @samp{cstore@var{mode}4} pattern followed by those required
6488to convert a positive result from @code{STORE_FLAG_VALUE} to 1; in this
6489case, you can and should make operand 1's predicate reject some operators
6490in the @samp{cstore@var{mode}4} pattern, or remove the pattern altogether
6491from the machine description.
03dda8e3 6492
66c87bae
KH
6493@cindex @code{cbranch@var{mode}4} instruction pattern
6494@item @samp{cbranch@var{mode}4}
6495Conditional branch instruction combined with a compare instruction.
6496Operand 0 is a comparison operator. Operand 1 and operand 2 are the
6497first and second operands of the comparison, respectively. Operand 3
481efdd9 6498is the @code{code_label} to jump to.
66c87bae 6499
d26eedb6
HPN
6500@cindex @code{jump} instruction pattern
6501@item @samp{jump}
6502A jump inside a function; an unconditional branch. Operand 0 is the
481efdd9
EB
6503@code{code_label} to jump to. This pattern name is mandatory on all
6504machines.
d26eedb6 6505
03dda8e3
RK
6506@cindex @code{call} instruction pattern
6507@item @samp{call}
6508Subroutine call instruction returning no value. Operand 0 is the
6509function to call; operand 1 is the number of bytes of arguments pushed
f5963e61
JL
6510as a @code{const_int}; operand 2 is the number of registers used as
6511operands.
03dda8e3
RK
6512
6513On most machines, operand 2 is not actually stored into the RTL
6514pattern. It is supplied for the sake of some RISC machines which need
6515to put this information into the assembler code; they can put it in
6516the RTL instead of operand 1.
6517
6518Operand 0 should be a @code{mem} RTX whose address is the address of the
6519function. Note, however, that this address can be a @code{symbol_ref}
6520expression even if it would not be a legitimate memory address on the
6521target machine. If it is also not a valid argument for a call
6522instruction, the pattern for this operation should be a
6523@code{define_expand} (@pxref{Expander Definitions}) that places the
6524address into a register and uses that register in the call instruction.
6525
6526@cindex @code{call_value} instruction pattern
6527@item @samp{call_value}
6528Subroutine call instruction returning a value. Operand 0 is the hard
6529register in which the value is returned. There are three more
6530operands, the same as the three operands of the @samp{call}
6531instruction (but with numbers increased by one).
6532
6533Subroutines that return @code{BLKmode} objects use the @samp{call}
6534insn.
6535
6536@cindex @code{call_pop} instruction pattern
6537@cindex @code{call_value_pop} instruction pattern
6538@item @samp{call_pop}, @samp{call_value_pop}
6539Similar to @samp{call} and @samp{call_value}, except used if defined and
df2a54e9 6540if @code{RETURN_POPS_ARGS} is nonzero. They should emit a @code{parallel}
03dda8e3
RK
6541that contains both the function call and a @code{set} to indicate the
6542adjustment made to the frame pointer.
6543
df2a54e9 6544For machines where @code{RETURN_POPS_ARGS} can be nonzero, the use of these
03dda8e3
RK
6545patterns increases the number of functions for which the frame pointer
6546can be eliminated, if desired.
6547
6548@cindex @code{untyped_call} instruction pattern
6549@item @samp{untyped_call}
6550Subroutine call instruction returning a value of any type. Operand 0 is
6551the function to call; operand 1 is a memory location where the result of
6552calling the function is to be stored; operand 2 is a @code{parallel}
6553expression where each element is a @code{set} expression that indicates
6554the saving of a function return value into the result block.
6555
6556This instruction pattern should be defined to support
6557@code{__builtin_apply} on machines where special instructions are needed
6558to call a subroutine with arbitrary arguments or to save the value
6559returned. This instruction pattern is required on machines that have
e979f9e8
JM
6560multiple registers that can hold a return value
6561(i.e.@: @code{FUNCTION_VALUE_REGNO_P} is true for more than one register).
03dda8e3
RK
6562
6563@cindex @code{return} instruction pattern
6564@item @samp{return}
6565Subroutine return instruction. This instruction pattern name should be
6566defined only if a single instruction can do all the work of returning
6567from a function.
6568
6569Like the @samp{mov@var{m}} patterns, this pattern is also used after the
6570RTL generation phase. In this case it is to support machines where
6571multiple instructions are usually needed to return from a function, but
6572some class of functions only requires one instruction to implement a
6573return. Normally, the applicable functions are those which do not need
6574to save any registers or allocate stack space.
6575
26898771
BS
6576It is valid for this pattern to expand to an instruction using
6577@code{simple_return} if no epilogue is required.
6578
6579@cindex @code{simple_return} instruction pattern
6580@item @samp{simple_return}
6581Subroutine return instruction. This instruction pattern name should be
6582defined only if a single instruction can do all the work of returning
6583from a function on a path where no epilogue is required. This pattern
6584is very similar to the @code{return} instruction pattern, but it is emitted
6585only by the shrink-wrapping optimization on paths where the function
6586prologue has not been executed, and a function return should occur without
6587any of the effects of the epilogue. Additional uses may be introduced on
6588paths where both the prologue and the epilogue have executed.
6589
03dda8e3
RK
6590@findex reload_completed
6591@findex leaf_function_p
6592For such machines, the condition specified in this pattern should only
df2a54e9 6593be true when @code{reload_completed} is nonzero and the function's
03dda8e3
RK
6594epilogue would only be a single instruction. For machines with register
6595windows, the routine @code{leaf_function_p} may be used to determine if
6596a register window push is required.
6597
6598Machines that have conditional return instructions should define patterns
6599such as
6600
6601@smallexample
6602(define_insn ""
6603 [(set (pc)
6604 (if_then_else (match_operator
6605 0 "comparison_operator"
6606 [(cc0) (const_int 0)])
6607 (return)
6608 (pc)))]
6609 "@var{condition}"
6610 "@dots{}")
6611@end smallexample
6612
6613where @var{condition} would normally be the same condition specified on the
6614named @samp{return} pattern.
6615
6616@cindex @code{untyped_return} instruction pattern
6617@item @samp{untyped_return}
6618Untyped subroutine return instruction. This instruction pattern should
6619be defined to support @code{__builtin_return} on machines where special
6620instructions are needed to return a value of any type.
6621
6622Operand 0 is a memory location where the result of calling a function
6623with @code{__builtin_apply} is stored; operand 1 is a @code{parallel}
6624expression where each element is a @code{set} expression that indicates
6625the restoring of a function return value from the result block.
6626
6627@cindex @code{nop} instruction pattern
6628@item @samp{nop}
6629No-op instruction. This instruction pattern name should always be defined
6630to output a no-op in assembler code. @code{(const_int 0)} will do as an
6631RTL pattern.
6632
6633@cindex @code{indirect_jump} instruction pattern
6634@item @samp{indirect_jump}
6635An instruction to jump to an address which is operand zero.
6636This pattern name is mandatory on all machines.
6637
6638@cindex @code{casesi} instruction pattern
6639@item @samp{casesi}
6640Instruction to jump through a dispatch table, including bounds checking.
6641This instruction takes five operands:
6642
6643@enumerate
6644@item
6645The index to dispatch on, which has mode @code{SImode}.
6646
6647@item
6648The lower bound for indices in the table, an integer constant.
6649
6650@item
6651The total range of indices in the table---the largest index
6652minus the smallest one (both inclusive).
6653
6654@item
6655A label that precedes the table itself.
6656
6657@item
6658A label to jump to if the index has a value outside the bounds.
03dda8e3
RK
6659@end enumerate
6660
e4ae5e77 6661The table is an @code{addr_vec} or @code{addr_diff_vec} inside of a
da5c6bde 6662@code{jump_table_data}. The number of elements in the table is one plus the
03dda8e3
RK
6663difference between the upper bound and the lower bound.
6664
6665@cindex @code{tablejump} instruction pattern
6666@item @samp{tablejump}
6667Instruction to jump to a variable address. This is a low-level
6668capability which can be used to implement a dispatch table when there
6669is no @samp{casesi} pattern.
6670
6671This pattern requires two operands: the address or offset, and a label
6672which should immediately precede the jump table. If the macro
f1f5f142
JL
6673@code{CASE_VECTOR_PC_RELATIVE} evaluates to a nonzero value then the first
6674operand is an offset which counts from the address of the table; otherwise,
6675it is an absolute address to jump to. In either case, the first operand has
03dda8e3
RK
6676mode @code{Pmode}.
6677
6678The @samp{tablejump} insn is always the last insn before the jump
6679table it uses. Its assembler code normally has no need to use the
6680second operand, but you should incorporate it in the RTL pattern so
6681that the jump optimizer will not delete the table as unreachable code.
6682
6e4fcc95
MH
6683
6684@cindex @code{decrement_and_branch_until_zero} instruction pattern
6685@item @samp{decrement_and_branch_until_zero}
6686Conditional branch instruction that decrements a register and
df2a54e9 6687jumps if the register is nonzero. Operand 0 is the register to
6e4fcc95 6688decrement and test; operand 1 is the label to jump to if the
df2a54e9 6689register is nonzero. @xref{Looping Patterns}.
6e4fcc95
MH
6690
6691This optional instruction pattern is only used by the combiner,
6692typically for loops reversed by the loop optimizer when strength
6693reduction is enabled.
6694
6695@cindex @code{doloop_end} instruction pattern
6696@item @samp{doloop_end}
1d0216c8
RS
6697Conditional branch instruction that decrements a register and
6698jumps if the register is nonzero. Operand 0 is the register to
6699decrement and test; operand 1 is the label to jump to if the
6700register is nonzero.
5c25e11d 6701@xref{Looping Patterns}.
6e4fcc95
MH
6702
6703This optional instruction pattern should be defined for machines with
6704low-overhead looping instructions as the loop optimizer will try to
1d0216c8
RS
6705modify suitable loops to utilize it. The target hook
6706@code{TARGET_CAN_USE_DOLOOP_P} controls the conditions under which
6707low-overhead loops can be used.
6e4fcc95
MH
6708
6709@cindex @code{doloop_begin} instruction pattern
6710@item @samp{doloop_begin}
6711Companion instruction to @code{doloop_end} required for machines that
1d0216c8
RS
6712need to perform some initialization, such as loading a special counter
6713register. Operand 1 is the associated @code{doloop_end} pattern and
6714operand 0 is the register that it decrements.
6e4fcc95 6715
1d0216c8
RS
6716If initialization insns do not always need to be emitted, use a
6717@code{define_expand} (@pxref{Expander Definitions}) and make it fail.
6e4fcc95 6718
03dda8e3
RK
6719@cindex @code{canonicalize_funcptr_for_compare} instruction pattern
6720@item @samp{canonicalize_funcptr_for_compare}
6721Canonicalize the function pointer in operand 1 and store the result
6722into operand 0.
6723
6724Operand 0 is always a @code{reg} and has mode @code{Pmode}; operand 1
6725may be a @code{reg}, @code{mem}, @code{symbol_ref}, @code{const_int}, etc
6726and also has mode @code{Pmode}.
6727
6728Canonicalization of a function pointer usually involves computing
6729the address of the function which would be called if the function
6730pointer were used in an indirect call.
6731
6732Only define this pattern if function pointers on the target machine
6733can have different values but still call the same function when
6734used in an indirect call.
6735
6736@cindex @code{save_stack_block} instruction pattern
6737@cindex @code{save_stack_function} instruction pattern
6738@cindex @code{save_stack_nonlocal} instruction pattern
6739@cindex @code{restore_stack_block} instruction pattern
6740@cindex @code{restore_stack_function} instruction pattern
6741@cindex @code{restore_stack_nonlocal} instruction pattern
6742@item @samp{save_stack_block}
6743@itemx @samp{save_stack_function}
6744@itemx @samp{save_stack_nonlocal}
6745@itemx @samp{restore_stack_block}
6746@itemx @samp{restore_stack_function}
6747@itemx @samp{restore_stack_nonlocal}
6748Most machines save and restore the stack pointer by copying it to or
6749from an object of mode @code{Pmode}. Do not define these patterns on
6750such machines.
6751
6752Some machines require special handling for stack pointer saves and
6753restores. On those machines, define the patterns corresponding to the
6754non-standard cases by using a @code{define_expand} (@pxref{Expander
6755Definitions}) that produces the required insns. The three types of
6756saves and restores are:
6757
6758@enumerate
6759@item
6760@samp{save_stack_block} saves the stack pointer at the start of a block
6761that allocates a variable-sized object, and @samp{restore_stack_block}
6762restores the stack pointer when the block is exited.
6763
6764@item
6765@samp{save_stack_function} and @samp{restore_stack_function} do a
6766similar job for the outermost block of a function and are used when the
6767function allocates variable-sized objects or calls @code{alloca}. Only
6768the epilogue uses the restored stack pointer, allowing a simpler save or
6769restore sequence on some machines.
6770
6771@item
6772@samp{save_stack_nonlocal} is used in functions that contain labels
6773branched to by nested functions. It saves the stack pointer in such a
6774way that the inner function can use @samp{restore_stack_nonlocal} to
6775restore the stack pointer. The compiler generates code to restore the
6776frame and argument pointer registers, but some machines require saving
6777and restoring additional data such as register window information or
6778stack backchains. Place insns in these patterns to save and restore any
6779such required data.
6780@end enumerate
6781
6782When saving the stack pointer, operand 0 is the save area and operand 1
73c8090f
DE
6783is the stack pointer. The mode used to allocate the save area defaults
6784to @code{Pmode} but you can override that choice by defining the
7e390c9d 6785@code{STACK_SAVEAREA_MODE} macro (@pxref{Storage Layout}). You must
73c8090f
DE
6786specify an integral mode, or @code{VOIDmode} if no save area is needed
6787for a particular type of save (either because no save is needed or
6788because a machine-specific save area can be used). Operand 0 is the
6789stack pointer and operand 1 is the save area for restore operations. If
6790@samp{save_stack_block} is defined, operand 0 must not be
6791@code{VOIDmode} since these saves can be arbitrarily nested.
03dda8e3
RK
6792
6793A save area is a @code{mem} that is at a constant offset from
6794@code{virtual_stack_vars_rtx} when the stack pointer is saved for use by
6795nonlocal gotos and a @code{reg} in the other two cases.
6796
6797@cindex @code{allocate_stack} instruction pattern
6798@item @samp{allocate_stack}
72938a4c 6799Subtract (or add if @code{STACK_GROWS_DOWNWARD} is undefined) operand 1 from
03dda8e3
RK
6800the stack pointer to create space for dynamically allocated data.
6801
72938a4c
MM
6802Store the resultant pointer to this space into operand 0. If you
6803are allocating space from the main stack, do this by emitting a
6804move insn to copy @code{virtual_stack_dynamic_rtx} to operand 0.
6805If you are allocating the space elsewhere, generate code to copy the
6806location of the space to operand 0. In the latter case, you must
956d6950 6807ensure this space gets freed when the corresponding space on the main
72938a4c
MM
6808stack is free.
6809
03dda8e3
RK
6810Do not define this pattern if all that must be done is the subtraction.
6811Some machines require other operations such as stack probes or
6812maintaining the back chain. Define this pattern to emit those
6813operations in addition to updating the stack pointer.
6814
861bb6c1
JL
6815@cindex @code{check_stack} instruction pattern
6816@item @samp{check_stack}
507d0069
EB
6817If stack checking (@pxref{Stack Checking}) cannot be done on your system by
6818probing the stack, define this pattern to perform the needed check and signal
6819an error if the stack has overflowed. The single operand is the address in
6820the stack farthest from the current stack pointer that you need to validate.
6821Normally, on platforms where this pattern is needed, you would obtain the
6822stack limit from a global or thread-specific variable or register.
d809253a 6823
7b84aac0
EB
6824@cindex @code{probe_stack_address} instruction pattern
6825@item @samp{probe_stack_address}
6826If stack checking (@pxref{Stack Checking}) can be done on your system by
6827probing the stack but without the need to actually access it, define this
6828pattern and signal an error if the stack has overflowed. The single operand
6829is the memory address in the stack that needs to be probed.
6830
d809253a
EB
6831@cindex @code{probe_stack} instruction pattern
6832@item @samp{probe_stack}
507d0069
EB
6833If stack checking (@pxref{Stack Checking}) can be done on your system by
6834probing the stack but doing it with a ``store zero'' instruction is not valid
6835or optimal, define this pattern to do the probing differently and signal an
6836error if the stack has overflowed. The single operand is the memory reference
6837in the stack that needs to be probed.
861bb6c1 6838
03dda8e3
RK
6839@cindex @code{nonlocal_goto} instruction pattern
6840@item @samp{nonlocal_goto}
6841Emit code to generate a non-local goto, e.g., a jump from one function
6842to a label in an outer function. This pattern has four arguments,
6843each representing a value to be used in the jump. The first
45bb86fd 6844argument is to be loaded into the frame pointer, the second is
03dda8e3
RK
6845the address to branch to (code to dispatch to the actual label),
6846the third is the address of a location where the stack is saved,
6847and the last is the address of the label, to be placed in the
6848location for the incoming static chain.
6849
f0523f02 6850On most machines you need not define this pattern, since GCC will
03dda8e3
RK
6851already generate the correct code, which is to load the frame pointer
6852and static chain, restore the stack (using the
6853@samp{restore_stack_nonlocal} pattern, if defined), and jump indirectly
6854to the dispatcher. You need only define this pattern if this code will
6855not work on your machine.
6856
6857@cindex @code{nonlocal_goto_receiver} instruction pattern
6858@item @samp{nonlocal_goto_receiver}
6859This pattern, if defined, contains code needed at the target of a
161d7b59 6860nonlocal goto after the code already generated by GCC@. You will not
03dda8e3
RK
6861normally need to define this pattern. A typical reason why you might
6862need this pattern is if some value, such as a pointer to a global table,
c30ddbc9 6863must be restored when the frame pointer is restored. Note that a nonlocal
89bcce1b 6864goto only occurs within a unit-of-translation, so a global table pointer
c30ddbc9
RH
6865that is shared by all functions of a given module need not be restored.
6866There are no arguments.
861bb6c1
JL
6867
6868@cindex @code{exception_receiver} instruction pattern
6869@item @samp{exception_receiver}
6870This pattern, if defined, contains code needed at the site of an
6871exception handler that isn't needed at the site of a nonlocal goto. You
6872will not normally need to define this pattern. A typical reason why you
6873might need this pattern is if some value, such as a pointer to a global
6874table, must be restored after control flow is branched to the handler of
6875an exception. There are no arguments.
c85f7c16 6876
c30ddbc9
RH
6877@cindex @code{builtin_setjmp_setup} instruction pattern
6878@item @samp{builtin_setjmp_setup}
6879This pattern, if defined, contains additional code needed to initialize
6880the @code{jmp_buf}. You will not normally need to define this pattern.
6881A typical reason why you might need this pattern is if some value, such
6882as a pointer to a global table, must be restored. Though it is
6883preferred that the pointer value be recalculated if possible (given the
6884address of a label for instance). The single argument is a pointer to
6885the @code{jmp_buf}. Note that the buffer is five words long and that
6886the first three are normally used by the generic mechanism.
6887
c85f7c16
JL
6888@cindex @code{builtin_setjmp_receiver} instruction pattern
6889@item @samp{builtin_setjmp_receiver}
e4ae5e77 6890This pattern, if defined, contains code needed at the site of a
c771326b 6891built-in setjmp that isn't needed at the site of a nonlocal goto. You
c85f7c16
JL
6892will not normally need to define this pattern. A typical reason why you
6893might need this pattern is if some value, such as a pointer to a global
c30ddbc9 6894table, must be restored. It takes one argument, which is the label
073a8998 6895to which builtin_longjmp transferred control; this pattern may be emitted
c30ddbc9
RH
6896at a small offset from that label.
6897
6898@cindex @code{builtin_longjmp} instruction pattern
6899@item @samp{builtin_longjmp}
6900This pattern, if defined, performs the entire action of the longjmp.
6901You will not normally need to define this pattern unless you also define
6902@code{builtin_setjmp_setup}. The single argument is a pointer to the
6903@code{jmp_buf}.
f69864aa 6904
52a11cbf
RH
6905@cindex @code{eh_return} instruction pattern
6906@item @samp{eh_return}
f69864aa 6907This pattern, if defined, affects the way @code{__builtin_eh_return},
52a11cbf
RH
6908and thence the call frame exception handling library routines, are
6909built. It is intended to handle non-trivial actions needed along
6910the abnormal return path.
6911
34dc173c 6912The address of the exception handler to which the function should return
daf2f129 6913is passed as operand to this pattern. It will normally need to copied by
34dc173c
UW
6914the pattern to some special register or memory location.
6915If the pattern needs to determine the location of the target call
6916frame in order to do so, it may use @code{EH_RETURN_STACKADJ_RTX},
6917if defined; it will have already been assigned.
6918
6919If this pattern is not defined, the default action will be to simply
6920copy the return address to @code{EH_RETURN_HANDLER_RTX}. Either
6921that macro or this pattern needs to be defined if call frame exception
6922handling is to be used.
0b433de6
JL
6923
6924@cindex @code{prologue} instruction pattern
17b53c33 6925@anchor{prologue instruction pattern}
0b433de6
JL
6926@item @samp{prologue}
6927This pattern, if defined, emits RTL for entry to a function. The function
b192711e 6928entry is responsible for setting up the stack frame, initializing the frame
0b433de6
JL
6929pointer register, saving callee saved registers, etc.
6930
6931Using a prologue pattern is generally preferred over defining
17b53c33 6932@code{TARGET_ASM_FUNCTION_PROLOGUE} to emit assembly code for the prologue.
0b433de6
JL
6933
6934The @code{prologue} pattern is particularly useful for targets which perform
6935instruction scheduling.
6936
12c5ffe5
EB
6937@cindex @code{window_save} instruction pattern
6938@anchor{window_save instruction pattern}
6939@item @samp{window_save}
6940This pattern, if defined, emits RTL for a register window save. It should
6941be defined if the target machine has register windows but the window events
6942are decoupled from calls to subroutines. The canonical example is the SPARC
6943architecture.
6944
0b433de6 6945@cindex @code{epilogue} instruction pattern
17b53c33 6946@anchor{epilogue instruction pattern}
0b433de6 6947@item @samp{epilogue}
396ad517 6948This pattern emits RTL for exit from a function. The function
b192711e 6949exit is responsible for deallocating the stack frame, restoring callee saved
0b433de6
JL
6950registers and emitting the return instruction.
6951
6952Using an epilogue pattern is generally preferred over defining
17b53c33 6953@code{TARGET_ASM_FUNCTION_EPILOGUE} to emit assembly code for the epilogue.
0b433de6
JL
6954
6955The @code{epilogue} pattern is particularly useful for targets which perform
6956instruction scheduling or which have delay slots for their return instruction.
6957
6958@cindex @code{sibcall_epilogue} instruction pattern
6959@item @samp{sibcall_epilogue}
6960This pattern, if defined, emits RTL for exit from a function without the final
6961branch back to the calling function. This pattern will be emitted before any
6962sibling call (aka tail call) sites.
6963
6964The @code{sibcall_epilogue} pattern must not clobber any arguments used for
6965parameter passing or any stack slots for arguments passed to the current
ebb48a4d 6966function.
a157febd
GK
6967
6968@cindex @code{trap} instruction pattern
6969@item @samp{trap}
6970This pattern, if defined, signals an error, typically by causing some
4b1ea1f3 6971kind of signal to be raised.
a157febd 6972
f90b7a5a
PB
6973@cindex @code{ctrap@var{MM}4} instruction pattern
6974@item @samp{ctrap@var{MM}4}
a157febd 6975Conditional trap instruction. Operand 0 is a piece of RTL which
f90b7a5a
PB
6976performs a comparison, and operands 1 and 2 are the arms of the
6977comparison. Operand 3 is the trap code, an integer.
a157febd 6978
f90b7a5a 6979A typical @code{ctrap} pattern looks like
a157febd
GK
6980
6981@smallexample
f90b7a5a 6982(define_insn "ctrapsi4"
ebb48a4d 6983 [(trap_if (match_operator 0 "trap_operator"
f90b7a5a 6984 [(match_operand 1 "register_operand")
73b8bfe1 6985 (match_operand 2 "immediate_operand")])
f90b7a5a 6986 (match_operand 3 "const_int_operand" "i"))]
a157febd
GK
6987 ""
6988 "@dots{}")
6989@end smallexample
6990
e83d297b
JJ
6991@cindex @code{prefetch} instruction pattern
6992@item @samp{prefetch}
e83d297b
JJ
6993This pattern, if defined, emits code for a non-faulting data prefetch
6994instruction. Operand 0 is the address of the memory to prefetch. Operand 1
6995is a constant 1 if the prefetch is preparing for a write to the memory
6996address, or a constant 0 otherwise. Operand 2 is the expected degree of
6997temporal locality of the data and is a value between 0 and 3, inclusive; 0
6998means that the data has no temporal locality, so it need not be left in the
6999cache after the access; 3 means that the data has a high degree of temporal
7000locality and should be left in all levels of cache possible; 1 and 2 mean,
7001respectively, a low or moderate degree of temporal locality.
7002
7003Targets that do not support write prefetches or locality hints can ignore
7004the values of operands 1 and 2.
7005
b6bd3371
DE
7006@cindex @code{blockage} instruction pattern
7007@item @samp{blockage}
b6bd3371 7008This pattern defines a pseudo insn that prevents the instruction
adddc347
HPN
7009scheduler and other passes from moving instructions and using register
7010equivalences across the boundary defined by the blockage insn.
7011This needs to be an UNSPEC_VOLATILE pattern or a volatile ASM.
b6bd3371 7012
51ced7e4
UB
7013@cindex @code{memory_blockage} instruction pattern
7014@item @samp{memory_blockage}
7015This pattern, if defined, represents a compiler memory barrier, and will be
7016placed at points across which RTL passes may not propagate memory accesses.
7017This instruction needs to read and write volatile BLKmode memory. It does
7018not need to generate any machine instruction. If this pattern is not defined,
7019the compiler falls back to emitting an instruction corresponding
7020to @code{asm volatile ("" ::: "memory")}.
7021
48ae6c13
RH
7022@cindex @code{memory_barrier} instruction pattern
7023@item @samp{memory_barrier}
48ae6c13
RH
7024If the target memory model is not fully synchronous, then this pattern
7025should be defined to an instruction that orders both loads and stores
7026before the instruction with respect to loads and stores after the instruction.
7027This pattern has no operands.
7028
7029@cindex @code{sync_compare_and_swap@var{mode}} instruction pattern
7030@item @samp{sync_compare_and_swap@var{mode}}
48ae6c13
RH
7031This pattern, if defined, emits code for an atomic compare-and-swap
7032operation. Operand 1 is the memory on which the atomic operation is
7033performed. Operand 2 is the ``old'' value to be compared against the
7034current contents of the memory location. Operand 3 is the ``new'' value
7035to store in the memory if the compare succeeds. Operand 0 is the result
915167f5
GK
7036of the operation; it should contain the contents of the memory
7037before the operation. If the compare succeeds, this should obviously be
7038a copy of operand 2.
48ae6c13
RH
7039
7040This pattern must show that both operand 0 and operand 1 are modified.
7041
915167f5
GK
7042This pattern must issue any memory barrier instructions such that all
7043memory operations before the atomic operation occur before the atomic
7044operation and all memory operations after the atomic operation occur
7045after the atomic operation.
48ae6c13 7046
4a77c72b 7047For targets where the success or failure of the compare-and-swap
f90b7a5a
PB
7048operation is available via the status flags, it is possible to
7049avoid a separate compare operation and issue the subsequent
7050branch or store-flag operation immediately after the compare-and-swap.
7051To this end, GCC will look for a @code{MODE_CC} set in the
7052output of @code{sync_compare_and_swap@var{mode}}; if the machine
7053description includes such a set, the target should also define special
7054@code{cbranchcc4} and/or @code{cstorecc4} instructions. GCC will then
7055be able to take the destination of the @code{MODE_CC} set and pass it
7056to the @code{cbranchcc4} or @code{cstorecc4} pattern as the first
7057operand of the comparison (the second will be @code{(const_int 0)}).
48ae6c13 7058
cedb4a1a
RH
7059For targets where the operating system may provide support for this
7060operation via library calls, the @code{sync_compare_and_swap_optab}
7061may be initialized to a function with the same interface as the
7062@code{__sync_val_compare_and_swap_@var{n}} built-in. If the entire
7063set of @var{__sync} builtins are supported via library calls, the
7064target can initialize all of the optabs at once with
7065@code{init_sync_libfuncs}.
7066For the purposes of C++11 @code{std::atomic::is_lock_free}, it is
7067assumed that these library calls do @emph{not} use any kind of
7068interruptable locking.
7069
48ae6c13
RH
7070@cindex @code{sync_add@var{mode}} instruction pattern
7071@cindex @code{sync_sub@var{mode}} instruction pattern
7072@cindex @code{sync_ior@var{mode}} instruction pattern
7073@cindex @code{sync_and@var{mode}} instruction pattern
7074@cindex @code{sync_xor@var{mode}} instruction pattern
7075@cindex @code{sync_nand@var{mode}} instruction pattern
7076@item @samp{sync_add@var{mode}}, @samp{sync_sub@var{mode}}
7077@itemx @samp{sync_ior@var{mode}}, @samp{sync_and@var{mode}}
7078@itemx @samp{sync_xor@var{mode}}, @samp{sync_nand@var{mode}}
48ae6c13
RH
7079These patterns emit code for an atomic operation on memory.
7080Operand 0 is the memory on which the atomic operation is performed.
7081Operand 1 is the second operand to the binary operator.
7082
915167f5
GK
7083This pattern must issue any memory barrier instructions such that all
7084memory operations before the atomic operation occur before the atomic
7085operation and all memory operations after the atomic operation occur
7086after the atomic operation.
48ae6c13
RH
7087
7088If these patterns are not defined, the operation will be constructed
7089from a compare-and-swap operation, if defined.
7090
7091@cindex @code{sync_old_add@var{mode}} instruction pattern
7092@cindex @code{sync_old_sub@var{mode}} instruction pattern
7093@cindex @code{sync_old_ior@var{mode}} instruction pattern
7094@cindex @code{sync_old_and@var{mode}} instruction pattern
7095@cindex @code{sync_old_xor@var{mode}} instruction pattern
7096@cindex @code{sync_old_nand@var{mode}} instruction pattern
7097@item @samp{sync_old_add@var{mode}}, @samp{sync_old_sub@var{mode}}
7098@itemx @samp{sync_old_ior@var{mode}}, @samp{sync_old_and@var{mode}}
7099@itemx @samp{sync_old_xor@var{mode}}, @samp{sync_old_nand@var{mode}}
c29c1030 7100These patterns emit code for an atomic operation on memory,
48ae6c13
RH
7101and return the value that the memory contained before the operation.
7102Operand 0 is the result value, operand 1 is the memory on which the
7103atomic operation is performed, and operand 2 is the second operand
7104to the binary operator.
7105
915167f5
GK
7106This pattern must issue any memory barrier instructions such that all
7107memory operations before the atomic operation occur before the atomic
7108operation and all memory operations after the atomic operation occur
7109after the atomic operation.
48ae6c13
RH
7110
7111If these patterns are not defined, the operation will be constructed
7112from a compare-and-swap operation, if defined.
7113
7114@cindex @code{sync_new_add@var{mode}} instruction pattern
7115@cindex @code{sync_new_sub@var{mode}} instruction pattern
7116@cindex @code{sync_new_ior@var{mode}} instruction pattern
7117@cindex @code{sync_new_and@var{mode}} instruction pattern
7118@cindex @code{sync_new_xor@var{mode}} instruction pattern
7119@cindex @code{sync_new_nand@var{mode}} instruction pattern
7120@item @samp{sync_new_add@var{mode}}, @samp{sync_new_sub@var{mode}}
7121@itemx @samp{sync_new_ior@var{mode}}, @samp{sync_new_and@var{mode}}
7122@itemx @samp{sync_new_xor@var{mode}}, @samp{sync_new_nand@var{mode}}
48ae6c13
RH
7123These patterns are like their @code{sync_old_@var{op}} counterparts,
7124except that they return the value that exists in the memory location
7125after the operation, rather than before the operation.
7126
7127@cindex @code{sync_lock_test_and_set@var{mode}} instruction pattern
7128@item @samp{sync_lock_test_and_set@var{mode}}
48ae6c13
RH
7129This pattern takes two forms, based on the capabilities of the target.
7130In either case, operand 0 is the result of the operand, operand 1 is
7131the memory on which the atomic operation is performed, and operand 2
7132is the value to set in the lock.
7133
7134In the ideal case, this operation is an atomic exchange operation, in
7135which the previous value in memory operand is copied into the result
7136operand, and the value operand is stored in the memory operand.
7137
7138For less capable targets, any value operand that is not the constant 1
7139should be rejected with @code{FAIL}. In this case the target may use
7140an atomic test-and-set bit operation. The result operand should contain
71411 if the bit was previously set and 0 if the bit was previously clear.
7142The true contents of the memory operand are implementation defined.
7143
7144This pattern must issue any memory barrier instructions such that the
915167f5
GK
7145pattern as a whole acts as an acquire barrier, that is all memory
7146operations after the pattern do not occur until the lock is acquired.
48ae6c13
RH
7147
7148If this pattern is not defined, the operation will be constructed from
7149a compare-and-swap operation, if defined.
7150
7151@cindex @code{sync_lock_release@var{mode}} instruction pattern
7152@item @samp{sync_lock_release@var{mode}}
48ae6c13
RH
7153This pattern, if defined, releases a lock set by
7154@code{sync_lock_test_and_set@var{mode}}. Operand 0 is the memory
8635a919
GK
7155that contains the lock; operand 1 is the value to store in the lock.
7156
7157If the target doesn't implement full semantics for
7158@code{sync_lock_test_and_set@var{mode}}, any value operand which is not
7159the constant 0 should be rejected with @code{FAIL}, and the true contents
7160of the memory operand are implementation defined.
48ae6c13
RH
7161
7162This pattern must issue any memory barrier instructions such that the
915167f5
GK
7163pattern as a whole acts as a release barrier, that is the lock is
7164released only after all previous memory operations have completed.
48ae6c13
RH
7165
7166If this pattern is not defined, then a @code{memory_barrier} pattern
8635a919 7167will be emitted, followed by a store of the value to the memory operand.
48ae6c13 7168
86951993
AM
7169@cindex @code{atomic_compare_and_swap@var{mode}} instruction pattern
7170@item @samp{atomic_compare_and_swap@var{mode}}
7171This pattern, if defined, emits code for an atomic compare-and-swap
7172operation with memory model semantics. Operand 2 is the memory on which
7173the atomic operation is performed. Operand 0 is an output operand which
7174is set to true or false based on whether the operation succeeded. Operand
71751 is an output operand which is set to the contents of the memory before
7176the operation was attempted. Operand 3 is the value that is expected to
7177be in memory. Operand 4 is the value to put in memory if the expected
7178value is found there. Operand 5 is set to 1 if this compare and swap is to
7179be treated as a weak operation. Operand 6 is the memory model to be used
7180if the operation is a success. Operand 7 is the memory model to be used
7181if the operation fails.
7182
7183If memory referred to in operand 2 contains the value in operand 3, then
7184operand 4 is stored in memory pointed to by operand 2 and fencing based on
7185the memory model in operand 6 is issued.
7186
7187If memory referred to in operand 2 does not contain the value in operand 3,
7188then fencing based on the memory model in operand 7 is issued.
7189
7190If a target does not support weak compare-and-swap operations, or the port
7191elects not to implement weak operations, the argument in operand 5 can be
7192ignored. Note a strong implementation must be provided.
7193
7194If this pattern is not provided, the @code{__atomic_compare_exchange}
7195built-in functions will utilize the legacy @code{sync_compare_and_swap}
7196pattern with an @code{__ATOMIC_SEQ_CST} memory model.
7197
7198@cindex @code{atomic_load@var{mode}} instruction pattern
7199@item @samp{atomic_load@var{mode}}
7200This pattern implements an atomic load operation with memory model
7201semantics. Operand 1 is the memory address being loaded from. Operand 0
7202is the result of the load. Operand 2 is the memory model to be used for
7203the load operation.
7204
7205If not present, the @code{__atomic_load} built-in function will either
7206resort to a normal load with memory barriers, or a compare-and-swap
7207operation if a normal load would not be atomic.
7208
7209@cindex @code{atomic_store@var{mode}} instruction pattern
7210@item @samp{atomic_store@var{mode}}
7211This pattern implements an atomic store operation with memory model
7212semantics. Operand 0 is the memory address being stored to. Operand 1
7213is the value to be written. Operand 2 is the memory model to be used for
7214the operation.
7215
7216If not present, the @code{__atomic_store} built-in function will attempt to
7217perform a normal store and surround it with any required memory fences. If
7218the store would not be atomic, then an @code{__atomic_exchange} is
7219attempted with the result being ignored.
7220
7221@cindex @code{atomic_exchange@var{mode}} instruction pattern
7222@item @samp{atomic_exchange@var{mode}}
7223This pattern implements an atomic exchange operation with memory model
7224semantics. Operand 1 is the memory location the operation is performed on.
7225Operand 0 is an output operand which is set to the original value contained
7226in the memory pointed to by operand 1. Operand 2 is the value to be
7227stored. Operand 3 is the memory model to be used.
7228
7229If this pattern is not present, the built-in function
7230@code{__atomic_exchange} will attempt to preform the operation with a
7231compare and swap loop.
7232
7233@cindex @code{atomic_add@var{mode}} instruction pattern
7234@cindex @code{atomic_sub@var{mode}} instruction pattern
7235@cindex @code{atomic_or@var{mode}} instruction pattern
7236@cindex @code{atomic_and@var{mode}} instruction pattern
7237@cindex @code{atomic_xor@var{mode}} instruction pattern
7238@cindex @code{atomic_nand@var{mode}} instruction pattern
7239@item @samp{atomic_add@var{mode}}, @samp{atomic_sub@var{mode}}
7240@itemx @samp{atomic_or@var{mode}}, @samp{atomic_and@var{mode}}
7241@itemx @samp{atomic_xor@var{mode}}, @samp{atomic_nand@var{mode}}
86951993
AM
7242These patterns emit code for an atomic operation on memory with memory
7243model semantics. Operand 0 is the memory on which the atomic operation is
7244performed. Operand 1 is the second operand to the binary operator.
7245Operand 2 is the memory model to be used by the operation.
7246
7247If these patterns are not defined, attempts will be made to use legacy
c29c1030 7248@code{sync} patterns, or equivalent patterns which return a result. If
86951993
AM
7249none of these are available a compare-and-swap loop will be used.
7250
7251@cindex @code{atomic_fetch_add@var{mode}} instruction pattern
7252@cindex @code{atomic_fetch_sub@var{mode}} instruction pattern
7253@cindex @code{atomic_fetch_or@var{mode}} instruction pattern
7254@cindex @code{atomic_fetch_and@var{mode}} instruction pattern
7255@cindex @code{atomic_fetch_xor@var{mode}} instruction pattern
7256@cindex @code{atomic_fetch_nand@var{mode}} instruction pattern
7257@item @samp{atomic_fetch_add@var{mode}}, @samp{atomic_fetch_sub@var{mode}}
7258@itemx @samp{atomic_fetch_or@var{mode}}, @samp{atomic_fetch_and@var{mode}}
7259@itemx @samp{atomic_fetch_xor@var{mode}}, @samp{atomic_fetch_nand@var{mode}}
86951993
AM
7260These patterns emit code for an atomic operation on memory with memory
7261model semantics, and return the original value. Operand 0 is an output
7262operand which contains the value of the memory location before the
7263operation was performed. Operand 1 is the memory on which the atomic
7264operation is performed. Operand 2 is the second operand to the binary
7265operator. Operand 3 is the memory model to be used by the operation.
7266
7267If these patterns are not defined, attempts will be made to use legacy
7268@code{sync} patterns. If none of these are available a compare-and-swap
7269loop will be used.
7270
7271@cindex @code{atomic_add_fetch@var{mode}} instruction pattern
7272@cindex @code{atomic_sub_fetch@var{mode}} instruction pattern
7273@cindex @code{atomic_or_fetch@var{mode}} instruction pattern
7274@cindex @code{atomic_and_fetch@var{mode}} instruction pattern
7275@cindex @code{atomic_xor_fetch@var{mode}} instruction pattern
7276@cindex @code{atomic_nand_fetch@var{mode}} instruction pattern
7277@item @samp{atomic_add_fetch@var{mode}}, @samp{atomic_sub_fetch@var{mode}}
7278@itemx @samp{atomic_or_fetch@var{mode}}, @samp{atomic_and_fetch@var{mode}}
7279@itemx @samp{atomic_xor_fetch@var{mode}}, @samp{atomic_nand_fetch@var{mode}}
86951993
AM
7280These patterns emit code for an atomic operation on memory with memory
7281model semantics and return the result after the operation is performed.
7282Operand 0 is an output operand which contains the value after the
7283operation. Operand 1 is the memory on which the atomic operation is
7284performed. Operand 2 is the second operand to the binary operator.
7285Operand 3 is the memory model to be used by the operation.
7286
7287If these patterns are not defined, attempts will be made to use legacy
c29c1030 7288@code{sync} patterns, or equivalent patterns which return the result before
86951993
AM
7289the operation followed by the arithmetic operation required to produce the
7290result. If none of these are available a compare-and-swap loop will be
7291used.
7292
f8a27aa6
RH
7293@cindex @code{atomic_test_and_set} instruction pattern
7294@item @samp{atomic_test_and_set}
f8a27aa6
RH
7295This pattern emits code for @code{__builtin_atomic_test_and_set}.
7296Operand 0 is an output operand which is set to true if the previous
7297previous contents of the byte was "set", and false otherwise. Operand 1
7298is the @code{QImode} memory to be modified. Operand 2 is the memory
7299model to be used.
7300
7301The specific value that defines "set" is implementation defined, and
7302is normally based on what is performed by the native atomic test and set
7303instruction.
7304
adedd5c1
JJ
7305@cindex @code{atomic_bit_test_and_set@var{mode}} instruction pattern
7306@cindex @code{atomic_bit_test_and_complement@var{mode}} instruction pattern
7307@cindex @code{atomic_bit_test_and_reset@var{mode}} instruction pattern
7308@item @samp{atomic_bit_test_and_set@var{mode}}
7309@itemx @samp{atomic_bit_test_and_complement@var{mode}}
7310@itemx @samp{atomic_bit_test_and_reset@var{mode}}
7311These patterns emit code for an atomic bitwise operation on memory with memory
7312model semantics, and return the original value of the specified bit.
7313Operand 0 is an output operand which contains the value of the specified bit
7314from the memory location before the operation was performed. Operand 1 is the
7315memory on which the atomic operation is performed. Operand 2 is the bit within
7316the operand, starting with least significant bit. Operand 3 is the memory model
7317to be used by the operation. Operand 4 is a flag - it is @code{const1_rtx}
7318if operand 0 should contain the original value of the specified bit in the
7319least significant bit of the operand, and @code{const0_rtx} if the bit should
7320be in its original position in the operand.
7321@code{atomic_bit_test_and_set@var{mode}} atomically sets the specified bit after
7322remembering its original value, @code{atomic_bit_test_and_complement@var{mode}}
7323inverts the specified bit and @code{atomic_bit_test_and_reset@var{mode}} clears
7324the specified bit.
7325
7326If these patterns are not defined, attempts will be made to use
7327@code{atomic_fetch_or@var{mode}}, @code{atomic_fetch_xor@var{mode}} or
7328@code{atomic_fetch_and@var{mode}} instruction patterns, or their @code{sync}
7329counterparts. If none of these are available a compare-and-swap
7330loop will be used.
7331
5e5ccf0d
AM
7332@cindex @code{mem_thread_fence} instruction pattern
7333@item @samp{mem_thread_fence}
86951993
AM
7334This pattern emits code required to implement a thread fence with
7335memory model semantics. Operand 0 is the memory model to be used.
7336
5e5ccf0d
AM
7337For the @code{__ATOMIC_RELAXED} model no instructions need to be issued
7338and this expansion is not invoked.
7339
7340The compiler always emits a compiler memory barrier regardless of what
7341expanding this pattern produced.
7342
7343If this pattern is not defined, the compiler falls back to expanding the
7344@code{memory_barrier} pattern, then to emitting @code{__sync_synchronize}
7345library call, and finally to just placing a compiler memory barrier.
86951993 7346
f959607b
CLT
7347@cindex @code{get_thread_pointer@var{mode}} instruction pattern
7348@cindex @code{set_thread_pointer@var{mode}} instruction pattern
7349@item @samp{get_thread_pointer@var{mode}}
7350@itemx @samp{set_thread_pointer@var{mode}}
7351These patterns emit code that reads/sets the TLS thread pointer. Currently,
7352these are only needed if the target needs to support the
7353@code{__builtin_thread_pointer} and @code{__builtin_set_thread_pointer}
7354builtins.
7355
7356The get/set patterns have a single output/input operand respectively,
7357with @var{mode} intended to be @code{Pmode}.
7358
7d69de61
RH
7359@cindex @code{stack_protect_set} instruction pattern
7360@item @samp{stack_protect_set}
643e867f 7361This pattern, if defined, moves a @code{ptr_mode} value from the memory
7d69de61
RH
7362in operand 1 to the memory in operand 0 without leaving the value in
7363a register afterward. This is to avoid leaking the value some place
759915ca 7364that an attacker might use to rewrite the stack guard slot after
7d69de61
RH
7365having clobbered it.
7366
7367If this pattern is not defined, then a plain move pattern is generated.
7368
7369@cindex @code{stack_protect_test} instruction pattern
7370@item @samp{stack_protect_test}
643e867f 7371This pattern, if defined, compares a @code{ptr_mode} value from the
7d69de61 7372memory in operand 1 with the memory in operand 0 without leaving the
3aebbe5f 7373value in a register afterward and branches to operand 2 if the values
e9d3ef3b 7374were equal.
7d69de61 7375
3aebbe5f
JJ
7376If this pattern is not defined, then a plain compare pattern and
7377conditional branch pattern is used.
7d69de61 7378
677feb77
DD
7379@cindex @code{clear_cache} instruction pattern
7380@item @samp{clear_cache}
677feb77
DD
7381This pattern, if defined, flushes the instruction cache for a region of
7382memory. The region is bounded to by the Pmode pointers in operand 0
7383inclusive and operand 1 exclusive.
7384
7385If this pattern is not defined, a call to the library function
7386@code{__clear_cache} is used.
7387
03dda8e3
RK
7388@end table
7389
a5249a21
HPN
7390@end ifset
7391@c Each of the following nodes are wrapped in separate
7392@c "@ifset INTERNALS" to work around memory limits for the default
7393@c configuration in older tetex distributions. Known to not work:
7394@c tetex-1.0.7, known to work: tetex-2.0.2.
7395@ifset INTERNALS
03dda8e3
RK
7396@node Pattern Ordering
7397@section When the Order of Patterns Matters
7398@cindex Pattern Ordering
7399@cindex Ordering of Patterns
7400
7401Sometimes an insn can match more than one instruction pattern. Then the
7402pattern that appears first in the machine description is the one used.
7403Therefore, more specific patterns (patterns that will match fewer things)
7404and faster instructions (those that will produce better code when they
7405do match) should usually go first in the description.
7406
7407In some cases the effect of ordering the patterns can be used to hide
7408a pattern when it is not valid. For example, the 68000 has an
7409instruction for converting a fullword to floating point and another
7410for converting a byte to floating point. An instruction converting
7411an integer to floating point could match either one. We put the
7412pattern to convert the fullword first to make sure that one will
7413be used rather than the other. (Otherwise a large integer might
7414be generated as a single-byte immediate quantity, which would not work.)
7415Instead of using this pattern ordering it would be possible to make the
7416pattern for convert-a-byte smart enough to deal properly with any
7417constant value.
7418
a5249a21
HPN
7419@end ifset
7420@ifset INTERNALS
03dda8e3
RK
7421@node Dependent Patterns
7422@section Interdependence of Patterns
7423@cindex Dependent Patterns
7424@cindex Interdependence of Patterns
7425
03dda8e3
RK
7426In some cases machines support instructions identical except for the
7427machine mode of one or more operands. For example, there may be
7428``sign-extend halfword'' and ``sign-extend byte'' instructions whose
7429patterns are
7430
3ab51846 7431@smallexample
03dda8e3
RK
7432(set (match_operand:SI 0 @dots{})
7433 (extend:SI (match_operand:HI 1 @dots{})))
7434
7435(set (match_operand:SI 0 @dots{})
7436 (extend:SI (match_operand:QI 1 @dots{})))
3ab51846 7437@end smallexample
03dda8e3
RK
7438
7439@noindent
7440Constant integers do not specify a machine mode, so an instruction to
7441extend a constant value could match either pattern. The pattern it
7442actually will match is the one that appears first in the file. For correct
7443results, this must be the one for the widest possible mode (@code{HImode},
7444here). If the pattern matches the @code{QImode} instruction, the results
7445will be incorrect if the constant value does not actually fit that mode.
7446
7447Such instructions to extend constants are rarely generated because they are
7448optimized away, but they do occasionally happen in nonoptimized
7449compilations.
7450
7451If a constraint in a pattern allows a constant, the reload pass may
7452replace a register with a constant permitted by the constraint in some
7453cases. Similarly for memory references. Because of this substitution,
7454you should not provide separate patterns for increment and decrement
7455instructions. Instead, they should be generated from the same pattern
7456that supports register-register add insns by examining the operands and
7457generating the appropriate machine instruction.
7458
a5249a21
HPN
7459@end ifset
7460@ifset INTERNALS
03dda8e3
RK
7461@node Jump Patterns
7462@section Defining Jump Instruction Patterns
7463@cindex jump instruction patterns
7464@cindex defining jump instruction patterns
7465
f90b7a5a
PB
7466GCC does not assume anything about how the machine realizes jumps.
7467The machine description should define a single pattern, usually
7468a @code{define_expand}, which expands to all the required insns.
7469
7470Usually, this would be a comparison insn to set the condition code
7471and a separate branch insn testing the condition code and branching
7472or not according to its value. For many machines, however,
7473separating compares and branches is limiting, which is why the
7474more flexible approach with one @code{define_expand} is used in GCC.
7475The machine description becomes clearer for architectures that
7476have compare-and-branch instructions but no condition code. It also
7477works better when different sets of comparison operators are supported
7478by different kinds of conditional branches (e.g. integer vs. floating-point),
7479or by conditional branches with respect to conditional stores.
7480
7481Two separate insns are always used if the machine description represents
7482a condition code register using the legacy RTL expression @code{(cc0)},
7483and on most machines that use a separate condition code register
7484(@pxref{Condition Code}). For machines that use @code{(cc0)}, in
7485fact, the set and use of the condition code must be separate and
7486adjacent@footnote{@code{note} insns can separate them, though.}, thus
7487allowing flags in @code{cc_status} to be used (@pxref{Condition Code}) and
7488so that the comparison and branch insns could be located from each other
7489by using the functions @code{prev_cc0_setter} and @code{next_cc0_user}.
7490
7491Even in this case having a single entry point for conditional branches
7492is advantageous, because it handles equally well the case where a single
7493comparison instruction records the results of both signed and unsigned
7494comparison of the given operands (with the branch insns coming in distinct
7495signed and unsigned flavors) as in the x86 or SPARC, and the case where
7496there are distinct signed and unsigned compare instructions and only
7497one set of conditional branch instructions as in the PowerPC.
03dda8e3 7498
a5249a21
HPN
7499@end ifset
7500@ifset INTERNALS
6e4fcc95
MH
7501@node Looping Patterns
7502@section Defining Looping Instruction Patterns
7503@cindex looping instruction patterns
7504@cindex defining looping instruction patterns
7505
05713b80 7506Some machines have special jump instructions that can be utilized to
6e4fcc95
MH
7507make loops more efficient. A common example is the 68000 @samp{dbra}
7508instruction which performs a decrement of a register and a branch if the
7509result was greater than zero. Other machines, in particular digital
7510signal processors (DSPs), have special block repeat instructions to
7511provide low-overhead loop support. For example, the TI TMS320C3x/C4x
7512DSPs have a block repeat instruction that loads special registers to
7513mark the top and end of a loop and to count the number of loop
7514iterations. This avoids the need for fetching and executing a
c771326b 7515@samp{dbra}-like instruction and avoids pipeline stalls associated with
6e4fcc95
MH
7516the jump.
7517
9c34dbbf
ZW
7518GCC has three special named patterns to support low overhead looping.
7519They are @samp{decrement_and_branch_until_zero}, @samp{doloop_begin},
7520and @samp{doloop_end}. The first pattern,
6e4fcc95
MH
7521@samp{decrement_and_branch_until_zero}, is not emitted during RTL
7522generation but may be emitted during the instruction combination phase.
7523This requires the assistance of the loop optimizer, using information
7524collected during strength reduction, to reverse a loop to count down to
7525zero. Some targets also require the loop optimizer to add a
7526@code{REG_NONNEG} note to indicate that the iteration count is always
7527positive. This is needed if the target performs a signed loop
7528termination test. For example, the 68000 uses a pattern similar to the
7529following for its @code{dbra} instruction:
7530
7531@smallexample
7532@group
7533(define_insn "decrement_and_branch_until_zero"
7534 [(set (pc)
6ccde948
RW
7535 (if_then_else
7536 (ge (plus:SI (match_operand:SI 0 "general_operand" "+d*am")
7537 (const_int -1))
7538 (const_int 0))
7539 (label_ref (match_operand 1 "" ""))
7540 (pc)))
6e4fcc95 7541 (set (match_dup 0)
6ccde948
RW
7542 (plus:SI (match_dup 0)
7543 (const_int -1)))]
6e4fcc95 7544 "find_reg_note (insn, REG_NONNEG, 0)"
630d3d5a 7545 "@dots{}")
6e4fcc95
MH
7546@end group
7547@end smallexample
7548
7549Note that since the insn is both a jump insn and has an output, it must
7550deal with its own reloads, hence the `m' constraints. Also note that
7551since this insn is generated by the instruction combination phase
7552combining two sequential insns together into an implicit parallel insn,
7553the iteration counter needs to be biased by the same amount as the
630d3d5a 7554decrement operation, in this case @minus{}1. Note that the following similar
6e4fcc95
MH
7555pattern will not be matched by the combiner.
7556
7557@smallexample
7558@group
7559(define_insn "decrement_and_branch_until_zero"
7560 [(set (pc)
6ccde948
RW
7561 (if_then_else
7562 (ge (match_operand:SI 0 "general_operand" "+d*am")
7563 (const_int 1))
7564 (label_ref (match_operand 1 "" ""))
7565 (pc)))
6e4fcc95 7566 (set (match_dup 0)
6ccde948
RW
7567 (plus:SI (match_dup 0)
7568 (const_int -1)))]
6e4fcc95 7569 "find_reg_note (insn, REG_NONNEG, 0)"
630d3d5a 7570 "@dots{}")
6e4fcc95
MH
7571@end group
7572@end smallexample
7573
7574The other two special looping patterns, @samp{doloop_begin} and
c21cd8b1 7575@samp{doloop_end}, are emitted by the loop optimizer for certain
6e4fcc95 7576well-behaved loops with a finite number of loop iterations using
ebb48a4d 7577information collected during strength reduction.
6e4fcc95
MH
7578
7579The @samp{doloop_end} pattern describes the actual looping instruction
7580(or the implicit looping operation) and the @samp{doloop_begin} pattern
c21cd8b1 7581is an optional companion pattern that can be used for initialization
6e4fcc95
MH
7582needed for some low-overhead looping instructions.
7583
7584Note that some machines require the actual looping instruction to be
7585emitted at the top of the loop (e.g., the TMS320C3x/C4x DSPs). Emitting
7586the true RTL for a looping instruction at the top of the loop can cause
7587problems with flow analysis. So instead, a dummy @code{doloop} insn is
7588emitted at the end of the loop. The machine dependent reorg pass checks
7589for the presence of this @code{doloop} insn and then searches back to
7590the top of the loop, where it inserts the true looping insn (provided
7591there are no instructions in the loop which would cause problems). Any
7592additional labels can be emitted at this point. In addition, if the
7593desired special iteration counter register was not allocated, this
7594machine dependent reorg pass could emit a traditional compare and jump
7595instruction pair.
7596
7597The essential difference between the
7598@samp{decrement_and_branch_until_zero} and the @samp{doloop_end}
7599patterns is that the loop optimizer allocates an additional pseudo
7600register for the latter as an iteration counter. This pseudo register
7601cannot be used within the loop (i.e., general induction variables cannot
7602be derived from it), however, in many cases the loop induction variable
7603may become redundant and removed by the flow pass.
7604
7605
a5249a21
HPN
7606@end ifset
7607@ifset INTERNALS
03dda8e3
RK
7608@node Insn Canonicalizations
7609@section Canonicalization of Instructions
7610@cindex canonicalization of instructions
7611@cindex insn canonicalization
7612
7613There are often cases where multiple RTL expressions could represent an
7614operation performed by a single machine instruction. This situation is
7615most commonly encountered with logical, branch, and multiply-accumulate
7616instructions. In such cases, the compiler attempts to convert these
7617multiple RTL expressions into a single canonical form to reduce the
7618number of insn patterns required.
7619
7620In addition to algebraic simplifications, following canonicalizations
7621are performed:
7622
7623@itemize @bullet
7624@item
7625For commutative and comparison operators, a constant is always made the
7626second operand. If a machine only supports a constant as the second
7627operand, only patterns that match a constant in the second operand need
7628be supplied.
7629
e3d6e740
GK
7630@item
7631For associative operators, a sequence of operators will always chain
7632to the left; for instance, only the left operand of an integer @code{plus}
7633can itself be a @code{plus}. @code{and}, @code{ior}, @code{xor},
7634@code{plus}, @code{mult}, @code{smin}, @code{smax}, @code{umin}, and
7635@code{umax} are associative when applied to integers, and sometimes to
7636floating-point.
7637
7638@item
03dda8e3
RK
7639@cindex @code{neg}, canonicalization of
7640@cindex @code{not}, canonicalization of
7641@cindex @code{mult}, canonicalization of
7642@cindex @code{plus}, canonicalization of
7643@cindex @code{minus}, canonicalization of
7644For these operators, if only one operand is a @code{neg}, @code{not},
7645@code{mult}, @code{plus}, or @code{minus} expression, it will be the
7646first operand.
7647
16823694
GK
7648@item
7649In combinations of @code{neg}, @code{mult}, @code{plus}, and
7650@code{minus}, the @code{neg} operations (if any) will be moved inside
daf2f129 7651the operations as far as possible. For instance,
16823694 7652@code{(neg (mult A B))} is canonicalized as @code{(mult (neg A) B)}, but
9302a061 7653@code{(plus (mult (neg B) C) A)} is canonicalized as
16823694
GK
7654@code{(minus A (mult B C))}.
7655
03dda8e3
RK
7656@cindex @code{compare}, canonicalization of
7657@item
7658For the @code{compare} operator, a constant is always the second operand
f90b7a5a 7659if the first argument is a condition code register or @code{(cc0)}.
03dda8e3 7660
81ad201a
UB
7661@item
7662For instructions that inherently set a condition code register, the
7663@code{compare} operator is always written as the first RTL expression of
7664the @code{parallel} instruction pattern. For example,
7665
7666@smallexample
7667(define_insn ""
7668 [(set (reg:CCZ FLAGS_REG)
7669 (compare:CCZ
7670 (plus:SI
7671 (match_operand:SI 1 "register_operand" "%r")
7672 (match_operand:SI 2 "register_operand" "r"))
7673 (const_int 0)))
7674 (set (match_operand:SI 0 "register_operand" "=r")
7675 (plus:SI (match_dup 1) (match_dup 2)))]
7676 ""
7677 "addl %0, %1, %2")
7678@end smallexample
7679
f90b7a5a 7680@item
03dda8e3
RK
7681An operand of @code{neg}, @code{not}, @code{mult}, @code{plus}, or
7682@code{minus} is made the first operand under the same conditions as
7683above.
7684
921c4418
RIL
7685@item
7686@code{(ltu (plus @var{a} @var{b}) @var{b})} is converted to
7687@code{(ltu (plus @var{a} @var{b}) @var{a})}. Likewise with @code{geu} instead
7688of @code{ltu}.
7689
03dda8e3
RK
7690@item
7691@code{(minus @var{x} (const_int @var{n}))} is converted to
7692@code{(plus @var{x} (const_int @var{-n}))}.
7693
7694@item
7695Within address computations (i.e., inside @code{mem}), a left shift is
7696converted into the appropriate multiplication by a power of two.
7697
7698@cindex @code{ior}, canonicalization of
7699@cindex @code{and}, canonicalization of
7700@cindex De Morgan's law
72938a4c 7701@item
090359d6 7702De Morgan's Law is used to move bitwise negation inside a bitwise
03dda8e3
RK
7703logical-and or logical-or operation. If this results in only one
7704operand being a @code{not} expression, it will be the first one.
7705
7706A machine that has an instruction that performs a bitwise logical-and of one
7707operand with the bitwise negation of the other should specify the pattern
7708for that instruction as
7709
3ab51846 7710@smallexample
03dda8e3
RK
7711(define_insn ""
7712 [(set (match_operand:@var{m} 0 @dots{})
7713 (and:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7714 (match_operand:@var{m} 2 @dots{})))]
7715 "@dots{}"
7716 "@dots{}")
3ab51846 7717@end smallexample
03dda8e3
RK
7718
7719@noindent
7720Similarly, a pattern for a ``NAND'' instruction should be written
7721
3ab51846 7722@smallexample
03dda8e3
RK
7723(define_insn ""
7724 [(set (match_operand:@var{m} 0 @dots{})
7725 (ior:@var{m} (not:@var{m} (match_operand:@var{m} 1 @dots{}))
7726 (not:@var{m} (match_operand:@var{m} 2 @dots{}))))]
7727 "@dots{}"
7728 "@dots{}")
3ab51846 7729@end smallexample
03dda8e3
RK
7730
7731In both cases, it is not necessary to include patterns for the many
7732logically equivalent RTL expressions.
7733
7734@cindex @code{xor}, canonicalization of
7735@item
7736The only possible RTL expressions involving both bitwise exclusive-or
7737and bitwise negation are @code{(xor:@var{m} @var{x} @var{y})}
bd819a4a 7738and @code{(not:@var{m} (xor:@var{m} @var{x} @var{y}))}.
03dda8e3
RK
7739
7740@item
7741The sum of three items, one of which is a constant, will only appear in
7742the form
7743
3ab51846 7744@smallexample
03dda8e3 7745(plus:@var{m} (plus:@var{m} @var{x} @var{y}) @var{constant})
3ab51846 7746@end smallexample
03dda8e3 7747
03dda8e3
RK
7748@cindex @code{zero_extract}, canonicalization of
7749@cindex @code{sign_extract}, canonicalization of
7750@item
7751Equality comparisons of a group of bits (usually a single bit) with zero
7752will be written using @code{zero_extract} rather than the equivalent
7753@code{and} or @code{sign_extract} operations.
7754
c536876e
AS
7755@cindex @code{mult}, canonicalization of
7756@item
7757@code{(sign_extend:@var{m1} (mult:@var{m2} (sign_extend:@var{m2} @var{x})
7758(sign_extend:@var{m2} @var{y})))} is converted to @code{(mult:@var{m1}
7759(sign_extend:@var{m1} @var{x}) (sign_extend:@var{m1} @var{y}))}, and likewise
7760for @code{zero_extend}.
7761
7762@item
7763@code{(sign_extend:@var{m1} (mult:@var{m2} (ashiftrt:@var{m2}
7764@var{x} @var{s}) (sign_extend:@var{m2} @var{y})))} is converted
7765to @code{(mult:@var{m1} (sign_extend:@var{m1} (ashiftrt:@var{m2}
7766@var{x} @var{s})) (sign_extend:@var{m1} @var{y}))}, and likewise for
7767patterns using @code{zero_extend} and @code{lshiftrt}. If the second
7768operand of @code{mult} is also a shift, then that is extended also.
7769This transformation is only applied when it can be proven that the
7770original operation had sufficient precision to prevent overflow.
7771
03dda8e3
RK
7772@end itemize
7773
cd16503a
HPN
7774Further canonicalization rules are defined in the function
7775@code{commutative_operand_precedence} in @file{gcc/rtlanal.c}.
7776
a5249a21
HPN
7777@end ifset
7778@ifset INTERNALS
03dda8e3
RK
7779@node Expander Definitions
7780@section Defining RTL Sequences for Code Generation
7781@cindex expander definitions
7782@cindex code generation RTL sequences
7783@cindex defining RTL sequences for code generation
7784
7785On some target machines, some standard pattern names for RTL generation
7786cannot be handled with single insn, but a sequence of RTL insns can
7787represent them. For these target machines, you can write a
161d7b59 7788@code{define_expand} to specify how to generate the sequence of RTL@.
03dda8e3
RK
7789
7790@findex define_expand
7791A @code{define_expand} is an RTL expression that looks almost like a
7792@code{define_insn}; but, unlike the latter, a @code{define_expand} is used
7793only for RTL generation and it can produce more than one RTL insn.
7794
7795A @code{define_expand} RTX has four operands:
7796
7797@itemize @bullet
7798@item
7799The name. Each @code{define_expand} must have a name, since the only
7800use for it is to refer to it by name.
7801
03dda8e3 7802@item
f3a3d0d3
RH
7803The RTL template. This is a vector of RTL expressions representing
7804a sequence of separate instructions. Unlike @code{define_insn}, there
7805is no implicit surrounding @code{PARALLEL}.
03dda8e3
RK
7806
7807@item
7808The condition, a string containing a C expression. This expression is
7809used to express how the availability of this pattern depends on
f0523f02
JM
7810subclasses of target machine, selected by command-line options when GCC
7811is run. This is just like the condition of a @code{define_insn} that
03dda8e3
RK
7812has a standard name. Therefore, the condition (if present) may not
7813depend on the data in the insn being matched, but only the
7814target-machine-type flags. The compiler needs to test these conditions
7815during initialization in order to learn exactly which named instructions
7816are available in a particular run.
7817
7818@item
7819The preparation statements, a string containing zero or more C
7820statements which are to be executed before RTL code is generated from
7821the RTL template.
7822
7823Usually these statements prepare temporary registers for use as
7824internal operands in the RTL template, but they can also generate RTL
7825insns directly by calling routines such as @code{emit_insn}, etc.
7826Any such insns precede the ones that come from the RTL template.
477c104e
MK
7827
7828@item
7829Optionally, a vector containing the values of attributes. @xref{Insn
7830Attributes}.
03dda8e3
RK
7831@end itemize
7832
7833Every RTL insn emitted by a @code{define_expand} must match some
7834@code{define_insn} in the machine description. Otherwise, the compiler
7835will crash when trying to generate code for the insn or trying to optimize
7836it.
7837
7838The RTL template, in addition to controlling generation of RTL insns,
7839also describes the operands that need to be specified when this pattern
7840is used. In particular, it gives a predicate for each operand.
7841
7842A true operand, which needs to be specified in order to generate RTL from
7843the pattern, should be described with a @code{match_operand} in its first
7844occurrence in the RTL template. This enters information on the operand's
f0523f02 7845predicate into the tables that record such things. GCC uses the
03dda8e3
RK
7846information to preload the operand into a register if that is required for
7847valid RTL code. If the operand is referred to more than once, subsequent
7848references should use @code{match_dup}.
7849
7850The RTL template may also refer to internal ``operands'' which are
7851temporary registers or labels used only within the sequence made by the
7852@code{define_expand}. Internal operands are substituted into the RTL
7853template with @code{match_dup}, never with @code{match_operand}. The
7854values of the internal operands are not passed in as arguments by the
7855compiler when it requests use of this pattern. Instead, they are computed
7856within the pattern, in the preparation statements. These statements
7857compute the values and store them into the appropriate elements of
7858@code{operands} so that @code{match_dup} can find them.
7859
7860There are two special macros defined for use in the preparation statements:
7861@code{DONE} and @code{FAIL}. Use them with a following semicolon,
7862as a statement.
7863
7864@table @code
7865
7866@findex DONE
7867@item DONE
7868Use the @code{DONE} macro to end RTL generation for the pattern. The
7869only RTL insns resulting from the pattern on this occasion will be
7870those already emitted by explicit calls to @code{emit_insn} within the
7871preparation statements; the RTL template will not be generated.
7872
7873@findex FAIL
7874@item FAIL
7875Make the pattern fail on this occasion. When a pattern fails, it means
7876that the pattern was not truly available. The calling routines in the
7877compiler will try other strategies for code generation using other patterns.
7878
7879Failure is currently supported only for binary (addition, multiplication,
c771326b 7880shifting, etc.) and bit-field (@code{extv}, @code{extzv}, and @code{insv})
03dda8e3
RK
7881operations.
7882@end table
7883
55e4756f
DD
7884If the preparation falls through (invokes neither @code{DONE} nor
7885@code{FAIL}), then the @code{define_expand} acts like a
7886@code{define_insn} in that the RTL template is used to generate the
7887insn.
7888
7889The RTL template is not used for matching, only for generating the
7890initial insn list. If the preparation statement always invokes
7891@code{DONE} or @code{FAIL}, the RTL template may be reduced to a simple
7892list of operands, such as this example:
7893
7894@smallexample
7895@group
7896(define_expand "addsi3"
7897 [(match_operand:SI 0 "register_operand" "")
7898 (match_operand:SI 1 "register_operand" "")
7899 (match_operand:SI 2 "register_operand" "")]
7900@end group
7901@group
7902 ""
7903 "
58097133 7904@{
55e4756f
DD
7905 handle_add (operands[0], operands[1], operands[2]);
7906 DONE;
58097133 7907@}")
55e4756f
DD
7908@end group
7909@end smallexample
7910
03dda8e3
RK
7911Here is an example, the definition of left-shift for the SPUR chip:
7912
7913@smallexample
7914@group
7915(define_expand "ashlsi3"
7916 [(set (match_operand:SI 0 "register_operand" "")
7917 (ashift:SI
7918@end group
7919@group
7920 (match_operand:SI 1 "register_operand" "")
7921 (match_operand:SI 2 "nonmemory_operand" "")))]
7922 ""
7923 "
7924@end group
7925@end smallexample
7926
7927@smallexample
7928@group
7929@{
7930 if (GET_CODE (operands[2]) != CONST_INT
7931 || (unsigned) INTVAL (operands[2]) > 3)
7932 FAIL;
7933@}")
7934@end group
7935@end smallexample
7936
7937@noindent
7938This example uses @code{define_expand} so that it can generate an RTL insn
7939for shifting when the shift-count is in the supported range of 0 to 3 but
7940fail in other cases where machine insns aren't available. When it fails,
7941the compiler tries another strategy using different patterns (such as, a
7942library call).
7943
7944If the compiler were able to handle nontrivial condition-strings in
7945patterns with names, then it would be possible to use a
7946@code{define_insn} in that case. Here is another case (zero-extension
7947on the 68000) which makes more use of the power of @code{define_expand}:
7948
7949@smallexample
7950(define_expand "zero_extendhisi2"
7951 [(set (match_operand:SI 0 "general_operand" "")
7952 (const_int 0))
7953 (set (strict_low_part
7954 (subreg:HI
7955 (match_dup 0)
7956 0))
7957 (match_operand:HI 1 "general_operand" ""))]
7958 ""
7959 "operands[1] = make_safe_from (operands[1], operands[0]);")
7960@end smallexample
7961
7962@noindent
7963@findex make_safe_from
7964Here two RTL insns are generated, one to clear the entire output operand
7965and the other to copy the input operand into its low half. This sequence
7966is incorrect if the input operand refers to [the old value of] the output
7967operand, so the preparation statement makes sure this isn't so. The
7968function @code{make_safe_from} copies the @code{operands[1]} into a
7969temporary register if it refers to @code{operands[0]}. It does this
7970by emitting another RTL insn.
7971
7972Finally, a third example shows the use of an internal operand.
7973Zero-extension on the SPUR chip is done by @code{and}-ing the result
7974against a halfword mask. But this mask cannot be represented by a
7975@code{const_int} because the constant value is too large to be legitimate
7976on this machine. So it must be copied into a register with
7977@code{force_reg} and then the register used in the @code{and}.
7978
7979@smallexample
7980(define_expand "zero_extendhisi2"
7981 [(set (match_operand:SI 0 "register_operand" "")
7982 (and:SI (subreg:SI
7983 (match_operand:HI 1 "register_operand" "")
7984 0)
7985 (match_dup 2)))]
7986 ""
7987 "operands[2]
3a598fbe 7988 = force_reg (SImode, GEN_INT (65535)); ")
03dda8e3
RK
7989@end smallexample
7990
f4559287 7991@emph{Note:} If the @code{define_expand} is used to serve a
c771326b 7992standard binary or unary arithmetic operation or a bit-field operation,
03dda8e3
RK
7993then the last insn it generates must not be a @code{code_label},
7994@code{barrier} or @code{note}. It must be an @code{insn},
7995@code{jump_insn} or @code{call_insn}. If you don't need a real insn
7996at the end, emit an insn to copy the result of the operation into
7997itself. Such an insn will generate no code, but it can avoid problems
bd819a4a 7998in the compiler.
03dda8e3 7999
a5249a21
HPN
8000@end ifset
8001@ifset INTERNALS
03dda8e3
RK
8002@node Insn Splitting
8003@section Defining How to Split Instructions
8004@cindex insn splitting
8005@cindex instruction splitting
8006@cindex splitting instructions
8007
fae15c93
VM
8008There are two cases where you should specify how to split a pattern
8009into multiple insns. On machines that have instructions requiring
8010delay slots (@pxref{Delay Slots}) or that have instructions whose
8011output is not available for multiple cycles (@pxref{Processor pipeline
8012description}), the compiler phases that optimize these cases need to
8013be able to move insns into one-instruction delay slots. However, some
8014insns may generate more than one machine instruction. These insns
8015cannot be placed into a delay slot.
03dda8e3
RK
8016
8017Often you can rewrite the single insn as a list of individual insns,
8018each corresponding to one machine instruction. The disadvantage of
8019doing so is that it will cause the compilation to be slower and require
8020more space. If the resulting insns are too complex, it may also
8021suppress some optimizations. The compiler splits the insn if there is a
8022reason to believe that it might improve instruction or delay slot
8023scheduling.
8024
8025The insn combiner phase also splits putative insns. If three insns are
8026merged into one insn with a complex expression that cannot be matched by
8027some @code{define_insn} pattern, the combiner phase attempts to split
8028the complex pattern into two insns that are recognized. Usually it can
8029break the complex pattern into two patterns by splitting out some
8030subexpression. However, in some other cases, such as performing an
8031addition of a large constant in two insns on a RISC machine, the way to
8032split the addition into two insns is machine-dependent.
8033
f3a3d0d3 8034@findex define_split
03dda8e3
RK
8035The @code{define_split} definition tells the compiler how to split a
8036complex insn into several simpler insns. It looks like this:
8037
8038@smallexample
8039(define_split
8040 [@var{insn-pattern}]
8041 "@var{condition}"
8042 [@var{new-insn-pattern-1}
8043 @var{new-insn-pattern-2}
8044 @dots{}]
630d3d5a 8045 "@var{preparation-statements}")
03dda8e3
RK
8046@end smallexample
8047
8048@var{insn-pattern} is a pattern that needs to be split and
8049@var{condition} is the final condition to be tested, as in a
8050@code{define_insn}. When an insn matching @var{insn-pattern} and
8051satisfying @var{condition} is found, it is replaced in the insn list
8052with the insns given by @var{new-insn-pattern-1},
8053@var{new-insn-pattern-2}, etc.
8054
630d3d5a 8055The @var{preparation-statements} are similar to those statements that
03dda8e3
RK
8056are specified for @code{define_expand} (@pxref{Expander Definitions})
8057and are executed before the new RTL is generated to prepare for the
8058generated code or emit some insns whose pattern is not fixed. Unlike
8059those in @code{define_expand}, however, these statements must not
8060generate any new pseudo-registers. Once reload has completed, they also
8061must not allocate any space in the stack frame.
8062
582d1f90
PK
8063There are two special macros defined for use in the preparation statements:
8064@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8065as a statement.
8066
8067@table @code
8068
8069@findex DONE
8070@item DONE
8071Use the @code{DONE} macro to end RTL generation for the splitter. The
8072only RTL insns generated as replacement for the matched input insn will
8073be those already emitted by explicit calls to @code{emit_insn} within
8074the preparation statements; the replacement pattern is not used.
8075
8076@findex FAIL
8077@item FAIL
8078Make the @code{define_split} fail on this occasion. When a @code{define_split}
8079fails, it means that the splitter was not truly available for the inputs
8080it was given, and the input insn will not be split.
8081@end table
8082
8083If the preparation falls through (invokes neither @code{DONE} nor
8084@code{FAIL}), then the @code{define_split} uses the replacement
8085template.
8086
03dda8e3
RK
8087Patterns are matched against @var{insn-pattern} in two different
8088circumstances. If an insn needs to be split for delay slot scheduling
8089or insn scheduling, the insn is already known to be valid, which means
8090that it must have been matched by some @code{define_insn} and, if
df2a54e9 8091@code{reload_completed} is nonzero, is known to satisfy the constraints
03dda8e3
RK
8092of that @code{define_insn}. In that case, the new insn patterns must
8093also be insns that are matched by some @code{define_insn} and, if
df2a54e9 8094@code{reload_completed} is nonzero, must also satisfy the constraints
03dda8e3
RK
8095of those definitions.
8096
8097As an example of this usage of @code{define_split}, consider the following
8098example from @file{a29k.md}, which splits a @code{sign_extend} from
8099@code{HImode} to @code{SImode} into a pair of shift insns:
8100
8101@smallexample
8102(define_split
8103 [(set (match_operand:SI 0 "gen_reg_operand" "")
8104 (sign_extend:SI (match_operand:HI 1 "gen_reg_operand" "")))]
8105 ""
8106 [(set (match_dup 0)
8107 (ashift:SI (match_dup 1)
8108 (const_int 16)))
8109 (set (match_dup 0)
8110 (ashiftrt:SI (match_dup 0)
8111 (const_int 16)))]
8112 "
8113@{ operands[1] = gen_lowpart (SImode, operands[1]); @}")
8114@end smallexample
8115
8116When the combiner phase tries to split an insn pattern, it is always the
8117case that the pattern is @emph{not} matched by any @code{define_insn}.
8118The combiner pass first tries to split a single @code{set} expression
8119and then the same @code{set} expression inside a @code{parallel}, but
8120followed by a @code{clobber} of a pseudo-reg to use as a scratch
8121register. In these cases, the combiner expects exactly two new insn
8122patterns to be generated. It will verify that these patterns match some
8123@code{define_insn} definitions, so you need not do this test in the
8124@code{define_split} (of course, there is no point in writing a
8125@code{define_split} that will never produce insns that match).
8126
8127Here is an example of this use of @code{define_split}, taken from
8128@file{rs6000.md}:
8129
8130@smallexample
8131(define_split
8132 [(set (match_operand:SI 0 "gen_reg_operand" "")
8133 (plus:SI (match_operand:SI 1 "gen_reg_operand" "")
8134 (match_operand:SI 2 "non_add_cint_operand" "")))]
8135 ""
8136 [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 3)))
8137 (set (match_dup 0) (plus:SI (match_dup 0) (match_dup 4)))]
8138"
8139@{
8140 int low = INTVAL (operands[2]) & 0xffff;
8141 int high = (unsigned) INTVAL (operands[2]) >> 16;
8142
8143 if (low & 0x8000)
8144 high++, low |= 0xffff0000;
8145
3a598fbe
JL
8146 operands[3] = GEN_INT (high << 16);
8147 operands[4] = GEN_INT (low);
03dda8e3
RK
8148@}")
8149@end smallexample
8150
8151Here the predicate @code{non_add_cint_operand} matches any
8152@code{const_int} that is @emph{not} a valid operand of a single add
8153insn. The add with the smaller displacement is written so that it
8154can be substituted into the address of a subsequent operation.
8155
8156An example that uses a scratch register, from the same file, generates
8157an equality comparison of a register and a large constant:
8158
8159@smallexample
8160(define_split
8161 [(set (match_operand:CC 0 "cc_reg_operand" "")
8162 (compare:CC (match_operand:SI 1 "gen_reg_operand" "")
8163 (match_operand:SI 2 "non_short_cint_operand" "")))
8164 (clobber (match_operand:SI 3 "gen_reg_operand" ""))]
8165 "find_single_use (operands[0], insn, 0)
8166 && (GET_CODE (*find_single_use (operands[0], insn, 0)) == EQ
8167 || GET_CODE (*find_single_use (operands[0], insn, 0)) == NE)"
8168 [(set (match_dup 3) (xor:SI (match_dup 1) (match_dup 4)))
8169 (set (match_dup 0) (compare:CC (match_dup 3) (match_dup 5)))]
8170 "
8171@{
12bcfaa1 8172 /* @r{Get the constant we are comparing against, C, and see what it
03dda8e3 8173 looks like sign-extended to 16 bits. Then see what constant
12bcfaa1 8174 could be XOR'ed with C to get the sign-extended value.} */
03dda8e3
RK
8175
8176 int c = INTVAL (operands[2]);
8177 int sextc = (c << 16) >> 16;
8178 int xorv = c ^ sextc;
8179
3a598fbe
JL
8180 operands[4] = GEN_INT (xorv);
8181 operands[5] = GEN_INT (sextc);
03dda8e3
RK
8182@}")
8183@end smallexample
8184
8185To avoid confusion, don't write a single @code{define_split} that
8186accepts some insns that match some @code{define_insn} as well as some
8187insns that don't. Instead, write two separate @code{define_split}
8188definitions, one for the insns that are valid and one for the insns that
8189are not valid.
8190
6b24c259
JH
8191The splitter is allowed to split jump instructions into sequence of
8192jumps or create new jumps in while splitting non-jump instructions. As
d5f9df6a 8193the control flow graph and branch prediction information needs to be updated,
f282ffb3 8194several restriction apply.
6b24c259
JH
8195
8196Splitting of jump instruction into sequence that over by another jump
c21cd8b1 8197instruction is always valid, as compiler expect identical behavior of new
6b24c259
JH
8198jump. When new sequence contains multiple jump instructions or new labels,
8199more assistance is needed. Splitter is required to create only unconditional
8200jumps, or simple conditional jump instructions. Additionally it must attach a
63519d23 8201@code{REG_BR_PROB} note to each conditional jump. A global variable
addd6f64 8202@code{split_branch_probability} holds the probability of the original branch in case
e4ae5e77 8203it was a simple conditional jump, @minus{}1 otherwise. To simplify
addd6f64 8204recomputing of edge frequencies, the new sequence is required to have only
6b24c259
JH
8205forward jumps to the newly created labels.
8206
fae81b38 8207@findex define_insn_and_split
c88c0d42
CP
8208For the common case where the pattern of a define_split exactly matches the
8209pattern of a define_insn, use @code{define_insn_and_split}. It looks like
8210this:
8211
8212@smallexample
8213(define_insn_and_split
8214 [@var{insn-pattern}]
8215 "@var{condition}"
8216 "@var{output-template}"
8217 "@var{split-condition}"
8218 [@var{new-insn-pattern-1}
8219 @var{new-insn-pattern-2}
8220 @dots{}]
630d3d5a 8221 "@var{preparation-statements}"
c88c0d42
CP
8222 [@var{insn-attributes}])
8223
8224@end smallexample
8225
8226@var{insn-pattern}, @var{condition}, @var{output-template}, and
8227@var{insn-attributes} are used as in @code{define_insn}. The
8228@var{new-insn-pattern} vector and the @var{preparation-statements} are used as
8229in a @code{define_split}. The @var{split-condition} is also used as in
8230@code{define_split}, with the additional behavior that if the condition starts
8231with @samp{&&}, the condition used for the split will be the constructed as a
d7d9c429 8232logical ``and'' of the split condition with the insn condition. For example,
c88c0d42
CP
8233from i386.md:
8234
8235@smallexample
8236(define_insn_and_split "zero_extendhisi2_and"
8237 [(set (match_operand:SI 0 "register_operand" "=r")
8238 (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))
8239 (clobber (reg:CC 17))]
8240 "TARGET_ZERO_EXTEND_WITH_AND && !optimize_size"
8241 "#"
8242 "&& reload_completed"
f282ffb3 8243 [(parallel [(set (match_dup 0)
9c34dbbf 8244 (and:SI (match_dup 0) (const_int 65535)))
6ccde948 8245 (clobber (reg:CC 17))])]
c88c0d42
CP
8246 ""
8247 [(set_attr "type" "alu1")])
8248
8249@end smallexample
8250
ebb48a4d 8251In this case, the actual split condition will be
aee96fe9 8252@samp{TARGET_ZERO_EXTEND_WITH_AND && !optimize_size && reload_completed}.
c88c0d42
CP
8253
8254The @code{define_insn_and_split} construction provides exactly the same
8255functionality as two separate @code{define_insn} and @code{define_split}
8256patterns. It exists for compactness, and as a maintenance tool to prevent
8257having to ensure the two patterns' templates match.
8258
a5249a21
HPN
8259@end ifset
8260@ifset INTERNALS
04d8aa70
AM
8261@node Including Patterns
8262@section Including Patterns in Machine Descriptions.
8263@cindex insn includes
8264
8265@findex include
8266The @code{include} pattern tells the compiler tools where to
8267look for patterns that are in files other than in the file
8a36672b 8268@file{.md}. This is used only at build time and there is no preprocessing allowed.
04d8aa70
AM
8269
8270It looks like:
8271
8272@smallexample
8273
8274(include
8275 @var{pathname})
8276@end smallexample
8277
8278For example:
8279
8280@smallexample
8281
f282ffb3 8282(include "filestuff")
04d8aa70
AM
8283
8284@end smallexample
8285
27d30956 8286Where @var{pathname} is a string that specifies the location of the file,
8a36672b 8287specifies the include file to be in @file{gcc/config/target/filestuff}. The
04d8aa70
AM
8288directory @file{gcc/config/target} is regarded as the default directory.
8289
8290
f282ffb3
JM
8291Machine descriptions may be split up into smaller more manageable subsections
8292and placed into subdirectories.
04d8aa70
AM
8293
8294By specifying:
8295
8296@smallexample
8297
f282ffb3 8298(include "BOGUS/filestuff")
04d8aa70
AM
8299
8300@end smallexample
8301
8302the include file is specified to be in @file{gcc/config/@var{target}/BOGUS/filestuff}.
8303
8304Specifying an absolute path for the include file such as;
8305@smallexample
8306
f282ffb3 8307(include "/u2/BOGUS/filestuff")
04d8aa70
AM
8308
8309@end smallexample
f282ffb3 8310is permitted but is not encouraged.
04d8aa70
AM
8311
8312@subsection RTL Generation Tool Options for Directory Search
8313@cindex directory options .md
8314@cindex options, directory search
8315@cindex search options
8316
8317The @option{-I@var{dir}} option specifies directories to search for machine descriptions.
8318For example:
8319
8320@smallexample
8321
8322genrecog -I/p1/abc/proc1 -I/p2/abcd/pro2 target.md
8323
8324@end smallexample
8325
8326
8327Add the directory @var{dir} to the head of the list of directories to be
8328searched for header files. This can be used to override a system machine definition
8329file, substituting your own version, since these directories are
8330searched before the default machine description file directories. If you use more than
8331one @option{-I} option, the directories are scanned in left-to-right
8332order; the standard default directory come after.
8333
8334
a5249a21
HPN
8335@end ifset
8336@ifset INTERNALS
f3a3d0d3
RH
8337@node Peephole Definitions
8338@section Machine-Specific Peephole Optimizers
8339@cindex peephole optimizer definitions
8340@cindex defining peephole optimizers
8341
8342In addition to instruction patterns the @file{md} file may contain
8343definitions of machine-specific peephole optimizations.
8344
8345The combiner does not notice certain peephole optimizations when the data
8346flow in the program does not suggest that it should try them. For example,
8347sometimes two consecutive insns related in purpose can be combined even
8348though the second one does not appear to use a register computed in the
8349first one. A machine-specific peephole optimizer can detect such
8350opportunities.
8351
8352There are two forms of peephole definitions that may be used. The
8353original @code{define_peephole} is run at assembly output time to
8354match insns and substitute assembly text. Use of @code{define_peephole}
8355is deprecated.
8356
8357A newer @code{define_peephole2} matches insns and substitutes new
8358insns. The @code{peephole2} pass is run after register allocation
ebb48a4d 8359but before scheduling, which may result in much better code for
f3a3d0d3
RH
8360targets that do scheduling.
8361
8362@menu
8363* define_peephole:: RTL to Text Peephole Optimizers
8364* define_peephole2:: RTL to RTL Peephole Optimizers
8365@end menu
8366
a5249a21
HPN
8367@end ifset
8368@ifset INTERNALS
f3a3d0d3
RH
8369@node define_peephole
8370@subsection RTL to Text Peephole Optimizers
8371@findex define_peephole
8372
8373@need 1000
8374A definition looks like this:
8375
8376@smallexample
8377(define_peephole
8378 [@var{insn-pattern-1}
8379 @var{insn-pattern-2}
8380 @dots{}]
8381 "@var{condition}"
8382 "@var{template}"
630d3d5a 8383 "@var{optional-insn-attributes}")
f3a3d0d3
RH
8384@end smallexample
8385
8386@noindent
8387The last string operand may be omitted if you are not using any
8388machine-specific information in this machine description. If present,
8389it must obey the same rules as in a @code{define_insn}.
8390
8391In this skeleton, @var{insn-pattern-1} and so on are patterns to match
8392consecutive insns. The optimization applies to a sequence of insns when
8393@var{insn-pattern-1} matches the first one, @var{insn-pattern-2} matches
bd819a4a 8394the next, and so on.
f3a3d0d3
RH
8395
8396Each of the insns matched by a peephole must also match a
8397@code{define_insn}. Peepholes are checked only at the last stage just
8398before code generation, and only optionally. Therefore, any insn which
8399would match a peephole but no @code{define_insn} will cause a crash in code
8400generation in an unoptimized compilation, or at various optimization
8401stages.
8402
8403The operands of the insns are matched with @code{match_operands},
8404@code{match_operator}, and @code{match_dup}, as usual. What is not
8405usual is that the operand numbers apply to all the insn patterns in the
8406definition. So, you can check for identical operands in two insns by
8407using @code{match_operand} in one insn and @code{match_dup} in the
8408other.
8409
8410The operand constraints used in @code{match_operand} patterns do not have
8411any direct effect on the applicability of the peephole, but they will
8412be validated afterward, so make sure your constraints are general enough
8413to apply whenever the peephole matches. If the peephole matches
8414but the constraints are not satisfied, the compiler will crash.
8415
8416It is safe to omit constraints in all the operands of the peephole; or
8417you can write constraints which serve as a double-check on the criteria
8418previously tested.
8419
8420Once a sequence of insns matches the patterns, the @var{condition} is
8421checked. This is a C expression which makes the final decision whether to
8422perform the optimization (we do so if the expression is nonzero). If
8423@var{condition} is omitted (in other words, the string is empty) then the
8424optimization is applied to every sequence of insns that matches the
8425patterns.
8426
8427The defined peephole optimizations are applied after register allocation
8428is complete. Therefore, the peephole definition can check which
8429operands have ended up in which kinds of registers, just by looking at
8430the operands.
8431
8432@findex prev_active_insn
8433The way to refer to the operands in @var{condition} is to write
8434@code{operands[@var{i}]} for operand number @var{i} (as matched by
8435@code{(match_operand @var{i} @dots{})}). Use the variable @code{insn}
8436to refer to the last of the insns being matched; use
8437@code{prev_active_insn} to find the preceding insns.
8438
8439@findex dead_or_set_p
8440When optimizing computations with intermediate results, you can use
8441@var{condition} to match only when the intermediate results are not used
8442elsewhere. Use the C expression @code{dead_or_set_p (@var{insn},
8443@var{op})}, where @var{insn} is the insn in which you expect the value
8444to be used for the last time (from the value of @code{insn}, together
8445with use of @code{prev_nonnote_insn}), and @var{op} is the intermediate
bd819a4a 8446value (from @code{operands[@var{i}]}).
f3a3d0d3
RH
8447
8448Applying the optimization means replacing the sequence of insns with one
8449new insn. The @var{template} controls ultimate output of assembler code
8450for this combined insn. It works exactly like the template of a
8451@code{define_insn}. Operand numbers in this template are the same ones
8452used in matching the original sequence of insns.
8453
8454The result of a defined peephole optimizer does not need to match any of
8455the insn patterns in the machine description; it does not even have an
8456opportunity to match them. The peephole optimizer definition itself serves
8457as the insn pattern to control how the insn is output.
8458
8459Defined peephole optimizers are run as assembler code is being output,
8460so the insns they produce are never combined or rearranged in any way.
8461
8462Here is an example, taken from the 68000 machine description:
8463
8464@smallexample
8465(define_peephole
8466 [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
8467 (set (match_operand:DF 0 "register_operand" "=f")
8468 (match_operand:DF 1 "register_operand" "ad"))]
8469 "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
f3a3d0d3
RH
8470@{
8471 rtx xoperands[2];
a2a8cc44 8472 xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
f3a3d0d3 8473#ifdef MOTOROLA
0f40f9f7
ZW
8474 output_asm_insn ("move.l %1,(sp)", xoperands);
8475 output_asm_insn ("move.l %1,-(sp)", operands);
8476 return "fmove.d (sp)+,%0";
f3a3d0d3 8477#else
0f40f9f7
ZW
8478 output_asm_insn ("movel %1,sp@@", xoperands);
8479 output_asm_insn ("movel %1,sp@@-", operands);
8480 return "fmoved sp@@+,%0";
f3a3d0d3 8481#endif
0f40f9f7 8482@})
f3a3d0d3
RH
8483@end smallexample
8484
8485@need 1000
8486The effect of this optimization is to change
8487
8488@smallexample
8489@group
8490jbsr _foobar
8491addql #4,sp
8492movel d1,sp@@-
8493movel d0,sp@@-
8494fmoved sp@@+,fp0
8495@end group
8496@end smallexample
8497
8498@noindent
8499into
8500
8501@smallexample
8502@group
8503jbsr _foobar
8504movel d1,sp@@
8505movel d0,sp@@-
8506fmoved sp@@+,fp0
8507@end group
8508@end smallexample
8509
8510@ignore
8511@findex CC_REVERSED
8512If a peephole matches a sequence including one or more jump insns, you must
8513take account of the flags such as @code{CC_REVERSED} which specify that the
8514condition codes are represented in an unusual manner. The compiler
8515automatically alters any ordinary conditional jumps which occur in such
8516situations, but the compiler cannot alter jumps which have been replaced by
8517peephole optimizations. So it is up to you to alter the assembler code
8518that the peephole produces. Supply C code to write the assembler output,
8519and in this C code check the condition code status flags and change the
8520assembler code as appropriate.
8521@end ignore
8522
8523@var{insn-pattern-1} and so on look @emph{almost} like the second
8524operand of @code{define_insn}. There is one important difference: the
8525second operand of @code{define_insn} consists of one or more RTX's
8526enclosed in square brackets. Usually, there is only one: then the same
8527action can be written as an element of a @code{define_peephole}. But
8528when there are multiple actions in a @code{define_insn}, they are
8529implicitly enclosed in a @code{parallel}. Then you must explicitly
8530write the @code{parallel}, and the square brackets within it, in the
8531@code{define_peephole}. Thus, if an insn pattern looks like this,
8532
8533@smallexample
8534(define_insn "divmodsi4"
8535 [(set (match_operand:SI 0 "general_operand" "=d")
8536 (div:SI (match_operand:SI 1 "general_operand" "0")
8537 (match_operand:SI 2 "general_operand" "dmsK")))
8538 (set (match_operand:SI 3 "general_operand" "=d")
8539 (mod:SI (match_dup 1) (match_dup 2)))]
8540 "TARGET_68020"
8541 "divsl%.l %2,%3:%0")
8542@end smallexample
8543
8544@noindent
8545then the way to mention this insn in a peephole is as follows:
8546
8547@smallexample
8548(define_peephole
8549 [@dots{}
8550 (parallel
8551 [(set (match_operand:SI 0 "general_operand" "=d")
8552 (div:SI (match_operand:SI 1 "general_operand" "0")
8553 (match_operand:SI 2 "general_operand" "dmsK")))
8554 (set (match_operand:SI 3 "general_operand" "=d")
8555 (mod:SI (match_dup 1) (match_dup 2)))])
8556 @dots{}]
8557 @dots{})
8558@end smallexample
8559
a5249a21
HPN
8560@end ifset
8561@ifset INTERNALS
f3a3d0d3
RH
8562@node define_peephole2
8563@subsection RTL to RTL Peephole Optimizers
8564@findex define_peephole2
8565
8566The @code{define_peephole2} definition tells the compiler how to
ebb48a4d 8567substitute one sequence of instructions for another sequence,
f3a3d0d3
RH
8568what additional scratch registers may be needed and what their
8569lifetimes must be.
8570
8571@smallexample
8572(define_peephole2
8573 [@var{insn-pattern-1}
8574 @var{insn-pattern-2}
8575 @dots{}]
8576 "@var{condition}"
8577 [@var{new-insn-pattern-1}
8578 @var{new-insn-pattern-2}
8579 @dots{}]
630d3d5a 8580 "@var{preparation-statements}")
f3a3d0d3
RH
8581@end smallexample
8582
8583The definition is almost identical to @code{define_split}
8584(@pxref{Insn Splitting}) except that the pattern to match is not a
8585single instruction, but a sequence of instructions.
8586
8587It is possible to request additional scratch registers for use in the
8588output template. If appropriate registers are not free, the pattern
8589will simply not match.
8590
8591@findex match_scratch
8592@findex match_dup
8593Scratch registers are requested with a @code{match_scratch} pattern at
8594the top level of the input pattern. The allocated register (initially) will
8595be dead at the point requested within the original sequence. If the scratch
8596is used at more than a single point, a @code{match_dup} pattern at the
8597top level of the input pattern marks the last position in the input sequence
8598at which the register must be available.
8599
8600Here is an example from the IA-32 machine description:
8601
8602@smallexample
8603(define_peephole2
8604 [(match_scratch:SI 2 "r")
8605 (parallel [(set (match_operand:SI 0 "register_operand" "")
8606 (match_operator:SI 3 "arith_or_logical_operator"
8607 [(match_dup 0)
8608 (match_operand:SI 1 "memory_operand" "")]))
8609 (clobber (reg:CC 17))])]
8610 "! optimize_size && ! TARGET_READ_MODIFY"
8611 [(set (match_dup 2) (match_dup 1))
8612 (parallel [(set (match_dup 0)
8613 (match_op_dup 3 [(match_dup 0) (match_dup 2)]))
8614 (clobber (reg:CC 17))])]
8615 "")
8616@end smallexample
8617
8618@noindent
8619This pattern tries to split a load from its use in the hopes that we'll be
8620able to schedule around the memory load latency. It allocates a single
8621@code{SImode} register of class @code{GENERAL_REGS} (@code{"r"}) that needs
8622to be live only at the point just before the arithmetic.
8623
b192711e 8624A real example requiring extended scratch lifetimes is harder to come by,
f3a3d0d3
RH
8625so here's a silly made-up example:
8626
8627@smallexample
8628(define_peephole2
8629 [(match_scratch:SI 4 "r")
8630 (set (match_operand:SI 0 "" "") (match_operand:SI 1 "" ""))
8631 (set (match_operand:SI 2 "" "") (match_dup 1))
8632 (match_dup 4)
8633 (set (match_operand:SI 3 "" "") (match_dup 1))]
630d3d5a 8634 "/* @r{determine 1 does not overlap 0 and 2} */"
f3a3d0d3
RH
8635 [(set (match_dup 4) (match_dup 1))
8636 (set (match_dup 0) (match_dup 4))
c8fbf1fa 8637 (set (match_dup 2) (match_dup 4))
f3a3d0d3
RH
8638 (set (match_dup 3) (match_dup 4))]
8639 "")
8640@end smallexample
8641
582d1f90
PK
8642There are two special macros defined for use in the preparation statements:
8643@code{DONE} and @code{FAIL}. Use them with a following semicolon,
8644as a statement.
8645
8646@table @code
8647
8648@findex DONE
8649@item DONE
8650Use the @code{DONE} macro to end RTL generation for the peephole. The
8651only RTL insns generated as replacement for the matched input insn will
8652be those already emitted by explicit calls to @code{emit_insn} within
8653the preparation statements; the replacement pattern is not used.
8654
8655@findex FAIL
8656@item FAIL
8657Make the @code{define_peephole2} fail on this occasion. When a @code{define_peephole2}
8658fails, it means that the replacement was not truly available for the
8659particular inputs it was given. In that case, GCC may still apply a
8660later @code{define_peephole2} that also matches the given insn pattern.
8661(Note that this is different from @code{define_split}, where @code{FAIL}
8662prevents the input insn from being split at all.)
8663@end table
8664
8665If the preparation falls through (invokes neither @code{DONE} nor
8666@code{FAIL}), then the @code{define_peephole2} uses the replacement
8667template.
8668
f3a3d0d3 8669@noindent
a628d195
RH
8670If we had not added the @code{(match_dup 4)} in the middle of the input
8671sequence, it might have been the case that the register we chose at the
8672beginning of the sequence is killed by the first or second @code{set}.
f3a3d0d3 8673
a5249a21
HPN
8674@end ifset
8675@ifset INTERNALS
03dda8e3
RK
8676@node Insn Attributes
8677@section Instruction Attributes
8678@cindex insn attributes
8679@cindex instruction attributes
8680
8681In addition to describing the instruction supported by the target machine,
8682the @file{md} file also defines a group of @dfn{attributes} and a set of
8683values for each. Every generated insn is assigned a value for each attribute.
8684One possible attribute would be the effect that the insn has on the machine's
8685condition code. This attribute can then be used by @code{NOTICE_UPDATE_CC}
8686to track the condition codes.
8687
8688@menu
8689* Defining Attributes:: Specifying attributes and their values.
8690* Expressions:: Valid expressions for attribute values.
8691* Tagging Insns:: Assigning attribute values to insns.
8692* Attr Example:: An example of assigning attributes.
8693* Insn Lengths:: Computing the length of insns.
8694* Constant Attributes:: Defining attributes that are constant.
13b72c22 8695* Mnemonic Attribute:: Obtain the instruction mnemonic as attribute value.
03dda8e3 8696* Delay Slots:: Defining delay slots required for a machine.
fae15c93 8697* Processor pipeline description:: Specifying information for insn scheduling.
03dda8e3
RK
8698@end menu
8699
a5249a21
HPN
8700@end ifset
8701@ifset INTERNALS
03dda8e3
RK
8702@node Defining Attributes
8703@subsection Defining Attributes and their Values
8704@cindex defining attributes and their values
8705@cindex attributes, defining
8706
8707@findex define_attr
8708The @code{define_attr} expression is used to define each attribute required
8709by the target machine. It looks like:
8710
8711@smallexample
8712(define_attr @var{name} @var{list-of-values} @var{default})
8713@end smallexample
8714
13b72c22
AK
8715@var{name} is a string specifying the name of the attribute being
8716defined. Some attributes are used in a special way by the rest of the
8717compiler. The @code{enabled} attribute can be used to conditionally
8718enable or disable insn alternatives (@pxref{Disable Insn
8719Alternatives}). The @code{predicable} attribute, together with a
8720suitable @code{define_cond_exec} (@pxref{Conditional Execution}), can
8721be used to automatically generate conditional variants of instruction
8722patterns. The @code{mnemonic} attribute can be used to check for the
8723instruction mnemonic (@pxref{Mnemonic Attribute}). The compiler
8724internally uses the names @code{ce_enabled} and @code{nonce_enabled},
8725so they should not be used elsewhere as alternative names.
03dda8e3
RK
8726
8727@var{list-of-values} is either a string that specifies a comma-separated
8728list of values that can be assigned to the attribute, or a null string to
8729indicate that the attribute takes numeric values.
8730
8731@var{default} is an attribute expression that gives the value of this
8732attribute for insns that match patterns whose definition does not include
8733an explicit value for this attribute. @xref{Attr Example}, for more
8734information on the handling of defaults. @xref{Constant Attributes},
8735for information on attributes that do not depend on any particular insn.
8736
8737@findex insn-attr.h
8738For each defined attribute, a number of definitions are written to the
8739@file{insn-attr.h} file. For cases where an explicit set of values is
8740specified for an attribute, the following are defined:
8741
8742@itemize @bullet
8743@item
8744A @samp{#define} is written for the symbol @samp{HAVE_ATTR_@var{name}}.
8745
8746@item
2eac577f 8747An enumerated class is defined for @samp{attr_@var{name}} with
03dda8e3 8748elements of the form @samp{@var{upper-name}_@var{upper-value}} where
4bd0bee9 8749the attribute name and value are first converted to uppercase.
03dda8e3
RK
8750
8751@item
8752A function @samp{get_attr_@var{name}} is defined that is passed an insn and
8753returns the attribute value for that insn.
8754@end itemize
8755
8756For example, if the following is present in the @file{md} file:
8757
8758@smallexample
8759(define_attr "type" "branch,fp,load,store,arith" @dots{})
8760@end smallexample
8761
8762@noindent
8763the following lines will be written to the file @file{insn-attr.h}.
8764
8765@smallexample
d327457f 8766#define HAVE_ATTR_type 1
03dda8e3
RK
8767enum attr_type @{TYPE_BRANCH, TYPE_FP, TYPE_LOAD,
8768 TYPE_STORE, TYPE_ARITH@};
8769extern enum attr_type get_attr_type ();
8770@end smallexample
8771
8772If the attribute takes numeric values, no @code{enum} type will be
8773defined and the function to obtain the attribute's value will return
8774@code{int}.
8775
7ac28727
AK
8776There are attributes which are tied to a specific meaning. These
8777attributes are not free to use for other purposes:
8778
8779@table @code
8780@item length
8781The @code{length} attribute is used to calculate the length of emitted
8782code chunks. This is especially important when verifying branch
8783distances. @xref{Insn Lengths}.
8784
8785@item enabled
8786The @code{enabled} attribute can be defined to prevent certain
8787alternatives of an insn definition from being used during code
8788generation. @xref{Disable Insn Alternatives}.
13b72c22
AK
8789
8790@item mnemonic
8791The @code{mnemonic} attribute can be defined to implement instruction
8792specific checks in e.g. the pipeline description.
8793@xref{Mnemonic Attribute}.
7ac28727
AK
8794@end table
8795
d327457f
JR
8796For each of these special attributes, the corresponding
8797@samp{HAVE_ATTR_@var{name}} @samp{#define} is also written when the
8798attribute is not defined; in that case, it is defined as @samp{0}.
8799
8f4fe86c
RS
8800@findex define_enum_attr
8801@anchor{define_enum_attr}
8802Another way of defining an attribute is to use:
8803
8804@smallexample
8805(define_enum_attr "@var{attr}" "@var{enum}" @var{default})
8806@end smallexample
8807
8808This works in just the same way as @code{define_attr}, except that
8809the list of values is taken from a separate enumeration called
8810@var{enum} (@pxref{define_enum}). This form allows you to use
8811the same list of values for several attributes without having to
8812repeat the list each time. For example:
8813
8814@smallexample
8815(define_enum "processor" [
8816 model_a
8817 model_b
8818 @dots{}
8819])
8820(define_enum_attr "arch" "processor"
8821 (const (symbol_ref "target_arch")))
8822(define_enum_attr "tune" "processor"
8823 (const (symbol_ref "target_tune")))
8824@end smallexample
8825
8826defines the same attributes as:
8827
8828@smallexample
8829(define_attr "arch" "model_a,model_b,@dots{}"
8830 (const (symbol_ref "target_arch")))
8831(define_attr "tune" "model_a,model_b,@dots{}"
8832 (const (symbol_ref "target_tune")))
8833@end smallexample
8834
8835but without duplicating the processor list. The second example defines two
8836separate C enums (@code{attr_arch} and @code{attr_tune}) whereas the first
8837defines a single C enum (@code{processor}).
a5249a21
HPN
8838@end ifset
8839@ifset INTERNALS
03dda8e3
RK
8840@node Expressions
8841@subsection Attribute Expressions
8842@cindex attribute expressions
8843
8844RTL expressions used to define attributes use the codes described above
8845plus a few specific to attribute definitions, to be discussed below.
8846Attribute value expressions must have one of the following forms:
8847
8848@table @code
8849@cindex @code{const_int} and attributes
8850@item (const_int @var{i})
8851The integer @var{i} specifies the value of a numeric attribute. @var{i}
8852must be non-negative.
8853
8854The value of a numeric attribute can be specified either with a
00bc45c1
RH
8855@code{const_int}, or as an integer represented as a string in
8856@code{const_string}, @code{eq_attr} (see below), @code{attr},
8857@code{symbol_ref}, simple arithmetic expressions, and @code{set_attr}
8858overrides on specific instructions (@pxref{Tagging Insns}).
03dda8e3
RK
8859
8860@cindex @code{const_string} and attributes
8861@item (const_string @var{value})
8862The string @var{value} specifies a constant attribute value.
8863If @var{value} is specified as @samp{"*"}, it means that the default value of
8864the attribute is to be used for the insn containing this expression.
8865@samp{"*"} obviously cannot be used in the @var{default} expression
bd819a4a 8866of a @code{define_attr}.
03dda8e3
RK
8867
8868If the attribute whose value is being specified is numeric, @var{value}
8869must be a string containing a non-negative integer (normally
8870@code{const_int} would be used in this case). Otherwise, it must
8871contain one of the valid values for the attribute.
8872
8873@cindex @code{if_then_else} and attributes
8874@item (if_then_else @var{test} @var{true-value} @var{false-value})
8875@var{test} specifies an attribute test, whose format is defined below.
8876The value of this expression is @var{true-value} if @var{test} is true,
8877otherwise it is @var{false-value}.
8878
8879@cindex @code{cond} and attributes
8880@item (cond [@var{test1} @var{value1} @dots{}] @var{default})
8881The first operand of this expression is a vector containing an even
8882number of expressions and consisting of pairs of @var{test} and @var{value}
8883expressions. The value of the @code{cond} expression is that of the
8884@var{value} corresponding to the first true @var{test} expression. If
8885none of the @var{test} expressions are true, the value of the @code{cond}
8886expression is that of the @var{default} expression.
8887@end table
8888
8889@var{test} expressions can have one of the following forms:
8890
8891@table @code
8892@cindex @code{const_int} and attribute tests
8893@item (const_int @var{i})
df2a54e9 8894This test is true if @var{i} is nonzero and false otherwise.
03dda8e3
RK
8895
8896@cindex @code{not} and attributes
8897@cindex @code{ior} and attributes
8898@cindex @code{and} and attributes
8899@item (not @var{test})
8900@itemx (ior @var{test1} @var{test2})
8901@itemx (and @var{test1} @var{test2})
8902These tests are true if the indicated logical function is true.
8903
8904@cindex @code{match_operand} and attributes
8905@item (match_operand:@var{m} @var{n} @var{pred} @var{constraints})
8906This test is true if operand @var{n} of the insn whose attribute value
8907is being determined has mode @var{m} (this part of the test is ignored
8908if @var{m} is @code{VOIDmode}) and the function specified by the string
df2a54e9 8909@var{pred} returns a nonzero value when passed operand @var{n} and mode
03dda8e3
RK
8910@var{m} (this part of the test is ignored if @var{pred} is the null
8911string).
8912
8913The @var{constraints} operand is ignored and should be the null string.
8914
0c0d3957
RS
8915@cindex @code{match_test} and attributes
8916@item (match_test @var{c-expr})
8917The test is true if C expression @var{c-expr} is true. In non-constant
8918attributes, @var{c-expr} has access to the following variables:
8919
8920@table @var
8921@item insn
8922The rtl instruction under test.
8923@item which_alternative
8924The @code{define_insn} alternative that @var{insn} matches.
8925@xref{Output Statement}.
8926@item operands
8927An array of @var{insn}'s rtl operands.
8928@end table
8929
8930@var{c-expr} behaves like the condition in a C @code{if} statement,
8931so there is no need to explicitly convert the expression into a boolean
89320 or 1 value. For example, the following two tests are equivalent:
8933
8934@smallexample
8935(match_test "x & 2")
8936(match_test "(x & 2) != 0")
8937@end smallexample
8938
03dda8e3
RK
8939@cindex @code{le} and attributes
8940@cindex @code{leu} and attributes
8941@cindex @code{lt} and attributes
8942@cindex @code{gt} and attributes
8943@cindex @code{gtu} and attributes
8944@cindex @code{ge} and attributes
8945@cindex @code{geu} and attributes
8946@cindex @code{ne} and attributes
8947@cindex @code{eq} and attributes
8948@cindex @code{plus} and attributes
8949@cindex @code{minus} and attributes
8950@cindex @code{mult} and attributes
8951@cindex @code{div} and attributes
8952@cindex @code{mod} and attributes
8953@cindex @code{abs} and attributes
8954@cindex @code{neg} and attributes
8955@cindex @code{ashift} and attributes
8956@cindex @code{lshiftrt} and attributes
8957@cindex @code{ashiftrt} and attributes
8958@item (le @var{arith1} @var{arith2})
8959@itemx (leu @var{arith1} @var{arith2})
8960@itemx (lt @var{arith1} @var{arith2})
8961@itemx (ltu @var{arith1} @var{arith2})
8962@itemx (gt @var{arith1} @var{arith2})
8963@itemx (gtu @var{arith1} @var{arith2})
8964@itemx (ge @var{arith1} @var{arith2})
8965@itemx (geu @var{arith1} @var{arith2})
8966@itemx (ne @var{arith1} @var{arith2})
8967@itemx (eq @var{arith1} @var{arith2})
8968These tests are true if the indicated comparison of the two arithmetic
8969expressions is true. Arithmetic expressions are formed with
8970@code{plus}, @code{minus}, @code{mult}, @code{div}, @code{mod},
8971@code{abs}, @code{neg}, @code{and}, @code{ior}, @code{xor}, @code{not},
bd819a4a 8972@code{ashift}, @code{lshiftrt}, and @code{ashiftrt} expressions.
03dda8e3
RK
8973
8974@findex get_attr
8975@code{const_int} and @code{symbol_ref} are always valid terms (@pxref{Insn
8976Lengths},for additional forms). @code{symbol_ref} is a string
8977denoting a C expression that yields an @code{int} when evaluated by the
8978@samp{get_attr_@dots{}} routine. It should normally be a global
bd819a4a 8979variable.
03dda8e3
RK
8980
8981@findex eq_attr
8982@item (eq_attr @var{name} @var{value})
8983@var{name} is a string specifying the name of an attribute.
8984
8985@var{value} is a string that is either a valid value for attribute
8986@var{name}, a comma-separated list of values, or @samp{!} followed by a
8987value or list. If @var{value} does not begin with a @samp{!}, this
8988test is true if the value of the @var{name} attribute of the current
8989insn is in the list specified by @var{value}. If @var{value} begins
8990with a @samp{!}, this test is true if the attribute's value is
8991@emph{not} in the specified list.
8992
8993For example,
8994
8995@smallexample
8996(eq_attr "type" "load,store")
8997@end smallexample
8998
8999@noindent
9000is equivalent to
9001
9002@smallexample
9003(ior (eq_attr "type" "load") (eq_attr "type" "store"))
9004@end smallexample
9005
9006If @var{name} specifies an attribute of @samp{alternative}, it refers to the
9007value of the compiler variable @code{which_alternative}
9008(@pxref{Output Statement}) and the values must be small integers. For
bd819a4a 9009example,
03dda8e3
RK
9010
9011@smallexample
9012(eq_attr "alternative" "2,3")
9013@end smallexample
9014
9015@noindent
9016is equivalent to
9017
9018@smallexample
9019(ior (eq (symbol_ref "which_alternative") (const_int 2))
9020 (eq (symbol_ref "which_alternative") (const_int 3)))
9021@end smallexample
9022
9023Note that, for most attributes, an @code{eq_attr} test is simplified in cases
9024where the value of the attribute being tested is known for all insns matching
bd819a4a 9025a particular pattern. This is by far the most common case.
03dda8e3
RK
9026
9027@findex attr_flag
9028@item (attr_flag @var{name})
9029The value of an @code{attr_flag} expression is true if the flag
9030specified by @var{name} is true for the @code{insn} currently being
9031scheduled.
9032
9033@var{name} is a string specifying one of a fixed set of flags to test.
9034Test the flags @code{forward} and @code{backward} to determine the
81e7aa8e 9035direction of a conditional branch.
03dda8e3
RK
9036
9037This example describes a conditional branch delay slot which
9038can be nullified for forward branches that are taken (annul-true) or
9039for backward branches which are not taken (annul-false).
9040
9041@smallexample
9042(define_delay (eq_attr "type" "cbranch")
9043 [(eq_attr "in_branch_delay" "true")
9044 (and (eq_attr "in_branch_delay" "true")
9045 (attr_flag "forward"))
9046 (and (eq_attr "in_branch_delay" "true")
9047 (attr_flag "backward"))])
9048@end smallexample
9049
9050The @code{forward} and @code{backward} flags are false if the current
9051@code{insn} being scheduled is not a conditional branch.
9052
03dda8e3
RK
9053@code{attr_flag} is only used during delay slot scheduling and has no
9054meaning to other passes of the compiler.
00bc45c1
RH
9055
9056@findex attr
9057@item (attr @var{name})
9058The value of another attribute is returned. This is most useful
9059for numeric attributes, as @code{eq_attr} and @code{attr_flag}
9060produce more efficient code for non-numeric attributes.
03dda8e3
RK
9061@end table
9062
a5249a21
HPN
9063@end ifset
9064@ifset INTERNALS
03dda8e3
RK
9065@node Tagging Insns
9066@subsection Assigning Attribute Values to Insns
9067@cindex tagging insns
9068@cindex assigning attribute values to insns
9069
9070The value assigned to an attribute of an insn is primarily determined by
9071which pattern is matched by that insn (or which @code{define_peephole}
9072generated it). Every @code{define_insn} and @code{define_peephole} can
9073have an optional last argument to specify the values of attributes for
9074matching insns. The value of any attribute not specified in a particular
9075insn is set to the default value for that attribute, as specified in its
9076@code{define_attr}. Extensive use of default values for attributes
9077permits the specification of the values for only one or two attributes
9078in the definition of most insn patterns, as seen in the example in the
bd819a4a 9079next section.
03dda8e3
RK
9080
9081The optional last argument of @code{define_insn} and
9082@code{define_peephole} is a vector of expressions, each of which defines
9083the value for a single attribute. The most general way of assigning an
9084attribute's value is to use a @code{set} expression whose first operand is an
9085@code{attr} expression giving the name of the attribute being set. The
9086second operand of the @code{set} is an attribute expression
bd819a4a 9087(@pxref{Expressions}) giving the value of the attribute.
03dda8e3
RK
9088
9089When the attribute value depends on the @samp{alternative} attribute
9090(i.e., which is the applicable alternative in the constraint of the
9091insn), the @code{set_attr_alternative} expression can be used. It
9092allows the specification of a vector of attribute expressions, one for
9093each alternative.
9094
9095@findex set_attr
9096When the generality of arbitrary attribute expressions is not required,
9097the simpler @code{set_attr} expression can be used, which allows
9098specifying a string giving either a single attribute value or a list
9099of attribute values, one for each alternative.
9100
9101The form of each of the above specifications is shown below. In each case,
9102@var{name} is a string specifying the attribute to be set.
9103
9104@table @code
9105@item (set_attr @var{name} @var{value-string})
9106@var{value-string} is either a string giving the desired attribute value,
9107or a string containing a comma-separated list giving the values for
9108succeeding alternatives. The number of elements must match the number
9109of alternatives in the constraint of the insn pattern.
9110
9111Note that it may be useful to specify @samp{*} for some alternative, in
9112which case the attribute will assume its default value for insns matching
9113that alternative.
9114
9115@findex set_attr_alternative
9116@item (set_attr_alternative @var{name} [@var{value1} @var{value2} @dots{}])
9117Depending on the alternative of the insn, the value will be one of the
9118specified values. This is a shorthand for using a @code{cond} with
9119tests on the @samp{alternative} attribute.
9120
9121@findex attr
9122@item (set (attr @var{name}) @var{value})
9123The first operand of this @code{set} must be the special RTL expression
9124@code{attr}, whose sole operand is a string giving the name of the
9125attribute being set. @var{value} is the value of the attribute.
9126@end table
9127
9128The following shows three different ways of representing the same
9129attribute value specification:
9130
9131@smallexample
9132(set_attr "type" "load,store,arith")
9133
9134(set_attr_alternative "type"
9135 [(const_string "load") (const_string "store")
9136 (const_string "arith")])
9137
9138(set (attr "type")
9139 (cond [(eq_attr "alternative" "1") (const_string "load")
9140 (eq_attr "alternative" "2") (const_string "store")]
9141 (const_string "arith")))
9142@end smallexample
9143
9144@need 1000
9145@findex define_asm_attributes
9146The @code{define_asm_attributes} expression provides a mechanism to
9147specify the attributes assigned to insns produced from an @code{asm}
9148statement. It has the form:
9149
9150@smallexample
9151(define_asm_attributes [@var{attr-sets}])
9152@end smallexample
9153
9154@noindent
9155where @var{attr-sets} is specified the same as for both the
9156@code{define_insn} and the @code{define_peephole} expressions.
9157
9158These values will typically be the ``worst case'' attribute values. For
9159example, they might indicate that the condition code will be clobbered.
9160
9161A specification for a @code{length} attribute is handled specially. The
9162way to compute the length of an @code{asm} insn is to multiply the
9163length specified in the expression @code{define_asm_attributes} by the
9164number of machine instructions specified in the @code{asm} statement,
9165determined by counting the number of semicolons and newlines in the
9166string. Therefore, the value of the @code{length} attribute specified
9167in a @code{define_asm_attributes} should be the maximum possible length
9168of a single machine instruction.
9169
a5249a21
HPN
9170@end ifset
9171@ifset INTERNALS
03dda8e3
RK
9172@node Attr Example
9173@subsection Example of Attribute Specifications
9174@cindex attribute specifications example
9175@cindex attribute specifications
9176
9177The judicious use of defaulting is important in the efficient use of
9178insn attributes. Typically, insns are divided into @dfn{types} and an
9179attribute, customarily called @code{type}, is used to represent this
9180value. This attribute is normally used only to define the default value
9181for other attributes. An example will clarify this usage.
9182
9183Assume we have a RISC machine with a condition code and in which only
9184full-word operations are performed in registers. Let us assume that we
9185can divide all insns into loads, stores, (integer) arithmetic
9186operations, floating point operations, and branches.
9187
9188Here we will concern ourselves with determining the effect of an insn on
9189the condition code and will limit ourselves to the following possible
9190effects: The condition code can be set unpredictably (clobbered), not
9191be changed, be set to agree with the results of the operation, or only
9192changed if the item previously set into the condition code has been
9193modified.
9194
9195Here is part of a sample @file{md} file for such a machine:
9196
9197@smallexample
9198(define_attr "type" "load,store,arith,fp,branch" (const_string "arith"))
9199
9200(define_attr "cc" "clobber,unchanged,set,change0"
9201 (cond [(eq_attr "type" "load")
9202 (const_string "change0")
9203 (eq_attr "type" "store,branch")
9204 (const_string "unchanged")
9205 (eq_attr "type" "arith")
9206 (if_then_else (match_operand:SI 0 "" "")
9207 (const_string "set")
9208 (const_string "clobber"))]
9209 (const_string "clobber")))
9210
9211(define_insn ""
9212 [(set (match_operand:SI 0 "general_operand" "=r,r,m")
9213 (match_operand:SI 1 "general_operand" "r,m,r"))]
9214 ""
9215 "@@
9216 move %0,%1
9217 load %0,%1
9218 store %0,%1"
9219 [(set_attr "type" "arith,load,store")])
9220@end smallexample
9221
9222Note that we assume in the above example that arithmetic operations
9223performed on quantities smaller than a machine word clobber the condition
9224code since they will set the condition code to a value corresponding to the
9225full-word result.
9226
a5249a21
HPN
9227@end ifset
9228@ifset INTERNALS
03dda8e3
RK
9229@node Insn Lengths
9230@subsection Computing the Length of an Insn
9231@cindex insn lengths, computing
9232@cindex computing the length of an insn
9233
9234For many machines, multiple types of branch instructions are provided, each
9235for different length branch displacements. In most cases, the assembler
9236will choose the correct instruction to use. However, when the assembler
b49900cc 9237cannot do so, GCC can when a special attribute, the @code{length}
03dda8e3
RK
9238attribute, is defined. This attribute must be defined to have numeric
9239values by specifying a null string in its @code{define_attr}.
9240
b49900cc 9241In the case of the @code{length} attribute, two additional forms of
03dda8e3
RK
9242arithmetic terms are allowed in test expressions:
9243
9244@table @code
9245@cindex @code{match_dup} and attributes
9246@item (match_dup @var{n})
9247This refers to the address of operand @var{n} of the current insn, which
9248must be a @code{label_ref}.
9249
9250@cindex @code{pc} and attributes
9251@item (pc)
0c94b59f
EB
9252For non-branch instructions and backward branch instructions, this refers
9253to the address of the current insn. But for forward branch instructions,
9254this refers to the address of the next insn, because the length of the
03dda8e3
RK
9255current insn is to be computed.
9256@end table
9257
9258@cindex @code{addr_vec}, length of
9259@cindex @code{addr_diff_vec}, length of
9260For normal insns, the length will be determined by value of the
b49900cc 9261@code{length} attribute. In the case of @code{addr_vec} and
03dda8e3
RK
9262@code{addr_diff_vec} insn patterns, the length is computed as
9263the number of vectors multiplied by the size of each vector.
9264
9265Lengths are measured in addressable storage units (bytes).
9266
40da08e0
JL
9267Note that it is possible to call functions via the @code{symbol_ref}
9268mechanism to compute the length of an insn. However, if you use this
9269mechanism you must provide dummy clauses to express the maximum length
9270without using the function call. You can an example of this in the
9271@code{pa} machine description for the @code{call_symref} pattern.
9272
03dda8e3
RK
9273The following macros can be used to refine the length computation:
9274
9275@table @code
03dda8e3
RK
9276@findex ADJUST_INSN_LENGTH
9277@item ADJUST_INSN_LENGTH (@var{insn}, @var{length})
9278If defined, modifies the length assigned to instruction @var{insn} as a
9279function of the context in which it is used. @var{length} is an lvalue
9280that contains the initially computed length of the insn and should be
a8aa4e0b 9281updated with the correct length of the insn.
03dda8e3
RK
9282
9283This macro will normally not be required. A case in which it is
161d7b59 9284required is the ROMP@. On this machine, the size of an @code{addr_vec}
03dda8e3
RK
9285insn must be increased by two to compensate for the fact that alignment
9286may be required.
9287@end table
9288
9289@findex get_attr_length
9290The routine that returns @code{get_attr_length} (the value of the
9291@code{length} attribute) can be used by the output routine to
9292determine the form of the branch instruction to be written, as the
9293example below illustrates.
9294
9295As an example of the specification of variable-length branches, consider
9296the IBM 360. If we adopt the convention that a register will be set to
9297the starting address of a function, we can jump to labels within 4k of
9298the start using a four-byte instruction. Otherwise, we need a six-byte
9299sequence to load the address from memory and then branch to it.
9300
9301On such a machine, a pattern for a branch instruction might be specified
9302as follows:
9303
9304@smallexample
9305(define_insn "jump"
9306 [(set (pc)
9307 (label_ref (match_operand 0 "" "")))]
9308 ""
03dda8e3
RK
9309@{
9310 return (get_attr_length (insn) == 4
0f40f9f7
ZW
9311 ? "b %l0" : "l r15,=a(%l0); br r15");
9312@}
9c34dbbf
ZW
9313 [(set (attr "length")
9314 (if_then_else (lt (match_dup 0) (const_int 4096))
9315 (const_int 4)
9316 (const_int 6)))])
03dda8e3
RK
9317@end smallexample
9318
a5249a21
HPN
9319@end ifset
9320@ifset INTERNALS
03dda8e3
RK
9321@node Constant Attributes
9322@subsection Constant Attributes
9323@cindex constant attributes
9324
9325A special form of @code{define_attr}, where the expression for the
9326default value is a @code{const} expression, indicates an attribute that
9327is constant for a given run of the compiler. Constant attributes may be
9328used to specify which variety of processor is used. For example,
9329
9330@smallexample
9331(define_attr "cpu" "m88100,m88110,m88000"
9332 (const
9333 (cond [(symbol_ref "TARGET_88100") (const_string "m88100")
9334 (symbol_ref "TARGET_88110") (const_string "m88110")]
9335 (const_string "m88000"))))
9336
9337(define_attr "memory" "fast,slow"
9338 (const
9339 (if_then_else (symbol_ref "TARGET_FAST_MEM")
9340 (const_string "fast")
9341 (const_string "slow"))))
9342@end smallexample
9343
9344The routine generated for constant attributes has no parameters as it
9345does not depend on any particular insn. RTL expressions used to define
9346the value of a constant attribute may use the @code{symbol_ref} form,
9347but may not use either the @code{match_operand} form or @code{eq_attr}
9348forms involving insn attributes.
9349
13b72c22
AK
9350@end ifset
9351@ifset INTERNALS
9352@node Mnemonic Attribute
9353@subsection Mnemonic Attribute
9354@cindex mnemonic attribute
9355
9356The @code{mnemonic} attribute is a string type attribute holding the
9357instruction mnemonic for an insn alternative. The attribute values
9358will automatically be generated by the machine description parser if
9359there is an attribute definition in the md file:
9360
9361@smallexample
9362(define_attr "mnemonic" "unknown" (const_string "unknown"))
9363@end smallexample
9364
9365The default value can be freely chosen as long as it does not collide
9366with any of the instruction mnemonics. This value will be used
9367whenever the machine description parser is not able to determine the
9368mnemonic string. This might be the case for output templates
9369containing more than a single instruction as in
9370@code{"mvcle\t%0,%1,0\;jo\t.-4"}.
9371
9372The @code{mnemonic} attribute set is not generated automatically if the
9373instruction string is generated via C code.
9374
9375An existing @code{mnemonic} attribute set in an insn definition will not
9376be overriden by the md file parser. That way it is possible to
9377manually set the instruction mnemonics for the cases where the md file
9378parser fails to determine it automatically.
9379
9380The @code{mnemonic} attribute is useful for dealing with instruction
9381specific properties in the pipeline description without defining
9382additional insn attributes.
9383
9384@smallexample
9385(define_attr "ooo_expanded" ""
9386 (cond [(eq_attr "mnemonic" "dlr,dsgr,d,dsgf,stam,dsgfr,dlgr")
9387 (const_int 1)]
9388 (const_int 0)))
9389@end smallexample
9390
a5249a21
HPN
9391@end ifset
9392@ifset INTERNALS
03dda8e3
RK
9393@node Delay Slots
9394@subsection Delay Slot Scheduling
9395@cindex delay slots, defining
9396
9397The insn attribute mechanism can be used to specify the requirements for
9398delay slots, if any, on a target machine. An instruction is said to
9399require a @dfn{delay slot} if some instructions that are physically
9400after the instruction are executed as if they were located before it.
9401Classic examples are branch and call instructions, which often execute
9402the following instruction before the branch or call is performed.
9403
9404On some machines, conditional branch instructions can optionally
9405@dfn{annul} instructions in the delay slot. This means that the
9406instruction will not be executed for certain branch outcomes. Both
9407instructions that annul if the branch is true and instructions that
9408annul if the branch is false are supported.
9409
9410Delay slot scheduling differs from instruction scheduling in that
9411determining whether an instruction needs a delay slot is dependent only
9412on the type of instruction being generated, not on data flow between the
9413instructions. See the next section for a discussion of data-dependent
9414instruction scheduling.
9415
9416@findex define_delay
9417The requirement of an insn needing one or more delay slots is indicated
9418via the @code{define_delay} expression. It has the following form:
9419
9420@smallexample
9421(define_delay @var{test}
9422 [@var{delay-1} @var{annul-true-1} @var{annul-false-1}
9423 @var{delay-2} @var{annul-true-2} @var{annul-false-2}
9424 @dots{}])
9425@end smallexample
9426
9427@var{test} is an attribute test that indicates whether this
9428@code{define_delay} applies to a particular insn. If so, the number of
9429required delay slots is determined by the length of the vector specified
9430as the second argument. An insn placed in delay slot @var{n} must
9431satisfy attribute test @var{delay-n}. @var{annul-true-n} is an
9432attribute test that specifies which insns may be annulled if the branch
9433is true. Similarly, @var{annul-false-n} specifies which insns in the
9434delay slot may be annulled if the branch is false. If annulling is not
bd819a4a 9435supported for that delay slot, @code{(nil)} should be coded.
03dda8e3
RK
9436
9437For example, in the common case where branch and call insns require
9438a single delay slot, which may contain any insn other than a branch or
9439call, the following would be placed in the @file{md} file:
9440
9441@smallexample
9442(define_delay (eq_attr "type" "branch,call")
9443 [(eq_attr "type" "!branch,call") (nil) (nil)])
9444@end smallexample
9445
9446Multiple @code{define_delay} expressions may be specified. In this
9447case, each such expression specifies different delay slot requirements
9448and there must be no insn for which tests in two @code{define_delay}
9449expressions are both true.
9450
9451For example, if we have a machine that requires one delay slot for branches
9452but two for calls, no delay slot can contain a branch or call insn,
9453and any valid insn in the delay slot for the branch can be annulled if the
9454branch is true, we might represent this as follows:
9455
9456@smallexample
9457(define_delay (eq_attr "type" "branch")
9458 [(eq_attr "type" "!branch,call")
9459 (eq_attr "type" "!branch,call")
9460 (nil)])
9461
9462(define_delay (eq_attr "type" "call")
9463 [(eq_attr "type" "!branch,call") (nil) (nil)
9464 (eq_attr "type" "!branch,call") (nil) (nil)])
9465@end smallexample
9466@c the above is *still* too long. --mew 4feb93
9467
a5249a21
HPN
9468@end ifset
9469@ifset INTERNALS
fae15c93
VM
9470@node Processor pipeline description
9471@subsection Specifying processor pipeline description
9472@cindex processor pipeline description
9473@cindex processor functional units
9474@cindex instruction latency time
9475@cindex interlock delays
9476@cindex data dependence delays
9477@cindex reservation delays
9478@cindex pipeline hazard recognizer
9479@cindex automaton based pipeline description
9480@cindex regular expressions
9481@cindex deterministic finite state automaton
9482@cindex automaton based scheduler
9483@cindex RISC
9484@cindex VLIW
9485
ef261fee 9486To achieve better performance, most modern processors
fae15c93
VM
9487(super-pipelined, superscalar @acronym{RISC}, and @acronym{VLIW}
9488processors) have many @dfn{functional units} on which several
9489instructions can be executed simultaneously. An instruction starts
9490execution if its issue conditions are satisfied. If not, the
ef261fee 9491instruction is stalled until its conditions are satisfied. Such
fae15c93 9492@dfn{interlock (pipeline) delay} causes interruption of the fetching
431ae0bf 9493of successor instructions (or demands nop instructions, e.g.@: for some
fae15c93
VM
9494MIPS processors).
9495
9496There are two major kinds of interlock delays in modern processors.
9497The first one is a data dependence delay determining @dfn{instruction
9498latency time}. The instruction execution is not started until all
9499source data have been evaluated by prior instructions (there are more
9500complex cases when the instruction execution starts even when the data
c0478a66 9501are not available but will be ready in given time after the
fae15c93
VM
9502instruction execution start). Taking the data dependence delays into
9503account is simple. The data dependence (true, output, and
9504anti-dependence) delay between two instructions is given by a
9505constant. In most cases this approach is adequate. The second kind
9506of interlock delays is a reservation delay. The reservation delay
9507means that two instructions under execution will be in need of shared
431ae0bf 9508processors resources, i.e.@: buses, internal registers, and/or
fae15c93
VM
9509functional units, which are reserved for some time. Taking this kind
9510of delay into account is complex especially for modern @acronym{RISC}
9511processors.
9512
9513The task of exploiting more processor parallelism is solved by an
ef261fee 9514instruction scheduler. For a better solution to this problem, the
fae15c93 9515instruction scheduler has to have an adequate description of the
fa0aee89
PB
9516processor parallelism (or @dfn{pipeline description}). GCC
9517machine descriptions describe processor parallelism and functional
9518unit reservations for groups of instructions with the aid of
9519@dfn{regular expressions}.
ef261fee
R
9520
9521The GCC instruction scheduler uses a @dfn{pipeline hazard recognizer} to
fae15c93 9522figure out the possibility of the instruction issue by the processor
ef261fee
R
9523on a given simulated processor cycle. The pipeline hazard recognizer is
9524automatically generated from the processor pipeline description. The
fa0aee89
PB
9525pipeline hazard recognizer generated from the machine description
9526is based on a deterministic finite state automaton (@acronym{DFA}):
9527the instruction issue is possible if there is a transition from one
9528automaton state to another one. This algorithm is very fast, and
9529furthermore, its speed is not dependent on processor
9530complexity@footnote{However, the size of the automaton depends on
6ccde948
RW
9531processor complexity. To limit this effect, machine descriptions
9532can split orthogonal parts of the machine description among several
9533automata: but then, since each of these must be stepped independently,
9534this does cause a small decrease in the algorithm's performance.}.
fae15c93 9535
fae15c93 9536@cindex automaton based pipeline description
fa0aee89
PB
9537The rest of this section describes the directives that constitute
9538an automaton-based processor pipeline description. The order of
9539these constructions within the machine description file is not
9540important.
fae15c93
VM
9541
9542@findex define_automaton
9543@cindex pipeline hazard recognizer
9544The following optional construction describes names of automata
9545generated and used for the pipeline hazards recognition. Sometimes
9546the generated finite state automaton used by the pipeline hazard
ef261fee 9547recognizer is large. If we use more than one automaton and bind functional
daf2f129 9548units to the automata, the total size of the automata is usually
fae15c93
VM
9549less than the size of the single automaton. If there is no one such
9550construction, only one finite state automaton is generated.
9551
9552@smallexample
9553(define_automaton @var{automata-names})
9554@end smallexample
9555
9556@var{automata-names} is a string giving names of the automata. The
9557names are separated by commas. All the automata should have unique names.
c62347f0 9558The automaton name is used in the constructions @code{define_cpu_unit} and
fae15c93
VM
9559@code{define_query_cpu_unit}.
9560
9561@findex define_cpu_unit
9562@cindex processor functional units
c62347f0 9563Each processor functional unit used in the description of instruction
fae15c93
VM
9564reservations should be described by the following construction.
9565
9566@smallexample
9567(define_cpu_unit @var{unit-names} [@var{automaton-name}])
9568@end smallexample
9569
9570@var{unit-names} is a string giving the names of the functional units
9571separated by commas. Don't use name @samp{nothing}, it is reserved
9572for other goals.
9573
ef261fee 9574@var{automaton-name} is a string giving the name of the automaton with
fae15c93
VM
9575which the unit is bound. The automaton should be described in
9576construction @code{define_automaton}. You should give
9577@dfn{automaton-name}, if there is a defined automaton.
9578
30028c85
VM
9579The assignment of units to automata are constrained by the uses of the
9580units in insn reservations. The most important constraint is: if a
9581unit reservation is present on a particular cycle of an alternative
9582for an insn reservation, then some unit from the same automaton must
9583be present on the same cycle for the other alternatives of the insn
9584reservation. The rest of the constraints are mentioned in the
9585description of the subsequent constructions.
9586
fae15c93
VM
9587@findex define_query_cpu_unit
9588@cindex querying function unit reservations
9589The following construction describes CPU functional units analogously
30028c85
VM
9590to @code{define_cpu_unit}. The reservation of such units can be
9591queried for an automaton state. The instruction scheduler never
9592queries reservation of functional units for given automaton state. So
9593as a rule, you don't need this construction. This construction could
431ae0bf 9594be used for future code generation goals (e.g.@: to generate
30028c85 9595@acronym{VLIW} insn templates).
fae15c93
VM
9596
9597@smallexample
9598(define_query_cpu_unit @var{unit-names} [@var{automaton-name}])
9599@end smallexample
9600
9601@var{unit-names} is a string giving names of the functional units
9602separated by commas.
9603
ef261fee 9604@var{automaton-name} is a string giving the name of the automaton with
fae15c93
VM
9605which the unit is bound.
9606
9607@findex define_insn_reservation
9608@cindex instruction latency time
9609@cindex regular expressions
9610@cindex data bypass
ef261fee 9611The following construction is the major one to describe pipeline
fae15c93
VM
9612characteristics of an instruction.
9613
9614@smallexample
9615(define_insn_reservation @var{insn-name} @var{default_latency}
9616 @var{condition} @var{regexp})
9617@end smallexample
9618
9619@var{default_latency} is a number giving latency time of the
9620instruction. There is an important difference between the old
9621description and the automaton based pipeline description. The latency
9622time is used for all dependencies when we use the old description. In
ef261fee
R
9623the automaton based pipeline description, the given latency time is only
9624used for true dependencies. The cost of anti-dependencies is always
fae15c93
VM
9625zero and the cost of output dependencies is the difference between
9626latency times of the producing and consuming insns (if the difference
ef261fee
R
9627is negative, the cost is considered to be zero). You can always
9628change the default costs for any description by using the target hook
fae15c93
VM
9629@code{TARGET_SCHED_ADJUST_COST} (@pxref{Scheduling}).
9630
cc6a602b 9631@var{insn-name} is a string giving the internal name of the insn. The
fae15c93
VM
9632internal names are used in constructions @code{define_bypass} and in
9633the automaton description file generated for debugging. The internal
ef261fee 9634name has nothing in common with the names in @code{define_insn}. It is a
fae15c93
VM
9635good practice to use insn classes described in the processor manual.
9636
9637@var{condition} defines what RTL insns are described by this
9638construction. You should remember that you will be in trouble if
9639@var{condition} for two or more different
9640@code{define_insn_reservation} constructions is TRUE for an insn. In
9641this case what reservation will be used for the insn is not defined.
9642Such cases are not checked during generation of the pipeline hazards
9643recognizer because in general recognizing that two conditions may have
9644the same value is quite difficult (especially if the conditions
9645contain @code{symbol_ref}). It is also not checked during the
9646pipeline hazard recognizer work because it would slow down the
9647recognizer considerably.
9648
ef261fee 9649@var{regexp} is a string describing the reservation of the cpu's functional
fae15c93
VM
9650units by the instruction. The reservations are described by a regular
9651expression according to the following syntax:
9652
9653@smallexample
9654 regexp = regexp "," oneof
9655 | oneof
9656
9657 oneof = oneof "|" allof
9658 | allof
9659
9660 allof = allof "+" repeat
9661 | repeat
daf2f129 9662
fae15c93
VM
9663 repeat = element "*" number
9664 | element
9665
9666 element = cpu_function_unit_name
9667 | reservation_name
9668 | result_name
9669 | "nothing"
9670 | "(" regexp ")"
9671@end smallexample
9672
9673@itemize @bullet
9674@item
9675@samp{,} is used for describing the start of the next cycle in
9676the reservation.
9677
9678@item
9679@samp{|} is used for describing a reservation described by the first
9680regular expression @strong{or} a reservation described by the second
9681regular expression @strong{or} etc.
9682
9683@item
9684@samp{+} is used for describing a reservation described by the first
9685regular expression @strong{and} a reservation described by the
9686second regular expression @strong{and} etc.
9687
9688@item
9689@samp{*} is used for convenience and simply means a sequence in which
9690the regular expression are repeated @var{number} times with cycle
9691advancing (see @samp{,}).
9692
9693@item
9694@samp{cpu_function_unit_name} denotes reservation of the named
9695functional unit.
9696
9697@item
9698@samp{reservation_name} --- see description of construction
9699@samp{define_reservation}.
9700
9701@item
9702@samp{nothing} denotes no unit reservations.
9703@end itemize
9704
9705@findex define_reservation
9706Sometimes unit reservations for different insns contain common parts.
9707In such case, you can simplify the pipeline description by describing
9708the common part by the following construction
9709
9710@smallexample
9711(define_reservation @var{reservation-name} @var{regexp})
9712@end smallexample
9713
9714@var{reservation-name} is a string giving name of @var{regexp}.
9715Functional unit names and reservation names are in the same name
9716space. So the reservation names should be different from the
cc6a602b 9717functional unit names and can not be the reserved name @samp{nothing}.
fae15c93
VM
9718
9719@findex define_bypass
9720@cindex instruction latency time
9721@cindex data bypass
9722The following construction is used to describe exceptions in the
9723latency time for given instruction pair. This is so called bypasses.
9724
9725@smallexample
9726(define_bypass @var{number} @var{out_insn_names} @var{in_insn_names}
9727 [@var{guard}])
9728@end smallexample
9729
9730@var{number} defines when the result generated by the instructions
9731given in string @var{out_insn_names} will be ready for the
f9bf5a8e
RS
9732instructions given in string @var{in_insn_names}. Each of these
9733strings is a comma-separated list of filename-style globs and
9734they refer to the names of @code{define_insn_reservation}s.
9735For example:
9736@smallexample
9737(define_bypass 1 "cpu1_load_*, cpu1_store_*" "cpu1_load_*")
9738@end smallexample
9739defines a bypass between instructions that start with
9740@samp{cpu1_load_} or @samp{cpu1_store_} and those that start with
9741@samp{cpu1_load_}.
fae15c93 9742
ef261fee 9743@var{guard} is an optional string giving the name of a C function which
fae15c93
VM
9744defines an additional guard for the bypass. The function will get the
9745two insns as parameters. If the function returns zero the bypass will
9746be ignored for this case. The additional guard is necessary to
431ae0bf 9747recognize complicated bypasses, e.g.@: when the consumer is only an address
fae15c93
VM
9748of insn @samp{store} (not a stored value).
9749
20a07f44
VM
9750If there are more one bypass with the same output and input insns, the
9751chosen bypass is the first bypass with a guard in description whose
9752guard function returns nonzero. If there is no such bypass, then
9753bypass without the guard function is chosen.
9754
fae15c93
VM
9755@findex exclusion_set
9756@findex presence_set
30028c85 9757@findex final_presence_set
fae15c93 9758@findex absence_set
30028c85 9759@findex final_absence_set
fae15c93
VM
9760@cindex VLIW
9761@cindex RISC
cc6a602b
BE
9762The following five constructions are usually used to describe
9763@acronym{VLIW} processors, or more precisely, to describe a placement
9764of small instructions into @acronym{VLIW} instruction slots. They
9765can be used for @acronym{RISC} processors, too.
fae15c93
VM
9766
9767@smallexample
9768(exclusion_set @var{unit-names} @var{unit-names})
30028c85
VM
9769(presence_set @var{unit-names} @var{patterns})
9770(final_presence_set @var{unit-names} @var{patterns})
9771(absence_set @var{unit-names} @var{patterns})
9772(final_absence_set @var{unit-names} @var{patterns})
fae15c93
VM
9773@end smallexample
9774
9775@var{unit-names} is a string giving names of functional units
9776separated by commas.
9777
30028c85 9778@var{patterns} is a string giving patterns of functional units
0bdcd332 9779separated by comma. Currently pattern is one unit or units
30028c85
VM
9780separated by white-spaces.
9781
fae15c93
VM
9782The first construction (@samp{exclusion_set}) means that each
9783functional unit in the first string can not be reserved simultaneously
9784with a unit whose name is in the second string and vice versa. For
9785example, the construction is useful for describing processors
431ae0bf 9786(e.g.@: some SPARC processors) with a fully pipelined floating point
fae15c93
VM
9787functional unit which can execute simultaneously only single floating
9788point insns or only double floating point insns.
9789
9790The second construction (@samp{presence_set}) means that each
9791functional unit in the first string can not be reserved unless at
30028c85
VM
9792least one of pattern of units whose names are in the second string is
9793reserved. This is an asymmetric relation. For example, it is useful
9794for description that @acronym{VLIW} @samp{slot1} is reserved after
9795@samp{slot0} reservation. We could describe it by the following
9796construction
9797
9798@smallexample
9799(presence_set "slot1" "slot0")
9800@end smallexample
9801
9802Or @samp{slot1} is reserved only after @samp{slot0} and unit @samp{b0}
9803reservation. In this case we could write
9804
9805@smallexample
9806(presence_set "slot1" "slot0 b0")
9807@end smallexample
9808
9809The third construction (@samp{final_presence_set}) is analogous to
9810@samp{presence_set}. The difference between them is when checking is
9811done. When an instruction is issued in given automaton state
9812reflecting all current and planned unit reservations, the automaton
9813state is changed. The first state is a source state, the second one
9814is a result state. Checking for @samp{presence_set} is done on the
9815source state reservation, checking for @samp{final_presence_set} is
9816done on the result reservation. This construction is useful to
9817describe a reservation which is actually two subsequent reservations.
9818For example, if we use
9819
9820@smallexample
9821(presence_set "slot1" "slot0")
9822@end smallexample
9823
9824the following insn will be never issued (because @samp{slot1} requires
9825@samp{slot0} which is absent in the source state).
9826
9827@smallexample
9828(define_reservation "insn_and_nop" "slot0 + slot1")
9829@end smallexample
9830
9831but it can be issued if we use analogous @samp{final_presence_set}.
9832
9833The forth construction (@samp{absence_set}) means that each functional
9834unit in the first string can be reserved only if each pattern of units
9835whose names are in the second string is not reserved. This is an
9836asymmetric relation (actually @samp{exclusion_set} is analogous to
ff2ce160 9837this one but it is symmetric). For example it might be useful in a
a71b1c58
NC
9838@acronym{VLIW} description to say that @samp{slot0} cannot be reserved
9839after either @samp{slot1} or @samp{slot2} have been reserved. This
9840can be described as:
30028c85
VM
9841
9842@smallexample
a71b1c58 9843(absence_set "slot0" "slot1, slot2")
30028c85
VM
9844@end smallexample
9845
9846Or @samp{slot2} can not be reserved if @samp{slot0} and unit @samp{b0}
9847are reserved or @samp{slot1} and unit @samp{b1} are reserved. In
9848this case we could write
9849
9850@smallexample
9851(absence_set "slot2" "slot0 b0, slot1 b1")
9852@end smallexample
fae15c93 9853
ef261fee 9854All functional units mentioned in a set should belong to the same
fae15c93
VM
9855automaton.
9856
30028c85
VM
9857The last construction (@samp{final_absence_set}) is analogous to
9858@samp{absence_set} but checking is done on the result (state)
9859reservation. See comments for @samp{final_presence_set}.
9860
fae15c93
VM
9861@findex automata_option
9862@cindex deterministic finite state automaton
9863@cindex nondeterministic finite state automaton
9864@cindex finite state automaton minimization
9865You can control the generator of the pipeline hazard recognizer with
9866the following construction.
9867
9868@smallexample
9869(automata_option @var{options})
9870@end smallexample
9871
9872@var{options} is a string giving options which affect the generated
9873code. Currently there are the following options:
9874
9875@itemize @bullet
9876@item
9877@dfn{no-minimization} makes no minimization of the automaton. This is
30028c85
VM
9878only worth to do when we are debugging the description and need to
9879look more accurately at reservations of states.
fae15c93
VM
9880
9881@item
df1133a6
BE
9882@dfn{time} means printing time statistics about the generation of
9883automata.
9884
9885@item
9886@dfn{stats} means printing statistics about the generated automata
9887such as the number of DFA states, NDFA states and arcs.
e3c8eb86
VM
9888
9889@item
9890@dfn{v} means a generation of the file describing the result automata.
9891The file has suffix @samp{.dfa} and can be used for the description
9892verification and debugging.
9893
9894@item
9895@dfn{w} means a generation of warning instead of error for
9896non-critical errors.
fae15c93 9897
e12da141
BS
9898@item
9899@dfn{no-comb-vect} prevents the automaton generator from generating
9900two data structures and comparing them for space efficiency. Using
9901a comb vector to represent transitions may be better, but it can be
9902very expensive to construct. This option is useful if the build
9903process spends an unacceptably long time in genautomata.
9904
fae15c93
VM
9905@item
9906@dfn{ndfa} makes nondeterministic finite state automata. This affects
9907the treatment of operator @samp{|} in the regular expressions. The
9908usual treatment of the operator is to try the first alternative and,
9909if the reservation is not possible, the second alternative. The
9910nondeterministic treatment means trying all alternatives, some of them
96ddf8ef 9911may be rejected by reservations in the subsequent insns.
dfa849f3 9912
1e6a9047 9913@item
9c582551 9914@dfn{collapse-ndfa} modifies the behavior of the generator when
1e6a9047
BS
9915producing an automaton. An additional state transition to collapse a
9916nondeterministic @acronym{NDFA} state to a deterministic @acronym{DFA}
9917state is generated. It can be triggered by passing @code{const0_rtx} to
9918state_transition. In such an automaton, cycle advance transitions are
9919available only for these collapsed states. This option is useful for
9920ports that want to use the @code{ndfa} option, but also want to use
9921@code{define_query_cpu_unit} to assign units to insns issued in a cycle.
9922
dfa849f3
VM
9923@item
9924@dfn{progress} means output of a progress bar showing how many states
9925were generated so far for automaton being processed. This is useful
9926during debugging a @acronym{DFA} description. If you see too many
9927generated states, you could interrupt the generator of the pipeline
9928hazard recognizer and try to figure out a reason for generation of the
9929huge automaton.
fae15c93
VM
9930@end itemize
9931
9932As an example, consider a superscalar @acronym{RISC} machine which can
9933issue three insns (two integer insns and one floating point insn) on
9934the cycle but can finish only two insns. To describe this, we define
9935the following functional units.
9936
9937@smallexample
9938(define_cpu_unit "i0_pipeline, i1_pipeline, f_pipeline")
ef261fee 9939(define_cpu_unit "port0, port1")
fae15c93
VM
9940@end smallexample
9941
9942All simple integer insns can be executed in any integer pipeline and
9943their result is ready in two cycles. The simple integer insns are
9944issued into the first pipeline unless it is reserved, otherwise they
9945are issued into the second pipeline. Integer division and
9946multiplication insns can be executed only in the second integer
793e17f9 9947pipeline and their results are ready correspondingly in 9 and 4
431ae0bf 9948cycles. The integer division is not pipelined, i.e.@: the subsequent
fae15c93
VM
9949integer division insn can not be issued until the current division
9950insn finished. Floating point insns are fully pipelined and their
ef261fee
R
9951results are ready in 3 cycles. Where the result of a floating point
9952insn is used by an integer insn, an additional delay of one cycle is
9953incurred. To describe all of this we could specify
fae15c93
VM
9954
9955@smallexample
9956(define_cpu_unit "div")
9957
68e4d4c5 9958(define_insn_reservation "simple" 2 (eq_attr "type" "int")
ef261fee 9959 "(i0_pipeline | i1_pipeline), (port0 | port1)")
fae15c93 9960
68e4d4c5 9961(define_insn_reservation "mult" 4 (eq_attr "type" "mult")
ef261fee 9962 "i1_pipeline, nothing*2, (port0 | port1)")
fae15c93 9963
793e17f9 9964(define_insn_reservation "div" 9 (eq_attr "type" "div")
ef261fee 9965 "i1_pipeline, div*7, div + (port0 | port1)")
fae15c93 9966
68e4d4c5 9967(define_insn_reservation "float" 3 (eq_attr "type" "float")
ef261fee 9968 "f_pipeline, nothing, (port0 | port1))
fae15c93 9969
ef261fee 9970(define_bypass 4 "float" "simple,mult,div")
fae15c93
VM
9971@end smallexample
9972
9973To simplify the description we could describe the following reservation
9974
9975@smallexample
9976(define_reservation "finish" "port0|port1")
9977@end smallexample
9978
9979and use it in all @code{define_insn_reservation} as in the following
9980construction
9981
9982@smallexample
68e4d4c5 9983(define_insn_reservation "simple" 2 (eq_attr "type" "int")
fae15c93
VM
9984 "(i0_pipeline | i1_pipeline), finish")
9985@end smallexample
9986
9987
a5249a21
HPN
9988@end ifset
9989@ifset INTERNALS
3262c1f5
RH
9990@node Conditional Execution
9991@section Conditional Execution
9992@cindex conditional execution
9993@cindex predication
9994
9995A number of architectures provide for some form of conditional
9996execution, or predication. The hallmark of this feature is the
9997ability to nullify most of the instructions in the instruction set.
9998When the instruction set is large and not entirely symmetric, it
9999can be quite tedious to describe these forms directly in the
10000@file{.md} file. An alternative is the @code{define_cond_exec} template.
10001
10002@findex define_cond_exec
10003@smallexample
10004(define_cond_exec
10005 [@var{predicate-pattern}]
10006 "@var{condition}"
aadaf24e
KT
10007 "@var{output-template}"
10008 "@var{optional-insn-attribues}")
3262c1f5
RH
10009@end smallexample
10010
10011@var{predicate-pattern} is the condition that must be true for the
10012insn to be executed at runtime and should match a relational operator.
10013One can use @code{match_operator} to match several relational operators
10014at once. Any @code{match_operand} operands must have no more than one
10015alternative.
10016
10017@var{condition} is a C expression that must be true for the generated
10018pattern to match.
10019
10020@findex current_insn_predicate
630d3d5a 10021@var{output-template} is a string similar to the @code{define_insn}
3262c1f5
RH
10022output template (@pxref{Output Template}), except that the @samp{*}
10023and @samp{@@} special cases do not apply. This is only useful if the
10024assembly text for the predicate is a simple prefix to the main insn.
10025In order to handle the general case, there is a global variable
10026@code{current_insn_predicate} that will contain the entire predicate
10027if the current insn is predicated, and will otherwise be @code{NULL}.
10028
aadaf24e
KT
10029@var{optional-insn-attributes} is an optional vector of attributes that gets
10030appended to the insn attributes of the produced cond_exec rtx. It can
10031be used to add some distinguishing attribute to cond_exec rtxs produced
10032that way. An example usage would be to use this attribute in conjunction
10033with attributes on the main pattern to disable particular alternatives under
10034certain conditions.
10035
ebb48a4d
JM
10036When @code{define_cond_exec} is used, an implicit reference to
10037the @code{predicable} instruction attribute is made.
0bddee8e
BS
10038@xref{Insn Attributes}. This attribute must be a boolean (i.e.@: have
10039exactly two elements in its @var{list-of-values}), with the possible
10040values being @code{no} and @code{yes}. The default and all uses in
10041the insns must be a simple constant, not a complex expressions. It
10042may, however, depend on the alternative, by using a comma-separated
10043list of values. If that is the case, the port should also define an
10044@code{enabled} attribute (@pxref{Disable Insn Alternatives}), which
10045should also allow only @code{no} and @code{yes} as its values.
3262c1f5 10046
ebb48a4d 10047For each @code{define_insn} for which the @code{predicable}
3262c1f5
RH
10048attribute is true, a new @code{define_insn} pattern will be
10049generated that matches a predicated version of the instruction.
10050For example,
10051
10052@smallexample
10053(define_insn "addsi"
10054 [(set (match_operand:SI 0 "register_operand" "r")
10055 (plus:SI (match_operand:SI 1 "register_operand" "r")
10056 (match_operand:SI 2 "register_operand" "r")))]
10057 "@var{test1}"
10058 "add %2,%1,%0")
10059
10060(define_cond_exec
10061 [(ne (match_operand:CC 0 "register_operand" "c")
10062 (const_int 0))]
10063 "@var{test2}"
10064 "(%0)")
10065@end smallexample
10066
10067@noindent
10068generates a new pattern
10069
10070@smallexample
10071(define_insn ""
10072 [(cond_exec
10073 (ne (match_operand:CC 3 "register_operand" "c") (const_int 0))
10074 (set (match_operand:SI 0 "register_operand" "r")
10075 (plus:SI (match_operand:SI 1 "register_operand" "r")
10076 (match_operand:SI 2 "register_operand" "r"))))]
10077 "(@var{test2}) && (@var{test1})"
10078 "(%3) add %2,%1,%0")
10079@end smallexample
c25c12b8 10080
a5249a21 10081@end ifset
477c104e
MK
10082@ifset INTERNALS
10083@node Define Subst
10084@section RTL Templates Transformations
10085@cindex define_subst
10086
10087For some hardware architectures there are common cases when the RTL
10088templates for the instructions can be derived from the other RTL
10089templates using simple transformations. E.g., @file{i386.md} contains
10090an RTL template for the ordinary @code{sub} instruction---
10091@code{*subsi_1}, and for the @code{sub} instruction with subsequent
10092zero-extension---@code{*subsi_1_zext}. Such cases can be easily
10093implemented by a single meta-template capable of generating a modified
10094case based on the initial one:
10095
10096@findex define_subst
10097@smallexample
10098(define_subst "@var{name}"
10099 [@var{input-template}]
10100 "@var{condition}"
10101 [@var{output-template}])
10102@end smallexample
10103@var{input-template} is a pattern describing the source RTL template,
10104which will be transformed.
10105
10106@var{condition} is a C expression that is conjunct with the condition
10107from the input-template to generate a condition to be used in the
10108output-template.
10109
10110@var{output-template} is a pattern that will be used in the resulting
10111template.
10112
10113@code{define_subst} mechanism is tightly coupled with the notion of the
bdb6985c 10114subst attribute (@pxref{Subst Iterators}). The use of
477c104e
MK
10115@code{define_subst} is triggered by a reference to a subst attribute in
10116the transforming RTL template. This reference initiates duplication of
10117the source RTL template and substitution of the attributes with their
10118values. The source RTL template is left unchanged, while the copy is
10119transformed by @code{define_subst}. This transformation can fail in the
10120case when the source RTL template is not matched against the
10121input-template of the @code{define_subst}. In such case the copy is
10122deleted.
10123
10124@code{define_subst} can be used only in @code{define_insn} and
10125@code{define_expand}, it cannot be used in other expressions (e.g. in
10126@code{define_insn_and_split}).
10127
10128@menu
10129* Define Subst Example:: Example of @code{define_subst} work.
10130* Define Subst Pattern Matching:: Process of template comparison.
10131* Define Subst Output Template:: Generation of output template.
10132@end menu
10133
10134@node Define Subst Example
10135@subsection @code{define_subst} Example
10136@cindex define_subst
10137
10138To illustrate how @code{define_subst} works, let us examine a simple
10139template transformation.
10140
10141Suppose there are two kinds of instructions: one that touches flags and
10142the other that does not. The instructions of the second type could be
10143generated with the following @code{define_subst}:
10144
10145@smallexample
10146(define_subst "add_clobber_subst"
10147 [(set (match_operand:SI 0 "" "")
10148 (match_operand:SI 1 "" ""))]
10149 ""
10150 [(set (match_dup 0)
10151 (match_dup 1))
10152 (clobber (reg:CC FLAGS_REG))]
10153@end smallexample
10154
10155This @code{define_subst} can be applied to any RTL pattern containing
10156@code{set} of mode SI and generates a copy with clobber when it is
10157applied.
10158
10159Assume there is an RTL template for a @code{max} instruction to be used
10160in @code{define_subst} mentioned above:
10161
10162@smallexample
10163(define_insn "maxsi"
10164 [(set (match_operand:SI 0 "register_operand" "=r")
10165 (max:SI
10166 (match_operand:SI 1 "register_operand" "r")
10167 (match_operand:SI 2 "register_operand" "r")))]
10168 ""
10169 "max\t@{%2, %1, %0|%0, %1, %2@}"
10170 [@dots{}])
10171@end smallexample
10172
10173To mark the RTL template for @code{define_subst} application,
10174subst-attributes are used. They should be declared in advance:
10175
10176@smallexample
10177(define_subst_attr "add_clobber_name" "add_clobber_subst" "_noclobber" "_clobber")
10178@end smallexample
10179
10180Here @samp{add_clobber_name} is the attribute name,
10181@samp{add_clobber_subst} is the name of the corresponding
10182@code{define_subst}, the third argument (@samp{_noclobber}) is the
10183attribute value that would be substituted into the unchanged version of
10184the source RTL template, and the last argument (@samp{_clobber}) is the
10185value that would be substituted into the second, transformed,
10186version of the RTL template.
10187
10188Once the subst-attribute has been defined, it should be used in RTL
10189templates which need to be processed by the @code{define_subst}. So,
10190the original RTL template should be changed:
10191
10192@smallexample
10193(define_insn "maxsi<add_clobber_name>"
10194 [(set (match_operand:SI 0 "register_operand" "=r")
10195 (max:SI
10196 (match_operand:SI 1 "register_operand" "r")
10197 (match_operand:SI 2 "register_operand" "r")))]
10198 ""
10199 "max\t@{%2, %1, %0|%0, %1, %2@}"
10200 [@dots{}])
10201@end smallexample
10202
10203The result of the @code{define_subst} usage would look like the following:
10204
10205@smallexample
10206(define_insn "maxsi_noclobber"
10207 [(set (match_operand:SI 0 "register_operand" "=r")
10208 (max:SI
10209 (match_operand:SI 1 "register_operand" "r")
10210 (match_operand:SI 2 "register_operand" "r")))]
10211 ""
10212 "max\t@{%2, %1, %0|%0, %1, %2@}"
10213 [@dots{}])
10214(define_insn "maxsi_clobber"
10215 [(set (match_operand:SI 0 "register_operand" "=r")
10216 (max:SI
10217 (match_operand:SI 1 "register_operand" "r")
10218 (match_operand:SI 2 "register_operand" "r")))
10219 (clobber (reg:CC FLAGS_REG))]
10220 ""
10221 "max\t@{%2, %1, %0|%0, %1, %2@}"
10222 [@dots{}])
10223@end smallexample
10224
10225@node Define Subst Pattern Matching
10226@subsection Pattern Matching in @code{define_subst}
10227@cindex define_subst
10228
10229All expressions, allowed in @code{define_insn} or @code{define_expand},
10230are allowed in the input-template of @code{define_subst}, except
10231@code{match_par_dup}, @code{match_scratch}, @code{match_parallel}. The
10232meanings of expressions in the input-template were changed:
10233
10234@code{match_operand} matches any expression (possibly, a subtree in
10235RTL-template), if modes of the @code{match_operand} and this expression
10236are the same, or mode of the @code{match_operand} is @code{VOIDmode}, or
10237this expression is @code{match_dup}, @code{match_op_dup}. If the
10238expression is @code{match_operand} too, and predicate of
10239@code{match_operand} from the input pattern is not empty, then the
10240predicates are compared. That can be used for more accurate filtering
10241of accepted RTL-templates.
10242
10243@code{match_operator} matches common operators (like @code{plus},
10244@code{minus}), @code{unspec}, @code{unspec_volatile} operators and
10245@code{match_operator}s from the original pattern if the modes match and
10246@code{match_operator} from the input pattern has the same number of
10247operands as the operator from the original pattern.
10248
10249@node Define Subst Output Template
10250@subsection Generation of output template in @code{define_subst}
10251@cindex define_subst
10252
10253If all necessary checks for @code{define_subst} application pass, a new
10254RTL-pattern, based on the output-template, is created to replace the old
10255template. Like in input-patterns, meanings of some RTL expressions are
10256changed when they are used in output-patterns of a @code{define_subst}.
10257Thus, @code{match_dup} is used for copying the whole expression from the
10258original pattern, which matched corresponding @code{match_operand} from
10259the input pattern.
10260
10261@code{match_dup N} is used in the output template to be replaced with
10262the expression from the original pattern, which matched
10263@code{match_operand N} from the input pattern. As a consequence,
10264@code{match_dup} cannot be used to point to @code{match_operand}s from
10265the output pattern, it should always refer to a @code{match_operand}
10266from the input pattern.
10267
10268In the output template one can refer to the expressions from the
10269original pattern and create new ones. For instance, some operands could
10270be added by means of standard @code{match_operand}.
10271
10272After replacing @code{match_dup} with some RTL-subtree from the original
10273pattern, it could happen that several @code{match_operand}s in the
10274output pattern have the same indexes. It is unknown, how many and what
10275indexes would be used in the expression which would replace
10276@code{match_dup}, so such conflicts in indexes are inevitable. To
10277overcome this issue, @code{match_operands} and @code{match_operators},
10278which were introduced into the output pattern, are renumerated when all
10279@code{match_dup}s are replaced.
10280
10281Number of alternatives in @code{match_operand}s introduced into the
10282output template @code{M} could differ from the number of alternatives in
10283the original pattern @code{N}, so in the resultant pattern there would
10284be @code{N*M} alternatives. Thus, constraints from the original pattern
10285would be duplicated @code{N} times, constraints from the output pattern
10286would be duplicated @code{M} times, producing all possible combinations.
10287@end ifset
10288
a5249a21 10289@ifset INTERNALS
c25c12b8
R
10290@node Constant Definitions
10291@section Constant Definitions
10292@cindex constant definitions
10293@findex define_constants
10294
10295Using literal constants inside instruction patterns reduces legibility and
10296can be a maintenance problem.
10297
10298To overcome this problem, you may use the @code{define_constants}
10299expression. It contains a vector of name-value pairs. From that
10300point on, wherever any of the names appears in the MD file, it is as
10301if the corresponding value had been written instead. You may use
10302@code{define_constants} multiple times; each appearance adds more
10303constants to the table. It is an error to redefine a constant with
10304a different value.
10305
10306To come back to the a29k load multiple example, instead of
10307
10308@smallexample
10309(define_insn ""
10310 [(match_parallel 0 "load_multiple_operation"
10311 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10312 (match_operand:SI 2 "memory_operand" "m"))
10313 (use (reg:SI 179))
10314 (clobber (reg:SI 179))])]
10315 ""
10316 "loadm 0,0,%1,%2")
10317@end smallexample
10318
10319You could write:
10320
10321@smallexample
10322(define_constants [
10323 (R_BP 177)
10324 (R_FC 178)
10325 (R_CR 179)
10326 (R_Q 180)
10327])
10328
10329(define_insn ""
10330 [(match_parallel 0 "load_multiple_operation"
10331 [(set (match_operand:SI 1 "gpc_reg_operand" "=r")
10332 (match_operand:SI 2 "memory_operand" "m"))
10333 (use (reg:SI R_CR))
10334 (clobber (reg:SI R_CR))])]
10335 ""
10336 "loadm 0,0,%1,%2")
10337@end smallexample
10338
10339The constants that are defined with a define_constant are also output
10340in the insn-codes.h header file as #defines.
24609606
RS
10341
10342@cindex enumerations
10343@findex define_c_enum
10344You can also use the machine description file to define enumerations.
10345Like the constants defined by @code{define_constant}, these enumerations
10346are visible to both the machine description file and the main C code.
10347
10348The syntax is as follows:
10349
10350@smallexample
10351(define_c_enum "@var{name}" [
10352 @var{value0}
10353 @var{value1}
10354 @dots{}
10355 @var{valuen}
10356])
10357@end smallexample
10358
10359This definition causes the equivalent of the following C code to appear
10360in @file{insn-constants.h}:
10361
10362@smallexample
10363enum @var{name} @{
10364 @var{value0} = 0,
10365 @var{value1} = 1,
10366 @dots{}
10367 @var{valuen} = @var{n}
10368@};
10369#define NUM_@var{cname}_VALUES (@var{n} + 1)
10370@end smallexample
10371
10372where @var{cname} is the capitalized form of @var{name}.
10373It also makes each @var{valuei} available in the machine description
10374file, just as if it had been declared with:
10375
10376@smallexample
10377(define_constants [(@var{valuei} @var{i})])
10378@end smallexample
10379
10380Each @var{valuei} is usually an upper-case identifier and usually
10381begins with @var{cname}.
10382
10383You can split the enumeration definition into as many statements as
10384you like. The above example is directly equivalent to:
10385
10386@smallexample
10387(define_c_enum "@var{name}" [@var{value0}])
10388(define_c_enum "@var{name}" [@var{value1}])
10389@dots{}
10390(define_c_enum "@var{name}" [@var{valuen}])
10391@end smallexample
10392
10393Splitting the enumeration helps to improve the modularity of each
10394individual @code{.md} file. For example, if a port defines its
10395synchronization instructions in a separate @file{sync.md} file,
10396it is convenient to define all synchronization-specific enumeration
10397values in @file{sync.md} rather than in the main @file{.md} file.
10398
0fe60a1b
RS
10399Some enumeration names have special significance to GCC:
10400
10401@table @code
10402@item unspecv
10403@findex unspec_volatile
10404If an enumeration called @code{unspecv} is defined, GCC will use it
10405when printing out @code{unspec_volatile} expressions. For example:
10406
10407@smallexample
10408(define_c_enum "unspecv" [
10409 UNSPECV_BLOCKAGE
10410])
10411@end smallexample
10412
10413causes GCC to print @samp{(unspec_volatile @dots{} 0)} as:
10414
10415@smallexample
10416(unspec_volatile ... UNSPECV_BLOCKAGE)
10417@end smallexample
10418
10419@item unspec
10420@findex unspec
10421If an enumeration called @code{unspec} is defined, GCC will use
10422it when printing out @code{unspec} expressions. GCC will also use
10423it when printing out @code{unspec_volatile} expressions unless an
10424@code{unspecv} enumeration is also defined. You can therefore
10425decide whether to keep separate enumerations for volatile and
10426non-volatile expressions or whether to use the same enumeration
10427for both.
10428@end table
10429
24609606 10430@findex define_enum
8f4fe86c 10431@anchor{define_enum}
24609606
RS
10432Another way of defining an enumeration is to use @code{define_enum}:
10433
10434@smallexample
10435(define_enum "@var{name}" [
10436 @var{value0}
10437 @var{value1}
10438 @dots{}
10439 @var{valuen}
10440])
10441@end smallexample
10442
10443This directive implies:
10444
10445@smallexample
10446(define_c_enum "@var{name}" [
10447 @var{cname}_@var{cvalue0}
10448 @var{cname}_@var{cvalue1}
10449 @dots{}
10450 @var{cname}_@var{cvaluen}
10451])
10452@end smallexample
10453
8f4fe86c 10454@findex define_enum_attr
24609606 10455where @var{cvaluei} is the capitalized form of @var{valuei}.
8f4fe86c
RS
10456However, unlike @code{define_c_enum}, the enumerations defined
10457by @code{define_enum} can be used in attribute specifications
10458(@pxref{define_enum_attr}).
b11cc610 10459@end ifset
032e8348 10460@ifset INTERNALS
3abcb3a7
HPN
10461@node Iterators
10462@section Iterators
10463@cindex iterators in @file{.md} files
032e8348
RS
10464
10465Ports often need to define similar patterns for more than one machine
3abcb3a7 10466mode or for more than one rtx code. GCC provides some simple iterator
032e8348
RS
10467facilities to make this process easier.
10468
10469@menu
3abcb3a7
HPN
10470* Mode Iterators:: Generating variations of patterns for different modes.
10471* Code Iterators:: Doing the same for codes.
57a4717b 10472* Int Iterators:: Doing the same for integers.
477c104e 10473* Subst Iterators:: Generating variations of patterns for define_subst.
032e8348
RS
10474@end menu
10475
3abcb3a7
HPN
10476@node Mode Iterators
10477@subsection Mode Iterators
10478@cindex mode iterators in @file{.md} files
032e8348
RS
10479
10480Ports often need to define similar patterns for two or more different modes.
10481For example:
10482
10483@itemize @bullet
10484@item
10485If a processor has hardware support for both single and double
10486floating-point arithmetic, the @code{SFmode} patterns tend to be
10487very similar to the @code{DFmode} ones.
10488
10489@item
10490If a port uses @code{SImode} pointers in one configuration and
10491@code{DImode} pointers in another, it will usually have very similar
10492@code{SImode} and @code{DImode} patterns for manipulating pointers.
10493@end itemize
10494
3abcb3a7 10495Mode iterators allow several patterns to be instantiated from one
032e8348
RS
10496@file{.md} file template. They can be used with any type of
10497rtx-based construct, such as a @code{define_insn},
10498@code{define_split}, or @code{define_peephole2}.
10499
10500@menu
3abcb3a7 10501* Defining Mode Iterators:: Defining a new mode iterator.
6ccde948
RW
10502* Substitutions:: Combining mode iterators with substitutions
10503* Examples:: Examples
032e8348
RS
10504@end menu
10505
3abcb3a7
HPN
10506@node Defining Mode Iterators
10507@subsubsection Defining Mode Iterators
10508@findex define_mode_iterator
032e8348 10509
3abcb3a7 10510The syntax for defining a mode iterator is:
032e8348
RS
10511
10512@smallexample
923158be 10513(define_mode_iterator @var{name} [(@var{mode1} "@var{cond1}") @dots{} (@var{moden} "@var{condn}")])
032e8348
RS
10514@end smallexample
10515
10516This allows subsequent @file{.md} file constructs to use the mode suffix
10517@code{:@var{name}}. Every construct that does so will be expanded
10518@var{n} times, once with every use of @code{:@var{name}} replaced by
10519@code{:@var{mode1}}, once with every use replaced by @code{:@var{mode2}},
10520and so on. In the expansion for a particular @var{modei}, every
10521C condition will also require that @var{condi} be true.
10522
10523For example:
10524
10525@smallexample
3abcb3a7 10526(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
032e8348
RS
10527@end smallexample
10528
10529defines a new mode suffix @code{:P}. Every construct that uses
10530@code{:P} will be expanded twice, once with every @code{:P} replaced
10531by @code{:SI} and once with every @code{:P} replaced by @code{:DI}.
10532The @code{:SI} version will only apply if @code{Pmode == SImode} and
10533the @code{:DI} version will only apply if @code{Pmode == DImode}.
10534
10535As with other @file{.md} conditions, an empty string is treated
10536as ``always true''. @code{(@var{mode} "")} can also be abbreviated
10537to @code{@var{mode}}. For example:
10538
10539@smallexample
3abcb3a7 10540(define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
032e8348
RS
10541@end smallexample
10542
10543means that the @code{:DI} expansion only applies if @code{TARGET_64BIT}
10544but that the @code{:SI} expansion has no such constraint.
10545
3abcb3a7
HPN
10546Iterators are applied in the order they are defined. This can be
10547significant if two iterators are used in a construct that requires
f30990b2 10548substitutions. @xref{Substitutions}.
032e8348 10549
f30990b2 10550@node Substitutions
3abcb3a7 10551@subsubsection Substitution in Mode Iterators
032e8348
RS
10552@findex define_mode_attr
10553
3abcb3a7 10554If an @file{.md} file construct uses mode iterators, each version of the
f30990b2
ILT
10555construct will often need slightly different strings or modes. For
10556example:
032e8348
RS
10557
10558@itemize @bullet
10559@item
10560When a @code{define_expand} defines several @code{add@var{m}3} patterns
10561(@pxref{Standard Names}), each expander will need to use the
10562appropriate mode name for @var{m}.
10563
10564@item
10565When a @code{define_insn} defines several instruction patterns,
10566each instruction will often use a different assembler mnemonic.
f30990b2
ILT
10567
10568@item
10569When a @code{define_insn} requires operands with different modes,
3abcb3a7 10570using an iterator for one of the operand modes usually requires a specific
f30990b2 10571mode for the other operand(s).
032e8348
RS
10572@end itemize
10573
10574GCC supports such variations through a system of ``mode attributes''.
10575There are two standard attributes: @code{mode}, which is the name of
10576the mode in lower case, and @code{MODE}, which is the same thing in
10577upper case. You can define other attributes using:
10578
10579@smallexample
923158be 10580(define_mode_attr @var{name} [(@var{mode1} "@var{value1}") @dots{} (@var{moden} "@var{valuen}")])
032e8348
RS
10581@end smallexample
10582
10583where @var{name} is the name of the attribute and @var{valuei}
10584is the value associated with @var{modei}.
10585
3abcb3a7 10586When GCC replaces some @var{:iterator} with @var{:mode}, it will scan
f30990b2 10587each string and mode in the pattern for sequences of the form
3abcb3a7 10588@code{<@var{iterator}:@var{attr}>}, where @var{attr} is the name of a
f30990b2 10589mode attribute. If the attribute is defined for @var{mode}, the whole
923158be 10590@code{<@dots{}>} sequence will be replaced by the appropriate attribute
f30990b2 10591value.
032e8348
RS
10592
10593For example, suppose an @file{.md} file has:
10594
10595@smallexample
3abcb3a7 10596(define_mode_iterator P [(SI "Pmode == SImode") (DI "Pmode == DImode")])
032e8348
RS
10597(define_mode_attr load [(SI "lw") (DI "ld")])
10598@end smallexample
10599
10600If one of the patterns that uses @code{:P} contains the string
10601@code{"<P:load>\t%0,%1"}, the @code{SI} version of that pattern
10602will use @code{"lw\t%0,%1"} and the @code{DI} version will use
10603@code{"ld\t%0,%1"}.
10604
f30990b2
ILT
10605Here is an example of using an attribute for a mode:
10606
10607@smallexample
3abcb3a7 10608(define_mode_iterator LONG [SI DI])
f30990b2 10609(define_mode_attr SHORT [(SI "HI") (DI "SI")])
923158be
RW
10610(define_insn @dots{}
10611 (sign_extend:LONG (match_operand:<LONG:SHORT> @dots{})) @dots{})
f30990b2
ILT
10612@end smallexample
10613
3abcb3a7
HPN
10614The @code{@var{iterator}:} prefix may be omitted, in which case the
10615substitution will be attempted for every iterator expansion.
032e8348
RS
10616
10617@node Examples
3abcb3a7 10618@subsubsection Mode Iterator Examples
032e8348
RS
10619
10620Here is an example from the MIPS port. It defines the following
10621modes and attributes (among others):
10622
10623@smallexample
3abcb3a7 10624(define_mode_iterator GPR [SI (DI "TARGET_64BIT")])
032e8348
RS
10625(define_mode_attr d [(SI "") (DI "d")])
10626@end smallexample
10627
10628and uses the following template to define both @code{subsi3}
10629and @code{subdi3}:
10630
10631@smallexample
10632(define_insn "sub<mode>3"
10633 [(set (match_operand:GPR 0 "register_operand" "=d")
10634 (minus:GPR (match_operand:GPR 1 "register_operand" "d")
10635 (match_operand:GPR 2 "register_operand" "d")))]
10636 ""
10637 "<d>subu\t%0,%1,%2"
10638 [(set_attr "type" "arith")
10639 (set_attr "mode" "<MODE>")])
10640@end smallexample
10641
10642This is exactly equivalent to:
10643
10644@smallexample
10645(define_insn "subsi3"
10646 [(set (match_operand:SI 0 "register_operand" "=d")
10647 (minus:SI (match_operand:SI 1 "register_operand" "d")
10648 (match_operand:SI 2 "register_operand" "d")))]
10649 ""
10650 "subu\t%0,%1,%2"
10651 [(set_attr "type" "arith")
10652 (set_attr "mode" "SI")])
10653
10654(define_insn "subdi3"
10655 [(set (match_operand:DI 0 "register_operand" "=d")
10656 (minus:DI (match_operand:DI 1 "register_operand" "d")
10657 (match_operand:DI 2 "register_operand" "d")))]
10658 ""
10659 "dsubu\t%0,%1,%2"
10660 [(set_attr "type" "arith")
10661 (set_attr "mode" "DI")])
10662@end smallexample
10663
3abcb3a7
HPN
10664@node Code Iterators
10665@subsection Code Iterators
10666@cindex code iterators in @file{.md} files
10667@findex define_code_iterator
032e8348
RS
10668@findex define_code_attr
10669
3abcb3a7 10670Code iterators operate in a similar way to mode iterators. @xref{Mode Iterators}.
032e8348
RS
10671
10672The construct:
10673
10674@smallexample
923158be 10675(define_code_iterator @var{name} [(@var{code1} "@var{cond1}") @dots{} (@var{coden} "@var{condn}")])
032e8348
RS
10676@end smallexample
10677
10678defines a pseudo rtx code @var{name} that can be instantiated as
10679@var{codei} if condition @var{condi} is true. Each @var{codei}
10680must have the same rtx format. @xref{RTL Classes}.
10681
3abcb3a7 10682As with mode iterators, each pattern that uses @var{name} will be
032e8348
RS
10683expanded @var{n} times, once with all uses of @var{name} replaced by
10684@var{code1}, once with all uses replaced by @var{code2}, and so on.
3abcb3a7 10685@xref{Defining Mode Iterators}.
032e8348
RS
10686
10687It is possible to define attributes for codes as well as for modes.
10688There are two standard code attributes: @code{code}, the name of the
10689code in lower case, and @code{CODE}, the name of the code in upper case.
10690Other attributes are defined using:
10691
10692@smallexample
923158be 10693(define_code_attr @var{name} [(@var{code1} "@var{value1}") @dots{} (@var{coden} "@var{valuen}")])
032e8348
RS
10694@end smallexample
10695
3abcb3a7 10696Here's an example of code iterators in action, taken from the MIPS port:
032e8348
RS
10697
10698@smallexample
3abcb3a7
HPN
10699(define_code_iterator any_cond [unordered ordered unlt unge uneq ltgt unle ungt
10700 eq ne gt ge lt le gtu geu ltu leu])
032e8348
RS
10701
10702(define_expand "b<code>"
10703 [(set (pc)
10704 (if_then_else (any_cond:CC (cc0)
10705 (const_int 0))
10706 (label_ref (match_operand 0 ""))
10707 (pc)))]
10708 ""
10709@{
10710 gen_conditional_branch (operands, <CODE>);
10711 DONE;
10712@})
10713@end smallexample
10714
10715This is equivalent to:
10716
10717@smallexample
10718(define_expand "bunordered"
10719 [(set (pc)
10720 (if_then_else (unordered:CC (cc0)
10721 (const_int 0))
10722 (label_ref (match_operand 0 ""))
10723 (pc)))]
10724 ""
10725@{
10726 gen_conditional_branch (operands, UNORDERED);
10727 DONE;
10728@})
10729
10730(define_expand "bordered"
10731 [(set (pc)
10732 (if_then_else (ordered:CC (cc0)
10733 (const_int 0))
10734 (label_ref (match_operand 0 ""))
10735 (pc)))]
10736 ""
10737@{
10738 gen_conditional_branch (operands, ORDERED);
10739 DONE;
10740@})
10741
923158be 10742@dots{}
032e8348
RS
10743@end smallexample
10744
57a4717b
TB
10745@node Int Iterators
10746@subsection Int Iterators
10747@cindex int iterators in @file{.md} files
10748@findex define_int_iterator
10749@findex define_int_attr
10750
10751Int iterators operate in a similar way to code iterators. @xref{Code Iterators}.
10752
10753The construct:
10754
10755@smallexample
10756(define_int_iterator @var{name} [(@var{int1} "@var{cond1}") @dots{} (@var{intn} "@var{condn}")])
10757@end smallexample
10758
10759defines a pseudo integer constant @var{name} that can be instantiated as
10760@var{inti} if condition @var{condi} is true. Each @var{int}
10761must have the same rtx format. @xref{RTL Classes}. Int iterators can appear
10762in only those rtx fields that have 'i' as the specifier. This means that
10763each @var{int} has to be a constant defined using define_constant or
10764define_c_enum.
10765
10766As with mode and code iterators, each pattern that uses @var{name} will be
10767expanded @var{n} times, once with all uses of @var{name} replaced by
10768@var{int1}, once with all uses replaced by @var{int2}, and so on.
10769@xref{Defining Mode Iterators}.
10770
10771It is possible to define attributes for ints as well as for codes and modes.
10772Attributes are defined using:
10773
10774@smallexample
10775(define_int_attr @var{name} [(@var{int1} "@var{value1}") @dots{} (@var{intn} "@var{valuen}")])
10776@end smallexample
10777
10778Here's an example of int iterators in action, taken from the ARM port:
10779
10780@smallexample
10781(define_int_iterator QABSNEG [UNSPEC_VQABS UNSPEC_VQNEG])
10782
10783(define_int_attr absneg [(UNSPEC_VQABS "abs") (UNSPEC_VQNEG "neg")])
10784
10785(define_insn "neon_vq<absneg><mode>"
10786 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10787 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10788 (match_operand:SI 2 "immediate_operand" "i")]
10789 QABSNEG))]
10790 "TARGET_NEON"
10791 "vq<absneg>.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 10792 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
10793)
10794
10795@end smallexample
10796
10797This is equivalent to:
10798
10799@smallexample
10800(define_insn "neon_vqabs<mode>"
10801 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10802 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10803 (match_operand:SI 2 "immediate_operand" "i")]
10804 UNSPEC_VQABS))]
10805 "TARGET_NEON"
10806 "vqabs.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 10807 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
10808)
10809
10810(define_insn "neon_vqneg<mode>"
10811 [(set (match_operand:VDQIW 0 "s_register_operand" "=w")
10812 (unspec:VDQIW [(match_operand:VDQIW 1 "s_register_operand" "w")
10813 (match_operand:SI 2 "immediate_operand" "i")]
10814 UNSPEC_VQNEG))]
10815 "TARGET_NEON"
10816 "vqneg.<V_s_elem>\t%<V_reg>0, %<V_reg>1"
003bb7f3 10817 [(set_attr "type" "neon_vqneg_vqabs")]
57a4717b
TB
10818)
10819
10820@end smallexample
10821
477c104e
MK
10822@node Subst Iterators
10823@subsection Subst Iterators
10824@cindex subst iterators in @file{.md} files
10825@findex define_subst
10826@findex define_subst_attr
10827
10828Subst iterators are special type of iterators with the following
10829restrictions: they could not be declared explicitly, they always have
10830only two values, and they do not have explicit dedicated name.
10831Subst-iterators are triggered only when corresponding subst-attribute is
10832used in RTL-pattern.
10833
10834Subst iterators transform templates in the following way: the templates
10835are duplicated, the subst-attributes in these templates are replaced
10836with the corresponding values, and a new attribute is implicitly added
10837to the given @code{define_insn}/@code{define_expand}. The name of the
10838added attribute matches the name of @code{define_subst}. Such
10839attributes are declared implicitly, and it is not allowed to have a
10840@code{define_attr} named as a @code{define_subst}.
10841
10842Each subst iterator is linked to a @code{define_subst}. It is declared
10843implicitly by the first appearance of the corresponding
10844@code{define_subst_attr}, and it is not allowed to define it explicitly.
10845
10846Declarations of subst-attributes have the following syntax:
10847
10848@findex define_subst_attr
10849@smallexample
10850(define_subst_attr "@var{name}"
10851 "@var{subst-name}"
10852 "@var{no-subst-value}"
10853 "@var{subst-applied-value}")
10854@end smallexample
10855
10856@var{name} is a string with which the given subst-attribute could be
10857referred to.
10858
10859@var{subst-name} shows which @code{define_subst} should be applied to an
10860RTL-template if the given subst-attribute is present in the
10861RTL-template.
10862
10863@var{no-subst-value} is a value with which subst-attribute would be
10864replaced in the first copy of the original RTL-template.
10865
10866@var{subst-applied-value} is a value with which subst-attribute would be
10867replaced in the second copy of the original RTL-template.
10868
032e8348 10869@end ifset