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